@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600&display=swap');
/* =====================================================
   CymbolizeBeauty — Editorial Redesign v2
   Colors: Ink #0A0A0A | Teal #132E38 | Gold #C9A96E | Cream #FAF7F2
   Fonts: Bodoni Moda (display) | DM Sans (body)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;0,6..96,600;0,6..96,700;0,6..96,800;0,6..96,900;1,6..96,400;1,6..96,500;1,6..96,600;1,6..96,700;1,6..96,800;1,6..96,900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,340;0,9..144,400;0,9..144,500;1,9..144,300;1,9..144,400&display=swap');

/* ---- CSS Variables ---- */
:root {
  --ink:       #032B29;
  --ink-2:     #06403D;
  --teal:      #066F6C;
  --teal-2:    #0A8581;
  --gold:      #C9A96E;
  --gold-2:    #e2c898;
  --cream:     #FAF7F2;
  --cream-2:   #F1ECE3;
  --text-dark: #1a1a1a;
  --text-mid:  #555555;
  --text-light:#8a8a8a;

  --f-display: 'Fraunces', 'Times New Roman', serif;
  --f-body:    'DM Sans', system-ui, sans-serif;

  --max-w: 1320px;
  --pad:   96px 40px;
  --pad-sm: 72px 32px;

  --ease: cubic-bezier(.16,1,.3,1);
  --t:    .5s var(--ease);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--f-body);
  font-weight: 400;
  color: var(--text-dark);
  background: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--f-body); color: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--cream);
}
h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.8rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 2rem); }
h4 { font-size: clamp(1.05rem, 1.6vw, 1.3rem); }
p  { font-size: 1.05rem; line-height: 1.82; }

.display-italic {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.03em;
}
.display-italic em { font-style: italic; color: inherit; }

/* Section markers — tracked sans index (v8 system) */
.label {
  font-family: var(--f-body);
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.38);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: rgba(201,169,110,0.5);
  display: inline-block;
}
.label.center { justify-content: center; }
.label.no-line::before { display: none; }

/* ---- Film grain overlay ---- */
.grain {
  position: relative;
}
.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.35 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.12;
  mix-blend-mode: overlay;
  z-index: 1;
}
.grain > * { position: relative; z-index: 2; }

/* ---- Layout ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
.section { padding: var(--pad); position: relative; overflow: hidden; }

.sec-ink    { background: var(--ink);    color: var(--cream); }
.sec-ink-2  { background: var(--ink-2);  color: var(--cream); }
.sec-teal   { background: var(--teal);   color: var(--cream); }
.sec-cream  { background: var(--cream);  color: var(--text-dark); }
.sec-cream .label { color: var(--teal); }
.sec-cream .label::before { background: var(--teal); }
.sec-cream h1, .sec-cream h2, .sec-cream h3, .sec-cream h4 { color: var(--ink); }
.sec-cream .display-italic em { color: var(--teal); }

/* Divider rules */
.rule {
  height: 1px;
  background: currentColor;
  opacity: 0.15;
  width: 100%;
  border: 0;
}
.rule-gold { background: var(--gold); opacity: 0.35; }
.rule-short { max-width: 60px; height: 1px; background: var(--gold); opacity: 1; }

/* ─── Section brand divider (unique ornament between sections) ─── */
.sec-divider {
  padding: 26px 40px;
  text-align: center;
  background: var(--ink);
  position: relative;
  z-index: 3;
}
.sec-divider::before {
  content: '◆  CYMBOLIZE  ◆';
  font-family: var(--f-body);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.65em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.4;
  display: block;
}
.sec-divider.on-cream { background: var(--cream); }
.sec-divider.on-cream::before { color: var(--teal); opacity: 0.28; }
.sec-divider.on-teal { background: var(--teal); }
.sec-divider.on-teal::before { color: var(--gold); opacity: 0.45; }

/* ---- Ghost letterforms (signature element) ---- */
/* Ghost letters removed — replaced by .sec-divider brand ornament */
.ghost-letter { display: none !important; }

/* ---- Buttons ---- */
/* ─── Buttons — unique editorial style ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 20px 40px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
  position: relative;
}
/* No arrow — clean editorial */
.btn::after { display: none; }

/* Primary: solid gold fill — luxury, clean, no gimmick lines */
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
  font-weight: 700;
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

/* Outline: refined gold border */
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.5);
  letter-spacing: 0.32em;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

/* Ink: for light (cream) sections */
.btn-ink {
  background: var(--ink);
  color: var(--cream);
  border: 1px solid rgba(3,43,41,0.8);
}
.btn-ink:hover {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-lg { padding: 22px 52px; font-size: 0.74rem; }

/* ---- Navigation ---- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  transition: background var(--t), backdrop-filter var(--t);
}
#navbar.scrolled {
  background: rgba(3,43,41,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,169,110,0.14);
}
.nav-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  transition: padding var(--t);
}
#navbar.scrolled .nav-inner { padding: 10px 0; }

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 172px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: height var(--t);
}
#navbar.scrolled .nav-logo-img { height: 124px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color var(--t);
  position: relative;
  padding: 6px 0;
}
.nav-links a:not(.btn):hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:not(.btn)::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--t);
}
.nav-links a:not(.btn):hover::before { width: 100%; }
.nav-links .btn { padding: 14px 24px; font-size: 0.7rem; }
.nav-links .btn::after { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 28px; height: 1px;
  background: var(--cream);
  transition: var(--t);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ─────────────────────────────────────────────
   HERO (Homepage)
───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 140px 40px 60px;
  display: flex;
  flex-direction: column;
}
.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero-main { display: flex; flex-direction: column; justify-content: center; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.hero-eyebrow-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold);
}
.hero-eyebrow-text {
  font-family: var(--f-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.55);
}
.hero-eyebrow-line {
  flex: 1;
  height: 1px;
  background: rgba(201,169,110,0.3);
  max-width: 200px;
}

.hero-h1 {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 40px;
}
.hero-h1 span { display: block; }
.hero-h1 em { color: var(--gold); font-style: italic; }
.hero-h1 .indent { padding-left: 12%; }

.hero-sub {
  max-width: 480px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(250,247,242,0.65);
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-side {
  border-left: 1px solid rgba(201,169,110,0.18);
  padding: 40px 0 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}
.hero-side-block h5 {
  font-family: var(--f-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.4);
  margin-bottom: 12px;
}
.hero-side-block p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--gold-2);
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.hero-side-block .stat {
  font-family: var(--f-display);
  font-size: 3rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 4px;
}

/* Marquee ticker */
.marquee {
  background: var(--ink-2);
  border-top: 1px solid rgba(201,169,110,0.14);
  border-bottom: 1px solid rgba(201,169,110,0.14);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 45s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.65);
  display: flex;
  align-items: center;
  gap: 60px;
}
.marquee-item::after {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────
   MISSION STATEMENT
───────────────────────────────────────────── */
.statement {
  background: var(--cream);
  padding: 140px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.statement-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.statement-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.8rem, 3.8vw, 3.4rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.statement-quote em { color: var(--teal); font-style: italic; }
.statement-mark {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 8rem;
  color: var(--gold);
  line-height: 0.5;
  height: 60px;
  margin-bottom: 30px;
}
.statement-attr {
  margin-top: 40px;
  font-family: var(--f-body);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(20,20,20,0.55);
}

/* ─────────────────────────────────────────────
   SECTION HEADER (editorial)
───────────────────────────────────────────── */
.sec-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}
.sec-head-num {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.9;
}
.sec-head-num .slash { opacity: 0.35; margin: 0 8px; }
.sec-head-title h2 {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
}
.sec-head-title p {
  margin-top: 20px;
  max-width: 600px;
  color: rgba(250,247,242,0.65);
  font-size: 1.02rem;
}
.sec-cream .sec-head-title p { color: var(--text-mid); }

/* ─────────────────────────────────────────────
   CONDITIONS LIST (editorial rows)
───────────────────────────────────────────── */
.conditions {
  border-top: 1px solid rgba(201,169,110,0.2);
}
.condition {
  display: grid;
  grid-template-columns: 80px 1fr 2fr;
  gap: 40px;
  padding: 44px 0;
  border-bottom: 1px solid rgba(201,169,110,0.14);
  align-items: start;
  transition: padding var(--t), background var(--t);
}
.condition:hover { padding-left: 20px; background: rgba(201,169,110,0.03); }
.condition-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  padding-top: 6px;
}
.condition-name {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--cream);
}
.condition-desc {
  font-size: 0.96rem;
  line-height: 1.85;
  color: rgba(250,247,242,0.68);
}
@media (max-width: 900px) {
  .condition {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto;
    gap: 12px 20px;
  }
  .condition-desc { grid-column: 1 / -1; }
}

/* ─────────────────────────────────────────────
   FEATURE (Mesh Integration)
───────────────────────────────────────────── */
.feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.feature-display {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.6rem, 5.5vw, 5.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 20px;
}
.feature-display em { color: var(--gold); font-style: italic; }
.feature-badge {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 8px 18px;
  border: 1px solid var(--gold);
  margin-bottom: 30px;
}
.feature-body p { color: rgba(250,247,242,0.72); margin-bottom: 20px; line-height: 1.85; }
.feature-body { max-width: 540px; }
@media (max-width: 900px) {
  .feature { grid-template-columns: 1fr; gap: 40px; }
}

