:root {
  --ink: #263237;
  --muted: #556469;
  --paper: #f8f5ef;
  --white: #fffdf9;
  --line: #e5ded3;
  --accent: #9d4f3a;
  --accent-dark: #753c2d;
  --sage: #667c70;
  --navy: #2d4851;
  --shadow: 0 18px 50px rgba(46, 43, 37, 0.09);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  z-index: 20;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 245, 239, 0.93);
  border-bottom: 1px solid rgba(229, 222, 211, 0.8);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--accent);
  font-family: Georgia, serif;
  font-size: 19px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  color: var(--muted);
}
.nav-links a {
  text-decoration: none;
}
.nav-links a:hover {
  color: var(--accent-dark);
}
.nav-phone {
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 8px;
  font-size: 24px;
  cursor: pointer;
}
.hero {
  padding: 86px 0 74px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 72px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 700;
}
h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  font-weight: 600;
}
h1,
.display {
  font-family: "Playfair Display", Georgia, serif;
}
h1 {
  max-width: 620px;
  font-size: clamp(42px, 5vw, 70px);
  letter-spacing: -0.035em;
}
.hero-copy {
  max-width: 590px;
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: 18px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}
.button-secondary {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}
.button-secondary:hover {
  background: var(--white);
  color: var(--ink);
}
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.trust-list li::before {
  content: "✓";
  color: var(--sage);
  font-weight: 700;
  margin-right: 7px;
}
.hero-art {
  position: relative;
  min-height: 520px;
}
.hero-image {
  width: 82%;
  height: 520px;
  object-fit: cover;
  margin-left: auto;
  border-radius: 45% 45% 12px 12px;
  box-shadow: var(--shadow);
}
.hero-note {
  position: absolute;
  bottom: 28px;
  left: 0;
  width: 220px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.96);
  box-shadow: var(--shadow);
}
.hero-note strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 23px;
}
.hero-note span {
  color: var(--muted);
  font-size: 12px;
}
.section {
  padding: 94px 0;
}
.section-tint {
  background: #eee9df;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 40px;
}
.section-header h2 {
  max-width: 600px;
  font-size: clamp(32px, 4vw, 48px);
}
.section-intro {
  max-width: 450px;
  margin: 0;
  color: var(--muted);
}
.overline {
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 11px;
  font-weight: 700;
  margin: 0 0 12px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.tile {
  min-height: 178px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.tile h3 {
  margin-bottom: 8px;
  font-size: 19px;
}
.tile p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 23px;
  border-radius: 50%;
  background: #e8d7cc;
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 13px;
}
.service-layout {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 80px;
  align-items: center;
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 28px;
}
.service-list li {
  padding: 16px 0 16px 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
  font-weight: 500;
}
.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 23px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}
.notice {
  margin-top: 30px;
  padding: 18px 20px;
  border-left: 3px solid var(--accent);
  background: #f2e8dc;
  color: #5b5048;
  font-size: 14px;
}
.process-image {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 12px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step {
  padding-top: 20px;
  border-top: 2px solid var(--accent);
}
.step-number {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}
.step h3 {
  margin: 16px 0 10px;
  font-size: 19px;
}
.step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  max-width: 980px;
  margin: 0 auto;
}
.example {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.example-image img {
  display: block;
  width: 100%;
  height: auto;
}
.compare-label {
  padding: 14px 16px 18px;
}
.compare-label strong {
  display: block;
  margin-bottom: 3px;
  font-size: 16px;
}
.compare-label span {
  color: var(--muted);
  font-size: 12px;
}
.compare-label small {
  display: block;
  margin-top: 10px;
  color: var(--accent-dark);
  font-size: 11px;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.benefit {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.benefit h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.faq {
  max-width: 820px;
  margin: 0 auto;
}
details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
details:last-child {
  border-bottom: 1px solid var(--line);
}
summary {
  cursor: pointer;
  list-style: none;
  padding-right: 35px;
  position: relative;
  font-weight: 600;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -4px;
  color: var(--accent);
  font-size: 24px;
  font-weight: 400;
}
details[open] summary::after {
  content: "−";
}
details p {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}
.consultation {
  background: var(--navy);
  color: #fff;
}
.consultation .section-header p,
.consultation .overline {
  color: #c9d3d0;
}
.consultation .section-header h2 {
  max-width: 680px;
}
.form-shell {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}
.form-card {
  padding: 30px;
  background: var(--white);
  color: var(--ink);
  border-radius: 12px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field-wide {
  grid-column: 1 / -1;
}
.field label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}
.field input,
.field textarea {
  width: 100%;
  border: 1px solid #d8d0c4;
  border-radius: 7px;
  background: #fffdf9;
  color: var(--ink);
  padding: 13px 14px;
  font: inherit;
  font-size: 15px;
}
.field textarea {
  min-height: 110px;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: 3px solid rgba(181, 101, 76, 0.2);
  border-color: var(--accent);
}
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 19px 0;
  color: var(--muted);
  font-size: 12px;
}
.checkbox input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--accent);
  flex: 0 0 auto;
}
.checkbox a {
  color: var(--accent-dark);
}
.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--accent-dark);
  font-size: 13px;
}
.form-status.is-error {
  color: #b23c32;
}
.form-note {
  margin: 22px 0 0;
  color: #c9d3d0;
  font-size: 13px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
}
.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.contact-item {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.contact-item dt {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 4px;
}
.contact-item dd {
  margin: 0;
  font-weight: 600;
}
.contact-item a {
  color: var(--accent-dark);
  text-decoration: none;
}
.contact-aside {
  padding: 28px;
  border-radius: 12px;
  background: #e4e0d6;
}
.contact-aside img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin: -12px 0 22px;
  border-radius: 8px;
}
.contact-aside h3 {
  margin-bottom: 12px;
  font-size: 24px;
}
.contact-aside p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.site-footer {
  padding: 40px 0 24px;
  border-top: 1px solid var(--line);
  background: #ebe6dd;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 35px;
}
.footer-copy {
  max-width: 520px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 20px;
  color: var(--muted);
  font-size: 13px;
}
.footer-links a {
  text-decoration: none;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 35px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}
