/* ==========================================================================
   {{BUSINESS_NAME}} — Aesthetics Clinic Template
   Design system: editorial luxury medical-spa
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Palette — warm editorial neutrals */
  --bone:        #F7F3EE;   /* base background */
  --ivory:       #FCFAF6;   /* card / raised surfaces */
  --greige:      #EFE8DF;   /* alt sections */
  --sand:        #E5DBCE;   /* borders / dividers */
  --taupe:       #B8AB99;
  --ink:         #2A2521;   /* headings */
  --graphite:    #4A433C;   /* strong body */
  --muted:       #6E655B;   /* body text */
  --soft:        #8A8177;   /* captions */
  --brass:       #A6824E;   /* primary accent */
  --brass-deep:  #8A6A3C;
  --blush:       #CBA99A;   /* secondary accent */
  --blush-tint:  #EADFD8;

  /* Type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

  /* Spacing / structure */
  --container: 1240px;
  --container-narrow: 880px;
  --radius: 4px;
  --radius-lg: 10px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.6s;

  --shadow-sm: 0 2px 10px rgba(42, 37, 33, 0.05);
  --shadow-md: 0 18px 50px -20px rgba(42, 37, 33, 0.22);
  --shadow-lg: 0 40px 90px -40px rgba(42, 37, 33, 0.35);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--muted);
  background: var(--bone);
  line-height: 1.7;
  font-size: 17px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.h-display { font-size: clamp(2.8rem, 6.5vw, 5.4rem); font-weight: 400; line-height: 1.02; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
h4 { font-size: 1.25rem; }
p { margin: 0 0 1.1em; }
strong { color: var(--graphite); font-weight: 400; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 0.9em;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--graphite); line-height: 1.6; }
.muted { color: var(--soft); }
.serif-accent { font-family: var(--serif); font-style: italic; color: var(--brass); font-weight: 500; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3rem); }
.narrow { max-width: var(--container-narrow); }
.section { padding-block: clamp(4.5rem, 9vw, 8.5rem); }
.section-sm { padding-block: clamp(3rem, 6vw, 5rem); }
.bg-greige { background: var(--greige); }
.bg-ink { background: var(--ink); color: rgba(255,255,255,0.72); }
.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4 { color: #fff; }
.center { text-align: center; }
.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; }
.section-head .eyebrow { margin-bottom: 1.3rem; }
.section-head h2 { margin-bottom: 0.6rem; }

.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65em;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1.15em 2.2em;
  border-radius: 2px;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--brass); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { border: 1px solid var(--sand); color: var(--graphite); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); background: rgba(255,255,255,0.4); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--brass); color: #fff; transform: translateY(-2px); }
.btn-outline-light { border: 1px solid rgba(255,255,255,0.4); color: #fff; }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-block { width: 100%; }

.link-arrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  transition: gap 0.35s var(--ease), color 0.35s var(--ease);
}
.link-arrow svg { transition: transform 0.35s var(--ease); }
.link-arrow:hover { color: var(--brass); gap: 0.9em; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Announcement bar ---------- */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.topbar .container { display: flex; align-items: center; justify-content: center; gap: 1.6rem; min-height: 40px; text-align: center; }
.topbar a { color: #fff; transition: color 0.3s; }
.topbar a:hover { color: var(--blush); }
.topbar .sep { opacity: 0.3; }
.topbar .tb-hide { display: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 238, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.scrolled { background: rgba(252, 250, 246, 0.94); border-bottom-color: var(--sand); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 82px; gap: 2rem; }
.brand { display: flex; flex-direction: column; line-height: 1; z-index: 120; }
.brand .brand-name {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.brand .brand-sub {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 0.45em;
  padding-left: 0.1em;
}
.nav-links { display: flex; align-items: center; gap: 2.1rem; }
.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--graphite);
  position: relative;
  padding-block: 0.4rem;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--brass);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 1.2rem; }
.nav-phone { font-size: 0.82rem; letter-spacing: 0.04em; color: var(--ink); display: inline-flex; align-items: center; gap: 0.5em; white-space: nowrap; }
.nav-phone:hover { color: var(--brass); }
.nav-links .mobile-cta { display: none; }

.nav-toggle { display: none; width: 42px; height: 42px; flex-direction: column; justify-content: center; align-items: center; gap: 6px; z-index: 120; }
.nav-toggle span { display: block; width: 26px; height: 1.5px; background: var(--ink); transition: transform 0.4s var(--ease), opacity 0.3s; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(30,25,21,0.35) 0%, rgba(30,25,21,0.15) 40%, rgba(30,25,21,0.72) 100%);
}
.hero-inner { padding-block: clamp(3rem, 8vw, 6.5rem); max-width: 760px; }
.hero .eyebrow { color: #F0DDD2; margin-bottom: 1.6rem; text-shadow: 0 1px 12px rgba(0,0,0,0.45); }
.hero .eyebrow::before { opacity: 0.9; }
.hero h1 { color: #fff; margin-bottom: 1.4rem; text-shadow: 0 2px 30px rgba(0,0,0,0.25); }
.hero p { color: rgba(255,255,255,0.9); font-size: clamp(1.05rem, 1.7vw, 1.3rem); max-width: 560px; margin-bottom: 2.3rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
}
.scroll-cue .line { width: 1px; height: 46px; background: rgba(255,255,255,0.5); animation: scrollLine 2.4s var(--ease) infinite; transform-origin: top; }
@keyframes scrollLine { 0% { transform: scaleY(0); } 40% { transform: scaleY(1); } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* Page hero (interior pages) */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; z-index: -2; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(30,25,21,0.4), rgba(30,25,21,0.6)); }
.page-hero .eyebrow { color: var(--blush); justify-content: center; margin-bottom: 1.3rem; }
.page-hero h1 { color: #fff; margin-bottom: 0.8rem; }
.page-hero p { color: rgba(255,255,255,0.88); max-width: 560px; margin-inline: auto; }
.breadcrumb { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 1.4rem; }
.breadcrumb a:hover { color: #fff; }

/* ---------- Trust bar ---------- */
.trust-bar { border-bottom: 1px solid var(--sand); background: var(--ivory); }
.trust-bar .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem 2rem; padding-block: 1.8rem; }
.trust-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--graphite); flex: 1 1 auto; justify-content: center; }
.trust-item svg { color: var(--brass); flex-shrink: 0; }

