/* ==========================================================================
   {{BUSINESS_NAME}} — Aesthetics Clinic Template · BOLD edition
   Design system: confident, editorial, results-led (not "calm spa")
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --ink:       #16110E;   /* warm near-black */
  --ink-2:     #221A15;   /* raised dark */
  --paper:     #F4EDE4;   /* warm cream base */
  --paper-2:   #EAE0D4;   /* alt light section */
  --card:      #FBF7F1;
  --line:      #DCD0C1;
  --rose:      #B23350;   /* primary accent — confident rose/crimson */
  --rose-deep: #8E2740;
  --rose-tint: #F0D9DC;
  --gold:      #C08A3E;   /* secondary warm accent, used sparingly */
  --body:      #4C433B;
  --soft:      #7C7064;
  --cream-dim: rgba(244,237,228,0.68);

  --serif: "Fraunces", Georgia, serif;
  --display: "Bricolage Grotesque", "Arial Black", sans-serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;

  --container: 1280px;
  --narrow: 900px;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);

  --shadow-md: 0 24px 60px -26px rgba(22,17,14,0.4);
  --shadow-lg: 0 50px 100px -50px rgba(22,17,14,0.55);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--body);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, picture { 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; }

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.h-display { font-size: clamp(3rem, 8vw, 7rem); font-weight: 800; letter-spacing: -0.035em; line-height: 0.94; }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.9rem); }
h4 { font-size: 1.2rem; }
p { margin: 0 0 1.1em; }
strong { color: var(--ink); font-weight: 600; }
em { font-family: var(--serif); font-style: italic; font-weight: 400; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; }
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::after { content: ""; width: 26px; height: 2px; background: currentColor; }
.eyebrow.plain::before, .eyebrow.plain::after { display: none; }