/* ─────────────────────────────────────────────
   SERVICES LIST (editorial)
───────────────────────────────────────────── */
.services-list {
  border-top: 1px solid rgba(20,20,20,0.15);
}
.service {
  display: grid;
  grid-template-columns: 80px 1.2fr 2.2fr 100px;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(20,20,20,0.12);
  align-items: start;
  transition: padding var(--t), background var(--t);
  position: relative;
}
.service:hover { padding-left: 20px; background: rgba(6,111,108,0.03); }
.service-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  padding-top: 6px;
}
.service-name {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.service-desc {
  font-size: 0.94rem;
  color: var(--text-mid);
  line-height: 1.8;
}
.service-link {
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  padding-top: 6px;
  white-space: nowrap;
  transition: color var(--t), transform var(--t);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-link:hover { color: var(--gold); }
.service-link::after { content: '→'; transition: transform var(--t); }
.service-link:hover::after { transform: translateX(3px); }
@media (max-width: 900px) {
  .service {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto auto;
    gap: 8px 16px;
  }
  .service-desc, .service-link { grid-column: 1 / -1; }
  .service-link { padding-top: 12px; }
}

/* ─────────────────────────────────────────────
   PROCESS (three-column)
───────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(201,169,110,0.18);
  border-bottom: 1px solid rgba(201,169,110,0.18);
  position: relative;
  z-index: 2;
}
.process-step {
  padding: 60px 40px;
  border-right: 1px solid rgba(201,169,110,0.14);
  position: relative;
}
.process-step:last-child { border-right: none; }
.process-num {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.9;
  margin-bottom: 30px;
  letter-spacing: -0.04em;
}
.process-step h4 {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  font-size: 1.6rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.process-step p {
  color: rgba(250,247,242,0.65);
  font-size: 0.94rem;
  line-height: 1.85;
}
@media (max-width: 900px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid rgba(201,169,110,0.14); }
  .process-step:last-child { border-bottom: none; }
}

/* ─── Hero background image mobile crop ─── */
@media (max-width: 768px) {
  .hero-bg-img { object-position: 25% 15% !important; }
}

/* ─────────────────────────────────────────────
   JOURNEY MAP (homepage roadmap graphic)
───────────────────────────────────────────── */
.journey-map { margin-top: 80px; }
.journey-road-wrap { position: relative; z-index: 1; margin-bottom: -4px; }
.journey-road-svg { width: 100%; height: auto; display: block; overflow: visible; }

.journey-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(201,169,110,0.1);
}
.jc {
  position: relative;
  padding: 40px 32px 44px;
  overflow: hidden;
}
.jc:not(:last-child) { border-right: 1px solid rgba(201,169,110,0.06); }

.jc-roman {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(5rem, 8vw, 8.5rem);
  color: rgba(201,169,110,0.045);
  line-height: 0.85;
  position: absolute;
  top: 8px;
  right: 10px;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.02em;
  user-select: none;
}
.jc-title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
  letter-spacing: -0.01em;
}
.jc p {
  color: rgba(250,247,242,.58);
  font-size: 0.9rem;
  line-height: 1.82;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) {
  .journey-road-wrap { display: none; }
  .journey-cols {
    grid-template-columns: 1fr;
    border-top: none;
    margin-top: 48px;
    padding-left: 28px;
    border-left: 1px solid rgba(201,169,110,0.2);
  }
  .jc {
    border-right: none !important;
    padding: 0 0 44px 32px;
    overflow: visible;
  }
  .jc::before {
    content: attr(data-step);
    position: absolute;
    left: -17px;
    top: 2px;
    width: 32px;
    height: 32px;
    background: var(--ink);
    border: 1px solid rgba(201,169,110,0.65);
    color: #C9A96E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    font-family: var(--f-body);
  }
  .jc-roman { font-size: 4.5rem; top: -6px; right: 0; }
}
@media (max-width: 640px) {
  .journey-map { margin-top: 56px; }
  .journey-cols { padding-left: 20px; }
  .jc { padding: 0 0 36px 24px; }
  .jc::before { left: -14px; width: 26px; height: 26px; font-size: 0.58rem; }
}

/* ─────────────────────────────────────────────
   OVERVIEW STRIP
───────────────────────────────────────────── */
.overview-section { padding: 72px 40px; }
.overview-intro {
  font-family: var(--f-display);
  font-size: clamp(1.05rem, 1.7vw, 1.38rem);
  line-height: 1.75;
  color: var(--ink);
  max-width: 780px;
  margin: 0 auto 44px;
}
.overview-intro em { font-style: italic; color: var(--teal); font-weight: 500; }
.overview-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.ov-pill {
  font-family: var(--f-body);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid rgba(6,111,108,0.22);
  padding: 10px 22px;
  border-radius: 100px;
  white-space: nowrap;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.ov-pill:hover {
  background: var(--teal);
  color: var(--cream);
  border-color: var(--teal);
}
@media (max-width: 640px) {
  .overview-section { padding: 52px 20px; }
  .ov-pill { font-size: 0.6rem; padding: 9px 16px; }
}

/* ─────────────────────────────────────────────
   STORY (two-column)
───────────────────────────────────────────── */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.story-visual {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--teal), var(--ink));
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,169,110,0.2);
}
.story-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(201,169,110,0.15), transparent 60%);
}
.story-visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  z-index: 2;
  padding: 40px;
  text-align: center;
}
.story-visual-inner .mark {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 12px;
}
.story-visual-inner .lbl {
  font-family: var(--f-body);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.6);
}
.story-body p {
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-mid);
}
.story-body p.lead {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 32px;
  letter-spacing: -0.015em;
}
@media (max-width: 900px) {
  .story { grid-template-columns: 1fr; gap: 40px; }
}

/* ─────────────────────────────────────────────
   TESTIMONIAL (editorial pull quote)
───────────────────────────────────────────── */
.testimonial {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.testimonial-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  line-height: 1.6;
  color: var(--cream);
  margin-bottom: 40px;
  letter-spacing: -0.005em;
}
.testimonial-quote::before {
  content: '"';
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 8rem;
  line-height: 0.5;
  color: var(--gold);
  height: 60px;
  margin-bottom: 30px;
}
.testimonial-attr {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.testimonial-name {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
}
.testimonial-meta {
  font-family: var(--f-body);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.5);
}

/* ─────────────────────────────────────────────
   STATS BAR
───────────────────────────────────────────── */
.stats-bar {
  background: var(--teal);
  padding: 0;
  border-top: 1px solid rgba(201,169,110,0.14);
  border-bottom: 1px solid rgba(201,169,110,0.14);
}
.stats-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 50px 30px;
  border-right: 1px solid rgba(201,169,110,0.14);
  text-align: center;
}
.stat:last-child { border-right: none; }
.stat-val {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.025em;
}
.stat-lbl {
  font-family: var(--f-body);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.55);
  line-height: 1.4;
}
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(201,169,110,0.14); }
}

/* ─────────────────────────────────────────────
   EDUCATION
───────────────────────────────────────────── */
.edu-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}
.edu-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(20,20,20,0.1);
  font-size: 0.96rem;
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  line-height: 1.6;
}
.edu-list li:last-child { border-bottom: none; }
.edu-list li::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  margin-top: 12px;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   SOCIAL BLOCK
───────────────────────────────────────────── */
.social-block {
  text-align: center;
  padding: 80px 40px;
  background: var(--ink-2);
  position: relative;
  overflow: hidden;
}
.social-block-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.social-block h3 {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--cream);
  margin: 12px 0 20px;
  letter-spacing: -0.02em;
}
.social-block h3 em { color: var(--gold); }
.social-block p { color: rgba(250,247,242,0.55); margin-bottom: 32px; }
.social-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─────────────────────────────────────────────
   CTA SECTION
───────────────────────────────────────────── */
.cta {
  background: var(--ink);
  padding: 140px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }
.cta h2 {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 30px;
  letter-spacing: -0.015em;
}
.cta h2 em { color: var(--gold); font-style: italic; }
.cta p {
  max-width: 540px;
  margin: 0 auto 40px;
  color: rgba(250,247,242,0.65);
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─────────────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────────────── */
.page-hero {
  background: var(--ink);
  padding: 180px 40px 100px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(201,169,110,0.14);
}
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.page-hero-eyebrow .num {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--gold);
  font-size: 0.95rem;
}
.page-hero-eyebrow .label-txt {
  font-family: var(--f-body);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.55);
}
.page-hero-eyebrow .line { flex: 1; height: 1px; background: rgba(201,169,110,0.25); max-width: 180px; }
.page-hero h1 {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--cream);
  max-width: 900px;
  margin-bottom: 30px;
}
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p {
  font-size: 1.05rem;
  color: rgba(250,247,242,0.65);
  max-width: 600px;
  line-height: 1.75;
}

/* ─────────────────────────────────────────────
   TWO COLUMN GENERIC
───────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.two-col.reverse > *:first-child { order: 2; }
.two-col.reverse > *:last-child  { order: 1; }
.two-col h2 { margin-bottom: 24px; }
.two-col p { color: rgba(250,247,242,0.72); margin-bottom: 16px; line-height: 1.85; }
.sec-cream .two-col p { color: var(--text-mid); }
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse > *:first-child { order: 0; }
  .two-col.reverse > *:last-child  { order: 0; }
}

/* Visual placeholder */
.visual {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--teal), var(--ink));
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,169,110,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(201,169,110,0.15), transparent 60%);
}
.visual-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px;
}
.visual-inner .mark {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}
.visual-inner .cap {
  font-family: var(--f-body);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.55);
}

/* ─────────────────────────────────────────────
   FAQ
───────────────────────────────────────────── */
.faq-list { border-top: 1px solid rgba(201,169,110,0.18); position: relative; z-index: 2; }
.faq-item {
  border-bottom: 1px solid rgba(201,169,110,0.14);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  color: var(--cream);
  cursor: pointer;
  letter-spacing: -0.005em;
  transition: color var(--t);
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  width: 32px; height: 32px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--t), background var(--t);
  font-size: 1.1rem;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--ink);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.3s ease;
  color: rgba(250,247,242,0.7);
  font-size: 0.98rem;
  line-height: 1.85;
}
.faq-item.open .faq-a { max-height: 800px; padding-bottom: 32px; }
.sec-cream .faq-list { border-top-color: rgba(20,20,20,0.15); }
.sec-cream .faq-item { border-bottom-color: rgba(20,20,20,0.1); }
.sec-cream .faq-q { color: var(--ink); }
.sec-cream .faq-q:hover { color: var(--teal); }
.sec-cream .faq-a { color: var(--text-mid); }

/* ─────────────────────────────────────────────
   FORM
───────────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { margin-bottom: 24px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  display: block;
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201,169,110,0.3);
  padding: 12px 0;
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--cream);
  transition: border-color var(--t);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(250,247,242,0.35); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { color: var(--cream); }
.form-group select option { background: var(--ink); color: var(--cream); }
.form-success {
  display: none;
  padding: 24px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-align: center;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.2rem;
  margin-top: 20px;
}
@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* Contact card */
.contact-info {
  padding: 40px 0;
}
.contact-info-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(201,169,110,0.14);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .lbl {
  font-family: var(--f-body);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.5);
  margin-bottom: 8px;
}
.contact-info-item .val {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: -0.015em;
}
.contact-info-item .val a { color: inherit; transition: color var(--t); }
.contact-info-item .val a:hover { color: var(--gold-2); }

