/* =========================================================
   Gold Aesthetics — Design Tokens
   ========================================================= */
:root {
  --cream:        #FBF7F0;
  --cream-deep:   #ECDFC4;
  --cream-line:   #DFCEA9;
  --ink:          #2A2520;
  --ink-soft:     #6B6255;
  --ink-faint:    #9C9284;
  --gold:         #B08A4E;
  --gold-deep:    #8C6A38;
  --gold-pale:    #E8D9BE;
  --gold-wash:    #F7EFE0;
  --white:        #FFFFFF;

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body:    "Jost", "Helvetica Neue", Arial, sans-serif;

  --container: 1180px;
  --container-narrow: 780px;

  --radius-pill: 999px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --shadow-soft: 0 20px 60px -25px rgba(42, 37, 32, 0.25);
  --shadow-card: 0 10px 40px -20px rgba(42, 37, 32, 0.35);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* =========================================================
   Reset
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 500; color: var(--ink); }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

::selection { background: var(--gold-pale); color: var(--ink); }

/* =========================================================
   Typography helpers
   ========================================================= */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.italic { font-style: italic; color: var(--gold-deep); font-weight: 400; }

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.05; letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4.2vw, 3rem); line-height: 1.12; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); line-height: 1.3; }
.lede {
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 46ch;
}

/* =========================================================
   Layout
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 28px;
}
section { position: relative; }
.section { padding: clamp(64px, 10vw, 128px) 0; }
.section-tight { padding: clamp(48px, 7vw, 84px) 0; }
.section-alt {
  background: var(--cream-deep);
  box-shadow: inset 0 1px 0 rgba(42,37,32,0.06), inset 0 -1px 0 rgba(42,37,32,0.06);
}
.section-white { background: var(--white); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

.divider {
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin: 22px auto;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 34px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all .35s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: var(--ink);
  color: var(--cream);
}
.btn-gold:hover { background: var(--gold-deep); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-outline-light:hover { background: var(--white); color: var(--ink); }
.btn-block { width: 100%; }

/* =========================================================
   Nav
   ========================================================= */
.nav-wrap {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  justify-content: center;
  padding: 0 16px;
}
.nav {
  width: 100%;
  max-width: var(--container);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(251, 247, 240, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(176, 138, 78, 0.18);
  border-radius: var(--radius-pill);
  padding: 12px 14px 12px 26px;
  box-shadow: var(--shadow-soft);
  transition: background .3s var(--ease);
}
.brand {
  font-family: var(--font-display);
  font-size: 1.32rem;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand .mark { width: 26px; height: 26px; color: var(--gold); flex: none; }
.brand strong { font-weight: 600; }
.brand em { font-style: italic; color: var(--gold-deep); font-weight: 400; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color .25s var(--ease);
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--gold);
}

.nav-links .dropdown { position: relative; display: flex; align-items: center; }
.dropdown-trigger { display: inline-flex; align-items: center; gap: 5px; }
.dropdown-trigger .caret { width: 9px; height: 9px; transition: transform .25s var(--ease); }
.nav-links .dropdown:hover .caret { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 10px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  z-index: 30;
}
.nav-links .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ink-soft);
}
.dropdown-menu a:hover { background: var(--cream-deep); color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 13px 26px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ink);
}
.nav-toggle svg { width: 22px; height: 22px; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  padding: 110px 32px 40px;
  transform: translateY(-100%);
  transition: transform .45s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.1rem;
  padding: 14px 0;
  border-bottom: 1px solid var(--cream-line);
}
.mobile-menu .btn { margin-top: 28px; }
.mobile-close {
  position: fixed;
  top: 24px;
  right: 30px;
  z-index: 601;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.mobile-close svg { width: 22px; height: 22px; }
.mobile-menu.open ~ .mobile-close,
.mobile-close.open { display: flex; }

body.menu-open { overflow: hidden; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 90px;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(160deg, var(--gold-wash), var(--cream-deep) 60%, var(--gold-pale));
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(20,17,14,0.72) 0%, rgba(20,17,14,0.42) 48%, rgba(20,17,14,0.12) 78%),
    linear-gradient(0deg, rgba(20,17,14,0.4) 0%, rgba(20,17,14,0) 40%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.hero-content .eyebrow { color: var(--gold-pale); margin-bottom: 22px; }
.hero-content .eyebrow::before { background: var(--gold-pale); }
.hero-content h1 { color: var(--white); margin-bottom: 24px; }
.hero-content h1 .italic { color: var(--gold-pale); }
.hero-content .lede { color: rgba(255,255,255,0.82); margin-bottom: 38px; max-width: 48ch; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.22);
}
.hero-stats div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--white);
}
.hero-stats div span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.hero-badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 3;
  background: rgba(251,247,240,0.92);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 240px;
}
.hero-badge svg { width: 26px; height: 26px; color: var(--gold); flex: none; }
.hero-badge span { font-size: 0.78rem; color: var(--ink-soft); line-height: 1.4; }

/* =========================================================
   Marquee strip
   ========================================================= */