.lead { font-size: clamp(1.1rem, 1.7vw, 1.35rem); color: var(--ink); line-height: 1.5; font-weight: 400; }
.muted { color: var(--soft); }
.underline-rose { text-decoration: underline; text-decoration-color: var(--rose); text-underline-offset: 5px; text-decoration-thickness: 2px; }
.rose { color: var(--rose); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3.5rem); }
.narrow { max-width: var(--narrow); }
.section { padding-block: clamp(4.5rem, 9vw, 8.5rem); }
.section-sm { padding-block: clamp(3rem, 6vw, 5rem); }
.bg-alt { background: var(--paper-2); }
.bg-ink { background: var(--ink); color: var(--cream-dim); }
.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4 { color: #fff; }
.center { text-align: center; }
.section-head { max-width: 680px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; }
.section-head .eyebrow { margin-bottom: 1.4rem; }
.section-head h2 { margin-bottom: 0.7rem; }
.section-head p { font-size: 1.08rem; }

.grid { display: grid; gap: clamp(1.4rem, 2.6vw, 2.2rem); }
.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.6em;
  font-family: var(--sans); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.02em;
  padding: 1.1em 2em; border-radius: 2px; transition: all 0.35s var(--ease); white-space: nowrap; position: relative;
}
.btn-primary { background: var(--rose); color: #fff; }
.btn-primary:hover { background: var(--rose-deep); transform: translateY(-2px); box-shadow: 0 16px 34px -14px rgba(178,51,80,0.6); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-2); transform: translateY(-2px); }
.btn-ghost { border: 1.5px solid var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--rose); color: #fff; transform: translateY(-2px); }
.btn-outline-light { border: 1.5px solid rgba(255,255,255,0.5); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-block { width: 100%; }
.btn-lg { padding: 1.25em 2.4em; font-size: 0.85rem; }

.link-arrow {
  font-family: var(--sans); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.02em; color: var(--ink);
  display: inline-flex; align-items: center; gap: 0.5em; transition: gap 0.3s var(--ease), color 0.3s;
}
.link-arrow svg { transition: transform 0.3s var(--ease); }
.link-arrow:hover { color: var(--rose); gap: 0.8em; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Topbar ---------- */
.topbar { background: var(--ink); color: rgba(255,255,255,0.82); font-size: 0.74rem; font-weight: 500; letter-spacing: 0.04em; }
.topbar .container { display: flex; align-items: center; justify-content: center; gap: 1.4rem; min-height: 42px; text-align: center; }
.topbar strong { color: #fff; font-weight: 600; }
.topbar a { color: #fff; }
.topbar a:hover { color: var(--rose-tint); }
.topbar .sep { opacity: 0.35; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244, 237, 228, 0.85);
  backdrop-filter: saturate(150%) blur(14px); -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent; transition: all 0.4s var(--ease);
}
.site-header.scrolled { background: rgba(251, 247, 241, 0.96); border-bottom-color: var(--line); box-shadow: 0 6px 24px -18px rgba(22,17,14,0.4); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 80px; gap: 2rem; }
.brand { display: flex; flex-direction: column; line-height: 1; z-index: 120; }
.brand .brand-name { font-family: var(--display); font-size: 1.5rem; font-weight: 800; letter-spacing: -0.03em; color: var(--ink); }
.brand .brand-sub { font-family: var(--sans); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--rose); margin-top: 0.4em; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.85rem; font-weight: 500; color: var(--ink); position: relative; padding-block: 0.4rem; transition: color 0.3s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--rose); transition: width 0.3s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--rose); }
.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.85rem; font-weight: 600; color: var(--ink); display: inline-flex; align-items: center; gap: 0.5em; white-space: nowrap; }
.nav-phone:hover { color: var(--rose); }
.nav-links .mobile-cta { display: none; }
.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 6px; z-index: 120; }
.nav-toggle span { display: block; width: 28px; height: 2px; background: var(--ink); transition: transform 0.4s var(--ease), opacity 0.3s; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- HERO (asymmetric split) ---------- */
.hero { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: stretch; min-height: min(88vh, 860px); }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 4.5rem) clamp(3rem, 6vw, 5.5rem) clamp(1.25rem, 5vw, 3.5rem); }
.hero-copy .eyebrow { color: #fff; margin-bottom: 1.8rem; }
.hero-copy .eyebrow::before { background: var(--rose); }
.hero-copy h1 { color: #fff; margin-bottom: 1.5rem; }
.hero-copy h1 .rose { color: var(--rose); }
.hero-copy h1 em { color: var(--gold); }
.hero-copy p { color: rgba(255,255,255,0.78); font-size: clamp(1.05rem, 1.5vw, 1.25rem); max-width: 520px; margin-bottom: 2.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.4rem; }
.hero-proof { display: flex; gap: 2.2rem; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,0.14); padding-top: 1.8rem; }
.hero-proof .hp-num { font-family: var(--display); font-size: 1.9rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-proof .hp-num span { color: var(--rose); }
.hero-proof .hp-lbl { font-size: 0.72rem; letter-spacing: 0.06em; color: rgba(255,255,255,0.6); margin-top: 0.4rem; text-transform: uppercase; }
.hero-media { position: relative; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(22,17,14,0.55), transparent 30%); }
.hero-tag { position: absolute; left: clamp(1rem,3vw,2rem); bottom: clamp(1rem,3vw,2rem); background: var(--rose); color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.7em 1.1em; z-index: 2; }

/* ---------- Ticker ---------- */
.ticker { background: var(--rose); color: #fff; overflow: hidden; border-block: 1px solid var(--rose-deep); }
.ticker-track { display: flex; gap: 3rem; padding-block: 0.9rem; white-space: nowrap; width: max-content; animation: scrollx 32s linear infinite; }
.ticker-track span { font-family: var(--display); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.02em; display: inline-flex; align-items: center; gap: 3rem; text-transform: uppercase; }
.ticker-track span::after { content: "✦"; color: rgba(255,255,255,0.6); }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ---------- Page hero ---------- */
.page-hero { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.page-hero .container { position: relative; z-index: 2; padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; opacity: 0.32; }
.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(22,17,14,0.5), rgba(22,17,14,0.85)); }
.page-hero .eyebrow { color: #fff; margin-bottom: 1.2rem; }
.page-hero .eyebrow::before { background: var(--rose); }
.page-hero h1 { color: #fff; margin-bottom: 1rem; max-width: 16ch; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 620px; font-size: 1.1rem; }
.breadcrumb { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 1.4rem; }
.breadcrumb a:hover { color: #fff; }

/* ---------- Trust strip ---------- */
.trust-bar { border-bottom: 1px solid var(--line); background: var(--card); }
.trust-bar .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.2rem 2rem; padding-block: 1.6rem; }
.trust-item { display: flex; align-items: center; gap: 0.7rem; font-size: 0.8rem; font-weight: 600; color: var(--ink); flex: 1 1 auto; justify-content: center; }
.trust-item svg { color: var(--rose); flex-shrink: 0; }

/* ---------- 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%; object-fit: cover; }
.split-media.tall img { aspect-ratio: 4/5; }
.split-media .edge { position: absolute; top: 18px; left: 18px; width: 100%; height: 100%; border: 2px solid var(--rose); z-index: -1; }
.split-body .eyebrow { margin-bottom: 1.3rem; }
.split-body h2 { margin-bottom: 1.3rem; }
.stat-chip { position: absolute; background: var(--ink); color: #fff; padding: 1.2rem 1.5rem; }
.stat-chip .num { font-family: var(--display); font-size: 2.1rem; font-weight: 800; line-height: 1; color: #fff; }
.stat-chip .num span { color: var(--rose); }
.stat-chip .lbl { font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 0.35rem; }

/* ---------- Treatment cards ---------- */
.card { background: var(--card); border: 1px solid var(--line); overflow: hidden; transition: transform 0.45s var(--ease), box-shadow 0.45s; display: flex; flex-direction: column; height: 100%; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-media { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.card:hover .card-media img { transform: scale(1.07); }
.card-num { position: absolute; top: 0.9rem; left: 1rem; font-family: var(--display); font-weight: 800; font-size: 0.9rem; color: #fff; background: var(--rose); padding: 0.2em 0.6em; }
.card-body { padding: 1.6rem 1.6rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: 0.5rem; font-size: 1.4rem; }
.card-body p { font-size: 0.94rem; margin-bottom: 1.3rem; color: var(--body); }
.card-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--line); }
.card-price { font-family: var(--display); font-weight: 800; font-size: 1.2rem; color: var(--ink); }
.card-price span { font-family: var(--sans); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--soft); display: block; }

/* ---------- Before / After slider ---------- */
.ba-wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); }
.ba-slider {
  position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--ink);
  user-select: none; touch-action: pan-y; cursor: ew-resize; border: 1px solid var(--line);
}
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-slider .ba-after { clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); }
.ba-label { position: absolute; top: 0.8rem; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.35em 0.7em; z-index: 3; pointer-events: none; }
.ba-label.before { right: 0.8rem; background: rgba(22,17,14,0.7); color: #fff; }
.ba-label.after { left: 0.8rem; background: var(--rose); color: #fff; }
.ba-divider { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 2px; background: #fff; transform: translateX(-1px); z-index: 4; pointer-events: none; box-shadow: 0 0 0 1px rgba(0,0,0,0.15); }
.ba-handle { position: absolute; top: 50%; left: var(--pos, 50%); transform: translate(-50%, -50%); width: 44px; height: 44px; border-radius: 50%; background: #fff; z-index: 5; display: flex; align-items: center; justify-content: center; gap: 3px; box-shadow: var(--shadow-md); pointer-events: none; }
.ba-handle svg { color: var(--ink); }
.ba-caption { margin-top: 1rem; }
.ba-caption h4 { font-family: var(--display); font-weight: 700; font-size: 1.1rem; color: var(--ink); margin-bottom: 0.2rem; }
.ba-caption p { font-size: 0.85rem; color: var(--soft); margin: 0; }
.ba-disclaimer { margin-top: 2.2rem; font-size: 0.8rem; color: var(--soft); border-left: 2px solid var(--rose); padding-left: 1rem; max-width: 780px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.4rem, 3vw, 2.4rem); }
.step { border-top: 2px solid var(--ink); padding-top: 1.3rem; }
.step .step-n { font-family: var(--display); font-weight: 800; font-size: 0.85rem; color: var(--rose); letter-spacing: 0.05em; margin-bottom: 0.8rem; }
.step h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.9rem; margin: 0; }

/* ---------- Pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.4rem, 3vw, 2.4rem); }
.pillar-icon { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; background: var(--rose-tint); color: var(--rose-deep); margin-bottom: 1.3rem; }
.pillar h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.pillar p { font-size: 0.92rem; margin: 0; }

/* ---------- Treatment detail 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(--line); }
.treatment-block.reverse .tb-media { order: 2; }
.tb-media { position: relative; }
.tb-media img { width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.tb-media .tb-badge { position: absolute; top: 1rem; left: 1rem; background: var(--ink); color: #fff; font-family: var(--display); font-weight: 800; font-size: 0.8rem; padding: 0.4em 0.8em; letter-spacing: 0.03em; }
.tb-body .eyebrow { margin-bottom: 1rem; }
.tb-body h2 { margin-bottom: 1rem; font-size: clamp(1.9rem, 3vw, 2.6rem); }
.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.55rem; font-size: 0.92rem; color: var(--ink); font-weight: 500; }
.tb-benefits svg { color: var(--rose); flex-shrink: 0; margin-top: 0.3em; }
.tb-meta { display: flex; align-items: center; gap: 1.8rem; flex-wrap: wrap; margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.tb-price { font-family: var(--display); font-weight: 800; font-size: 1.8rem; color: var(--ink); }
.tb-price small { font-family: var(--sans); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--soft); display: block; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; color: #fff; background: var(--ink); }
.cta-band-bg { position: absolute; inset: 0; z-index: 0; opacity: 0.28; }
.cta-band-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band .container { position: relative; z-index: 2; padding-block: clamp(4.5rem, 9vw, 7rem); text-align: center; }
.cta-band .eyebrow { color: #fff; justify-content: center; margin-bottom: 1.3rem; }
.cta-band .eyebrow::before, .cta-band .eyebrow::after { background: var(--rose); }
.cta-band h2 { color: #fff; margin-bottom: 1rem; max-width: 780px; margin-inline: auto; }
.cta-band p { color: rgba(255,255,255,0.8); max-width: 560px; margin-inline: auto; margin-bottom: 2.2rem; font-size: 1.08rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Pricing ---------- */
.price-group { margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.price-group-head { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.2rem; padding-bottom: 0.9rem; border-bottom: 2px solid var(--ink); }
.price-group-head h3 { font-size: 1.6rem; }
.price-group-head .tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rose); margin-left: auto; }
.price-list { display: grid; }
.price-row { display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: baseline; padding: 1rem 0.4rem; border-bottom: 1px solid var(--line); transition: background 0.25s, padding 0.25s; }
.price-row:hover { background: var(--card); padding-inline: 0.9rem; }
.price-row .pr-name { color: var(--ink); font-size: 1rem; font-weight: 500; }
.price-row .pr-name .pr-desc { display: block; font-size: 0.82rem; color: var(--soft); margin-top: 0.15rem; font-weight: 400; }
.price-row .pr-price { font-family: var(--display); font-weight: 800; font-size: 1.3rem; color: var(--ink); white-space: nowrap; }
.price-row .pr-price small { font-family: var(--sans); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--soft); margin-right: 0.3rem; }
.price-note { background: var(--card); border-left: 3px solid var(--rose); padding: 1.4rem 1.7rem; font-size: 0.92rem; }