/* ─────────────────────────────────────────────
   GALLERY GRID
───────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 4px;
  position: relative;
  z-index: 2;
}
.gallery-cell {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--teal), var(--ink));
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,169,110,0.1);
  transition: transform var(--t);
}
.gallery-cell:hover { transform: scale(1.02); z-index: 3; }
.gallery-cell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,169,110,0.12), transparent 60%);
}
.gallery-cell-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,247,242,0.35);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 3rem;
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
#footer {
  background: var(--cream);
  border-top: 1px solid rgba(201,169,110,0.35);
  padding: 80px 40px 32px;
  color: var(--text-dark);
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(3,43,41,0.1);
}
.footer-logo {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 2rem;
  color: var(--cream);
  display: block;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.footer-logo em { color: var(--gold); }
.footer-logo-img {
  height: 200px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-left: -8px;
}
.footer-tag {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(3,43,41,0.62);
  line-height: 1.5;
  margin-bottom: 28px;
  max-width: 360px;
  letter-spacing: -0.01em;
}
.footer-col h5 {
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(6,111,108,0.85);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-family: var(--f-body);
  color: rgba(3,43,41,0.6);
  font-size: 0.9rem;
  transition: color var(--t);
}
.footer-col ul li a:hover { color: var(--teal); }
.footer-contact-item {
  font-family: var(--f-body);
  color: rgba(3,43,41,0.6);
  font-size: 0.88rem;
  margin-bottom: 12px;
  line-height: 1.5;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 42px; height: 42px;
  border: 1px solid rgba(6,111,108,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  transition: var(--t);
}
.footer-social a:hover { background: var(--teal); color: var(--cream); border-color: var(--teal); }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-family: var(--f-body);
  color: rgba(3,43,41,0.45);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}
.footer-bottom em { font-family: var(--f-display); font-style: italic; color: rgba(3,43,41,0.55); }
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ─────────────────────────────────────────────
   REVEAL ANIMATIONS
───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left  { opacity: 0; transform: translateX(-32px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-right { opacity: 0; transform: translateX(32px);  transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }
.delay-6 { transition-delay: 0.48s; }

/* ─────────────────────────────────────────────
   RESPONSIVE — COMPREHENSIVE MOBILE-FIRST
───────────────────────────────────────────── */

/* Tablet */
@media (max-width: 1100px) {
  :root { --pad: 80px 32px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side {
    border-left: none;
    border-top: 1px solid rgba(201,169,110,0.18);
    padding: 32px 0 0;
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    flex-direction: unset;
    flex-wrap: unset;
  }
  .hero-side-block { flex: unset; }
  .hero-h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); }
  .sec-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 48px; }
  .sec-head-num { font-size: 2.4rem; }
  .feature { grid-template-columns: 1fr; gap: 48px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(even) { border-right: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(201,169,110,0.14); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* Nav break */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  :root { --pad: 64px 24px; }
  .container { padding: 0 24px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid rgba(201,169,110,0.14); padding: 44px 24px; }
  .process-step:last-child { border-bottom: none; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse > *:first-child { order: 0; }
  .two-col.reverse > *:last-child  { order: 0; }
  .story { grid-template-columns: 1fr; gap: 40px; }
  .condition { grid-template-columns: 48px 1fr; gap: 12px 20px; }
  .condition-desc { grid-column: 1 / -1; }
  .service { grid-template-columns: 40px 1fr; gap: 8px 16px; }
  .service-desc, .service-link { grid-column: 1 / -1; }
}

/* Small mobile */
@media (max-width: 640px) {
  :root { --pad: 52px 20px; }
  .container { padding: 0 20px; }
  #navbar { padding: 0 20px; }
  .nav-inner { padding: 8px 0; }
  #navbar.scrolled .nav-inner { padding: 6px 0; }
  .nav-logo-img { height: 120px; }
  #navbar.scrolled .nav-logo-img { height: 92px; }
  .footer-logo-img { height: 170px; margin-left: -4px; }
  .sec-divider { padding: 22px 20px; }

  /* Hero */
  .hero { padding: 110px 20px 48px; }
  .hero-h1 {
    font-size: clamp(2rem, 8.5vw, 2.8rem);
    line-height: 1.1;
    margin-bottom: 28px;
  }
  .hero-h1 .indent { padding-left: 0; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 32px; }
  .hero-eyebrow { margin-bottom: 28px; }
  .hero-side {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 24px 0 0;
  }
  .hero-side-block {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(201,169,110,0.12);
  }
  .hero-side-block:last-child { border-bottom: none; }
  .hero-side-block h5 { margin-bottom: 0; min-width: 80px; }
  .hero-side-block p, .hero-side-block .stat { margin: 0; }
  .hero-side-block .stat { font-size: 1.6rem; }
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }
  .hero-ctas .btn { width: 100%; padding: 20px; }

  /* Section headings */
  .sec-head { gap: 16px; margin-bottom: 36px; }
  .sec-head-num { display: none; }
  .sec-head-title h2 { margin-top: 16px; }

  /* Page hero inner pages */
  .page-hero { padding: 180px 20px 56px; }
  .page-hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
    margin-bottom: 20px;
  }
  .page-hero-eyebrow { margin-bottom: 24px; }

  /* Process steps */
  .process-step { padding: 36px 20px; }
  .process-num { font-size: 4rem; margin-bottom: 16px; }
  .process-step h4 { font-size: 1.3rem; }

  /* Statement */
  .statement { padding: 72px 20px; }
  .statement-quote { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .statement-mark { font-size: 5rem; height: 40px; margin-bottom: 20px; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 28px 16px; }
  .stat:nth-child(even) { border-right: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(201,169,110,0.14); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }

  /* Testimonial */
  .testimonial-quote { font-size: clamp(1.15rem, 5vw, 1.5rem); line-height: 1.65; }
  .testimonial-quote::before { font-size: 5rem; height: 36px; margin-bottom: 16px; }

  /* CTA */
  .cta { padding: 72px 20px; }
  .cta-btns { flex-direction: column; gap: 12px; }
  .cta-btns .btn { width: 100%; }

  /* Social */
  .social-block { padding: 60px 20px; }
  .social-btns { flex-direction: column; }
  .social-btns .btn { width: 100%; }

  /* Story visual */
  .story-visual { aspect-ratio: 16/9; }

  /* Conditions */
  .condition { padding: 28px 0; }
  .condition-name { font-size: 1.15rem; }

  /* Services */
  .service { padding: 24px 0; }
  .service-name { font-size: 1.1rem; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 3px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  #footer { padding: 52px 20px 24px; }
  .footer-logo { font-size: 1.6rem; margin-bottom: 12px; }

  /* Marquee */
  .marquee-item { letter-spacing: 0.18em; }
  .marquee-track { gap: 40px; }

  /* Feature page */
  .feature-display { font-size: clamp(2.2rem, 8vw, 2.8rem); }

  /* Buttons on light sections */
  .sec-cream .btn-ink { width: 100%; }

  /* Two-col stacked */
  .visual { aspect-ratio: 16/9; }
}

/* ─────────────────────────────────────────────
   CURSOR (subtle, non-intrusive)
───────────────────────────────────────────── */
@media (pointer: fine) {
  .cur-dot {
    position: fixed; top:0; left:0; width:6px; height:6px;
    background: var(--gold); border-radius:50%;
    pointer-events:none; z-index:9999;
    transform:translate(-50%,-50%);
    transition: transform .15s var(--ease), opacity .2s;
    will-change: left,top;
    mix-blend-mode: difference;
  }
  .cur-ring {
    position: fixed; top:0; left:0; width:32px; height:32px;
    border:1px solid rgba(201,169,110,.5); border-radius:50%;
    pointer-events:none; z-index:9998;
    transform:translate(-50%,-50%);
    transition: width .25s var(--ease), height .25s var(--ease), border-color .25s var(--ease);
    will-change:left,top;
  }
  .cur-dot.hov  { transform:translate(-50%,-50%) scale(3); opacity:.35; }
  .cur-ring.hov { width:56px; height:56px; border-color: var(--gold); }
}

/* ═══════════════════════════════════════════════════════════════
   HERO v3 — Photo-forward split layout
   ═══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-inner {
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 0;
  align-items: stretch;
  min-height: 100vh;
  padding-top: 100px;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 60px;
}
.hero-tag {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}
.hero-tag-sep { opacity: 0.35; }
.hero-h1 {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 32px;
}
.hero-h1 em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(250,247,242,0.65);
  max-width: 480px;
  margin-bottom: 44px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-cred-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--f-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.3);
  padding-top: 32px;
  border-top: 1px solid rgba(201,169,110,0.1);
}
.hero-cred-strip .sep { opacity: 0.35; }

/* Photo panel */
.hero-photo {
  position: relative;
  background: linear-gradient(165deg, var(--teal-2) 0%, var(--teal) 40%, var(--ink) 100%);
  border-left: 1px solid rgba(201,169,110,0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  position: absolute;
  inset: 0;
  z-index: 1;
}
/* Placeholder: large C mark */
.hero-photo-mark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18rem;
  font-weight: 400;
  line-height: 1;
  color: rgba(201,169,110,0.07);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
/* Vertical brand text */
.hero-photo-vert {
  position: absolute;
  right: 14px;
  top: 0; bottom: 0;
  display: flex;
  align-items: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--f-body);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.22;
  z-index: 2;
  pointer-events: none;
}
/* Bottom label overlay */
.hero-photo-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px 24px;
  background: linear-gradient(to top, rgba(3,43,41,0.9) 0%, transparent 100%);
  z-index: 3;
}
.hero-photo-label strong {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 4px;
}
.hero-photo-label span {
  font-family: var(--f-body);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.4);
}

/* ─── Photo Strip ─────────────────────────────── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--ink-2);
}
.photo-strip-cell {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}
.photo-strip-cell:nth-child(1) { background: linear-gradient(165deg, var(--teal-2) 0%, var(--teal) 100%); }
.photo-strip-cell:nth-child(2) { background: linear-gradient(200deg, var(--teal) 0%, var(--ink) 100%); }
.photo-strip-cell:nth-child(3) { background: linear-gradient(160deg, var(--ink) 0%, var(--teal-2) 100%); }
.photo-strip-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}
.photo-strip-label {
  position: absolute;
  bottom: 16px; left: 18px; right: 18px;
  font-family: var(--f-body);
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.28);
  z-index: 2;
}
/* Hover lift */
.photo-strip-cell:hover .photo-strip-label { color: rgba(250,247,242,0.55); }