.strip {
  border-top: 1px solid var(--cream-line);
  border-bottom: 1px solid var(--cream-line);
  padding: 22px 0;
  overflow: hidden;
}
.strip-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.strip-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-faint);
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   Logo strip
   ========================================================= */
.logo-strip {
  background: var(--white);
  border-top: 1px solid var(--cream-line);
  border-bottom: 1px solid var(--cream-line);
  padding: 36px 0;
}
.logo-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.logo-strip-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-right: 4px;
}
.brand-logo {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.brand-logo:hover { opacity: 1; transform: translateY(-1px); }
@media (max-width: 640px) {
  .logo-strip-inner { gap: 28px; }
  .brand-logo { height: 26px; max-width: 100px; }
}

/* =========================================================
   Cards / Services
   ========================================================= */
.service-card {
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-md);
  padding: 38px 32px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--gold-pale);
}
.service-card .icon {
  width: 46px; height: 46px;
  color: var(--gold);
  margin-bottom: 22px;
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--ink-soft); font-size: 0.96rem; }
.service-card .learn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.service-card .learn svg { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.service-card:hover .learn svg { transform: translateX(4px); }

.pill-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: var(--gold-wash);
  color: var(--gold-deep);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 14px;
}

/* =========================================================
   Feature rows (about / how it works)
   ========================================================= */
.feature-row {
  display: flex;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--cream-line);
}
.feature-row:first-child { padding-top: 0; }
.feature-row .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold);
  width: 44px;
  flex: none;
}
.feature-row h3 { margin-bottom: 6px; }
.feature-row p { color: var(--ink-soft); font-size: 0.96rem; }

/* =========================================================
   Testimonial
   ========================================================= */
.quote-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  box-shadow: var(--shadow-card);
  text-align: center;
}
.quote-card svg { width: 34px; height: 34px; color: var(--gold-pale); margin: 0 auto 20px; }
.quote-card p.quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  line-height: 1.5;
  color: var(--ink);
  max-width: 62ch;
  margin: 0 auto 20px;
}
.quote-card .who { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(48px, 8vw, 90px);
  text-align: center;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 50% 0%, rgba(176,138,78,0.35), transparent 70%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--cream); }
.cta-band .lede { color: rgba(251,247,240,0.72); margin: 18px auto 34px; }
.cta-band .eyebrow { color: var(--gold-pale); }
.cta-band .eyebrow::before { background: var(--gold-pale); }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   Footer
   ========================================================= */
footer {
  background: var(--cream-deep);
  padding: 72px 0 28px;
  border-top: 1px solid var(--cream-line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr 0.95fr 1fr;
  gap: 32px;
  padding-bottom: 48px;
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { color: var(--ink-soft); font-size: 0.92rem; max-width: 30ch; }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--cream-line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s var(--ease);
}
.footer-social a:hover { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.footer-social svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 20px;
}
.footer-col li { margin-bottom: 12px; }
.footer-col a, .footer-col span {
  color: var(--ink-soft);
  font-size: 0.92rem;
  transition: color .25s var(--ease);
}
.footer-col a:hover { color: var(--gold-deep); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  border-top: 1px solid var(--cream-line);
  font-size: 0.78rem;
  color: var(--ink-faint);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a:hover { color: var(--gold-deep); }

/* =========================================================
   Page hero (inner pages)
   ========================================================= */
.page-hero {
  padding: 170px 0 80px;
  text-align: center;
  position: relative;
}
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { margin: 18px auto 0; max-width: 16ch; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.76rem;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
}
.breadcrumb a:hover { color: var(--gold-deep); }

/* Treatment page full-width photo hero */
.treatment-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 60px;
}
.treatment-hero .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(160deg, var(--gold-wash), var(--cream-deep) 60%, var(--gold-pale));
}
.treatment-hero .hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.treatment-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(20,17,14,0.75) 0%, rgba(20,17,14,0.45) 45%, rgba(20,17,14,0.1) 75%),
    linear-gradient(0deg, rgba(20,17,14,0.45) 0%, rgba(20,17,14,0) 45%);
}
.treatment-hero .container { position: relative; z-index: 2; }
.treatment-hero-copy { max-width: 640px; }
.treatment-hero-copy .eyebrow { justify-content: flex-start; color: var(--gold-pale); }
.treatment-hero-copy .eyebrow::before { background: var(--gold-pale); }
.treatment-hero-copy h1 { text-align: left; margin: 18px 0 0; max-width: none; color: var(--white); }
.treatment-hero-copy h1 .italic { color: var(--gold-pale); }
.treatment-hero-copy .lede { text-align: left; margin: 18px 0 0; max-width: 50ch; color: rgba(255,255,255,0.85); }
.treatment-hero-copy .breadcrumb { justify-content: flex-start; margin: 28px 0 0; color: rgba(255,255,255,0.65); }
.treatment-hero-copy .breadcrumb a { color: rgba(255,255,255,0.65); }
.treatment-hero-copy .breadcrumb a:hover { color: var(--white); }
@media (max-width: 640px) {
  .treatment-hero { min-height: auto; padding: 130px 0 50px; }
  .treatment-hero-copy .eyebrow, .treatment-hero-copy .breadcrumb { justify-content: center; }
  .treatment-hero-copy h1, .treatment-hero-copy .lede { text-align: center; margin-left: auto; margin-right: auto; }
}