/* ---------- Intro / split media ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.split-media.tall img { aspect-ratio: 4/5; }
.media-frame { position: relative; }
.media-frame::before {
  content: ""; position: absolute; inset: 14px -14px -14px 14px;
  border: 1px solid var(--brass); border-radius: var(--radius); z-index: -1; opacity: 0.5;
}
.stat-badge {
  position: absolute; background: var(--ivory); padding: 1.4rem 1.7rem; border-radius: var(--radius);
  box-shadow: var(--shadow-md); text-align: center;
}
.stat-badge .num { font-family: var(--serif); font-size: 2.4rem; color: var(--brass); line-height: 1; }
.stat-badge .lbl { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 0.4rem; }
.split-body .eyebrow { margin-bottom: 1.4rem; }
.split-body h2 { margin-bottom: 1.4rem; }

/* ---------- Treatment cards grid ---------- */
.card {
  background: var(--ivory);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s;
  display: flex; flex-direction: column;
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card-media { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.card:hover .card-media img { transform: scale(1.06); }
.card-num { position: absolute; top: 1rem; left: 1.1rem; font-family: var(--serif); font-size: 0.95rem; color: #fff; letter-spacing: 0.1em; text-shadow: 0 1px 8px rgba(0,0,0,0.4); }
.card-body { padding: 1.7rem 1.7rem 1.9rem; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: 0.6rem; font-size: 1.4rem; }
.card-body p { font-size: 0.95rem; margin-bottom: 1.3rem; color: var(--muted); }
.card-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--sand); }
.card-price { font-family: var(--serif); font-size: 1.15rem; color: var(--brass); }
.card-price span { font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--soft); display: block; }

/* Icon feature (pillars) */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
.pillar { text-align: left; }
.pillar-icon {
  width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--sand); color: var(--brass); margin-bottom: 1.4rem; transition: all 0.4s var(--ease);
}
.pillar:hover .pillar-icon { background: var(--brass); color: #fff; border-color: var(--brass); }
.pillar h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.pillar p { font-size: 0.92rem; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); counter-reset: step; }
.step { position: relative; padding-top: 2.5rem; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--serif); font-size: 3.2rem; color: var(--sand); position: absolute; top: -0.6rem; left: 0; line-height: 1;
}
.step h3 { font-size: 1.25rem; margin-bottom: 0.5rem; position: relative; }
.step p { font-size: 0.9rem; }