/* ─── Mobile: Hero v3 ─────────────────────────── */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: unset;
    padding-top: 80px;
  }
  .hero-photo {
    order: -1;
    height: 300px;
    border-left: none;
    border-bottom: 1px solid rgba(201,169,110,0.15);
  }
  .hero-photo-mark { font-size: 10rem; }
  .hero-content {
    padding: 48px 32px 56px;
  }
  .hero-cred-strip { gap: 10px; }
}
@media (max-width: 640px) {
  .hero-photo { height: 240px; }
  .hero-photo-mark { font-size: 7rem; }
  .hero-content {
    padding: 36px 20px 48px;
  }
  .hero-tag { margin-bottom: 24px; }
  .hero-h1 { font-size: clamp(2.2rem, 8vw, 2.8rem); margin-bottom: 24px; }
  .hero-sub { font-size: 0.96rem; margin-bottom: 32px; }
  .hero-ctas { flex-direction: column; gap: 10px; margin-bottom: 32px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-cred-strip { gap: 8px; font-size: 0.6rem; }
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .photo-strip-cell:last-child { display: none; }
  .photo-strip-cell { aspect-ratio: 1/1; }
}

/* ============================================================
   HERO SPLIT — .hs
   Full split-panel layout: text left, photo right. No gradients.
   ============================================================ */
.hs {
  display: grid;
  grid-template-columns: 44fr 56fr;
  min-height: 100svh;
  background: var(--ink);
  overflow: hidden;
}

/* ── Left / text panel ── */
.hs-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 112px 52px 60px 56px;
  position: relative;
}

.hs-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hs-num {
  font-family: var(--f-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: rgba(201,169,110,0.3);
}

.hs-brandmark {
  font-family: var(--f-body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.18);
}

/* ── Center / headline block ── */
.hs-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 0;
}

.hs-loc {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.hs-headline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hs-the {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 2vw, 2rem);
  color: rgba(250,247,242,0.3);
  line-height: 1;
  margin-bottom: 2px;
}

.hs-word {
  font-family: var(--f-display);
  font-weight: 800;
  font-style: normal;
  font-size: clamp(4rem, 8.5vw, 9.5rem);
  line-height: 0.86;
  letter-spacing: -0.04em;
  color: var(--cream);
  text-indent: -5px;
  display: block;
  margin-bottom: 26px;
}

.hs-rule {
  width: 52px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 22px;
}

.hs-tagline {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.05rem, 1.6vw, 1.55rem);
  line-height: 1.5;
  color: rgba(250,247,242,0.48);
}

/* ── Bottom / CTA bar ── */
.hs-foot {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hs-specs {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}

.hs-specs span {
  font-family: var(--f-body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.45);
}

.hs-sep {
  color: rgba(201,169,110,0.22) !important;
  letter-spacing: 0 !important;
}

.hs-cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-family: var(--f-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(201,169,110,0.35);
  width: fit-content;
  transition: color 0.3s, border-color 0.3s;
}

.hs-cta:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ── Right / photo panel ── */
.hs-photo {
  position: relative;
  overflow: hidden;
}

/* Thin gold seam on left edge where panels meet */
.hs-seam {
  position: absolute;
  left: 0;
  top: 80px;
  bottom: 80px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(201,169,110,0.4) 25%,
    rgba(201,169,110,0.4) 75%,
    transparent
  );
  z-index: 3;
}

.hs-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.9) contrast(1.03) saturate(0.92);
}

/* Vertical text on right edge of photo */
.hs-vert {
  position: absolute;
  right: 20px;
  bottom: 52px;
  font-family: var(--f-body);
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.28);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  z-index: 2;
}

/* ── Mobile ── */
@media (max-width: 820px) {
  .hs {
    grid-template-columns: 1fr;
    min-height: 100svh;
  }
  .hs-photo {
    height: 55vw;
    min-height: 220px;
    order: -1;
  }
  .hs-text {
    padding: 36px 28px 48px;
  }
  .hs-word {
    font-size: clamp(3rem, 14vw, 5rem);
  }
  .hs-seam { display: none; }
  .hs-vert  { display: none; }
  .hs-topbar { display: none; }
}

/* ── Hero Full Bleed ─────────────────────────────── */
.hfull {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hfull-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  z-index: 0;
}
.hfull-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(3,43,41,0.05) 0%,
    rgba(3,43,41,0.15) 50%,
    rgba(3,43,41,0.88) 100%
  );
  z-index: 1;
}
.hfull-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 72px;
}
.hfull-city {
  font-family: var(--f-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.75);
  margin-bottom: 18px;
}
.hfull-h1 {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 3.8rem;
  line-height: 1.18;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 36px;
  max-width: 720px;
}
.hfull-link {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201,169,110,0.45);
  transition: color 0.25s, border-color 0.25s;
}
.hfull-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}
@media (max-width: 768px) {
  .hfull-content { padding: 0 28px 52px; }
  .hfull-h1 { font-size: 2.6rem; }
}
@media (max-width: 480px) {
  .hfull-h1 { font-size: 2rem; }
}

/* ── Hero Full Bleed — v3 overrides ─────────────── */
.hfull-h1 {
  font-family: var(--f-body);
  font-weight: 700;
  font-style: normal;
  font-size: 4rem;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin-bottom: 32px;
  max-width: 680px;
}
.hfull-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.hfull-btn-primary {
  display: inline-block;
  background: var(--teal);
  color: var(--cream);
  padding: 15px 30px;
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--teal);
  transition: background 0.2s, border-color 0.2s;
}
.hfull-btn-primary:hover { background: var(--teal-2); border-color: var(--teal-2); }
.hfull-btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--cream);
  padding: 15px 30px;
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(250,247,242,0.4);
  transition: border-color 0.2s;
}
.hfull-btn-secondary:hover { border-color: var(--cream); }
.hfull-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.4);
}
.hfull-meta a { color: inherit; text-decoration: none; }
.hfull-meta a:hover { color: rgba(250,247,242,0.7); }
.hfull-sep { opacity: 0.4; }
@media (max-width: 768px) {
  .hfull-h1 { font-size: 2.5rem; }
  .hfull-btn-primary, .hfull-btn-secondary { padding: 13px 22px; }
}
@media (max-width: 480px) {
  .hfull-h1 { font-size: 1.9rem; }
  .hfull-actions { flex-direction: column; }
  .hfull-btn-primary, .hfull-btn-secondary { text-align: center; }
  .hfull-meta { flex-wrap: wrap; }
}

/* ── Hero v4 — font + animation + overlay ─────────── */

/* Bodoni 700 upright: luxury without the AI-italic cliché */
.hfull-h1 {
  font-family: var(--f-display);
  font-weight: 700;
  font-style: normal;
  font-size: 4rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin-bottom: 32px;
  max-width: 700px;
}

/* Cinematic layered overlay — top vignette + bottom dark */
.hfull-veil {
  background:
    radial-gradient(ellipse 120% 55% at 50% 0%, rgba(3,43,41,0.4) 0%, transparent 70%),
    linear-gradient(to bottom, rgba(3,43,41,0.05) 0%, rgba(3,43,41,0.92) 100%);
}

/* Animate in — staggered, smooth */
@keyframes hf-up {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hfull-h1      { animation: hf-up 1s cubic-bezier(.16,1,.3,1) 0.15s both; }
.hfull-actions { animation: hf-up 1s cubic-bezier(.16,1,.3,1) 0.35s both; }
.hfull-meta    { animation: hf-up 1s cubic-bezier(.16,1,.3,1) 0.5s both; }

/* ── Hero font — Fraunces (v8 system) ── */
.hfull-h1 {
  font-family: 'Fraunces', 'Times New Roman', serif;
  font-weight: 340;
  font-style: normal;
  font-size: 5rem;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 32px;
  max-width: 780px;
}
@media (max-width: 768px) { .hfull-h1 { font-size: 3rem; } }
@media (max-width: 480px) { .hfull-h1 { font-size: 2.2rem; } }

/* ============================================================
   Hours & Policy (2026-08-14)
   ============================================================ */
.footer-hours div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(3,43,41,0.12);
  font-family: var(--f-body);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(3,43,41,0.85);
}
.footer-hours div:last-child { border-bottom: none; }
.footer-hours .fh-closed { color: rgba(3,43,41,0.45); font-style: italic; }

.hours-table { border-top: 1px solid rgba(3,43,41,0.14); }
.hours-table .hrow {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 13px 2px;
  border-bottom: 1px solid rgba(3,43,41,0.14);
}
.hours-table .day {
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}
.hours-table .time {
  font-family: var(--f-body);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--text-mid);
}
.hours-table .time.closed { color: var(--text-light); font-style: italic; }
.hours-table.hours-on-dark { border-top-color: rgba(201,169,110,0.18); }
.hours-table.hours-on-dark .hrow { border-bottom-color: rgba(201,169,110,0.12); }
.hours-table.hours-on-dark .day { color: var(--gold); }
.hours-table.hours-on-dark .time { color: rgba(250,247,242,0.7); }
.hours-table.hours-on-dark .time.closed { color: rgba(250,247,242,0.3); }

.policy-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(3,43,41,0.14);
}
.policy-item:first-child { padding-top: 8px; }
.policy-item:last-child { border-bottom: none; }
.policy-num {
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: var(--gold);
}
.policy-item p {
  font-family: var(--f-body);
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin: 0;
}
.policy-item strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   Blue accent for nav (2026-08-14)
   ============================================================ */