/* Comparison table */
.compare-wrap { overflow-x: auto; margin-top: 32px; -webkit-overflow-scrolling: touch; }
.compare-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.compare-table th, .compare-table td {
  padding: 16px 22px;
  text-align: left;
  border-bottom: 1px solid var(--cream-line);
  font-size: 0.92rem;
}
.compare-table thead th {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
}
.compare-table tbody tr:last-child th, .compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody th { font-weight: 500; color: var(--ink); background: var(--cream-deep); white-space: nowrap; }
.compare-table td { color: var(--ink-soft); }

/* =========================================================
   About page specifics
   ========================================================= */
.portrait-frame {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, var(--gold-wash), var(--cream-deep) 55%, var(--gold-pale));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.portrait-frame svg {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 46%;
  color: var(--gold-deep);
  opacity: 0.8;
}
.portrait-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portrait-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: rgba(251,247,240,0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}
.portrait-caption strong { display: block; font-family: var(--font-display); font-size: 1.1rem; }
.portrait-caption span { font-size: 0.78rem; color: var(--ink-soft); }

.creds-list { margin-top: 26px; }
.creds-list li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-line);
  font-size: 0.94rem;
  color: var(--ink-soft);
}
.creds-list li svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: 2px; }
.creds-list li strong { color: var(--ink); font-weight: 500; }

/* =========================================================
   Services page specifics
   ========================================================= */
.service-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  padding: clamp(56px, 8vw, 96px) 0;
  border-bottom: 1px solid var(--cream-line);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { grid-template-columns: 1.1fr 0.9fr; }
.service-detail.reverse .service-visual { order: 2; }
.service-visual {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--gold-wash), var(--cream-deep));
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.service-visual svg {
  position: absolute; inset: 0; margin: auto;
  width: 40%; color: var(--gold-deep); opacity: 0.75;
}
.service-list { margin-top: 22px; }
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.service-list li svg { width: 16px; height: 16px; color: var(--gold); margin-top: 4px; flex: none; }
.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ink);
}
.price-tag span { font-family: var(--font-body); font-size: 0.76rem; color: var(--ink-faint); letter-spacing: 0.06em; text-transform: uppercase; }

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--gold-pale);
}
.area-card .units {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--gold-wash);
  color: var(--gold-deep);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 12px;
}
.area-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.area-card p {
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.faq-item {
  border-bottom: 1px solid var(--cream-line);
  padding: 22px 0;
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  width: 22px; height: 22px;
  flex: none;
  color: var(--gold);
  position: relative;
}
.faq-item summary .plus::before, .faq-item summary .plus::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform .3s var(--ease);
}
.faq-item summary .plus::before { left: 0; top: 50%; width: 100%; height: 1px; }
.faq-item summary .plus::after { top: 0; left: 50%; width: 1px; height: 100%; }
.faq-item[open] summary .plus::after { transform: rotate(90deg); opacity: 0; }
.faq-item p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-top: 14px;
  max-width: 68ch;
}

/* =========================================================
   Contact page
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 6vw, 72px);
}
.contact-info-card {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 48px);
}
.contact-info-card h3 { color: var(--cream); }
.contact-row {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(251,247,240,0.14);
}
.contact-row:last-of-type { border-bottom: none; }
.contact-row svg { width: 20px; height: 20px; color: var(--gold-pale); flex: none; margin-top: 3px; }
.contact-row strong { display: block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-pale); margin-bottom: 4px; }
.contact-row span, .contact-row a { color: rgba(251,247,240,0.85); font-size: 0.95rem; }
.contact-row a:hover { color: var(--white); }

.form-card {
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 48px);
  box-shadow: var(--shadow-card);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--cream-line);
  background: var(--cream);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.82rem; color: var(--ink-faint); margin-top: 16px; }
.form-success {
  display: none;
  background: var(--gold-wash);
  border: 1px solid var(--gold-pale);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 0.92rem;
  color: var(--gold-deep);
  margin-top: 18px;
}
.form-success.show { display: block; }

/* =========================================================
   Map / service area
   ========================================================= */
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.area-list li {
  border: 1px solid var(--cream-line);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  color: var(--ink-soft);
}

/* =========================================================
   Reveal animation
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { gap: 0; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }

  .hero { min-height: auto; padding: 130px 0 70px; }
  .hero-content { max-width: 100%; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .service-detail, .service-detail.reverse { grid-template-columns: 1fr; }
  .service-detail.reverse .service-visual { order: -1; }
  .service-visual { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 640px) {
  .container, .container-narrow { padding: 0 20px; }
  .nav { padding: 10px 10px 10px 20px; }
  .brand { font-size: 1.12rem; }
  .hero { padding: 128px 0 64px; }
  .hero-stats { gap: 22px; flex-wrap: wrap; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .area-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .cta-actions .btn, .hero-actions .btn { width: 100%; }
  .hero-actions, .cta-actions { flex-direction: column; }
  .page-hero { padding: 140px 0 56px; }
}