.legal-main {
  padding: 80px 0;
}
.legal-wrap {
  max-width: 840px;
}
.legal-wrap h1 {
  font-size: clamp(38px, 5vw, 60px);
  margin-bottom: 22px;
}
.legal-wrap .lead {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 42px;
}
.legal-wrap h2 {
  margin: 38px 0 14px;
  font-size: 25px;
}
.legal-wrap p,
.legal-wrap li {
  color: #526064;
}
.legal-wrap ul {
  padding-left: 20px;
}
.legal-aside {
  padding: 18px 20px;
  background: #eee9df;
  border-left: 3px solid var(--accent);
}
.thank-you {
  min-height: 65vh;
  display: grid;
  place-items: center;
  padding: 80px 0;
}
.thank-card {
  max-width: 620px;
  padding: 48px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}
.thank-card h1 {
  margin-bottom: 18px;
  font-size: 48px;
}
.thank-card p {
  color: var(--muted);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

@media (max-width: 900px) {
  .hero-grid,
  .service-layout,
  .form-shell,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .hero {
    padding-top: 55px;
  }
  .hero-art {
    min-height: auto;
  }
  .hero-image {
    width: 86%;
    height: 430px;
  }
  .hero-note {
    bottom: 18px;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 35px;
  }
  .section-header {
    display: block;
  }
  .section-intro {
    margin-top: 18px;
  }
}
@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 560px);
  }
  .site-header {
    position: relative;
  }
  .nav {
    min-height: 68px;
  }
  .js .menu-toggle {
    display: block;
  }
  .js .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    padding: 16px 14px 22px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .js .nav-links.is-open {
    display: flex;
  }
  .nav-links a {
    padding: 11px 0;
  }
  h1 {
    font-size: 43px;
  }
  .hero-copy {
    font-size: 16px;
  }
  .hero-image {
    width: 100%;
    height: 380px;
  }
  .hero-note {
    position: relative;
    bottom: auto;
    width: 86%;
    margin-top: -45px;
  }
  .grid-3,
  .grid-2,
  .benefits,
  .contact-details {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 65px 0;
  }
  .service-list {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field-wide {
    grid-column: auto;
  }
  .form-card {
    padding: 20px;
  }
  .footer-grid,
  .footer-bottom {
    display: block;
  }
  .footer-links {
    justify-content: flex-start;
    margin-top: 22px;
  }
  .footer-bottom span {
    display: block;
    margin-top: 8px;
  }
  .legal-main {
    padding: 55px 0;
  }
  .thank-card {
    padding: 32px 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