:root { --blue-lt: #7FB0CB; }
.nav-links a:not(.btn):hover,
.nav-links a.active { color: var(--blue-lt); }
.nav-links a:not(.btn)::before { background: var(--blue-lt); }
.mobile-menu a:not(.btn):hover { color: var(--blue-lt); }

/* ============================================================
   Full-screen menu (2026-08-14)
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 998;
  display: flex;
  background:
    radial-gradient(ellipse 130% 90% at 88% -12%, rgba(6,111,108,0.9) 0%, transparent 58%),
    radial-gradient(ellipse 100% 70% at 0% 110%, rgba(6,111,108,0.5) 0%, transparent 55%),
    var(--ink);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(.19,1,.22,1), visibility 0s linear 0.45s;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.45s cubic-bezier(.19,1,.22,1);
}
.mm-inner {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(128px, 17vh, 170px) 32px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mm-eyebrow { margin-top: auto; }
.mm-foot { margin-bottom: auto; }
.mm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--blue-lt);
  margin-bottom: clamp(20px, 3.5vh, 36px);
}
.mm-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}
.mm-eyebrow::after {
  content: '';
  width: 40px; height: 1px;
  background: linear-gradient(to right, rgba(201,169,110,0.5), transparent);
}
.mm-links { display: flex; flex-direction: column; }
.mm-links a {
  display: flex;
  align-items: baseline;
  gap: 20px;
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.65rem, 4.8vh, 2.5rem);
  line-height: 1.15;
  color: var(--cream);
  text-decoration: none;
  padding: clamp(9px, 1.5vh, 15px) 0;
  border-bottom: 1px solid rgba(201,169,110,0.13);
  opacity: 0;
  transform: translateY(26px);
  transition: color 0.3s, padding-left 0.35s cubic-bezier(.19,1,.22,1),
              opacity 0.6s cubic-bezier(.19,1,.22,1), transform 0.6s cubic-bezier(.19,1,.22,1);
}
.mobile-menu.open .mm-links a { opacity: 1; transform: none; }
.mobile-menu.open .mm-links a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mm-links a:nth-child(2) { transition-delay: 0.16s; }
.mobile-menu.open .mm-links a:nth-child(3) { transition-delay: 0.22s; }
.mobile-menu.open .mm-links a:nth-child(4) { transition-delay: 0.28s; }
.mobile-menu.open .mm-links a:nth-child(5) { transition-delay: 0.34s; }
.mobile-menu.open .mm-links a:nth-child(6) { transition-delay: 0.4s; }
.mobile-menu.open .mm-links a:nth-child(7) { transition-delay: 0.46s; }
.mobile-menu.open .mm-links a:nth-child(8) { transition-delay: 0.52s; }
.mm-links a:hover { color: var(--blue-lt); padding-left: 12px; }
.mm-links a.active { color: var(--blue-lt); }
.mm-num {
  font-family: var(--f-body);
  font-style: normal;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--gold);
  min-width: 26px;
  flex: none;
}
.mm-book {
  align-self: flex-start;
  position: relative;
  margin-top: clamp(24px, 4vh, 40px);
  padding: 17px 38px;
  background: var(--teal);
  border: 1px solid var(--teal);
  color: var(--cream);
  font-family: var(--f-body);
  font-style: normal;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(.19,1,.22,1) 0.6s, transform 0.6s cubic-bezier(.19,1,.22,1) 0.6s, background 0.25s;
}
.mm-book::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(250,247,242,0.28);
  pointer-events: none;
  transition: inset 0.3s cubic-bezier(.19,1,.22,1);
}
.mm-book:hover { background: #1d4a5f; }
.mm-book:hover::after { inset: 7px; }
.mobile-menu.open .mm-book { opacity: 1; transform: none; }
.mm-foot {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: clamp(28px, 5vh, 48px) !important;
  padding-top: 22px;
  border-top: 1px solid rgba(201,169,110,0.13);
  font-family: var(--f-body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.42);
  opacity: 0;
  transition: opacity 0.6s ease 0.75s;
}
.mobile-menu.open .mm-foot { opacity: 1; }
.mm-foot a {
  font-family: var(--f-body);
  font-style: normal;
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  color: rgba(250,247,242,0.42);
  text-decoration: none;
  border: none;
  padding: 0;
  transition: color 0.25s;
}
.mm-foot a:hover { color: var(--blue-lt); }
.mm-dot {
  width: 4px; height: 4px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  flex: none;
}
@media (min-width: 720px) {
  .mm-links a { font-size: clamp(2rem, 5.2vh, 2.9rem); }
}

/* =================================================================
   SOCIAL v2 — 3 editorial post cards + stats column
================================================================= */
.sb2 {
  background: var(--ink-2);
  padding: clamp(80px, 10vw, 130px) clamp(24px, 5vw, 64px);
  overflow: hidden;
}
.sb2-wrap {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: clamp(56px, 7vw, 96px);
  align-items: center;
}

/* — Post cards — */
.sb2-left {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: end;
}
.sb2-card {
  background: rgba(6,111,108,0.45);
  border: 1px solid rgba(201,169,110,0.13);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.sb2-card-pushed { margin-bottom: -44px; }
.sb2-card-img {
  aspect-ratio: 4 / 5;
  background: linear-gradient(155deg, rgba(6,111,108,0.95) 0%, rgba(3,43,41,0.7) 100%);
  position: relative;
}
.sb2-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(201%2C169%2C110%2C0.18)' stroke-width='1.2'%3E%3Cpath d='M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z'/%3E%3Ccircle cx='12' cy='13' r='4'/%3E%3C/svg%3E") center/24px no-repeat;
}
.sb2-card-meta {
  padding: 11px 13px;
  border-top: 1px solid rgba(201,169,110,0.1);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sb2-card-acct {
  font-family: var(--f-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.6);
}
.sb2-card-tag {
  font-family: var(--f-body);
  font-size: 0.54rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.26);
}

/* — Right text column — */
.sb2-right { }
.sb2-top-rule {
  width: 40px;
  height: 1px;
  background: rgba(201,169,110,0.38);
  margin-bottom: 26px;
}
.sb2-handle {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.2rem, 3.8vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin: 0 0 32px;
}
.sb2-handle em { color: var(--gold); font-style: italic; }

/* Stats row */
.sb2-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(201,169,110,0.12);
  border-bottom: 1px solid rgba(201,169,110,0.12);
  margin-bottom: 28px;
}
.sb2-stat {
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sb2-stat + .sb2-stat {
  border-left: 1px solid rgba(201,169,110,0.12);
  padding-left: 14px;
}
.sb2-stat strong {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.sb2-stat span {
  font-family: var(--f-body);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.32);
}
.sb2-desc {
  font-family: var(--f-body);
  font-size: 0.97rem;
  line-height: 1.82;
  color: rgba(250,247,242,0.46);
  margin-bottom: 28px;
}
.sb2-links {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(201,169,110,0.12);
}
.sb2-link {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--f-body);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.44);
  text-decoration: none;
  padding: 17px 0;
  border-bottom: 1px solid rgba(201,169,110,0.1);
  transition: color 0.25s;
}
.sb2-link svg { opacity: 0.48; flex: none; transition: opacity 0.25s; }
.sb2-arr {
  margin-left: auto;
  font-size: 0.88rem;
  letter-spacing: 0;
  opacity: 0.42;
  transition: opacity 0.25s, transform 0.3s;
}
.sb2-link:hover { color: var(--gold); }
.sb2-link:hover svg, .sb2-link:hover .sb2-arr { opacity: 1; }
.sb2-link:hover .sb2-arr { transform: translate(3px,-3px); }

@media (max-width: 960px) {
  .sb2-wrap { grid-template-columns: 1fr; gap: 56px; }
  .sb2-left { order: 2; }
  .sb2-right { order: 1; }
  .sb2-card-pushed { margin-bottom: 0; }
}
@media (max-width: 560px) {
  .sb2-left { grid-template-columns: repeat(2, 1fr); }
  .sb2-card:last-child { display: none; }
  .sb2-card-pushed { margin-bottom: 0; }
}
.sb2-handle {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin: 0 0 28px;
}
.sb2-handle em { color: var(--gold); font-style: italic; }
.sb2-desc {
  font-family: var(--f-body);
  font-size: 0.97rem;
  line-height: 1.82;
  color: rgba(250,247,242,0.48);
  margin-bottom: 40px;
  max-width: 320px;
}
.sb2-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(201,169,110,0.14);
}
.sb2-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.48);
  text-decoration: none;
  padding: 18px 0;
  border-bottom: 1px solid rgba(201,169,110,0.14);
  transition: color 0.25s;
}
.sb2-link svg { opacity: 0.55; flex: none; transition: opacity 0.25s; }
.sb2-link:hover { color: var(--gold); }
.sb2-link:hover svg { opacity: 1; }

/* Photo grid */
.sb2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 8px;
}
.sb2-post {
  aspect-ratio: 1 / 1;
  background: rgba(201,169,110,0.05);
  border: 1px solid rgba(201,169,110,0.1);
  position: relative;
  overflow: hidden;
}
/* subtle teal gradient so they don't look completely empty */
.sb2-post::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,111,108,0.6) 0%, rgba(3,43,41,0.3) 100%);
}
.sb2-post-wide {
  grid-column: 1 / -1;
  aspect-ratio: 4 / 1;
}

@media (max-width: 900px) {
  .sb2-inner { grid-template-columns: 1fr; }
  .sb2-grid { grid-template-columns: repeat(3, 1fr); }
  .sb2-post-wide { display: none; }
  .sb2-desc { max-width: 100%; }
}
@media (max-width: 560px) {
  .sb2-grid { grid-template-columns: repeat(2, 1fr); }
  .sb2-grid .sb2-post:nth-child(3), .sb2-grid .sb2-post:nth-child(4) { display: none; }
}

/* =================================================================
   CTA v2 — editorial split, ghost letter, specific copy
================================================================= */
.cta-v2 {
  background: var(--ink);
  padding: clamp(100px, 12vw, 160px) clamp(24px, 5vw, 64px);
  position: relative;
  overflow: hidden;
}
.cta-v2-ghost {
  position: absolute;
  right: -4vw;
  top: 50%;
  transform: translateY(-52%);
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(20rem, 30vw, 40rem);
  line-height: 0.85;
  color: rgba(201,169,110,0.04);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -0.05em;
}
.cta-v2-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
}
/* Full-width rule with centred diamond */
.cta-v2-rule-top {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: clamp(64px, 9vw, 110px);
}
.cta-v2-rule-top::before,
.cta-v2-rule-top::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(201,169,110,0.18);
}
.cta-v2-diamond {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(201,169,110,0.45);
  transform: rotate(45deg);
  flex: none;
  margin: 0 22px;
}
.cta-v2-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(56px, 9vw, 130px);
  align-items: start;
}
.cta-v2-left h2 {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  line-height: 1.16;
  letter-spacing: -0.018em;
  color: var(--cream);
}
.cta-v2-left h2 em { color: var(--gold); font-style: italic; }
.cta-v2-right p {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.88;
  color: rgba(250,247,242,0.55);
  margin-bottom: 44px;
}
.cta-v2-btns {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.cta-v2-text-link {
  font-family: var(--f-body);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.4);
  text-decoration: none;
  border-bottom: 1px solid rgba(250,247,242,0.14);
  padding-bottom: 5px;
  transition: color 0.25s, border-color 0.25s;
}
.cta-v2-text-link:hover { color: var(--gold); border-color: rgba(201,169,110,0.4); }

/* Footer strip */
.cta-v2-foot {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: clamp(72px, 10vw, 120px);
  padding-top: 26px;
  border-top: 1px solid rgba(201,169,110,0.13);
}
.cta-v2-foot-item {
  font-family: var(--f-body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.28);
  text-decoration: none;
  transition: color 0.25s;
}
a.cta-v2-foot-item:hover { color: rgba(201,169,110,0.55); }
.cta-v2-foot-diamond {
  width: 4px;
  height: 4px;
  border: 1px solid rgba(201,169,110,0.28);
  transform: rotate(45deg);
  flex: none;
}

@media (max-width: 860px) {
  .cta-v2-body { grid-template-columns: 1fr; gap: 52px; }
  .cta-v2-ghost { font-size: 50vw; right: -8vw; opacity: 0.5; }
  .cta-v2-foot { gap: 14px; }
  .cta-v2-btns { align-items: stretch; }
  .cta-v2-btns .btn { text-align: center; }
}