/* ---------- Detailed treatment blocks ---------- */
.treatment-block { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.treatment-block:not(:last-child) { border-bottom: 1px solid var(--sand); }
.treatment-block.reverse .tb-media { order: 2; }
.tb-media img { width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.tb-body .eyebrow { margin-bottom: 1rem; }
.tb-body h2 { margin-bottom: 1rem; font-size: clamp(1.8rem, 3vw, 2.5rem); }
.tb-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 1.5rem; margin: 1.6rem 0; }
.tb-benefits li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.92rem; color: var(--graphite); }
.tb-benefits svg { color: var(--brass); flex-shrink: 0; margin-top: 0.35em; }
.tb-meta { display: flex; align-items: center; gap: 1.8rem; flex-wrap: wrap; margin-top: 1.6rem; padding-top: 1.5rem; border-top: 1px solid var(--sand); }
.tb-price { font-family: var(--serif); font-size: 1.7rem; color: var(--ink); }
.tb-price small { font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--soft); display: block; margin-bottom: 0.1rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; color: #fff; text-align: center; }
.cta-band-bg { position: absolute; inset: 0; z-index: -2; }
.cta-band-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(rgba(30,25,21,0.72), rgba(30,25,21,0.82)); }
.cta-band .container { padding-block: clamp(4.5rem, 9vw, 7.5rem); }
.cta-band .eyebrow { color: var(--blush); justify-content: center; margin-bottom: 1.4rem; }
.cta-band h2 { color: #fff; margin-bottom: 1rem; max-width: 720px; margin-inline: auto; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 540px; margin-inline: auto 0; margin-inline: auto; margin-bottom: 2.2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Pricing ---------- */
.price-group { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.price-group-head { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--sand); }
.price-group-head h3 { font-size: 1.7rem; }
.price-group-head .tag { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass); }
.price-list { display: grid; gap: 0.2rem; }
.price-row { display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: baseline; padding: 1.05rem 0.4rem; border-bottom: 1px dashed var(--sand); transition: background 0.3s, padding 0.3s; }
.price-row:hover { background: var(--ivory); padding-inline: 1rem; }
.price-row .pr-name { color: var(--graphite); font-size: 1rem; }
.price-row .pr-name .pr-desc { display: block; font-size: 0.82rem; color: var(--soft); margin-top: 0.15rem; }
.price-row .pr-price { font-family: var(--serif); font-size: 1.35rem; color: var(--ink); white-space: nowrap; }
.price-row .pr-price small { font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--soft); margin-right: 0.3rem; }
.price-note { background: var(--greige); border-left: 2px solid var(--brass); padding: 1.5rem 1.8rem; border-radius: var(--radius); font-size: 0.92rem; }

/* ---------- FAQ ---------- */
.faq-list { border-top: 1px solid var(--sand); }
.faq-item { border-bottom: 1px solid var(--sand); }
.faq-q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.6rem 0.2rem; font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.5rem); color: var(--ink);
  transition: color 0.3s;
}
.faq-q:hover { color: var(--brass); }
.faq-icon { position: relative; width: 20px; height: 20px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--brass); transition: transform 0.4s var(--ease); }
.faq-icon::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; width: 1.5px; height: 100%; transform: translateX(-50%); }
.faq-item.open .faq-icon::after { transform: translateX(-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-a-inner { padding: 0 0.2rem 1.8rem; max-width: 780px; color: var(--muted); }
.faq-a-inner p:last-child { margin-bottom: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.contact-info { }
.info-block { display: flex; gap: 1.1rem; padding: 1.5rem 0; border-bottom: 1px solid var(--sand); }
.info-block:first-of-type { padding-top: 0; }
.info-ic { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--sand); display: flex; align-items: center; justify-content: center; color: var(--brass); flex-shrink: 0; }
.info-block h4 { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--soft); font-weight: 500; margin-bottom: 0.4rem; }
.info-block p, .info-block a { color: var(--graphite); font-size: 1.02rem; line-height: 1.5; }
.info-block a:hover { color: var(--brass); }

.form-card { background: var(--ivory); border: 1px solid var(--sand); border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 3rem); box-shadow: var(--shadow-sm); }
.form-card h3 { margin-bottom: 0.4rem; }
.form-card > p { font-size: 0.95rem; margin-bottom: 1.8rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--soft); margin-bottom: 0.5rem; }
.field label .req { color: var(--brass); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.95rem 1.05rem; font-family: var(--sans); font-size: 0.95rem; font-weight: 300; color: var(--ink);
  background: var(--bone); border: 1px solid var(--sand); border-radius: var(--radius); transition: border-color 0.3s, box-shadow 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(166,130,78,0.12); }
.field textarea { resize: vertical; min-height: 120px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A6824E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1.1rem center; padding-right: 2.5rem; }
.consent { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.82rem; color: var(--muted); margin-bottom: 1.5rem; }
.consent input { width: 18px; height: 18px; margin-top: 0.2rem; accent-color: var(--brass); flex-shrink: 0; }
.form-success { display: none; text-align: center; padding: 2rem 1rem; }
.form-success.show { display: block; animation: fadeUp 0.6s var(--ease); }
.form-success .check { width: 60px; height: 60px; border-radius: 50%; background: var(--blush-tint); color: var(--brass-deep); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; }
.form-note { font-size: 0.78rem; color: var(--soft); text-align: center; margin-top: 1rem; }