/* ---------- FAQ ---------- */
.faq-list { border-top: 2px solid var(--ink); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.5rem 0.2rem; font-family: var(--display); font-weight: 700; font-size: clamp(1.1rem, 1.9vw, 1.4rem); color: var(--ink); transition: color 0.3s; }
.faq-q:hover { color: var(--rose); }
.faq-icon { position: relative; width: 20px; height: 20px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--rose); transition: transform 0.4s var(--ease); }
.faq-icon::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; width: 2px; 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.6rem; max-width: 800px; }
.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; }
.info-block { display: flex; gap: 1.1rem; padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
.info-block:first-of-type { padding-top: 0; }
.info-ic { width: 46px; height: 46px; background: var(--rose-tint); display: flex; align-items: center; justify-content: center; color: var(--rose-deep); flex-shrink: 0; }
.info-block h4 { font-family: var(--sans); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--soft); margin-bottom: 0.35rem; }
.info-block p, .info-block a { color: var(--ink); font-size: 1.02rem; line-height: 1.5; }
.info-block a:hover { color: var(--rose); }
.form-card { background: var(--card); border: 1px solid var(--line); padding: clamp(1.8rem, 4vw, 3rem); }
.form-card h3 { margin-bottom: 0.4rem; }
.form-card > p { font-size: 0.95rem; margin-bottom: 1.7rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--soft); margin-bottom: 0.45rem; }
.field label .req { color: var(--rose); }
.field input, .field select, .field textarea { width: 100%; padding: 0.9rem 1rem; font-family: var(--sans); font-size: 0.95rem; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 2px; transition: border-color 0.3s, box-shadow 0.3s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--rose); box-shadow: 0 0 0 3px rgba(178,51,80,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='%23B23350' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.consent { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.82rem; color: var(--body); margin-bottom: 1.4rem; }
.consent input { width: 18px; height: 18px; margin-top: 0.15rem; accent-color: var(--rose); 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(--rose-tint); color: var(--rose-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.4rem; border: 1px solid var(--line); overflow: hidden; }
.map-placeholder { aspect-ratio: 21/9; background: var(--ink); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.7rem; text-align: center; color: rgba(255,255,255,0.75); padding: 2rem; }
.map-placeholder svg { color: var(--rose); }
.map-placeholder .mp-addr { font-family: var(--display); font-weight: 700; font-size: 1.2rem; color: #fff; }

/* ---------- Statement ---------- */
.statement { max-width: 960px; margin-inline: auto; text-align: center; }
.statement p { font-family: var(--display); font-weight: 700; font-size: clamp(1.7rem, 3.6vw, 3rem); line-height: 1.12; color: var(--ink); letter-spacing: -0.02em; }
.statement p .rose { color: var(--rose); }
.statement p em { color: var(--gold); }
.statement .sig { margin-top: 1.6rem; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose); }

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

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.62); 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(--display); font-weight: 800; font-size: 1.7rem; color: #fff; letter-spacing: -0.03em; }
.footer-brand .brand-sub { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--rose); margin-top: 0.5rem; }
.footer-brand p { margin-top: 1.3rem; font-size: 0.9rem; max-width: 320px; color: rgba(255,255,255,0.55); }
.footer-col h4 { font-family: var(--sans); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; 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(--rose-tint); }
.footer-contact li { display: flex; gap: 0.7rem; align-items: flex-start; margin-bottom: 0.8rem; }
.footer-contact svg { color: var(--rose); flex-shrink: 0; margin-top: 0.25em; }
.social { display: flex; gap: 0.7rem; margin-top: 1.4rem; }
.social a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: all 0.3s var(--ease); }
.social a:hover { background: var(--rose); border-color: var(--rose); color: #fff; transform: translateY(-3px); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-block: 1.7rem; font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--rose-tint); }
.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: 940px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
@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); }
  .ba-wrap { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
}
@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.6rem; overflow-y: auto; background: var(--paper); padding: 5rem 2rem 2rem; transform: translateX(100%); transition: transform 0.5s var(--ease); z-index: 110; }
  .nav-open .nav-links { transform: translateX(0); }
  .nav-links a { font-size: 1.7rem; font-family: var(--display); font-weight: 700; }
  .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.82rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 52vh; order: -1; }
  .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; }
  .gallery { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .topbar .tb-hide { display: none; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid-3, .grid-4, .pillars, .steps, .gallery { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .tb-benefits { grid-template-columns: 1fr; }
  .trust-item { flex: 1 1 45%; font-size: 0.72rem; }
  .btn { width: 100%; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .hero-proof { gap: 1.4rem; }
  .price-row { grid-template-columns: 1fr; gap: 0.3rem; }
  .price-row .pr-price { justify-self: start; }
  .stat-chip { display: none; }
  .split-media .edge { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .ticker-track { animation: none; }
}