/* — Pull quote (left column, below headline) — */
.cta-v2-pull {
  margin: 40px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(201,169,110,0.15);
}
.cta-v2-pull p {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 1.55vw, 1.28rem);
  line-height: 1.72;
  color: rgba(250,247,242,0.58);
  margin: 0 0 14px;
}
.cta-v2-pull cite {
  font-family: var(--f-body);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.5);
  font-style: normal;
}

/* — Google rating (top of right column) — */
.cta-v2-rating {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(201,169,110,0.14);
}
.cta-v2-score {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(3.8rem, 5.5vw, 5.2rem);
  line-height: 0.9;
  color: var(--cream);
  letter-spacing: -0.04em;
}
.cta-v2-rating-detail { display: flex; flex-direction: column; gap: 7px; }
.cta-v2-stars {
  color: var(--gold);
  font-size: 0.88rem;
  letter-spacing: 4px;
}
.cta-v2-rating-label {
  font-family: var(--f-body);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.3);
}

/* ============================================================
   SYSTEM v8 — INNER PAGES layer.
   Propagates the homepage v8 language to every shared
   inner-page component. Fraunces roman display, tracked
   sans markers, gold demoted to hairlines + stars.
   ============================================================ */

/* --- page hero --- */
.page-hero h1 {
  font-style: normal;
  font-weight: 340;
  letter-spacing: -0.028em;
}
.page-hero h1 em { font-style: italic; color: inherit; }
.page-hero-eyebrow .num {
  font-family: var(--f-body);
  font-style: normal;
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.65);
}
.page-hero-eyebrow .label-txt {
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(250,247,242,0.38);
}
.page-hero-eyebrow .line { background: rgba(250,247,242,0.12); max-width: 110px; }

/* --- labels on cream: muted ink, not teal --- */
.sec-cream .label { color: rgba(3,43,41,0.4); }
.sec-cream .label::before { background: rgba(3,43,41,0.25); }

/* --- section heads: kill the 4rem italic gold index --- */
.sec-head { align-items: end; grid-template-columns: 120px 1fr; }
.sec-head-num {
  font-family: var(--f-body);
  font-style: normal;
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.32);
  opacity: 1;
  padding-bottom: 10px;
}
.sec-head-num .slash { opacity: 0.5; margin: 0 4px; }
.sec-cream .sec-head-num { color: rgba(3,43,41,0.32); }
.sec-head-title h2 { font-style: normal; font-weight: 340; line-height: 1.08; }

/* --- headline accents inherit, never gold/teal --- */
h1 em, h2 em, h3 em, h4 em { font-style: italic; color: inherit; }
.sec-cream .display-italic em { color: inherit; }
.cta h2 em, .page-hero h1 em, .social-block h3 em { color: inherit; }

/* --- generic heading weight on inner pages --- */
.section h2, .cta h2, .social-block h3 { font-style: normal; font-weight: 340; }

/* --- condition rows --- */
.condition:hover { background: transparent; padding-left: 14px; }
.condition-num {
  font-family: var(--f-body);
  font-style: normal;
  font-weight: 600;
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  color: rgba(201,169,110,0.6);
  padding-top: 10px;
}
.sec-cream .condition-num { color: rgba(3,43,41,0.35); }
.condition-name { font-style: normal; font-weight: 380; letter-spacing: -0.015em; }

/* --- process steps --- */
.process-num {
  font-style: normal;
  font-weight: 320;
  font-size: 2.1rem;
  color: rgba(201,169,110,0.5);
  opacity: 1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.process-step h4 { font-style: normal; font-weight: 380; }

/* --- testimonials --- */
.testimonial-quote {
  font-style: normal;
  font-weight: 340;
  letter-spacing: -0.012em;
  line-height: 1.5;
}
.testimonial-quote::before { content: none; }
.testimonial-name {
  font-family: var(--f-body);
  font-style: normal;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--cream);
}

/* --- buttons: gold fills retired, teal is the action color --- */
.btn-primary {
  background: var(--teal);
  color: var(--cream);
  border: 1px solid var(--teal);
  font-weight: 600;
  letter-spacing: 0.18em;
}
.btn-primary:hover {
  background: var(--teal-2);
  color: var(--cream);
  border-color: var(--teal-2);
}
.btn-outline {
  color: rgba(250,247,242,0.82);
  border: 1px solid rgba(250,247,242,0.3);
  letter-spacing: 0.18em;
  font-weight: 600;
}
.btn-outline:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.nav-links .btn-outline { border-color: rgba(250,247,242,0.35); color: var(--cream); }
.nav-links .btn-primary { background: var(--teal-2); border-color: rgba(250,247,242,0.25); }

/* --- FAQ --- */
.faq-q { font-style: normal; font-weight: 380; }
.faq-q:hover { color: rgba(250,247,242,0.7); }
.faq-icon {
  border-color: rgba(250,247,242,0.3);
  color: rgba(250,247,242,0.6);
  border-radius: 0;
}
.faq-item.open .faq-icon { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.faq-a a { color: var(--gold); }

/* --- stats bar --- */
.stat-val {
  font-style: normal;
  font-weight: 340;
  color: var(--cream);
}

/* --- contact info --- */
.contact-info-item .val {
  font-style: normal;
  font-weight: 360;
  font-size: 1.3rem;
  color: var(--cream);
}
.contact-info-item .val a:hover { color: var(--gold); }

/* --- hours on dark: high contrast (v17 fix — was invisible) --- */
.hours-table.hours-on-dark .day { color: var(--gold); }
.hours-table.hours-on-dark .time { color: var(--cream); font-weight: 500; }
.hours-table.hours-on-dark .time.closed { color: rgba(250,247,242,0.55); }
.hours-table.hours-on-dark .hrow { border-bottom-color: rgba(201,169,110,0.28); }

/* --- policy --- */
.policy-num {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  color: rgba(3,43,41,0.35);
  padding-top: 8px;
}

/* --- real before/after figure (hair-loss) --- */
.mesh-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(44px, 5vw, 88px);
  align-items: start;
}
.ba-figure { margin: 0; padding-top: 8px; }
.ba-frame { position: relative; }
.ba-frame::after {
  content: '';
  position: absolute;
  top: 16px; right: -16px; bottom: -16px; left: 16px;
  border: 1px solid rgba(201,169,110,0.4);
  pointer-events: none;
}
.ba-frame img { display: block; width: 100%; position: relative; z-index: 1; }
.ba-figure figcaption {
  margin-top: 34px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(250,247,242,0.55);
}
@media (max-width: 860px) {
  .mesh-proof-grid { grid-template-columns: 1fr; gap: 56px; }
  .ba-frame::after { right: -10px; left: 10px; }
}

/* --- gallery: real media cells --- */
.gallery-cell--media::before { display: none; }
.gallery-cell--media img,
.gallery-cell--media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-cell--media img { object-fit: contain; background: var(--ink-2); }
.gallery-cell--media::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 34%;
  background: linear-gradient(to top, rgba(0,0,0,0.62), transparent);
  z-index: 1;
}
.gallery-tag {
  position: absolute;
  left: 14px; bottom: 12px;
  z-index: 2;
  font-family: var(--f-body);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.85);
}

/* --- gallery placeholders: quiet hairline cells --- */
.gallery-cell { background: var(--ink-2); border-color: rgba(250,247,242,0.08); }
.gallery-cell::before { background: none; }
.gallery-cell-inner {
  font-family: var(--f-body);
  font-style: normal;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.18);
}

/* --- editorial pull quote (replaces boxed quote visuals) --- */
.pq-wrap {
  border-top: 1px solid rgba(201,169,110,0.3);
  border-bottom: 1px solid rgba(201,169,110,0.3);
  padding: clamp(32px, 4vw, 52px) 0;
}
.pq {
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 340;
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  line-height: 1.5;
  letter-spacing: -0.012em;
  color: var(--cream);
  margin: 0;
}
.sec-cream .pq { color: var(--ink); }
.pq-attr {
  display: block;
  font-family: var(--f-body);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.35);
  margin-top: 22px;
}
.sec-cream .pq-attr { color: rgba(3,43,41,0.4); }

/* --- offset hairline photo frame (homepage founder frame) --- */
.v8-frame { position: relative; }
.v8-frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}
.v8-frame-offset {
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid rgba(201,169,110,0.5);
  z-index: 0;
  pointer-events: none;
}
.v8-frame-cap {
  font-family: var(--f-body);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--text-mid);
  margin-top: 18px;
}
.v8-frame-cap strong { font-weight: 600; color: var(--ink); }

/* --- plain hairline list (replaces boxed visual lists) --- */
.hl-list { border-top: 1px solid rgba(201,169,110,0.22); }
.hl-list p {
  font-size: 0.92rem;
  color: rgba(250,247,242,0.62);
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,169,110,0.14);
  margin: 0;
  line-height: 1.7;
}

/* ─────────────────────────────────────────────
   v10 — brand teal details + micro-motion
───────────────────────────────────────────── */
::selection { background: var(--teal); color: var(--cream); }

/* gold scroll progress hairline */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-2));
  transform: scaleX(0);
  transform-origin: left;
  z-index: 2001;
  pointer-events: none;
}

/* nav links: gold underline draws in */
.nav-links a { position: relative; }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

/* teal buttons: soft sheen sweep on hover */
.hm-btn-teal, .ct-btn { overflow: hidden; position: relative; }
.hm-btn-teal::before, .ct-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(250,247,242,0.14), transparent);
  transform: skewX(-18deg);
  transition: left 0.7s var(--ease);
  pointer-events: none;
}
.hm-btn-teal:hover::before, .ct-btn:hover::before { left: 135%; }

/* editorial stagger (sitewide) */
html.motion .ed-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
html.motion .ed-in .ed-item { opacity: 1; transform: none; }

/* footer: columns cascade in, logo settles */
html.motion .footer-logo-img { opacity: 0; transform: translateY(12px); transition: opacity 1s var(--ease) 0.1s, transform 1s var(--ease) 0.1s; }
html.motion .footer-top.ed-in .footer-logo-img { opacity: 1; transform: none; }

/* ============================================================
   REEL EMBED — reusable vertical video frame (v12)
   ============================================================ */