.map-embed { margin-top: 2.5rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--sand); }
.map-placeholder {
  aspect-ratio: 21/9; background: linear-gradient(135deg, var(--greige), var(--sand));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.8rem; text-align: center; color: var(--graphite); padding: 2rem;
  position: relative;
}
.map-placeholder svg { color: var(--brass); }
.map-placeholder .mp-addr { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); aspect-ratio: 1; transition: transform 0.6s var(--ease); }
.gallery a:hover img { transform: scale(1.04); }
.gallery .g-tall { grid-row: span 2; }
.gallery .g-tall img { aspect-ratio: auto; }

/* Values list */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem,3vw,2.5rem); }
.value-item { padding: 2rem; background: var(--ivory); border: 1px solid var(--sand); border-radius: var(--radius); transition: transform 0.4s var(--ease), box-shadow 0.4s; }
.value-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.value-item .v-num { font-family: var(--serif); font-size: 1rem; color: var(--brass); letter-spacing: 0.15em; margin-bottom: 1rem; }
.value-item h3 { font-size: 1.35rem; margin-bottom: 0.6rem; }
.value-item p { font-size: 0.92rem; margin-bottom: 0; }

/* Quote / statement */
.statement { text-align: center; max-width: 900px; margin-inline: auto; }
.statement p { font-family: var(--serif); font-size: clamp(1.6rem, 3.4vw, 2.6rem); line-height: 1.35; color: var(--ink); font-weight: 400; }
.statement p .serif-accent { font-style: italic; }
.statement .sig { margin-top: 1.8rem; font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.6); padding-top: clamp(3.5rem, 7vw, 6rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 2.5rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .brand-name { font-family: var(--serif); font-size: 1.7rem; color: #fff; letter-spacing: 0.04em; }
.footer-brand .brand-sub { font-size: 0.6rem; letter-spacing: 0.42em; text-transform: uppercase; color: var(--blush); margin-top: 0.5rem; }
.footer-brand p { margin-top: 1.3rem; font-size: 0.9rem; max-width: 300px; color: rgba(255,255,255,0.55); }
.footer-col h4 { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: #fff; font-weight: 500; margin-bottom: 1.3rem; }
.footer-col ul { display: grid; gap: 0.7rem; }
.footer-col a, .footer-col li { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color 0.3s; }
.footer-col a:hover { color: var(--blush); }
.footer-contact li { display: flex; gap: 0.7rem; align-items: flex-start; margin-bottom: 0.8rem; }
.footer-contact svg { color: var(--blush); flex-shrink: 0; margin-top: 0.25em; }
.social { display: flex; gap: 0.8rem; margin-top: 1.4rem; }
.social a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.18); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: all 0.35s var(--ease); }
.social a:hover { background: var(--brass); border-color: var(--brass); color: #fff; transform: translateY(-3px); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-block: 1.8rem; font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--blush); }
.footer-disclaimer { padding-bottom: 2.5rem; }
.footer-disclaimer p { font-size: 0.74rem; line-height: 1.6; color: rgba(255,255,255,0.38); max-width: 900px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .pillars, .steps { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .nav-links, .nav-cta .nav-phone, .nav-cta .desktop-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0; height: 100vh; height: 100dvh;
    flex-direction: column; justify-content: center; align-items: center; gap: 1.8rem; overflow-y: auto;
    background: var(--bone); padding: 5rem 2rem 2rem; transform: translateX(100%); transition: transform 0.5s var(--ease); z-index: 110;
  }
  .nav-open .nav-links { display: flex; transform: translateX(0); }
  .nav-links a { font-size: 1.5rem; font-family: var(--serif); letter-spacing: 0.02em; }
  .nav-links a::after { display: none; }
  .nav-links .mobile-cta { display: block; margin-top: 1rem; }
  .nav-links .mobile-cta a { font-family: var(--sans); font-size: 0.8rem; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split, .treatment-block, .contact-grid { grid-template-columns: 1fr; }
  .split.reverse .split-media, .treatment-block.reverse .tb-media { order: 0; }
  .split-body h2 { margin-top: 0; }
  .tb-benefits { grid-template-columns: 1fr 1fr; }
  .gallery .g-tall { grid-row: span 1; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .topbar .tb-hide { display: none; }
  .grid-3, .grid-4, .pillars, .steps, .values, .gallery { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .tb-benefits { grid-template-columns: 1fr; }
  .trust-bar .container { gap: 1rem; }
  .trust-item { flex: 1 1 45%; font-size: 0.68rem; }
  .btn { width: 100%; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .stat-badge { display: none; }
  .media-frame::before { display: none; }
  .price-row { grid-template-columns: 1fr; gap: 0.3rem; }
  .price-row .pr-price { justify-self: start; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.01ms !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