.reel-embed { margin: 0; width: min(320px, 100%); }
.reel-embed-frame { position: relative; }
.reel-embed-frame::after {
  content: '';
  position: absolute;
  top: 16px; left: -16px; right: 16px; bottom: -16px;
  border: 1px solid rgba(201,169,110,0.38);
  pointer-events: none;
}
.reel-embed video {
  display: block;
  width: 100%;
  aspect-ratio: 464 / 848;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.reel-embed figcaption {
  margin-top: 30px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.02rem;
  color: var(--text-mid);
}
.reel-embed figcaption em { color: var(--gold); }
.reel-embed--center { margin: 56px auto 8px; }
.reel-embed--center figcaption { text-align: center; }
.ba-frame video { display: block; width: 100%; position: relative; z-index: 1; }

/* ============================================================
   v13 — mobile fixes + detail cards
   ============================================================ */

/* fix: unscoped .sec-head override (120px 1fr) was leaking into
   mobile and squeezing headlines/paragraphs into a sliver */
@media (max-width: 900px) {
  .sec-head { grid-template-columns: 1fr; gap: 18px; }
  .sec-head-num { padding-bottom: 0; }
  .sec-head-title p { max-width: none; }
}
@media (max-width: 640px) {
  .sec-head { gap: 14px; margin-bottom: 40px; }
}

/* fix: offset frames were drawn against the whole figure (photo +
   caption), so the gold box ran through the caption text. The
   offset now anchors to a media-only wrapper. */
.v8-frame-media, .mx-frame-media { position: relative; }

/* detail cards — quiet editorial stat cards */
.detail-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 36px 0 8px;
}
.detail-card {
  border: 1px solid rgba(201,169,110,0.32);
  padding: 28px 26px 24px;
  position: relative;
}
.detail-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 34px; height: 1px;
  background: var(--gold);
}
.dc-val {
  font-family: var(--f-display);
  font-weight: 340;
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.dc-val em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.5em;
  color: var(--gold);
  letter-spacing: 0;
}
.dc-label {
  margin-top: 12px;
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.sec-ink .dc-val, .sec-teal .dc-val { color: var(--cream); }
.sec-ink .dc-label, .sec-teal .dc-label { color: rgba(250,247,242,0.5); }
@media (max-width: 480px) {
  .detail-cards { gap: 12px; }
  .detail-card { padding: 22px 18px 18px; }
}

/* =====================================================
   v16 · ENTRANCE INTRO — editorial, restrained
   Solid ink screen · wordmark set once (no per-letter stagger) ·
   single gold hairline rule draws left→right · clean fade/lift exit.
   Under 2 seconds total. Mechanics: once-per-session sessionStorage
   'cbIntroSeen', body scroll lock during play, all 8 pages,
   prefers-reduced-motion hides it.
   ===================================================== */

/* =====================================================
   v17 · ENTRANCE INTRO — "The Atelier Title Card"
   Layered, art-directed luxury title card. A cream color-field
   band (the strong contrast beat) opens against the ink screen;
   the CB monogram is unveiled by a masked wipe; a giant Cormorant
   italic word rides the cream band; a gold seal roundel with
   circular text stamps the edge; crop/registration marks and an
   ornamental rule frame the card. Motion = masked reveals only
   (clip-path / overflow wipes) on long cubic-bezier easing. ~2.9s.
   Mechanics unchanged: sessionStorage 'cbIntroSeen', body scroll
   lock, all 8 pages, prefers-reduced-motion hides it, safe @390px.
   ===================================================== */
.site-intro {
  position: fixed; inset: 0; z-index: 4000; overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 42%, #063a37 0%, var(--ink) 58%, #021f1d 100%);
  display: flex; align-items: center; justify-content: center;
  opacity: 1; visibility: visible;
  transition: opacity 0.55s var(--ease), visibility 0.55s var(--ease), transform 0.55s var(--ease);
}
.site-intro.si-exit { opacity: 0; visibility: hidden; transform: translateY(-12px); }
.site-intro.si-done, .site-intro.si-skip { display: none !important; }
body.si-lock { overflow: hidden; }

/* Stage — fixed art-board, centered */
.si-stage {
  position: relative;
  width: min(88vw, 720px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}


/* top ink zone: folio + monogram + eyebrow */
.si-folio {
  display: block; text-align: center;
  font-family: var(--f-body); font-size: 0.5rem; font-weight: 700;
  letter-spacing: 0.44em; text-transform: uppercase; text-indent: 0.44em;
  color: var(--gold);
  opacity: 0; animation: siFade 0.4s ease 0.05s forwards;
}
.si-mono { display: block; width: 92px; height: 78px; overflow: hidden; margin: 12px auto 0;
  clip-path: inset(0 0 100% 0);
  animation: siUnveil 0.7s var(--ease) 0.15s forwards; }
.si-mono-img { width: 92px; height: auto; display: block;
  filter: saturate(0.5) brightness(1.22) contrast(1.02); }
@keyframes siUnveil { to { clip-path: inset(0 0 0 0); } }
.si-eyebrow {
  display: block; text-align: center; margin: 16px auto 0;
  font-family: var(--f-body); font-size: 1.05rem; font-weight: 500;
  letter-spacing: 0.5em; text-transform: uppercase; text-indent: 0.5em;
  color: var(--cream);
  opacity: 0; animation: siFade 0.5s ease 0.55s forwards;
}

/* v18: open lockup — no box. "Beauty" in gold italic beneath the wordmark */
.si-band {
  position: relative; width: 100%;
  margin: 4px 0 8px;
  background: transparent;
  padding: 8px 0 20px;
}
.si-word {
  display: block; text-align: center;
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500;
  font-size: clamp(1.9rem, 4.6vw, 2.9rem); line-height: 1;
  letter-spacing: 0.04em; color: var(--gold);
  clip-path: inset(0 100% 0 0);              /* masked L→R reveal */
  animation: siWord 0.7s var(--ease) 0.8s forwards;
}
@keyframes siWord { to { clip-path: inset(0 -6% 0 0); } }
/* single centered gold rule beneath the lockup */
.si-band::after {
  content: ''; position: absolute; bottom: 0; left: 50%; width: 150px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transform: translateX(-50%) scaleX(0); transform-origin: center;
  animation: siRuleC 0.6s var(--ease) 1.15s forwards;
}
@keyframes siRuleC { to { transform: translateX(-50%) scaleX(1); } }

/* gold seal roundel — circular text, stamps the band's right edge */
.si-seal {
  position: absolute; top: 50%; right: -34px;
  width: 78px; height: 78px; transform: translateY(-50%) scale(0.82) rotate(-8deg);
  opacity: 0; animation: siSeal 0.7s var(--ease) 1.3s forwards;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.28));
}
.si-seal svg { width: 100%; height: 100%; display: block; }
.si-seal-disc { fill: var(--ink); }
.si-seal-ring { fill: none; stroke: var(--gold); stroke-width: 1; }
.si-seal-text { fill: var(--gold); font-family: var(--f-body); font-size: 7px;
  font-weight: 700; letter-spacing: 1.9px; }
.si-seal-mark { fill: var(--gold-2); font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 27px; }
.si-seal-spin { transform-origin: 50px 50px; animation: siSpin 26s linear infinite; }
@keyframes siSeal { to { opacity: 1; transform: translateY(-50%) scale(1) rotate(0deg); } }
@keyframes siSpin { to { transform: rotate(360deg); } }

/* bottom ink zone: tag row + ornamental rule */
.si-bot { text-align: center;
  opacity: 0; animation: siFade 0.6s ease 1.45s forwards; }
.si-tags {
  display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap;
  justify-content: center;
  font-family: var(--f-body); font-size: 0.5rem; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(250,247,242,0.66);
}
.si-tags i { color: var(--gold); font-style: normal; font-size: 0.42rem;
  transform: translateY(-1px); }
.si-orn {
  width: 200px; height: 7px; margin: 16px auto 0; position: relative;
  transform: scaleX(0); transform-origin: center;
  animation: siOrn 0.72s var(--ease) 1.78s forwards;
  background:
    linear-gradient(to right, transparent, var(--gold)) left center / 84px 1px,
    linear-gradient(to left, transparent, var(--gold)) right center / 84px 1px;
  background-repeat: no-repeat;
}
.si-orn::after { content: ''; position: absolute; top: 0; left: 50%;
  width: 7px; height: 7px; border: 1px solid var(--gold);
  transform: translate(-50%, 0) rotate(45deg); }
@keyframes siOrn { to { transform: scaleX(1); } }

@keyframes siFade { to { opacity: 1; } }

/* mobile ≤560 — tighten, drop the seal, shrink word */
@media (max-width: 560px) {
  .si-stage { width: 90vw; }
  .si-seal { display: none; }
  .si-band { padding: 6px 0 16px; margin: 4px 0 8px; }
  .si-word { font-size: clamp(1.6rem, 8.5vw, 2.2rem); }
  .si-eyebrow { font-size: 0.78rem; letter-spacing: 0.4em; text-indent: 0.4em; }
  .si-tags { font-size: 0.44rem; letter-spacing: 0.24em; gap: 9px; }
}

@media (prefers-reduced-motion: reduce) { .site-intro { display: none !important; } }

/* ---- fixed luxury page frame (print margin) ---- */
.page-frame {
  position: fixed; inset: 12px; z-index: 990;
  border: 1px solid rgba(201,169,110,0.18);
  pointer-events: none;
}
@media (max-width: 900px) { .page-frame { display: none; } }

/* ---- editorial index numerals (giant outlined) ---- */
@media (min-width: 901px) { .sec-head { grid-template-columns: 210px 1fr; } }
.sec-head-num { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.shn-big {
  font-family: var(--f-display); font-weight: 340;
  /* v16: clamped further + line-height raised to prevent visual overflow into adjacent text at 641-900px */
  font-size: clamp(3.6rem, 5.5vw, 6rem); line-height: 0.92;
  letter-spacing: 0.02em; color: rgba(201,169,110,0.38);
  display: block; overflow: visible;
}
@supports (-webkit-text-stroke: 1px #000) {
  .shn-big { color: transparent; -webkit-text-stroke: 1px rgba(201,169,110,0.55); }
}
.sec-cream .shn-big { color: rgba(6,111,108,0.32); }
@supports (-webkit-text-stroke: 1px #000) {
  .sec-cream .shn-big { color: transparent; -webkit-text-stroke: 1px rgba(6,111,108,0.44); }
}
/* v16 tablet: single-col sec-head, shrink numeral so it stays decorative not dominant */
@media (max-width: 900px) and (min-width: 641px) {
  .shn-big { font-size: clamp(2.6rem, 3.8vw, 3.4rem); line-height: 1; }
}
.shn-of {
  font-family: var(--f-body); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(250,247,242,0.35); padding-left: 5px;
}
.sec-cream .shn-of { color: rgba(3,43,41,0.38); }

/* =====================================================
   v16 · EDITORIAL MICRO-GRAPHIC VOCABULARY
   Numbered index strips · hairline rules with micro-labels ·
   stat tick marks · editorial figure captions · keylines.
   Print-luxury handcrafted language. Consistent across pages.
   ===================================================== */

/* Numbered index strip — runs across top, thin gold hairlines, index number + label */
/* v19: ed-index strips removed per client (read as vibe-coded double lines) */

/* Hairline rule with centered small-caps micro-label */
.rule-label {
  display: flex; align-items: center; gap: 16px;
  margin: 44px 0;
}
.rule-label::before, .rule-label::after {
  content: ''; flex: 1; height: 1px;
  background: rgba(201,169,110,0.22);
}
.rule-label span {
  font-family: var(--f-body); font-size: 0.5rem; font-weight: 700;
  letter-spacing: 0.38em; text-transform: uppercase;
  color: rgba(201,169,110,0.5); white-space: nowrap;
}
.sec-cream .rule-label::before, .sec-cream .rule-label::after { background: rgba(3,43,41,0.14); }
.sec-cream .rule-label span { color: rgba(3,43,41,0.38); }

/* Stat tick marks — small horizontal dashes that visually quantify a stat */
.stat-ticks { display: flex; align-items: center; gap: 3px; margin-bottom: 10px; }
.stat-tick { width: 10px; height: 2px; background: var(--gold); }
.stat-tick.dim { background: rgba(201,169,110,0.2); }
.sec-cream .stat-tick { background: var(--teal); }
.sec-cream .stat-tick.dim { background: rgba(6,111,108,0.18); }

/* Editorial figure caption */
.fig-cap {
  display: flex; align-items: baseline; gap: 10px;
  margin-top: 14px; padding-top: 11px;
  border-top: 1px solid rgba(201,169,110,0.2);
}
.fig-cap-idx {
  font-family: var(--f-display); font-style: italic;
  font-size: 0.68rem; color: var(--gold); flex-shrink: 0; line-height: 1;
}
.fig-cap-text {
  font-family: var(--f-body); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.04em; color: rgba(250,247,242,0.45); line-height: 1.5;
}
.sec-cream .fig-cap { border-top-color: rgba(3,43,41,0.12); }
.sec-cream .fig-cap-text { color: rgba(3,43,41,0.5); }
.sec-cream .fig-cap-idx { color: var(--teal); }

/* Asymmetric keyline accents */
.keyline-left {
  width: 52px; height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 28px 0;
}
.keyline-center {
  width: 80px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 28px auto;
}
.sec-cream .keyline-left { background: linear-gradient(to right, var(--teal), transparent); opacity: 0.45; }

/* v17e: corner brackets removed per client — frames keep clean hairline borders only */

/* ---- CTA ornament divider (line · diamond · line) ---- */
.cta-inner { padding-top: 58px; }
.cta-inner::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 230px; height: 7px; pointer-events: none;
  background:
    linear-gradient(to right, transparent, var(--gold)) left center / 96px 1px,
    linear-gradient(to left, transparent, var(--gold)) right center / 96px 1px;
  background-repeat: no-repeat;
}
.cta-inner::after {
  content: ''; position: absolute; top: 0; left: 50%;
  width: 7px; height: 7px; border: 1px solid var(--gold); pointer-events: none;
  transform: translate(-50%, -3px) rotate(45deg);
}

/* =====================================================
   v17 · SITEWIDE GRAPHIC DETAIL
   Reusable gold wax-seal · gold contrast colophon band
   (ink-on-gold — the sitewide color-contrast beat) ·
   editorial magazine spines on the screen edges (desktop).
   Injected by main.js on every page; mobile-safe.
   ===================================================== */

/* ---- reusable gold wax seal / stamp ---- */
.wax-seal { width: 120px; height: 120px; pointer-events: none; }
.wax-seal svg { width: 100%; height: 100%; display: block; }
.wax-seal .ws-ring   { fill: none; stroke: var(--gold); stroke-width: 1; }
.wax-seal .ws-ring-2 { fill: none; stroke: rgba(201,169,110,0.5); stroke-width: 1; }
.wax-seal .ws-text   { fill: var(--gold); font-family: var(--f-body); font-size: 6.4px;
  font-weight: 700; letter-spacing: 2.1px; }
.wax-seal .ws-mark   { fill: var(--gold); font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 30px; }
.wax-seal .ws-est    { fill: rgba(201,169,110,0.75); font-family: var(--f-body);
  font-size: 4.4px; font-weight: 700; letter-spacing: 1.6px; }
.wax-seal .ws-spin   { transform-origin: 50px 50px; animation: wsSpin 46s linear infinite; }
@keyframes wsSpin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .wax-seal .ws-spin { animation: none; } }

/* ---- gold contrast colophon (before footer) ---- */
.cb-colophon { position: relative; background: var(--ink); }
.cb-colophon .cb-seal-wrap {
  display: flex; justify-content: center;
  padding-top: 38px; margin-bottom: 24px; position: relative; z-index: 2;
}
.cb-colophon .cb-seal-wrap .wax-seal {
  background: var(--ink); border-radius: 50%; padding: 8px;
}
.cb-goldband {
  overflow: hidden; white-space: nowrap;
  background: linear-gradient(180deg, var(--gold-2) 0%, var(--gold) 55%, #b8965c 100%);
  border-top: 1px solid rgba(3,43,41,0.35);
  border-bottom: 1px solid rgba(3,43,41,0.35);
  padding: 24px 0 22px;
}
.cb-goldband-inner {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 18px; padding: 0 28px;
}
.cb-goldband-inner span {
  font-family: var(--f-body); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink);
}
.cb-goldband-inner i {
  color: rgba(3,43,41,0.55); font-style: normal; font-size: 0.5rem;
  transform: translateY(-1px);
}
@media (max-width: 640px) {
  .cb-colophon .cb-seal-wrap { padding-top: 28px; margin-bottom: 18px; }
  .cb-colophon .cb-seal-wrap .wax-seal { width: 92px; height: 92px; }
  .cb-goldband { padding: 20px 0 18px; }
  .cb-goldband-inner { gap: 10px 12px; }
  .cb-goldband-inner span { font-size: 0.5rem; letter-spacing: 0.22em; }
}

/* ---- editorial magazine spines (fixed screen edges, desktop) ---- */
.edge-spine {
  position: fixed; top: 50%; z-index: 900; pointer-events: none;
  writing-mode: vertical-rl;
  font-family: var(--f-body); font-size: 0.5rem; font-weight: 700;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: rgba(201,169,110,0.5);
  display: flex; align-items: center; gap: 20px;
}
.edge-spine::before, .edge-spine::after {
  content: ''; width: 1px; height: 34px; background: rgba(201,169,110,0.4);
}
.edge-spine-l { left: 26px; transform: translateY(-50%) rotate(180deg); }
.edge-spine-r { right: 26px; transform: translateY(-50%); }
@media (max-width: 1180px) { .edge-spine { display: none; } }

/* ============================================================
   v18 · CIRCULAR ACTION RAIL (fixed bottom-right, all pages)
   ============================================================ */
.fab-rail {
  position: fixed; right: 22px; top: 50%; transform: translateY(-50%); z-index: 960;
  display: flex; flex-direction: column; align-items: center; gap: 11px;
}
.fab-btn {
  position: relative;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--ink);
  border: 1px solid rgba(201,169,110,0.6);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.32);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.fab-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: translateY(-2px); }
.fab-btn svg { width: 19px; height: 19px; display: block; }
.fab-btn::after {
  content: attr(data-label);
  position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%);
  background: var(--ink); color: var(--cream);
  border: 1px solid rgba(201,169,110,0.4);
  font-family: var(--f-body); font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 7px 12px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.22s ease;
}
.fab-btn:hover::after { opacity: 1; }
@media (max-width: 640px) {
  .fab-rail { right: 14px; gap: 9px; }
  .fab-btn { width: 44px; height: 44px; }
  .fab-btn svg { width: 17px; height: 17px; }
  .fab-btn::after { display: none; }
}

/* =====================================================
   v20 · DE-VIBE PASS
   Removes editorial/template flourishes flagged by client:
   folio numerals, tracked-caps eyebrows, seals, spines,
   gold contrast band, ornament dividers, ghost numerals.
   Plain, confident salon voice. Palette + fonts unchanged.
   ===================================================== */

/* Injected/decorative template flourishes — never render */
.page-frame,
.wax-seal,
.cb-colophon,
.cb-goldband,
.edge-spine,
.sec-divider,
.marquee,
.rule-label,
.hero-eyebrow,
.qb-ghost-mark,
.mx-story-ghost,
.mx-step-ghost,
.svc-divider,
.qb-rule-top,
.qb-rule-bottom { display: none !important; }

/* CTA ornament divider (line · diamond · line) above every CTA */
.cta-inner { padding-top: 0 !important; }
.cta-inner::before,
.cta-inner::after { content: none !important; display: none !important; }

/* Folio numerals + numbered-list section markers */
.sec-head-num,
.condition-num,
.process-num,
.policy-num,
.svc-num { display: none !important; }

/* Section header stands alone (numeral column removed) */
.sec-head { grid-template-columns: 1fr !important; gap: 0 !important; }

/* Conditions list — collapse the numeral column */
.condition { grid-template-columns: 1fr 1.9fr !important; gap: 32px !important; }
@media (max-width: 900px) { .condition { grid-template-columns: 1fr !important; } }
/* items that were numeral + description only → full-width description */
.condition:not(:has(.condition-name)) { grid-template-columns: 1fr !important; }
.condition:not(:has(.condition-name)) .condition-desc { grid-column: 1 / -1 !important; }

/* Policy items — collapse the numeral column */
.policy-item { grid-template-columns: 1fr !important; }

/* Eyebrow / kicker labels → quiet, plain, normal-case lead-in */
.label {
  font-family: var(--f-body) !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
  color: var(--gold) !important;
  gap: 0 !important;
}
.label::before { display: none !important; }
.sec-cream .label { color: var(--teal) !important; }

/* Services + homepage category labels → normal-case, minimal tracking */
.svc-cat-label,
.svc-hero-eyebrow,
.sv-sig-label,
.sv-cat-name {
  text-transform: none !important;
  letter-spacing: 0.01em !important;
}

/* Mobile menu — plain links (no "Menu" eyebrow, no numerals) */
.mm-eyebrow { display: none !important; }
.mm-links { margin-top: auto; }

/* Homepage hero subline */
.hm-hero-sub {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.05rem, 1.9vw, 1.4rem);
  line-height: 1.5;
  color: rgba(250,247,242,0.82);
  max-width: 30em;
  margin: 0 0 38px;
}

/* =====================================================
   v21 · Sora headings (client pick) + action-rail scroll reveal
   ===================================================== */
/* Hero uses its own serif treatment (see home.css v22) */

/* Rail hidden on first view; slides in after scrolling past the hero */
.fab-rail {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.fab-rail.on {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}
