/* =========================================================================
   DR. CORLADE — Clinică Stomatologică Bacău
   Luxury Dental design system
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
  --ink:         #0F0A06;
  --ink-soft:    #1A120B;
  --ink-2:       #2A1E14;
  --gold:        #C9A875;
  --gold-deep:   #A6864F;
  --gold-hi:     #E6CFA3;
  --bone:        #FAF7F2;
  --cream:       #F5EBD8;
  --white:       #FFFFFF;
  --muted:       #6B5D52;
  --muted-2:     #9A8E82;
  --line:        rgba(15,10,6,0.08);
  --line-strong: rgba(15,10,6,0.16);
  --success:     #3FAC60;
  --danger:      #C24A38;

  --font-serif: 'Instrument Serif', 'Times New Roman', serif;
  --font-sans:  'Inter Tight', -apple-system, system-ui, sans-serif;
  --font-mono:  'JetBrains Mono', ui-monospace, 'Menlo', monospace;

  --maxw: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 4px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 2px rgba(15,10,6,0.04), 0 2px 6px rgba(15,10,6,0.05);
  --shadow-md: 0 4px 14px rgba(15,10,6,0.06), 0 10px 30px rgba(15,10,6,0.08);
  --shadow-lg: 0 10px 30px rgba(15,10,6,0.10), 0 24px 60px rgba(15,10,6,0.12);
  --shadow-dark: 0 10px 40px rgba(0,0,0,0.35);

  /* 8px spacing scale (1rem = 16px base) */
  --space-1: 0.5rem;    /*  8px */
  --space-2: 1rem;      /* 16px */
  --space-3: 1.5rem;    /* 24px */
  --space-4: 2rem;      /* 32px */
  --space-5: 2.5rem;    /* 40px */
  --space-6: 3rem;      /* 48px */
  --space-7: 4rem;      /* 64px */
  --space-8: 5rem;      /* 80px */
  --space-9: 6rem;      /* 96px */

  --section-y: clamp(3.5rem, 6vw, 6rem);   /* 56 → 96 px, 8-grid aligned */
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, video { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* Prevent horizontal overflow from reveal transforms (translateX) creating scroll */
  overflow-x: clip;
}

body {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}

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

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0;
}
.display em { font-style: italic; color: var(--gold); font-weight: 400; }

.h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.0;
  letter-spacing: -0.015em;
  margin: 0;
}
.h1 em { font-style: italic; color: var(--gold-deep); }

.h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
}
.h2 em { font-style: italic; color: var(--gold-deep); }

.h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin: 0;
}
.h3 em { font-style: italic; color: var(--gold-deep); }

.lede {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  color: var(--ink);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-deep);
}

.body      { font-size: 16px; line-height: 1.65; color: var(--ink); }
.body-lg   { font-size: 18px; line-height: 1.65; color: var(--ink); }
.body-muted{ font-size: 15px; line-height: 1.65; color: var(--muted); }
.small     { font-size: 14px; line-height: 1.55; color: var(--muted); }

/* ---------- Layout ---------- */
.container, .wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { position: relative; }

.section {
  padding: var(--section-y) 0;
}
.section.tight { padding: 64px 0; }
.section.dark  { background: var(--ink); color: var(--bone); }
.section.cream { background: var(--cream); }
.section.bone  { background: var(--bone); }

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);       /* 16px */
  margin: 0 0 var(--space-6); /* 48px */
  max-width: 760px;
}
.section-head .eyebrow { margin: 0; }
.section-head h2, .section-head .h2, .section-head .h3 { margin: 0; }
.section-head p  { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.55; max-width: 60ch; }
.section-head.center {
  text-align: center;
  margin-left: auto; margin-right: auto;
  max-width: 720px;
}
.section-head.center .eyebrow { margin: 0 auto; }
.section-head.center p { margin-left: auto; margin-right: auto; }
.section-head.two-col {
  max-width: none;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
@media (max-width: 900px) {
  .section-head.two-col { grid-template-columns: 1fr; gap: 16px; }
}

/* Sub-section inside a section (e.g. "Restul echipei" after featured) */
.subsection {
  margin-top: var(--space-7);     /* 64px */
  padding-top: var(--space-5);    /* 40px */
  border-top: 1px solid var(--line-strong);
}
.subsection .section-head { margin-bottom: var(--space-4); /* 32px */ }

/* Bottom row of actions/CTAs after a section */
.section-foot {
  display: flex;
  justify-content: center;
  margin-top: var(--space-5); /* 40px */
}

.divider { height: 1px; background: var(--line-strong); border: 0; margin: 0; }
.gold-rule { height: 2px; width: 48px; background: var(--gold); border: 0; margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 14px 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary      { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.btn-primary:hover{ background: var(--gold); color: var(--ink); border-color: var(--gold); }

.btn-gold         { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-gold:hover   { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--bone); }

.btn-ghost        { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover  { background: var(--ink); color: var(--bone); }

.btn-ghost-light         { background: transparent; color: var(--bone); border-color: rgba(250,247,242,0.5); }
.btn-ghost-light:hover   { background: var(--gold); color: var(--ink); border-color: var(--gold); }

.btn-text {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink); font-weight: 500; font-size: 14px;
  border-bottom: 1px solid var(--ink);
  padding: 2px 0;
  transition: color 0.2s, border-color 0.2s;
}
.btn-text:hover { color: var(--gold-deep); border-color: var(--gold-deep); }

.btn-lg { padding: 18px 28px; font-size: 15px; }
.btn-sm { padding: 10px 16px; font-size: 13px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;          /* above backdrop (95) so drawer text isn't blurred by backdrop-filter */
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s, padding 0.3s, color 0.3s, opacity 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
  color: var(--bone);
  border-bottom: 1px solid transparent;
}
.nav.on-light { color: var(--ink); }
.nav.is-scrolled {
  background: rgba(250,247,242,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  color: var(--ink);
  padding: 12px var(--gutter);
}
.nav-inner {
  width: 100%;
  max-width: var(--maxw);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.nav .brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.nav .brand em { font-style: italic; color: var(--gold); }
.nav .brand small {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
  opacity: 0.7;
  font-weight: 500;
}
.nav .brand .brand-mark {
  width: 40px; height: 40px; border-radius: 50%;
  overflow: hidden; background: var(--ink);
  flex-shrink: 0;
}
.nav .brand .brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.nav .brand .brand-text { display: flex; flex-direction: column; gap: 2px; }

.nav-links {
  display: flex;
  gap: 6px;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
}
.nav-links > a, .nav-svc-trigger {
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
  color: inherit;
  cursor: pointer;
}
.nav-links > a:hover, .nav-svc-trigger:hover { color: var(--gold); }
.nav-links > a.active { color: var(--gold); }
.nav.is-scrolled .nav-links > a.active { color: var(--gold-deep); }

.nav-svc { position: relative; }
/* Invisible "bridge" between trigger and panel so the hover state survives
   the gap between them — fixes the dropdown disappearing on cursor move. */
.nav-svc::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  height: 16px;
  /* invisible but consumes pointer events to keep :hover */
}
.nav-svc-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: min(720px, 90vw);
  background: var(--bone);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.2s ease;
  transition-delay: 80ms;        /* grace period before close */
  z-index: 90;
}
.nav-svc:hover .nav-svc-panel,
.nav-svc:focus-within .nav-svc-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;          /* open immediately */
}
.nav-svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}
.nav-svc-item {
  display: flex; gap: 12px; align-items: center;
  padding: 10px; border-radius: 8px;
  transition: background 0.2s;
}
.nav-svc-item:hover { background: var(--cream); }
.nav-svc-item-img {
  width: 56px; height: 56px; border-radius: 6px; object-fit: cover;
  flex-shrink: 0;
}
.nav-svc-item-title { font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.2; }
.nav-svc-item-desc  { font-size: 12px; color: var(--muted); line-height: 1.4; margin-top: 4px; }
.nav-svc-footer {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: flex-end;
}

.nav-cta { display: flex; align-items: center; gap: 14px; justify-self: end; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600;
  color: inherit;
  padding: 8px 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
  opacity: 0.9;
}
.nav-phone:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); opacity: 1; }

.btn-burger {
  width: 40px; height: 40px; display: none;
  border: 1px solid currentColor; border-radius: 999px;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
  color: inherit;
}
.btn-burger span {
  display: block; width: 16px; height: 1.5px; background: currentColor;
  transition: transform 0.3s, opacity 0.2s;
}
.btn-burger.is-open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.btn-burger.is-open span:nth-child(2) { opacity: 0; }
.btn-burger.is-open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

@media (max-width: 1040px) {
  .nav-links, .nav-phone { display: none; }
  .btn-burger { display: inline-flex; }

  /* On mobile/tablet, the nav always has a solid background — no transparent state.
     This guarantees the header is always visible and legible while scrolling.
     IMPORTANT: do NOT use backdrop-filter here — it creates a containing block
     that breaks position:fixed children (the drawer would be confined to nav height).
     We also must override .nav.is-scrolled which has higher specificity. */
  .nav,
  .nav.is-scrolled {
    background: var(--bone);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    padding: 12px var(--gutter);
  }
  .nav.is-scrolled {
    box-shadow: 0 2px 14px rgba(15, 10, 6, 0.08);
  }

  /* --- Drawer (slide-from-right, half-page) --- */
  /* Default closed state — drawer always exists in DOM but slid off-screen */
  .nav-links {
    display: flex !important;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(85vw, 22rem);
    z-index: 90;
    background: var(--bone);
    flex-direction: column;
    padding: 0;
    gap: 0;
    border-left: 1px solid var(--line);
    box-shadow: -1.25rem 0 3rem rgba(15, 10, 6, 0.20);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(100%);
    visibility: hidden;
    transition:
      transform 0.5s cubic-bezier(0.32, 0.72, 0.18, 1),
      visibility 0s linear 0.5s;
  }
  .nav-links.is-open {
    transform: translateX(0);
    visibility: visible;
    transition:
      transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
      visibility 0s linear 0s;
  }
  @media (min-width: 540px) {
    .nav-links { width: min(50vw, 26rem); }
  }

  /* Drawer header with logo — compact */
  .nav-drawer-head {
    padding: var(--space-2) var(--space-3);                 /* 16px 24px */
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, var(--cream) 0%, transparent 100%);
  }
  .nav-drawer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;                                          /* 10px */
    text-decoration: none;
    color: var(--ink);
  }
  .nav-drawer-brand__mark {
    width: 2.25rem;                                         /* 36px — compact */
    height: 2.25rem;
    border-radius: 50%;
    overflow: hidden;
    background: var(--ink);
    display: grid;
    place-items: center;
    flex: none;
  }
  .nav-drawer-brand__mark img { width: 100%; height: 100%; object-fit: cover; }
  .nav-drawer-brand__text { display: flex; flex-direction: column; gap: 2px; line-height: 1; }
  .nav-drawer-brand__name {
    font-family: var(--font-serif);
    font-size: 1rem;                                        /* 16px */
    color: var(--ink);
  }
  .nav-drawer-brand__name em { font-style: italic; color: var(--gold-deep); }
  .nav-drawer-brand small {
    font-family: var(--font-mono);
    font-size: 0.5rem;                                      /* 8px — very compact */
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* Top-level links inside drawer — compact so all 7 items + footer fit */
  .nav-links > a,
  .nav-links .nav-svc > .nav-svc-trigger {
    font-family: var(--font-serif);
    font-size: 1.125rem;                                    /* 18px — more compact */
    padding: 0.875rem var(--space-3);                       /* 14px / 24px */
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--space-2);
    transition:
      background 0.25s ease,
      color 0.25s ease,
      padding-left 0.3s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav-links > a:hover,
  .nav-links > a.active,
  .nav-links .nav-svc > .nav-svc-trigger:hover {
    background: var(--cream);
    color: var(--gold-deep);
    padding-left: calc(var(--space-3) + 6px);
  }
  /* Stagger reveal: when drawer is closed items are translated right + faded */
  .nav-links > a,
  .nav-links > .nav-svc,
  .nav-links > .nav-drawer-foot {
    opacity: 0;
    transform: translateX(1.5rem);
  }
  .nav-links.is-open > a,
  .nav-links.is-open > .nav-svc,
  .nav-links.is-open > .nav-drawer-foot {
    opacity: 1;
    transform: translateX(0);
  }
  /* Stagger delays — applied only when opening (no delay on close) */
  .nav-links.is-open > a:nth-of-type(1),
  .nav-links.is-open .nav-drawer-head { transition-delay: 0.05s; }
  .nav-links.is-open > a:nth-of-type(2)              { transition-delay: 0.10s; }
  .nav-links.is-open > a:nth-of-type(3)              { transition-delay: 0.14s; }
  .nav-links.is-open > .nav-svc                      { transition-delay: 0.18s; }
  .nav-links.is-open > a:nth-of-type(4)              { transition-delay: 0.22s; }
  .nav-links.is-open > a:nth-of-type(5)              { transition-delay: 0.26s; }
  .nav-links.is-open > a:nth-of-type(6)              { transition-delay: 0.30s; }
  .nav-links.is-open > .nav-drawer-foot              { transition-delay: 0.34s; }
  .nav-links .nav-drawer-head {
    opacity: 0;
    transform: translateX(1rem);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav-links.is-open .nav-drawer-head { opacity: 1; transform: translateX(0); }

  /* Servicii on mobile: trigger stays at top with chevron toggle on the right.
     Submenu expands BELOW it inline (accordion). Tap on Servicii text → /servicii.
     Tap on chevron toggle → expand/collapse submenu. */
  .nav-links .nav-svc {
    position: relative;
    display: block;
    border-bottom: 1px solid var(--line);
  }
  .nav-links .nav-svc > .nav-svc-trigger {
    border-bottom: 0;
    padding-right: 4rem;                                     /* 64px room for toggle btn */
  }
  /* Hide desktop chevron, use toggle button instead */
  .nav-links .nav-svc > .nav-svc-trigger .nav-svc-chevron { display: none; }

  /* Chevron toggle button — sits absolutely at right edge of the Servicii ROW only.
     Fixed height (matches trigger row) so it doesn't slide down when the panel expands. */
  .nav-svc-toggle { display: none; }
  .nav-links .nav-svc-toggle {
    display: grid;
    place-items: center;
    position: absolute;
    top: 0; right: 0;
    width: 3.5rem;                                           /* 56px tap area */
    height: 3.625rem;                                        /* 58px — matches Servicii row */
    background: transparent;
    color: var(--muted);
    border-left: 1px solid var(--line);
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
    z-index: 1;
  }
  .nav-links .nav-svc-toggle:hover { background: var(--cream); color: var(--ink); }
  .nav-links .nav-svc-toggle svg {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav-links .nav-svc.is-expanded .nav-svc-toggle svg { transform: rotate(180deg); }
  .nav-links .nav-svc.is-expanded .nav-svc-toggle { color: var(--gold-deep); }

  /* Submenu panel — RESET all desktop styles, expand inline on .is-expanded */
  .nav-links .nav-svc-panel {
    /* Reset desktop popover positioning */
    display: block !important;
    position: static !important;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none !important;
    width: 100% !important;
    max-width: none !important;
    /* Mobile accordion */
    background: linear-gradient(180deg, var(--cream) 0%, rgba(245, 235, 216, 0.4) 100%);
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0 !important;
    box-shadow: inset 0 1px 0 rgba(15, 10, 6, 0.04);
    padding: 0;
    margin: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    /* Collapsed by default */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.32, 0.72, 0.18, 1),
                border-top-color 0.3s ease;
    z-index: auto;
  }
  .nav-links .nav-svc.is-expanded .nav-svc-panel {
    max-height: 60rem;                                       /* enough for 6 items */
  }

  /* Submenu inner grid — single column on mobile */
  .nav-links .nav-svc-grid {
    display: flex !important;
    flex-direction: column;
    grid-template-columns: none;
    padding: var(--space-2) 0;                               /* 16px vertical */
    gap: 0;
  }
  .nav-links .nav-svc-item {
    display: grid;
    grid-template-columns: 2.75rem 1fr;                      /* 44px thumb + text */
    align-items: center;
    gap: var(--space-2);                                     /* 16px */
    padding: 0.625rem var(--space-3);                        /* 10px / 24px */
    text-decoration: none;
    color: var(--muted);
    border-radius: 0;
    transition: background 0.25s ease, padding-left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav-links .nav-svc-item:hover {
    background: var(--bone);
    padding-left: calc(var(--space-3) + 4px);
  }
  .nav-links .nav-svc-item-img {
    width: 2.75rem;                                          /* 44px */
    height: 2.75rem;
    object-fit: cover;
    border-radius: 0.5rem;                                   /* 8px */
    box-shadow: 0 1px 4px rgba(15, 10, 6, 0.08);
    flex: none;
  }
  .nav-links .nav-svc-item-title {
    font-family: var(--font-serif);
    font-size: 1rem;                                         /* 16px */
    font-weight: 400;
    color: var(--ink);
    line-height: 1.15;
  }
  .nav-links .nav-svc-item-desc {
    font-family: var(--font-sans);
    font-size: 0.75rem;                                      /* 12px */
    font-weight: 400;
    color: var(--muted);
    line-height: 1.4;
    margin-top: 3px;
  }
  .nav-links .nav-svc-footer {
    padding: var(--space-2) var(--space-3);                  /* 16px / 24px */
    border-top: 1px solid rgba(15, 10, 6, 0.08);
    background: rgba(15, 10, 6, 0.02);
    margin: 0;
    display: flex;
    justify-content: flex-end;
  }
  .nav-links .nav-svc-footer .btn-text {
    color: var(--ink);
    font-weight: 500;
    font-size: 0.8125rem;                                    /* 13px */
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    text-decoration: none;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 2px;
    transition: color 0.25s ease, border-color 0.25s ease;
  }
  .nav-links .nav-svc-footer .btn-text:hover {
    color: var(--gold-deep);
    border-color: var(--gold);
  }

  /* Submenu panel hidden on mobile — desktop dropdown remains intact */
  .nav-svc-panel { display: none; }

  /* Drawer footer with CTA buttons + logo — compact */
  .nav-drawer-foot {
    margin-top: auto;                                        /* push to bottom */
    padding: var(--space-2) var(--space-3);                  /* 16px / 24px */
    background: var(--ink);
    color: var(--bone);
    display: flex;
    flex-direction: column;
    gap: var(--space-1);                                     /* 8px */
  }
  .nav-drawer-foot .btn {
    padding: 0.6875rem var(--space-2);                       /* 11px / 16px — compact */
    font-size: 0.8125rem;                                    /* 13px */
  }
  .btn-block { width: 100%; justify-content: center; }
  /* Bottom logo lockup */
  .nav-drawer-foot__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;                                           /* 10px */
    padding-top: var(--space-2);                             /* 16px */
    margin-top: var(--space-1);                              /* 8px */
    border-top: 1px solid rgba(250, 247, 242, 0.12);
  }
  .nav-drawer-foot__logo img {
    width: 1.75rem;                                          /* 28px */
    height: 1.75rem;
    object-fit: contain;
    flex: none;
  }
  .nav-drawer-foot__logo span {
    font-family: var(--font-mono);
    font-size: 0.5625rem;                                    /* 9px */
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(250, 247, 242, 0.55);
    line-height: 1.4;
  }
  .nav-drawer-foot__logo span em {
    font-style: italic;
    color: var(--gold);
    text-transform: none;
    letter-spacing: 0;
  }

  /* Backdrop overlay — below nav (100) so drawer text remains crisp */
  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 95;
    background: rgba(15, 10, 6, 0.55);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
  }
}

/* Hide drawer-only elements on desktop */
@media (min-width: 1041px) {
  .nav-drawer-head,
  .nav-drawer-foot,
  .nav-svc-toggle,
  .nav-backdrop { display: none !important; }
}

/* ---------- Hero banner (dark, full viewport feel) ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  background: var(--ink);
  color: var(--bone);
  overflow: hidden;
  padding: 180px var(--gutter) 60px;
  display: flex;
  flex-direction: column;
}
.hero > .hero-inner { margin-bottom: auto; }
.hero-photo-bg,
.hero-video-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
}
.hero-video-bg { pointer-events: none; }
@media (prefers-reduced-motion: reduce) {
  .hero-video-bg { display: none; }
}
.hero-scrim {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(95deg, rgba(10,6,4,0.92) 0%, rgba(10,6,4,0.78) 30%, rgba(10,6,4,0.5) 60%, rgba(10,6,4,0.55) 100%),
    linear-gradient(180deg, rgba(10,6,4,0.35) 0%, transparent 25%, transparent 55%, rgba(5,3,2,0.9) 100%);
}
.hero-inner { position: relative; z-index: 2; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 78% 55%, rgba(201,168,117,0.22) 0%, rgba(201,168,117,0.06) 35%, transparent 62%),
    radial-gradient(ellipse 70% 60% at 20% 20%, rgba(90,60,30,0.45) 0%, transparent 55%),
    linear-gradient(175deg, #1a110d 0%, #0a0604 55%, #050302 100%);
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 28%;
  background: linear-gradient(180deg, transparent 0%, rgba(5,3,2,0.7) 55%, #050302 100%);
  pointer-events: none;
}
.hero-bg-image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 70% center;
  opacity: 0.06;
  z-index: 0;
  filter: blur(2px);
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
}
.hero-left {
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 18px;
}
.hero-left > * { margin: 0; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
}
.hero-kicker::before { content: ""; width: 36px; height: 1px; background: var(--gold); }
.hero h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(40px, 5.2vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 14ch;
}
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.hero-lead {
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  color: rgba(250,247,242,0.88);
  max-width: 48ch;
}
.hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 6px;
}
.hero-right {
  position: relative;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  min-height: 580px;
  margin-bottom: -60px;
}
.hero-cutout {
  position: relative;
  width: 100%;
  max-width: 600px;
  display: block;
  z-index: 2;
  filter:
    drop-shadow(0 20px 30px rgba(0,0,0,0.45))
    drop-shadow(0 2px 8px rgba(0,0,0,0.35));
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
}
.hero-cutout img {
  width: 100%; height: auto; display: block;
}
.hero-halo {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%; height: 92%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 48% 65% at 50% 55%, rgba(201,168,117,0.38) 0%, rgba(201,168,117,0.14) 40%, transparent 70%);
  filter: blur(6px);
}
.hero-halo::after {
  content: ""; position: absolute;
  left: 50%; bottom: 8%;
  width: 78%; height: 18px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse 100% 100% at 50% 50%, rgba(0,0,0,0.65) 0%, transparent 70%);
  filter: blur(12px);
}
.hero-status {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 20px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(250,247,242,0.82);
  padding: 9px 18px;
  background: rgba(15,10,6,0.55);
  border: 1px solid rgba(201,168,117,0.28);
  border-radius: 999px;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-status span + span { padding-left: 20px; border-left: 1px solid rgba(201,168,117,0.18); }
.hero-status .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(63,172,96,0.7);
  animation: pulse 2s infinite;
  display: inline-block; margin-right: 8px;
  vertical-align: middle;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(63,172,96,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(63,172,96,0); }
  100% { box-shadow: 0 0 0 0 rgba(63,172,96,0); }
}

.hero-divider { display: none; }
.hero-bottom {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, auto));
  justify-content: start;
  gap: 48px;
  font-family: var(--font-sans);
}
.hero-bottom .item { text-align: left; }
.hero-bottom .item .k {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(250,247,242,0.5);
  margin-bottom: 6px;
}
.hero-bottom .item .v {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.25;
  color: var(--bone);
}
.hero-bottom .item .v em { color: var(--gold); font-style: italic; }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { order: -1; min-height: auto; }
  .hero-cutout { max-width: 420px; margin: 0 auto; }
  .hero-bottom { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hero-status { font-size: 9px; }
}

/* ---------- Why choose us (editorial split: anchor image + numbered list) ---------- */
.why-us {
  background: var(--cream);
}
.why-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
@media (max-width: 880px) { .why-header { grid-template-columns: 1fr; gap: 16px; } }

.why-split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 980px) { .why-split { grid-template-columns: 1fr; gap: 40px; } }

.why-anchor {
  position: sticky;
  top: 120px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow-md);
}
.why-anchor img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.95);
}
.why-anchor::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10,6,4,0.65) 100%);
  pointer-events: none;
}
.why-anchor .tag {
  position: absolute;
  left: 24px; bottom: 22px;
  z-index: 2;
  color: var(--bone);
}
.why-anchor .tag .k {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.why-anchor .tag h4 {
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.01em;
}
.why-anchor .tag h4 em { font-style: italic; color: var(--gold-hi); }
@media (max-width: 980px) {
  .why-anchor { position: static; aspect-ratio: 16 / 11; max-height: 460px; }
}

.why-list {
  display: flex;
  flex-direction: column;
}
.why-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-strong);
  align-items: start;
}
.why-item:first-child {
  border-top: 1px solid var(--line-strong);
}
.why-item:last-child {
  border-bottom: 0;
}
.why-item .n {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(56px, 6vw, 84px);
  line-height: 0.9;
  color: var(--gold-deep);
  letter-spacing: -0.02em;
  align-self: center;
}
.why-item-body h4 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  margin: 0 0 10px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.why-item-body h4 em { font-style: italic; color: var(--gold-deep); }
.why-item-body p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
  margin: 0;
  max-width: 54ch;
}
@media (max-width: 640px) {
  .why-item {
    grid-template-columns: 4.5rem 1fr;     /* 72px number col, fluid body */
    gap: var(--space-2);                    /* 16px */
    padding: var(--space-3) 0;              /* 24px */
    align-items: start;
  }
  .why-item .n {
    font-size: 2.5rem;                      /* 40px — compact but still editorial */
    line-height: 1;
    align-self: start;
    padding-top: 0.125rem;                  /* 2px optical alignment with title */
  }
  .why-item-body h4 {
    font-size: 1.0625rem;                   /* 17px */
    margin: 0 0 var(--space-1);             /* 8px */
    line-height: 1.2;
  }
  .why-item-body p {
    font-size: 0.875rem;                    /* 14px */
    line-height: 1.55;
  }
}

/* ---------- Team featured (2 big cards, alternating) ---------- */
.team-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.team-featured-card {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: center;
}
.team-featured-card.reverse {
  grid-template-columns: 7fr 5fr;
}
.team-featured-card.reverse .portrait { order: 2; }
@media (max-width: 880px) {
  .team-featured-card,
  .team-featured-card.reverse { grid-template-columns: 1fr; gap: 24px; }
  .team-featured-card.reverse .portrait { order: 0; }
}
.team-featured-card .portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: var(--shadow-md);
}
.team-featured-card .portrait img {
  width: 100%; height: 100%; object-fit: cover;
}
.team-featured-card .body h3 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.05;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.team-featured-card .body h3 em { font-style: italic; color: var(--gold-deep); }
.team-featured-card .body .role {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
  display: block;
}
.team-featured-card .body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 14px;
}
.team-featured-card .body .cta { margin-top: 22px; }

/* ---------- Patient band (full-width image + overlay card) ---------- */
.patient-band {
  position: relative;
  padding: 0 var(--gutter);
}
.patient-band-inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  min-height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
}
.patient-band-inner img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.patient-band-inner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,6,4,0.55) 0%, rgba(10,6,4,0.15) 45%, transparent 60%);
  z-index: 1;
}
.patient-band-card {
  position: relative; z-index: 2;
  width: min(440px, 92%);
  margin-left: auto;
  background: var(--bone);
  padding: 44px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-top: 80px; margin-right: 60px; margin-bottom: 80px;
}
@media (max-width: 880px) {
  .patient-band-card {
    width: min(480px, 92%);
    margin: 60px auto;
    padding: 32px 28px;
  }
  .patient-band-inner::after {
    background: linear-gradient(180deg, rgba(10,6,4,0.3) 0%, rgba(10,6,4,0.55) 100%);
  }
}
.patient-band-card .eyebrow { margin-bottom: 14px; }
.patient-band-card h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.patient-band-card h2 em { font-style: italic; color: var(--gold-deep); }
.patient-band-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 22px;
}
.patient-band-card .actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- Service area (localities + map) ---------- */
.service-area {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px) { .service-area { grid-template-columns: 1fr; gap: 32px; } }
.service-area .list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
}
.service-area .list li {
  font-size: 15px;
  color: var(--ink);
  padding: 6px 0 6px 20px;
  position: relative;
  border-bottom: 1px dotted var(--line-strong);
}
.service-area .list li::before {
  content: "";
  position: absolute; left: 0; top: 13px;
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}
.service-area .map {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: var(--shadow-md);
}
.service-area .map iframe {
  border: 0; width: 100%; height: 100%; display: block;
  filter: grayscale(0.15) contrast(1.03);
}

/* ---------- Cinema / Gallery showcase (auto-advancing slideshow) ---------- */
.cinema {
  position: relative;
  background: var(--ink);
  color: var(--bone);
  overflow: hidden;
  padding: 0;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.cinema-grid {
  display: grid;
  grid-template-columns: minmax(320px, 2fr) minmax(0, 5fr);
  min-height: 640px;
}
@media (max-width: 980px) {
  .cinema-grid { grid-template-columns: 1fr; grid-auto-rows: auto; min-height: 0; }
}

.cinema-panel {
  padding: clamp(40px, 5vw, 72px) clamp(28px, 4vw, 56px);
  display: flex; flex-direction: column;
  gap: 28px;
  position: relative;
  border-right: 1px solid rgba(201,168,117,0.14);
  background:
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(201,168,117,0.08) 0%, transparent 55%),
    var(--ink);
}
@media (max-width: 980px) {
  .cinema-panel { border-right: 0; border-bottom: 1px solid rgba(201,168,117,0.14); }
}

.cinema-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold);
}

.cinema-counter {
  display: inline-flex;
  align-items: flex-end;
  gap: 4px;
  font-family: var(--font-serif);
  line-height: 1;
  color: var(--bone);
}
.cinema-counter .cur {
  font-size: clamp(72px, 10vw, 140px);
  font-style: italic;
  color: var(--gold);
  letter-spacing: -0.03em;
  display: inline-block;
  min-width: 1.2em;
  text-align: left;
  transition: opacity 0.35s;
}
.cinema-counter .sep {
  font-size: clamp(36px, 5vw, 64px);
  color: rgba(250,247,242,0.4);
  margin: 0 6px 10px;
}
.cinema-counter .tot {
  font-size: clamp(36px, 5vw, 64px);
  color: rgba(250,247,242,0.55);
  margin-bottom: 10px;
}

.cinema-titles {
  display: grid;
  grid-template-areas: "stack";
  margin-top: -8px;
}
.cinema-title {
  grid-area: stack;
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--bone);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s cubic-bezier(0.2,0.7,0.2,1), transform 0.75s cubic-bezier(0.2,0.7,0.2,1);
  pointer-events: none;
}
.cinema-title em { font-style: italic; color: var(--gold); }
.cinema-title.is-active {
  opacity: 1;
  transform: translateY(0);
}

.cinema-captions {
  display: grid;
  grid-template-areas: "stack";
  max-width: 40ch;
}
.cinema-captions .cap {
  grid-area: stack;
  color: rgba(250,247,242,0.72);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s cubic-bezier(0.2,0.7,0.2,1) 0.1s, transform 0.55s cubic-bezier(0.2,0.7,0.2,1) 0.1s;
}
.cinema-captions .cap.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Alternating split sections (text/image alternating) ----------
   DOM order doesn't matter — `.reverse` swaps the visual positions via grid-template-areas.
*/
.alt-split {
  display: grid;
  grid-template-columns: 6fr 6fr;
  grid-template-areas: "text image";
  gap: var(--space-7); /* 64px */
  align-items: center;
}
.alt-split-text { grid-area: text; }
.alt-split-img  { grid-area: image; }
.alt-split.reverse { grid-template-areas: "image text"; }
@media (max-width: 900px) {
  .alt-split,
  .alt-split.reverse {
    grid-template-columns: 1fr;
    grid-template-areas: "image" "text";
    gap: var(--space-4); /* 32px */
  }
}
.alt-split-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: var(--shadow-md);
}
.alt-split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2,0.7,0.2,1);
}
.alt-split:hover .alt-split-img img { transform: scale(1.03); }
.alt-split-img .tag {
  position: absolute;
  left: 16px; bottom: 16px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bone);
  padding: 7px 14px;
  background: rgba(10,6,4,0.65);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.alt-split-text .eyebrow { margin-bottom: 14px; }
.alt-split-text h2, .alt-split-text .h2 { margin: 0 0 20px; }
.alt-split-text p { font-size: 17px; line-height: 1.65; color: var(--ink); margin: 0 0 14px; }
.alt-split-text .alt-ul {
  list-style: none; padding: 0; margin: 20px 0 28px;
}
.alt-split-text .alt-ul li {
  padding: 10px 0 10px 26px;
  position: relative;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px; line-height: 1.5;
}
.alt-split-text .alt-ul li::before {
  content: "";
  position: absolute; left: 0; top: 16px;
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}
.alt-split-text .actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }

/* ---------- Compact contact CTA (reusable on all pages) ---------- */
.contact-cta {
  background: var(--ink);
  color: var(--bone);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.contact-cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 0% 0%, rgba(201,168,117,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 100% 100%, rgba(201,168,117,0.10) 0%, transparent 55%);
  pointer-events: none;
}
.contact-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
}
@media (max-width: 900px) { .contact-cta-grid { grid-template-columns: 1fr; } }

.contact-cta-locations {
  padding: 48px 44px;
  display: flex; flex-direction: column; gap: 24px;
  border-right: 1px solid rgba(201,168,117,0.18);
}
@media (max-width: 900px) { .contact-cta-locations { border-right: 0; border-bottom: 1px solid rgba(201,168,117,0.18); } }

.contact-cta-locations header .eyebrow { color: var(--gold); }
.contact-cta-locations h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  margin: 12px 0 0;
  color: var(--bone);
  letter-spacing: -0.01em;
}
.contact-cta-locations h2 em { font-style: italic; color: var(--gold); }

.loc-card {
  border: 1px solid rgba(201,168,117,0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(250,247,242,0.03);
  transition: border-color 0.3s, background 0.3s;
}
.loc-card:hover { border-color: rgba(201,168,117,0.5); background: rgba(250,247,242,0.05); }
.loc-map {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #1a110a;
}
.loc-map iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.4) contrast(1.05) brightness(0.9);
}
.loc-map .pin {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 6px 12px;
  background: var(--ink);
  color: var(--gold);
  border-radius: 999px;
  border: 1px solid rgba(201,168,117,0.4);
}
.loc-info {
  padding: 18px 20px 20px;
}
.loc-info h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.15;
  margin: 0 0 8px;
  color: var(--bone);
}
.loc-info h3 em { font-style: italic; color: var(--gold); }
.loc-info .meta {
  color: rgba(250,247,242,0.72);
  font-size: 13.5px; line-height: 1.55;
  margin: 0;
}
.loc-info .meta a { color: var(--gold); border-bottom: 1px solid rgba(201,168,117,0.35); }
.loc-info .meta a:hover { color: var(--gold-hi); border-color: var(--gold-hi); }

.contact-cta-form {
  padding: 48px 44px;
  display: flex; flex-direction: column; gap: 20px;
}
.contact-cta-form header .eyebrow { color: var(--gold); }
.contact-cta-form h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  margin: 12px 0 0;
  color: var(--bone);
  letter-spacing: -0.01em;
}
.contact-cta-form h2 em { font-style: italic; color: var(--gold); }
.contact-cta-form p.lead {
  color: rgba(250,247,242,0.78);
  font-size: 15px; line-height: 1.55;
  margin: 0;
}

.contact-cta-form form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-cta-form .field { display: flex; flex-direction: column; gap: 5px; }
.contact-cta-form .field.full { grid-column: 1 / -1; }
.contact-cta-form label {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(250,247,242,0.55);
}
.contact-cta-form input,
.contact-cta-form select,
.contact-cta-form textarea {
  background: rgba(250,247,242,0.06);
  color: var(--bone);
  border: 1px solid rgba(250,247,242,0.2);
  border-radius: var(--radius);
  padding: 11px 14px;
  font: inherit;
  font-size: 14.5px;
  transition: border-color 0.2s, background 0.2s;
}
.contact-cta-form input:focus,
.contact-cta-form select:focus,
.contact-cta-form textarea:focus {
  outline: none; border-color: var(--gold);
  background: rgba(250,247,242,0.1);
}
.contact-cta-form input::placeholder,
.contact-cta-form textarea::placeholder { color: rgba(250,247,242,0.35); }
.contact-cta-form textarea { min-height: 80px; resize: vertical; }
.contact-cta-form .submit-row {
  grid-column: 1 / -1;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  margin-top: 4px;
  color: rgba(250,247,242,0.55);
  font-size: 12px;
}
@media (max-width: 560px) {
  .contact-cta-form form { grid-template-columns: 1fr; }
  .contact-cta-locations, .contact-cta-form { padding: 32px 26px; }
}

.cinema-progress {
  height: 1px;
  background: rgba(250,247,242,0.14);
  margin-top: auto;
  position: relative;
  overflow: hidden;
}
.cinema-progress .bar {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 0%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201,168,117,0.45);
}
.cinema-progress .bar.is-running {
  animation: cinema-fill 6.5s linear forwards;
}
@keyframes cinema-fill {
  from { width: 0%; }
  to   { width: 100%; }
}

.cinema-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cinema-thumb {
  width: 54px; height: 54px;
  padding: 0;
  border: 1px solid rgba(250,247,242,0.18);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  transition: border-color 0.3s, transform 0.3s, opacity 0.3s;
  opacity: 0.55;
}
.cinema-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.cinema-thumb:hover { opacity: 0.9; transform: translateY(-2px); }
.cinema-thumb.is-active {
  opacity: 1;
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 8px 20px rgba(201,168,117,0.25);
}

.cinema-stage {
  position: relative;
  overflow: hidden;
  background: #0a0604;
  min-height: 420px;
}
@media (max-width: 980px) { .cinema-stage { aspect-ratio: 4 / 3; } }

.cinema-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.2,0.7,0.2,1);
  z-index: 1;
}
.cinema-slide.is-active {
  opacity: 1;
  z-index: 2;
}
.cinema-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  filter: saturate(0.95) contrast(1.03);
}
.cinema-slide.is-active img {
  animation: cinema-kenburns 7.5s ease-out forwards;
}
@keyframes cinema-kenburns {
  from { transform: scale(1.02); }
  to   { transform: scale(1.14); }
}
.cinema-slide::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,6,4,0.45) 0%, rgba(10,6,4,0.1) 30%, transparent 55%),
    linear-gradient(0deg, rgba(10,6,4,0.6) 0%, transparent 35%);
  pointer-events: none;
}
.cinema-slide .slide-tag {
  position: absolute;
  right: 24px; bottom: 24px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--bone);
  padding: 8px 14px;
  border: 1px solid rgba(250,247,242,0.3);
  border-radius: 999px;
  background: rgba(10,6,4,0.45);
  backdrop-filter: blur(8px);
}

/* ---------- Gallery bento (mosaic with featured tile, legacy) ---------- */
.gallery-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 14px;
  grid-template-areas:
    "a a b c"
    "a a d e";
}
.gallery-bento .tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #1a110a;
  cursor: pointer;
}
.gallery-bento .tile.a { grid-area: a; }
.gallery-bento .tile.b { grid-area: b; }
.gallery-bento .tile.c { grid-area: c; }
.gallery-bento .tile.d { grid-area: d; }
.gallery-bento .tile.e { grid-area: e; }

.gallery-bento .tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.5s ease;
  filter: saturate(0.95) brightness(0.96);
}
.gallery-bento .tile:hover img { transform: scale(1.06); filter: saturate(1.05) brightness(1); }

.gallery-bento .tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10,6,4,0.7) 100%);
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.gallery-bento .tile .cap {
  position: absolute;
  left: 20px; right: 20px; bottom: 18px;
  z-index: 2;
  color: var(--bone);
}
.gallery-bento .tile .cap .n {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  display: block;
}
.gallery-bento .tile .cap h5 {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.005em;
}
.gallery-bento .tile.a .cap h5 { font-size: 32px; }
.gallery-bento .tile .cap h5 em { font-style: italic; color: var(--gold-hi); }

@media (max-width: 980px) {
  .gallery-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px);
    grid-template-areas:
      "a a"
      "b c"
      "d e";
  }
  .gallery-bento .tile.a .cap h5 { font-size: 26px; }
}
@media (max-width: 540px) {
  .gallery-bento {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 200px);
    grid-template-areas:
      "a"
      "b"
      "c"
      "d"
      "e";
  }
}

/* ---------- Trust bar / Stats row ---------- */
/* ========================================
   TRUST BAR — dark editorial "ledger" band
   ======================================== */
.trust-bar {
  background: var(--ink);
  color: var(--bone);
  border-top: 1px solid rgba(201, 168, 117, 0.28);
  border-bottom: 1px solid rgba(201, 168, 117, 0.18);
  padding: var(--space-4) 0;  /* 32px top & bottom — compact */
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* Ambient gold glow (very subtle) */
.trust-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 10% 100%, rgba(201, 168, 117, 0.20) 0%, transparent 60%),
    radial-gradient(45% 70% at 90% 0%,   rgba(201, 168, 117, 0.10) 0%, transparent 55%);
  pointer-events: none;
  z-index: -1;
}
/* Shimmer sweep (plays once on reveal) */
.trust-bar::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -40%; width: 40%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201, 168, 117, 0) 40%,
    rgba(201, 168, 117, 0.18) 50%,
    rgba(201, 168, 117, 0) 60%,
    transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.trust-bar.in::after {
  animation: trust-shimmer 1.6s cubic-bezier(0.2, 0.7, 0.2, 1) 0.2s forwards;
}
@keyframes trust-shimmer {
  from { left: -40%; }
  to   { left: 110%; }
}

.trust-bar__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6875rem;        /* 11px */
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.55);
  margin: 0 0 var(--space-3);  /* 24px */
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);          /* 8px */
  position: relative;
  z-index: 1;
}
.trust-bar__eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 168, 117, 0.20);
  animation: trust-pulse 2.4s ease-in-out infinite;
  flex: none;
}
@keyframes trust-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(201, 168, 117, 0.20); }
  50%      { box-shadow: 0 0 0 8px rgba(201, 168, 117, 0); }
}

.trust-bar .items {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr 1.15fr;
  gap: 0;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.trust-bar .items > * + * {
  border-left: 1px solid rgba(201, 168, 117, 0.18);
  padding-left: var(--space-5); /* 40px */
}
.trust-bar .items > *:not(:last-child) {
  padding-right: var(--space-5); /* 40px */
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;              /* 4px — very tight, compact bar */
  position: relative;
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.trust-stat:hover { transform: translateY(-2px); }

/* ----- Mini-visualisation at the top of each stat ----- */
.trust-stat__viz {
  height: 1.5rem;     /* 24px — 8-grid aligned */
  display: flex;
  align-items: flex-end;
  gap: 4px;           /* 4px sub-grid — tight visual cluster */
  margin-bottom: 4px; /* 4px sub-grid breathing room */
}

/* Stars */
.trust-stat__viz--stars { gap: 4px; }
.trust-stat__viz--stars svg {
  width: 1.25rem;     /* 20px */
  height: 1.25rem;
  fill: var(--gold);
  opacity: 0;
  transform: scale(0.4) rotate(-12deg);
  transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.trust-bar.in .trust-stat__viz--stars svg {
  opacity: 1;
  transform: scale(1) rotate(0);
}
.trust-bar.in .trust-stat__viz--stars svg:nth-child(1) { transition-delay: calc(var(--trust-delay, 0ms) + 100ms); }
.trust-bar.in .trust-stat__viz--stars svg:nth-child(2) { transition-delay: calc(var(--trust-delay, 0ms) + 170ms); }
.trust-bar.in .trust-stat__viz--stars svg:nth-child(3) { transition-delay: calc(var(--trust-delay, 0ms) + 240ms); }
.trust-bar.in .trust-stat__viz--stars svg:nth-child(4) { transition-delay: calc(var(--trust-delay, 0ms) + 310ms); }
.trust-bar.in .trust-stat__viz--stars svg:nth-child(5) { transition-delay: calc(var(--trust-delay, 0ms) + 380ms); }

/* Mini bar chart (growth) */
.trust-stat__viz--bars span {
  width: 6px;
  background: linear-gradient(to top, var(--gold-deep), var(--gold));
  border-radius: 1px;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.trust-bar.in .trust-stat__viz--bars span { transform: scaleY(1); }
.trust-stat__viz--bars span:nth-child(1) { height: 30%; transition-delay: calc(var(--trust-delay, 0ms) + 100ms); }
.trust-stat__viz--bars span:nth-child(2) { height: 55%; transition-delay: calc(var(--trust-delay, 0ms) + 170ms); }
.trust-stat__viz--bars span:nth-child(3) { height: 45%; transition-delay: calc(var(--trust-delay, 0ms) + 240ms); }
.trust-stat__viz--bars span:nth-child(4) { height: 80%; transition-delay: calc(var(--trust-delay, 0ms) + 310ms); }
.trust-stat__viz--bars span:nth-child(5) { height: 100%; transition-delay: calc(var(--trust-delay, 0ms) + 380ms); }

/* Dot grid */
.trust-stat__viz--dots {
  display: grid;
  grid-template-columns: repeat(5, 4px);
  grid-template-rows: repeat(2, 4px);
  gap: 4px;                  /* 4px sub-grid — dense visual */
  height: 1.5rem;            /* 24px */
  align-content: flex-end;
}
.trust-stat__viz--dots span {
  width: 4px; height: 4px;   /* 4px sub-grid — dot size is sub-atomic */
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.trust-bar.in .trust-stat__viz--dots span { opacity: 1; transform: scale(1); }
.trust-stat__viz--dots span:nth-child(1)  { transition-delay: calc(var(--trust-delay, 0ms) +  80ms); }
.trust-stat__viz--dots span:nth-child(2)  { transition-delay: calc(var(--trust-delay, 0ms) + 120ms); }
.trust-stat__viz--dots span:nth-child(3)  { transition-delay: calc(var(--trust-delay, 0ms) + 160ms); }
.trust-stat__viz--dots span:nth-child(4)  { transition-delay: calc(var(--trust-delay, 0ms) + 200ms); }
.trust-stat__viz--dots span:nth-child(5)  { transition-delay: calc(var(--trust-delay, 0ms) + 240ms); }
.trust-stat__viz--dots span:nth-child(6)  { transition-delay: calc(var(--trust-delay, 0ms) + 280ms); }
.trust-stat__viz--dots span:nth-child(7)  { transition-delay: calc(var(--trust-delay, 0ms) + 320ms); }
.trust-stat__viz--dots span:nth-child(8)  { transition-delay: calc(var(--trust-delay, 0ms) + 360ms); }
.trust-stat__viz--dots span:nth-child(9)  { transition-delay: calc(var(--trust-delay, 0ms) + 400ms); }
.trust-stat__viz--dots span:nth-child(10) { transition-delay: calc(var(--trust-delay, 0ms) + 440ms); }

/* ----- The italic gold number (compact) ----- */
.trust-stat__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.25rem, 3.8vw, 3.25rem); /* 36 → 52 px — compact */
  line-height: 0.95;
  color: var(--gold);
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-1); /* 8px under */
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: calc(var(--trust-delay, 0ms) + 220ms);
}
.trust-bar.in .trust-stat__num { opacity: 1; transform: translateY(0); }
.trust-stat__num em { font-style: italic; color: var(--gold); }

/* ----- Monospace uppercase label ----- */
.trust-stat__lbl {
  font-family: var(--font-mono);
  font-size: 0.6875rem;       /* 11px */
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  font-weight: 500;
  margin: 0 0 var(--space-1); /* 8px to description */
  opacity: 0;
  transform: translateY(0.5rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: calc(var(--trust-delay, 0ms) + 360ms);
}
.trust-bar.in .trust-stat__lbl { opacity: 1; transform: translateY(0); }

/* ----- Muted description ----- */
.trust-stat__desc {
  font-size: 0.8125rem;       /* 13px */
  line-height: 1.5;
  color: rgba(250, 247, 242, 0.55);
  max-width: 24ch;
  margin: 0;
  opacity: 0;
  transform: translateY(0.5rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: calc(var(--trust-delay, 0ms) + 440ms);
}
.trust-bar.in .trust-stat__desc { opacity: 1; transform: translateY(0); }

/* ----- CTA column ----- */
.trust-stat--cta {
  justify-content: center;
  gap: var(--space-2);           /* 16px between arrow, title, sub */
  color: var(--bone);
}
.trust-stat--cta:hover { transform: translateX(4px); }
.trust-stat__arrow {
  width: 3rem; height: 3rem;     /* 48px — 8-grid aligned */
  border: 1px solid rgba(201, 168, 117, 0.45);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: background 0.4s cubic-bezier(0.2, 0.7, 0.2, 1),
              color      0.4s cubic-bezier(0.2, 0.7, 0.2, 1),
              border     0.4s cubic-bezier(0.2, 0.7, 0.2, 1),
              transform  0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  opacity: 0;
  transform: scale(0.7);
  transition-delay: calc(var(--trust-delay, 0ms) + 100ms);
}
.trust-bar.in .trust-stat__arrow { opacity: 1; transform: scale(1); }
.trust-stat--cta:hover .trust-stat__arrow {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: scale(1) translateX(4px);
}
.trust-stat__cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 2vw, 1.75rem); /* 22 → 28 px */
  line-height: 1.15;
  color: var(--bone);
  margin: 0;
  opacity: 0;
  transform: translateY(0.5rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: calc(var(--trust-delay, 0ms) + 240ms);
}
.trust-stat__cta-title em { font-style: italic; color: var(--gold); }
.trust-bar.in .trust-stat__cta-title { opacity: 1; transform: translateY(0); }
.trust-stat__cta-sub {
  font-size: 0.8125rem;          /* 13px */
  line-height: 1.5;
  color: rgba(250, 247, 242, 0.55);
  max-width: 26ch;
  margin: 0;
  opacity: 0;
  transform: translateY(0.5rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: calc(var(--trust-delay, 0ms) + 340ms);
}
.trust-bar.in .trust-stat__cta-sub { opacity: 1; transform: translateY(0); }

/* ----- Responsive ----- */
@media (max-width: 980px) {
  .trust-bar { padding: var(--space-5) 0; /* 40px */ }
  .trust-bar .items {
    grid-template-columns: 1fr 1fr;
    row-gap: var(--space-4); /* 32px */
  }
  .trust-bar .items > *:nth-child(3) {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid rgba(201, 168, 117, 0.18);
    padding-top: var(--space-4); /* 32px */
  }
  .trust-bar .items > *:nth-child(4) {
    border-top: 1px solid rgba(201, 168, 117, 0.18);
    padding-top: var(--space-4);
  }
}
@media (max-width: 640px) {
  .trust-bar { padding: var(--space-2) 0; /* 16px — very compact */ }
  .trust-bar__eyebrow {
    margin-bottom: var(--space-2);        /* 16px */
    font-size: 0.625rem;                  /* 10px */
  }
  .trust-bar .items {
    grid-template-columns: 1fr 1fr 1fr;   /* 3-col so all 3 stats fit one row */
    row-gap: var(--space-2);
    column-gap: var(--space-2);
  }
  .trust-bar .items > * + * {
    border-left: 1px solid rgba(201, 168, 117, 0.18);
    border-top: 0;
    padding-left: var(--space-2);
    padding-top: 0;
  }
  .trust-bar .items > *:nth-child(4) {
    grid-column: 1 / -1;                  /* CTA spans full width below */
    border-left: 0;
    padding-left: 0;
    padding-top: var(--space-2);
    border-top: 1px solid rgba(201, 168, 117, 0.18);
  }
  .trust-bar .items > *:not(:last-child) { padding-right: 0; }
  .trust-stat { gap: 2px; }
  .trust-stat__num {
    font-size: clamp(1.5rem, 7vw, 2rem);  /* 24 → 32 px — small but legible */
    line-height: 1;
  }
  .trust-stat__lbl {
    font-size: 0.5625rem;                 /* 9px */
    letter-spacing: 0.14em;
  }
  .trust-stat__desc { display: none; }    /* hide desc on mobile */
  .trust-stat__viz { height: 0.75rem; gap: 2px; }  /* 12px */
  .trust-stat__viz--stars svg { width: 0.75rem; height: 0.75rem; }
  .trust-stat__viz--bars span { width: 3px; }
  .trust-stat__viz--dots {
    grid-template-columns: repeat(5, 3px);
    grid-template-rows: repeat(2, 3px);
    gap: 2px;
    height: 0.75rem;
  }
  .trust-stat__viz--dots span { width: 3px; height: 3px; }
  /* CTA row — compact horizontal */
  .trust-stat--cta {
    flex-direction: row !important;
    align-items: center;
    gap: var(--space-2) !important;
  }
  .trust-stat__arrow { width: 2.25rem; height: 2.25rem; /* 36px */ }
  .trust-stat__cta-title { font-size: 1rem !important; flex: 1; min-width: 0; }
  .trust-stat__cta-sub { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .trust-bar::after { animation: none; }
  .trust-bar__eyebrow .dot { animation: none; }
  .trust-stat,
  .trust-stat__viz--stars svg,
  .trust-stat__viz--bars span,
  .trust-stat__viz--dots span,
  .trust-stat__num,
  .trust-stat__lbl,
  .trust-stat__desc,
  .trust-stat__arrow,
  .trust-stat__cta-title,
  .trust-stat__cta-sub { transition: none !important; opacity: 1 !important; transform: none !important; }
}

.stars { display: inline-flex; gap: 2px; color: var(--gold-deep); }
.stars svg { width: 16px; height: 16px; fill: currentColor; }

/* ---------- Service showcase (sticky stage + hover list) ---------- */
.svc-showcase {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-9);                  /* 96px */
  align-items: start;
}
@media (max-width: 980px) { .svc-showcase { grid-template-columns: 1fr; gap: var(--space-4); } }

.svc-stage {
  position: sticky;
  top: 120px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}
@media (max-width: 980px) {
  .svc-stage { position: static; aspect-ratio: 16 / 11; max-height: 460px; }
}

/* Mobile (<= 720px): transform list into horizontal chips below stage, autoplay active */
@media (max-width: 720px) {
  .svc-stage { aspect-ratio: 4 / 5; max-height: none; }
  .svc-list {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto;
    gap: var(--space-1);                       /* 8px */
    padding: 0 0 var(--space-1);
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    border-top: 0 !important;
  }
  .svc-list::-webkit-scrollbar { display: none; }
  .svc-list-item,
  .svc-list-item:first-child {
    flex: 0 0 auto;
    border: 0 !important;
    scroll-snap-align: start;
  }
  .svc-list-item a {
    padding: 0.5rem 0.75rem !important;         /* 8px / 12px — chip padding */
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    gap: var(--space-1) !important;
    font-size: 0.75rem !important;               /* 12px */
    white-space: nowrap;
    align-items: center !important;
  }
  .svc-list-item.is-active a {
    background: var(--ink);
    color: var(--bone);
    border-color: var(--ink);
  }
  .svc-list-item .ix {
    font-size: 0.625rem !important;             /* 10px */
    color: var(--gold-deep);
    flex: none;
  }
  .svc-list-item.is-active .ix { color: var(--gold); }
  .svc-list-item .title {
    font-family: var(--font-sans) !important;
    font-size: 0.8125rem !important;             /* 13px */
    font-weight: 500;
    letter-spacing: 0;
  }
  .svc-list-item .cat,
  .svc-list-item .arrow,
  .svc-list-foot .btn-ghost { display: none !important; }
  .svc-list-foot {
    flex-direction: row;
    width: 100%;
    margin-top: var(--space-3);
  }
}

/* Mobile carousel progress bar on top of stage */
.svc-stage__progress {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: rgba(250,247,242,0.14);
  z-index: 5;
  display: none;
}
.svc-stage__progress::after {
  content: "";
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
  box-shadow: 0 0 10px rgba(201,168,117,0.5);
}
.svc-showcase.is-autoplay .svc-stage__progress { display: block; }
.svc-showcase.is-autoplay .svc-stage__progress::after {
  animation: svc-stage-progress var(--svc-stage-duration, 5s) linear forwards;
}
@keyframes svc-stage-progress {
  from { width: 0%; }
  to   { width: 100%; }
}
.svc-stage-img {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.2, 0.7, 0.2, 1), transform 1.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  transform: scale(1.05);
  z-index: 1;
}
.svc-stage-img.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}
.svc-stage-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.svc-stage-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,6,4,0.18) 0%, transparent 30%, transparent 50%, rgba(10,6,4,0.85) 100%);
  pointer-events: none;
}
.svc-stage-caption {
  position: absolute;
  left: 32px; right: 32px; bottom: 28px;
  z-index: 3;
  color: var(--bone);
  pointer-events: none;
}
.svc-stage-caption .ix {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.9;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.svc-stage-caption h3 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  margin: 0 0 8px;
  color: var(--bone);
  letter-spacing: -0.01em;
  min-height: 1.05em;
}
.svc-stage-caption h3 em { font-style: italic; color: var(--gold-hi); }
.svc-stage-caption p {
  font-size: 15px;
  color: rgba(250,247,242,0.85);
  line-height: 1.5;
  margin: 0;
  max-width: 42ch;
}
.svc-stage-ambient {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 30% 30%, rgba(201,168,117,0.15) 0%, transparent 55%),
    linear-gradient(180deg, #1a110d 0%, #0a0604 100%);
}

.svc-list {
  list-style: none; padding: 0; margin: 0;
}
.svc-list-item {
  position: relative;
  border-bottom: 1px solid var(--line-strong);
  transition: background 0.35s;
}
.svc-list-item:first-child { border-top: 1px solid var(--line-strong); }
.svc-list-item a {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 8px 22px 4px;
  text-decoration: none;
  transition: padding 0.4s cubic-bezier(0.2,0.7,0.2,1), color 0.3s;
  color: var(--ink);
}
.svc-list-item .ix {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 34px;
  line-height: 1;
  color: var(--gold-deep);
  transition: color 0.3s, transform 0.4s cubic-bezier(0.2,0.7,0.2,1);
}
.svc-list-item .title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--ink);
  transition: color 0.3s;
}
.svc-list-item .title em { font-style: italic; color: var(--gold-deep); }
.svc-list-item .cat {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.svc-list-item .arrow {
  display: inline-flex; align-items: center;
  color: var(--ink);
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.4s, transform 0.4s cubic-bezier(0.2,0.7,0.2,1);
}
.svc-list-item:hover,
.svc-list-item.is-active {
  background: linear-gradient(90deg, rgba(201,168,117,0.08) 0%, transparent 60%);
}
.svc-list-item:hover a,
.svc-list-item.is-active a {
  padding-left: 18px;
}
.svc-list-item:hover .ix,
.svc-list-item.is-active .ix {
  color: var(--gold);
  transform: translateX(-2px);
}
.svc-list-item:hover .title,
.svc-list-item.is-active .title {
  color: var(--gold-deep);
}
.svc-list-item:hover .arrow,
.svc-list-item.is-active .arrow {
  opacity: 1;
  transform: translateX(0);
}
.svc-list-foot {
  margin-top: 32px;
  display: flex; gap: 14px; flex-wrap: wrap;
}

/* ---------- Service grid (cards premium) ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1040px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .svc-grid { grid-template-columns: 1fr; } }

.svc-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.35s, border-color 0.3s;
}
.svc-card::before {
  content: attr(data-index);
  position: absolute;
  top: 14px; left: 18px;
  z-index: 3;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 34px;
  line-height: 1;
  color: var(--gold-hi);
  mix-blend-mode: screen;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
  letter-spacing: -0.01em;
  transition: color 0.3s, transform 0.4s cubic-bezier(0.2,0.7,0.2,1);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(15,10,6,0.18), 0 4px 12px rgba(15,10,6,0.10);
  border-color: var(--gold);
}
.svc-card:hover::before {
  color: var(--gold);
  transform: translate(-2px, -2px);
}
.svc-card .img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
}
.svc-card .img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,10,6,0.45) 0%, transparent 35%, transparent 70%, rgba(15,10,6,0.25) 100%);
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.svc-card .img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2,0.7,0.2,1);
}
.svc-card:hover .img img { transform: scale(1.08); }
.svc-card .body {
  position: relative;
  padding: 24px 22px 22px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.svc-card .body::before {
  content: "";
  position: absolute;
  top: 0; left: 22px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.45s cubic-bezier(0.2,0.7,0.2,1);
}
.svc-card:hover .body::before { width: 56px; }
.svc-card .cat {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-deep);
}
.svc-card h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.005em;
}
.svc-card h3 em { color: var(--gold-deep); font-style: italic; }
.svc-card .tagline { font-size: 14px; color: var(--muted); line-height: 1.5; margin: 0; }
.svc-card .more {
  margin-top: auto;
  padding-top: 12px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.svc-card .more .arrow { transition: transform 0.25s; }
.svc-card:hover .more .arrow { transform: translateX(6px); }

/* ---------- Pillars (De ce Dr. Corlade) ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  padding: 32px 24px;
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, transform 0.2s;
}
.pillar:hover { border-color: var(--gold); transform: translateY(-2px); }
.pillar .icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--ink);
  color: var(--gold);
  border-radius: 12px;
  margin-bottom: 20px;
}
.pillar .icon svg { width: 24px; height: 24px; }
.pillar h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.15;
  margin: 0 0 8px;
}
.pillar p { color: var(--muted); font-size: 15px; line-height: 1.55; margin: 0; }

/* ---------- Team grid ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1040px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px)  { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.team-card .portrait {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #e6ddd0;
}
.team-card .portrait img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
  transition: transform 0.6s cubic-bezier(0.2,0.7,0.2,1);
}
.team-card:hover .portrait img { transform: scale(1.05); }
.team-card .body { padding: 20px 20px 24px; }
.team-card .role {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 6px;
}
.team-card h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.15;
  margin: 0 0 4px;
}
.team-card .specialty { color: var(--muted); font-size: 14px; line-height: 1.5; margin: 0; }

/* ---------- Stats block (big numbers dark) ---------- */
.stats {
  background: var(--ink);
  color: var(--bone);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(201,168,117,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 80% 70%, rgba(201,168,117,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
@media (max-width: 880px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; } }
.stat .n {
  font-family: var(--font-serif);
  font-size: clamp(56px, 8vw, 96px);
  line-height: 1;
  color: var(--bone);
  letter-spacing: -0.02em;
}
.stat .n em { font-style: italic; color: var(--gold); }
.stat .lbl {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(250,247,242,0.7);
}

/* ---------- Testimonials ---------- */
.reviews-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.reviews-rating {
  display: flex; align-items: center; gap: 14px;
  background: var(--bone);
  border: 1px solid var(--line);
  padding: 12px 20px;
  border-radius: 999px;
}
.reviews-rating .big {
  font-family: var(--font-serif);
  font-size: 28px; line-height: 1;
}
.reviews-rating .lbl { font-size: 13px; color: var(--muted); }
.reviews-rating .google {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--muted); font-weight: 500;
}
.reviews-rating .google svg { width: 14px; height: 14px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .reviews-grid { grid-template-columns: 1fr; } }
.review {
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.review .stars { margin-bottom: 4px; }
.review blockquote {
  font-family: var(--font-serif);
  font-size: 20px; line-height: 1.4;
  margin: 0;
  color: var(--ink);
}
.review .author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.review .author .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--cream);
  display: grid; place-items: center;
  font-family: var(--font-serif); font-size: 18px; color: var(--ink);
  flex-shrink: 0;
}
.review .author .meta { font-size: 14px; line-height: 1.3; }
.review .author .meta .n { font-weight: 600; color: var(--ink); }
.review .author .meta .d { color: var(--muted); font-size: 12px; }

/* ---------- Before / After slider ---------- */
.ba-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 980px) { .ba-wrap { grid-template-columns: 1fr; gap: 32px; } }
.ba-slider {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  user-select: none;
  background: #ccc;
  box-shadow: var(--shadow-md);
}
.ba-slider img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.ba-slider .after { clip-path: inset(0 0 0 50%); transition: clip-path 0.1s linear; }
.ba-slider .handle {
  position: absolute; top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--bone);
  transform: translateX(-1px);
  pointer-events: none;
}
.ba-slider .handle::before {
  content: "";
  position: absolute; top: 50%; left: 50%;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bone);
  border: 2px solid var(--gold);
  transform: translate(-50%, -50%);
  box-shadow: var(--shadow-sm);
}
.ba-slider .handle::after {
  content: "◂ ▸";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-mono);
  font-size: 14px; color: var(--ink); letter-spacing: 0.1em;
}
.ba-slider input[type="range"] {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize;
  margin: 0;
}
.ba-label {
  position: absolute; top: 12px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 12px;
  background: rgba(15,10,6,0.65);
  color: var(--bone);
  border-radius: 999px;
  pointer-events: none;
}
.ba-label.l { left: 12px; }
.ba-label.r { right: 12px; }

/* ---------- Locations ---------- */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 900px) { .locations-grid { grid-template-columns: 1fr; } }
.location-card {
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.location-card .map {
  aspect-ratio: 16 / 10;
  background: var(--cream);
  position: relative;
}
.location-card .map iframe {
  border: 0;
  width: 100%; height: 100%;
  display: block;
  filter: grayscale(0.2) contrast(1.02);
}
.location-card .pin {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 12px;
  background: var(--ink); color: var(--gold);
  border-radius: 999px;
}
.location-card .info { padding: 28px; }
.location-card h3 {
  font-family: var(--font-serif);
  font-size: 32px;
  line-height: 1.1;
  margin: 0 0 4px;
}
.location-card h3 em { font-style: italic; color: var(--gold-deep); }
.location-card .addr { color: var(--muted); font-size: 15px; margin: 0 0 16px; }
.location-card dl {
  display: flex; flex-direction: column;
  gap: 10px;
  margin: 0 0 20px;
}
.location-card dl > div {
  display: grid; grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: start;
}
.location-card dt {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
  padding-top: 3px;
  margin: 0;
}
.location-card dd { margin: 0; font-size: 15px; color: var(--ink); }
.location-card dd a { color: var(--ink); border-bottom: 1px solid var(--line-strong); }
.location-card dd a:hover { color: var(--gold-deep); border-color: var(--gold-deep); }
.location-card .actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- FAQ accordion ---------- */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
}
.faq {
  border-bottom: 1px solid var(--line-strong);
}
.faq:first-child { border-top: 1px solid var(--line-strong); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
  width: 100%; text-align: left;
  padding: 24px 0;
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.3;
  color: var(--ink);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold-deep); }
.faq-q .plus {
  width: 36px; height: 36px; border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 20px;
  color: var(--ink);
  transition: background 0.2s, color 0.2s, transform 0.3s;
  flex-shrink: 0;
}
.faq.open .faq-q .plus { background: var(--ink); color: var(--gold); transform: rotate(45deg); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.2,0.7,0.2,1);
}
.faq.open .faq-a { max-height: 600px; }
.faq-a-inner {
  padding-bottom: 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 80ch;
}

/* ---------- Tech carousel (horizontal snap-scroll, modern) ---------- */
.tech-carousel {
  position: relative;
}
.tech-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--gutter);
  padding: 6px 0 20px;
  margin: 0 calc(var(--gutter) * -1);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.tech-strip::-webkit-scrollbar { display: none; }
.tech-strip > * { scroll-snap-align: start; }

.tech-panel {
  flex: 0 0 min(760px, 92vw);
  position: relative;
  background:
    radial-gradient(ellipse 70% 60% at 0% 0%, rgba(201,168,117,0.25) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(201,168,117,0.10) 0%, transparent 60%),
    linear-gradient(160deg, #1f1510 0%, #0a0604 100%);
  color: var(--bone);
  border: 1px solid rgba(201,168,117,0.2);
  border-radius: 24px;
  overflow: hidden;
  padding: 44px 44px 36px;
  min-height: 440px;
  display: grid;
  grid-template-columns: 1fr 240px;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
  transition: transform 0.4s cubic-bezier(0.2,0.7,0.2,1);
}
.tech-panel:hover { transform: translateY(-3px); }

.tech-panel .idx-chip {
  grid-column: 1;
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 8px 14px;
  border: 1px solid rgba(201,168,117,0.3);
  border-radius: 999px;
  width: fit-content;
  background: rgba(10,6,4,0.4);
}
.tech-panel .idx-chip .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201,168,117,0.7);
}

.tech-panel .metric {
  grid-column: 1;
  grid-row: 2;
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tech-panel .metric .val {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(88px, 13vw, 180px);
  line-height: 0.82;
  color: var(--gold);
  letter-spacing: -0.035em;
}
.tech-panel .metric .val .unit {
  font-size: 0.32em;
  font-style: normal;
  vertical-align: top;
  color: rgba(250,247,242,0.5);
  margin-left: 6px;
  display: inline-block;
  margin-top: 0.65em;
}
.tech-panel .metric .kind {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(250,247,242,0.6);
}

.tech-panel .art {
  grid-column: 2;
  grid-row: 1 / span 3;
  position: relative;
  align-self: stretch;
  justify-self: end;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(201,168,117,0.06);
  border: 1px solid rgba(201,168,117,0.22);
  margin-top: -8px;
}
.tech-panel .art img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
  transition: transform 0.8s cubic-bezier(0.2,0.7,0.2,1);
}
.tech-panel:hover .art img { transform: scale(1.05); }
.tech-panel .art::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,6,4,0.5) 100%);
  pointer-events: none;
}

.tech-panel .body {
  grid-column: 1;
  grid-row: 3;
  align-self: end;
  padding-top: 20px;
  border-top: 1px solid rgba(250,247,242,0.12);
  color: var(--bone);
}
.tech-panel .body h4 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.1;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
  color: var(--bone);
}
.tech-panel .body p {
  color: rgba(250,247,242,0.72);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
  max-width: 48ch;
}

.tech-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding: 0 4px;
}
.tech-nav-dots {
  display: flex;
  gap: 10px;
  flex: 1;
}
.tech-nav-dots .dot {
  flex: 1;
  max-width: 64px;
  height: 2px;
  background: var(--line-strong);
  transition: background 0.3s, transform 0.3s;
  border-radius: 2px;
  cursor: pointer;
  border: 0;
  padding: 0;
}
.tech-nav-dots .dot.is-active {
  background: var(--gold);
  transform: scaleY(2);
}
.tech-nav-btns {
  display: flex;
  gap: 10px;
}
.tech-nav-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  background: var(--bone);
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  color: var(--ink);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.tech-nav-btn:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.tech-nav-btn:disabled { opacity: 0.35; cursor: default; }
.tech-nav-btn:disabled:hover { background: var(--bone); color: var(--ink); border-color: var(--line-strong); }

@media (max-width: 640px) {
  .tech-panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    padding: 32px 26px;
    min-height: auto;
  }
  .tech-panel .art {
    grid-column: 1;
    grid-row: 2;
    aspect-ratio: 4 / 3;
    margin-top: 8px;
  }
  .tech-panel .metric { grid-row: 3; }
  .tech-panel .body { grid-row: 4; }
  .tech-panel .metric .val { font-size: 84px; }
}

/* Legacy spec grid (fallback if used elsewhere) */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 780px) { .spec-grid { grid-template-columns: 1fr; } }

.spec-card {
  position: relative;
  background: var(--ink);
  color: var(--bone);
  border: 1px solid rgba(201,168,117,0.14);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 36px 32px;
  min-height: 320px;
  display: grid;
  grid-template-columns: 1fr 160px;
  grid-template-rows: auto 1fr;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.2,0.7,0.2,1), border-color 0.3s;
}
.spec-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(201,168,117,0.22) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 100% 100%, rgba(201,168,117,0.10) 0%, transparent 60%);
  opacity: 0.6;
  transition: opacity 0.4s;
  pointer-events: none;
}
.spec-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,117,0.4);
}
.spec-card:hover::before { opacity: 1; }

.spec-card .idx {
  position: absolute;
  top: 20px; right: 22px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.35);
  z-index: 2;
}

.spec-metric {
  grid-column: 1;
  grid-row: 1;
  position: relative; z-index: 2;
}
.spec-metric .val {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(64px, 9vw, 120px);
  line-height: 0.88;
  color: var(--gold);
  letter-spacing: -0.025em;
  display: inline-block;
}
.spec-metric .val .unit {
  font-size: 0.42em;
  font-style: normal;
  vertical-align: top;
  color: rgba(250,247,242,0.55);
  margin-left: 4px;
  line-height: 1;
  display: inline-block;
  margin-top: 0.5em;
}
.spec-metric .kind {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(250,247,242,0.55);
  margin-top: 12px;
}

.spec-thumb {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(201,168,117,0.08);
  border: 1px solid rgba(201,168,117,0.22);
  position: relative; z-index: 2;
  transition: transform 0.6s cubic-bezier(0.2,0.7,0.2,1);
}
.spec-card:hover .spec-thumb {
  transform: scale(1.04) rotate(-3deg);
}
.spec-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.spec-body {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  position: relative; z-index: 2;
}
.spec-body h4 {
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.1;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.spec-body p {
  color: rgba(250,247,242,0.72);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
  max-width: 42ch;
}

@media (max-width: 640px) {
  .spec-card {
    grid-template-columns: 1fr 110px;
    padding: 28px 24px;
    min-height: 280px;
  }
  .spec-metric .val { font-size: 72px; }
}

/* ---------- Case file (before/after polished) ---------- */
.case-file {
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.case-file-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 28px;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
}
.case-file-header .doc { color: var(--gold); }
.case-file-header .meta { color: rgba(250,247,242,0.55); }
.case-file-header .badge {
  padding: 5px 12px;
  border: 1px solid rgba(201,168,117,0.4);
  border-radius: 999px;
  color: var(--gold);
  font-size: 9px;
}

.case-file-body {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
}
@media (max-width: 980px) { .case-file-body { grid-template-columns: 1fr; } }

.case-slider {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: #1a110a;
  user-select: none;
}
.case-slider > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.case-slider .after { clip-path: inset(0 0 0 50%); transition: clip-path 0.1s linear; }
.case-slider .ba-handle {
  position: absolute; top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--bone);
  transform: translateX(-1px);
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(15,10,6,0.2);
}
.case-slider .ba-handle::before {
  content: "";
  position: absolute; top: 50%; left: 50%;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--bone);
  border: 2px solid var(--gold);
  transform: translate(-50%, -50%);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.case-slider .ba-handle::after {
  content: "⟵ ⟶";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-mono);
  font-size: 13px; color: var(--ink); letter-spacing: 0.15em;
}
.case-slider input[type="range"] {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize;
  margin: 0;
}
.case-slider .lbl {
  position: absolute; top: 14px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  padding: 6px 14px;
  background: rgba(15,10,6,0.78);
  color: var(--bone);
  border-radius: 999px;
  pointer-events: none;
  backdrop-filter: blur(4px);
}
.case-slider .lbl.l { left: 14px; }
.case-slider .lbl.r { right: 14px; color: var(--gold-hi); border: 1px solid rgba(201,168,117,0.5); }

.case-info {
  padding: 40px 36px;
  display: flex; flex-direction: column;
  gap: 18px;
}
.case-info .cat {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-deep);
}
.case-info h3 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
}
.case-info h3 em { font-style: italic; color: var(--gold-deep); }

.case-specs {
  list-style: none;
  padding: 0; margin: 8px 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.case-specs > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.case-specs dt, .case-specs dd { margin: 0; }
.case-specs .k {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
}
.case-specs .v {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--ink);
  line-height: 1.3;
}
.case-specs .v em { font-style: italic; color: var(--gold-deep); }

.case-info .desc {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 4px 0 0;
}
.case-info .actions {
  margin-top: auto;
  padding-top: 14px;
  display: flex; gap: 10px; flex-wrap: wrap;
}

/* ---------- Price preview table ---------- */
.prices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 48px;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 780px) { .prices { grid-template-columns: 1fr; } }
.price-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-strong);
}
.price-row .srv { font-size: 16px; color: var(--ink); }
.price-row .srv small { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.price-row .p {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--gold-deep);
  white-space: nowrap;
}
.price-row .p em { font-style: italic; }

/* ---------- CTA band final ---------- */
.cta-band {
  background: var(--ink);
  color: var(--bone);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(201,168,117,0.18) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(201,168,117,0.10) 0%, transparent 50%);
  pointer-events: none;
}
.cta-band .inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 980px) { .cta-band .inner { grid-template-columns: 1fr; gap: 32px; } }
.cta-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
  max-width: 14ch;
}
.cta-band h2 em { color: var(--gold); font-style: italic; }
.cta-band .lead { color: rgba(250,247,242,0.8); font-size: 17px; line-height: 1.55; max-width: 46ch; margin: 0 0 28px; }
.cta-band .actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-card {
  background: rgba(250,247,242,0.04);
  border: 1px solid rgba(250,247,242,0.18);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(6px);
}
.cta-card .row {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(250,247,242,0.12);
}
.cta-card .row:last-child { border-bottom: 0; }
.cta-card .row .k {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
}
.cta-card .row .v {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--bone);
  text-align: right;
  line-height: 1.3;
}
.cta-card .row .v a { color: var(--bone); border-bottom: 1px solid rgba(250,247,242,0.3); }
.cta-card .row .v a:hover { color: var(--gold); border-color: var(--gold); }

/* ---------- Booking form ---------- */
.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.booking-form .field { display: flex; flex-direction: column; gap: 6px; }
.booking-form .field.full { grid-column: 1 / -1; }
.booking-form label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  font: inherit;
  background: var(--bone);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.booking-form textarea { min-height: 110px; resize: vertical; }
.booking-form .submit-row { grid-column: 1 / -1; display: flex; justify-content: flex-end; gap: 12px; margin-top: 8px; }
@media (max-width: 640px) { .booking-form { grid-template-columns: 1fr; } }

/* On dark CTA band — form variant */
.cta-band .booking-form input,
.cta-band .booking-form select,
.cta-band .booking-form textarea {
  background: rgba(250,247,242,0.04);
  color: var(--bone);
  border-color: rgba(250,247,242,0.22);
}
.cta-band .booking-form input::placeholder,
.cta-band .booking-form textarea::placeholder { color: rgba(250,247,242,0.4); }
.cta-band .booking-form input:focus,
.cta-band .booking-form select:focus,
.cta-band .booking-form textarea:focus {
  background: rgba(250,247,242,0.08);
  border-color: var(--gold);
}
.cta-band .booking-form label { color: rgba(250,247,242,0.65); }

/* ---------- Gallery strip ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 10px;
}
.gallery a {
  position: relative; overflow: hidden;
  border-radius: 8px;
  background: var(--cream);
}
.gallery a img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.gallery a:hover img { transform: scale(1.06); }
.gallery a.tall { grid-row: span 2; }
.gallery a.wide { grid-column: span 2; }
@media (max-width: 760px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery a.tall, .gallery a.wide { grid-row: auto; grid-column: auto; }
}

/* ---------- About split ---------- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) { .about-split { grid-template-columns: 1fr; gap: 32px; } }
.about-split .img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--cream);
}
.about-split .img img { width: 100%; height: 100%; object-fit: cover; }
.about-split .text h2 { margin-bottom: 20px; }
.about-split .text p { color: var(--ink); font-size: 17px; line-height: 1.65; margin: 0 0 14px; }

/* ---------- Page hero (light variant for inner pages) ---------- */
.page-hero {
  position: relative;
  background: var(--ink);
  color: var(--bone);
  padding: 160px var(--gutter) 80px;
  overflow: hidden;
  min-height: 60vh;
  display: flex; align-items: flex-end;
}
.page-hero .bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 30%, rgba(201,168,117,0.30) 0%, transparent 60%),
    linear-gradient(160deg, #1d1410 0%, #0a0604 100%);
  z-index: 0;
}
/* Variant with real image background */
.page-hero--image { padding-top: 180px; }
.page-hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
  filter: saturate(0.95) brightness(0.75);
  transform: scale(1.02);
  animation: hero-bg-enter 1.4s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.page-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15,10,6,0.35) 0%, rgba(15,10,6,0.55) 55%, rgba(15,10,6,0.92) 100%),
    radial-gradient(ellipse 60% 60% at 80% 30%, rgba(201,168,117,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 2; width: 100%; }
.page-hero .crumbs {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex; gap: 10px; align-items: center;
}
.page-hero .crumbs a { color: rgba(250,247,242,0.6); }
.page-hero .crumbs a:hover { color: var(--gold); }
.page-hero h1 {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(48px, 7.5vw, 120px);
  line-height: 0.95; letter-spacing: -0.02em; margin: 0;
  max-width: 20ch;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero .sub {
  margin-top: 28px;
  font-family: var(--font-serif); font-size: clamp(18px, 1.8vw, 24px); line-height: 1.4;
  max-width: 60ch;
  color: rgba(250,247,242,0.82);
}

/* ---------- Service page: Breadcrumbs bar (below nav) ---------- */
.svc-breadcrumbs {
  background: var(--bone);
  border-bottom: 1px solid var(--line);
  padding: 12px var(--gutter);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 92px;
}
.svc-breadcrumbs-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.svc-breadcrumbs a { color: var(--muted); transition: color 0.2s; }
.svc-breadcrumbs a:hover { color: var(--gold-deep); }
.svc-breadcrumbs span[aria-hidden] { color: var(--line-strong); }
.svc-breadcrumbs .current { color: var(--gold-deep); }

/* ---------- Service page: Split hero (text L + image R) ---------- */
.svc-hero-split {
  position: relative;
  padding: 64px var(--gutter) 72px;
  background: var(--bone);
}
.svc-hero-split::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 10% 20%, rgba(201,168,117,0.08) 0%, transparent 55%);
  pointer-events: none;
}
.svc-hero-split-inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .svc-hero-split-inner { grid-template-columns: 1fr; gap: 32px; } }

.svc-hero-text {
  display: flex; flex-direction: column; gap: 22px;
}
.svc-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0;
}
.svc-hero-eyebrow::before { content: ""; width: 36px; height: 1px; background: var(--gold); }
.svc-hero-eyebrow .dot { color: var(--gold); }

.svc-hero-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  max-width: 14ch;
}
.svc-hero-title em { font-style: italic; color: var(--gold-deep); }

.svc-hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.4;
  color: var(--muted);
  margin: 0;
  max-width: 52ch;
}

.svc-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

.svc-hero-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: var(--shadow-lg);
}
.svc-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2,0.7,0.2,1);
}
.svc-hero-split:hover .svc-hero-img img { transform: scale(1.04); }
.svc-hero-img .badge {
  position: absolute;
  top: 18px; left: 18px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 8px 14px;
  background: var(--ink); color: var(--gold);
  border-radius: 999px;
  border: 1px solid rgba(201,168,117,0.3);
}
.svc-hero-img .issue {
  position: absolute;
  bottom: 18px; right: 18px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--bone);
  background: rgba(10,6,4,0.7);
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

/* ---------- Service page: Sticky TOC pills ---------- */
.svc-toc-wrap {
  position: sticky;
  top: 76px;
  z-index: 20;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.svc-toc {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 14px var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
  scrollbar-width: none;
}
.svc-toc::-webkit-scrollbar { display: none; }
.svc-toc a {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  transition: all 0.2s;
  background: var(--bone);
}
.svc-toc a:hover { color: var(--ink); border-color: var(--ink); }
.svc-toc a .n { color: var(--gold-deep); font-weight: 600; }

/* ---------- Service page: Zigzag timeline ---------- */
.svc-timeline-zigzag {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
}
.svc-timeline-zigzag::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 24px; bottom: 24px;
  width: 2px;
  background: var(--line-strong);
  transform: translateX(-1px);
}
.svc-timeline-zigzag::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 24px;
  width: 2px;
  height: calc((100% - 48px) * var(--tl-progress, 0));
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold) 85%, rgba(201,168,117,0.6) 100%);
  transform: translateX(-1px);
  z-index: 2;
  box-shadow: 0 0 10px rgba(201,168,117,0.4);
  transition: height 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@media (max-width: 780px) {
  .svc-timeline-zigzag::after {
    left: 24px;
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold) 85%, rgba(201,168,117,0.6) 100%);
  }
}
.svc-tz-step .dot { transition: background 0.45s ease, border-color 0.45s ease; }
.svc-tz-step .dot .n { transition: color 0.45s ease; }
.svc-tz-step.is-active .dot { background: var(--gold); }
.svc-tz-step.is-active .dot .n { color: var(--ink); }
.svc-tz-step {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 32px;
  position: relative;
}
.svc-tz-step .dot {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--gold);
  display: grid; place-items: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px var(--bone);
}
.svc-tz-step .dot .n {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--gold);
  line-height: 1;
}
.svc-tz-step .card {
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.svc-tz-step .card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.svc-tz-step .card h4 {
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.1;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.svc-tz-step .card p {
  color: var(--muted);
  font-size: 15px; line-height: 1.55;
  margin: 0;
}
.svc-tz-step .spacer { visibility: hidden; }
.svc-tz-step:nth-child(even) .card { grid-column: 3; }
.svc-tz-step:nth-child(even) .spacer { grid-column: 1; }
.svc-tz-step:nth-child(odd) .card { grid-column: 1; text-align: right; }
.svc-tz-step:nth-child(odd) .spacer { grid-column: 3; }
@media (max-width: 780px) {
  .svc-timeline-zigzag::before { left: 24px; }
  .svc-tz-step { grid-template-columns: 48px 1fr; gap: 20px; }
  .svc-tz-step .dot { order: 0; }
  .svc-tz-step .card,
  .svc-tz-step:nth-child(odd) .card,
  .svc-tz-step:nth-child(even) .card { grid-column: 2; text-align: left; }
  .svc-tz-step .spacer { display: none; }
}

/* ---------- Service page: Indications dual column ---------- */
.svc-indications {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}
@media (max-width: 720px) { .svc-indications { grid-template-columns: 1fr; } }
.svc-ind-col {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bone);
}
.svc-ind-col.yes { border-color: rgba(63,172,96,0.3); }
.svc-ind-col.no  { border-color: rgba(194,74,56,0.25); background: #fbf7f5; }
.svc-ind-col .lbl {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}
.svc-ind-col h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.15;
  margin: 0 0 16px;
}
.svc-ind-col h3 em { font-style: italic; color: var(--gold-deep); }
.svc-ind-col ul { list-style: none; padding: 0; margin: 0; }
.svc-ind-col li {
  padding: 8px 0 8px 28px;
  position: relative;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  line-height: 1.5;
}
.svc-ind-col li:last-child { border-bottom: 0; }
.svc-ind-col.yes li::before {
  content: "";
  position: absolute; left: 0; top: 14px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--success);
  border-bottom: 2px solid var(--success);
  transform: rotate(-45deg);
}
.svc-ind-col.no li::before {
  content: "";
  position: absolute; left: 4px; top: 14px;
  width: 12px; height: 2px;
  background: var(--danger);
  box-shadow: 0 -1px 0 var(--danger);
}
.svc-ind-col.no li::after {
  content: "";
  position: absolute; left: 4px; top: 14px;
  width: 12px; height: 2px;
  background: var(--danger);
  transform: rotate(90deg);
  transform-origin: center;
}

/* ---------- Service page: Price block (by category) ---------- */
.svc-prices {
  display: flex; flex-direction: column;
  gap: 40px;
  max-width: 920px; margin: 0 auto;
}
.svc-price-group h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1.15;
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gold);
  display: flex; justify-content: space-between; align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
}
.svc-price-group h3 em { font-style: italic; color: var(--gold-deep); font-weight: 400; }
.svc-price-group h3 small {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
  font-weight: normal;
}
.svc-price-group .row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.svc-price-group .row:last-child { border-bottom: 0; }
.svc-price-group .row .srv { color: var(--ink); }
.svc-price-group .row .p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--gold-deep);
  white-space: nowrap;
}

/* ---------- Service page: Doctor spotlight ---------- */
.svc-doctors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.svc-doctor-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 24px;
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  align-items: start;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.svc-doctor-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.svc-doctor-card .portrait {
  width: 120px; height: 150px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
}
.svc-doctor-card .portrait img {
  width: 100%; height: 100%; object-fit: cover;
}
.svc-doctor-card .body .role {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 6px;
}
.svc-doctor-card .body h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.15;
  margin: 0 0 8px;
}
.svc-doctor-card .body .specialty {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
  margin: 0;
}
@media (max-width: 480px) {
  .svc-doctor-card { grid-template-columns: 96px 1fr; }
  .svc-doctor-card .portrait { width: 96px; height: 120px; }
}

/* ---------- Service detail body ---------- */
.svc-body {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 980px) { .svc-body { grid-template-columns: 1fr; gap: 32px; } }
.svc-body .sticky {
  position: sticky; top: 100px;
}
.svc-body .intro {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 28px;
}
.svc-body h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 40px 0 16px;
}
.svc-body h2:first-child { margin-top: 0; }
.svc-body h2 em { font-style: italic; color: var(--gold-deep); }
.svc-body p { font-size: 17px; line-height: 1.7; color: var(--ink); margin: 0 0 14px; }
.svc-body ul { padding-left: 22px; }
.svc-body ul li {
  list-style: none;
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 16px; line-height: 1.5;
  border-bottom: 1px solid var(--line);
}
.svc-body ul li::before {
  content: ""; position: absolute;
  left: 0; top: 18px;
  width: 10px; height: 10px;
  border: 1.5px solid var(--gold);
  background: var(--bone);
  transform: rotate(45deg);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--bone);
  padding: var(--space-8) 0 var(--space-4); /* 80px / 32px */
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-6); /* 48px */
  padding: 0 var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-4); /* 32px */ } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* --- Brand block (with logo mark) --- */
.footer .brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2); /* 16px */
  color: var(--bone);
  line-height: 1;
}
.footer .brand .brand-mark {
  width: 3.5rem;           /* 56px — logo has its own gold ring, give it room to breathe */
  height: 3.5rem;
  flex: none;
  display: block;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.footer .brand:hover .brand-mark { transform: rotate(-6deg) scale(1.05); }
.footer .brand .brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.footer .brand .brand-text { display: flex; flex-direction: column; gap: 4px; }
.footer .brand .brand-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;        /* 24px */
  line-height: 1;
}
.footer .brand em { font-style: italic; color: var(--gold); }
.footer .brand small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.5625rem;     /* 9px */
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.55);
}
.footer-blurb { margin-top: var(--space-3); max-width: 32ch; } /* 24px */
.footer-li-gap { margin-top: var(--space-1); }                 /* 8px */
.footer-li-off { color: rgba(250,247,242,0.45); }
.footer-phone,
.footer-cta-link { color: var(--gold); font-weight: 600; }
.footer-bottom-links {
  display: flex;
  gap: var(--space-3); /* 24px */
  flex-wrap: wrap;
}
.footer h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
  font-weight: 500;
}
.footer p, .footer a { color: rgba(250,247,242,0.72); font-size: 14px; line-height: 1.7; }
.footer a:hover { color: var(--gold); }
.footer ul { display: flex; flex-direction: column; gap: 8px; }
.footer .socials { display: flex; gap: var(--space-1); margin-top: var(--space-3); /* 8px / 24px */ }
.footer .socials a {
  width: 2.5rem; height: 2.5rem; /* 40px */
  border-radius: 50%;
  border: 1px solid rgba(250,247,242,0.22);
  display: grid; place-items: center;
  color: var(--bone);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.footer .socials a:hover { transform: translateY(-2px); }
.footer .socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.footer .socials svg { width: 16px; height: 16px; }
.footer-bottom {
  max-width: var(--maxw);
  margin: 56px auto 0;
  padding: 24px var(--gutter) 0;
  border-top: 1px solid rgba(250,247,242,0.12);
  display: flex;
  justify-content: space-between; flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(250,247,242,0.45);
}
.footer-bottom a { color: rgba(250,247,242,0.55); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Reveal animation (2026 cinematic) ----------
   Uses a custom cubic-bezier that mimics spring overshoot tail (no wobble),
   plus filter blur for depth perception on images & split text.
*/
[data-reveal] {
  opacity: 0;
  transform: translateY(2rem); /* 32px */
  filter: blur(6px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform, filter;
}
[data-reveal="left"]  { transform: translateX(-3rem); }  /* 48px from left */
[data-reveal="right"] { transform: translateX(3rem); }   /* 48px from right */
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal="up"]    { transform: translateY(3rem); }   /* 48px stronger rise */
[data-reveal].in {
  opacity: 1;
  transform: translate(0) scale(1);
  filter: blur(0);
}

/* Word-by-word reveal for [data-split-text] headings */
.split-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.75em) rotate(4deg);
  transform-origin: 0 80%;
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--word-i, 0) * 60ms);
  white-space: pre;
}
.split-word.in {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

/* ---------- Hero load entrance (subtle fade-up stagger) ---------- */
@keyframes hero-enter {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero .hero-kicker,
.hero h1,
.hero-lead,
.hero-ctas {
  animation: hero-enter 0.85s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.hero .hero-kicker { animation-delay: 0.15s; }
.hero h1           { animation-delay: 0.30s; animation-duration: 0.95s; }
.hero-lead         { animation-delay: 0.50s; }
.hero-ctas         { animation-delay: 0.70s; }

/* Hero video / image gentle fade-in */
@keyframes hero-bg-enter {
  from { opacity: 0; transform: scale(1.03); }
  to   { opacity: 1; transform: scale(1); }
}
.hero-video-bg,
.hero-photo-bg {
  animation: hero-bg-enter 1.2s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

/* Nav fade-in is handled by the intro overlay sync (opacity transition on .nav)
   — no separate keyframe animation needed (would conflict with intro-active opacity override). */

/* FAB buttons gentle pop in */
@keyframes fab-pop {
  from { opacity: 0; transform: scale(0.6); }
  to   { opacity: 1; transform: scale(1); }
}
.sticky-fab .fab {
  animation: fab-pop 0.5s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.sticky-fab .fab:nth-child(1) { animation-delay: 1.0s; }
.sticky-fab .fab:nth-child(2) { animation-delay: 1.15s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- Partners marquee (infinite horizontal scroll) ---------- */
.partners-marquee {
  overflow: hidden;
  padding: 28px 0;
  background: var(--bone);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.partners-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
}
.partners-track {
  display: flex;
  width: max-content;
  animation: partners-scroll 45s linear infinite;
  gap: 64px;
  align-items: center;
}
.partners-marquee:hover .partners-track { animation-play-state: paused; }
.partner-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--ink);
  white-space: nowrap;
  opacity: 0.55;
  transition: opacity 0.3s, color 0.3s;
  flex-shrink: 0;
}
.partner-logo:hover { opacity: 1; color: var(--gold-deep); }
.partner-logo em { font-style: italic; color: var(--gold-deep); }
.partner-logo .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  margin-right: 4px;
  opacity: 0.6;
}
@keyframes partners-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Timeline "Procesul tău" ---------- */
.timeline-section {
  padding: var(--section-y) 0;
  background: var(--ink);
  color: var(--bone);
  overflow: hidden;
}
.timeline-section .section-head { color: var(--bone); }
.timeline-section .section-head h2, .timeline-section .section-head .h2 { color: var(--bone); }
.timeline-section .section-head p { color: rgba(250,247,242,0.72); }
.timeline-section .section-head .eyebrow { color: var(--gold); }

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 72px;
  list-style: none;
  padding: 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 10%; right: 10%;
  top: 30px;
  height: 2px;
  background: rgba(250,247,242,0.14);
  z-index: 1;
}
.timeline::after {
  content: "";
  position: absolute;
  left: 10%;
  top: 30px;
  height: 2px;
  width: calc(80% * var(--tl-progress, 0));
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 70%, rgba(201,168,117,0.6) 100%);
  z-index: 2;
  box-shadow: 0 0 12px rgba(201,168,117,0.5);
  transition: width 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* Active step state — dot fills gold */
.tl-step .dot { transition: background 0.45s ease, border-color 0.45s ease; }
.tl-step .dot .n { transition: color 0.45s ease; }
.tl-step.is-active .dot { background: var(--gold); }
.tl-step.is-active .dot .n { color: var(--ink); }
.tl-step {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 8px;
}
.tl-step .dot {
  width: 62px; height: 62px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--gold);
  display: grid; place-items: center;
  position: relative;
  box-shadow: 0 0 0 6px var(--ink);
}
.tl-step .dot .n {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  color: var(--gold);
  line-height: 1;
}
.tl-step:last-child .dot {
  background: var(--gold);
  border-color: var(--gold);
}
.tl-step:last-child .dot .n { color: var(--ink); }
.tl-step h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.1;
  margin: 0 0 8px;
  color: var(--bone);
  letter-spacing: -0.005em;
}
.tl-step h4 em { font-style: italic; color: var(--gold); }
.tl-step p {
  color: rgba(250,247,242,0.65);
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0;
  max-width: 24ch;
  margin-left: auto; margin-right: auto;
}
@media (max-width: 880px) {
  .timeline {
    grid-template-columns: 1fr;
    gap: var(--space-4);     /* 32px */
    margin-top: var(--space-5); /* 40px */
  }
  .timeline::before, .timeline::after {
    left: 31px; right: auto;
    top: 0; bottom: 0;
    width: 2px; height: 100%;
  }
  .timeline::after {
    height: 72%;
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold) 70%, transparent 100%);
  }
  .tl-step {
    display: grid;
    grid-template-columns: 62px 1fr;
    grid-template-areas:
      "dot   title"
      "dot   desc";
    align-items: start;
    column-gap: var(--space-3); /* 24px */
    row-gap: var(--space-1);    /*  8px */
    text-align: left;
  }
  .tl-step .dot { grid-area: dot; margin: 0; }
  .tl-step h4   { grid-area: title; margin: 0; }
  .tl-step p {
    grid-area: desc;
    margin: 0;
    max-width: none;
  }
}

/* ---------- Pull quote hero (break section) ---------- */
.pullquote-hero {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.pullquote-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,117,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 10% 90%, rgba(201,168,117,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.pullquote-hero blockquote {
  max-width: 1080px;
  margin: 0 auto;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(30px, 4.2vw, 62px);
  line-height: 1.12;
  color: var(--bone);
  text-align: center;
  position: relative;
  letter-spacing: -0.015em;
}
.pullquote-hero blockquote::before {
  content: "\201C";
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(120px, 18vw, 220px);
  color: var(--gold);
  line-height: 0.5;
  display: block;
  margin-bottom: 8px;
  opacity: 0.5;
}
.pullquote-hero blockquote em { color: var(--gold); font-style: italic; }
.pullquote-hero cite {
  display: block;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 44px;
  text-align: center;
  position: relative;
}
.pullquote-hero cite::before {
  content: "";
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 12px;
}

/* ---------- Cases clinical carousel ---------- */
.cases-carousel {
  position: relative;
}
.cases-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  padding: 0 4px;
}
.cases-nav-dots {
  display: flex;
  gap: 10px;
  flex: 1;
}
.cases-nav-dots .dot {
  flex: 1;
  max-width: 48px;
  height: 2px;
  background: var(--line-strong);
  transition: background 0.3s, transform 0.3s;
  border-radius: 2px;
  cursor: pointer;
  border: 0;
  padding: 0;
}
.cases-nav-dots .dot.is-active {
  background: var(--gold);
  transform: scaleY(2);
}
.cases-nav-btns {
  display: flex;
  gap: 10px;
}
.cases-nav-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  background: var(--bone);
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  color: var(--ink);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.cases-nav-btn:hover {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
  transform: translateY(-2px);
}
.cases-nav-btn:disabled { opacity: 0.35; cursor: default; }
.cases-nav-btn:disabled:hover {
  background: var(--bone);
  color: var(--ink);
  border-color: var(--line-strong);
  transform: none;
}
.cases-strip {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--gutter);
  padding: 6px 0 24px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  margin: 0 calc(var(--gutter) * -1);
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.cases-strip::-webkit-scrollbar { display: none; }
.cases-strip > * { scroll-snap-align: start; }

.case-card-premium {
  flex: 0 0 min(440px, 88vw);
  position: relative;
  background: var(--bone);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  transition: transform 0.4s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.3s, border-color 0.3s;
  display: flex; flex-direction: column;
}
.case-card-premium:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.case-card-premium::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-hi) 50%, var(--gold) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.55s cubic-bezier(0.2,0.7,0.2,1);
  z-index: 3;
}
.case-card-premium:hover::after { transform: scaleX(1); }
.case-card-premium .img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
}
.case-card-premium .img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2,0.7,0.2,1);
}
.case-card-premium:hover .img img { transform: scale(1.06); }
.case-card-premium .img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,6,4,0.4) 100%);
  pointer-events: none;
}
.case-card-premium .badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bone);
  padding: 6px 12px;
  background: rgba(10,6,4,0.65);
  border: 1px solid rgba(201,168,117,0.5);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.case-card-premium .body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex; flex-direction: column;
}
.case-card-premium .ix {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 30px;
  color: var(--gold-deep);
  line-height: 1;
  margin: 0 0 4px;
}
.case-card-premium .cat {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 8px;
}
.case-card-premium h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin: 0 0 12px;
  color: var(--ink);
}
.case-card-premium h4 em { font-style: italic; color: var(--gold-deep); }
.case-card-premium .meta {
  display: flex; gap: 18px;
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 16px;
}
.case-card-premium .meta strong { color: var(--ink); font-weight: 600; }
.case-card-premium .more {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px;
}
.case-card-premium .more .arrow { transition: transform 0.25s; }
.case-card-premium:hover .more .arrow { transform: translateX(5px); }

/* ---------- Sticky floating actions (WhatsApp + Call) ---------- */
.sticky-fab {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 60;
  display: flex; flex-direction: column;
  gap: 12px;
  pointer-events: none;
}
.sticky-fab .fab {
  pointer-events: auto;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22), 0 2px 8px rgba(0,0,0,0.12);
  transition: transform 0.25s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.25s;
  position: relative;
  color: white;
  text-decoration: none;
}
.sticky-fab .fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 40px rgba(0,0,0,0.3), 0 3px 10px rgba(0,0,0,0.15);
}
.sticky-fab .fab svg { width: 24px; height: 24px; }
.sticky-fab .fab.whatsapp { background: #25D366; }
.sticky-fab .fab.call {
  background: var(--gold);
  color: var(--ink);
}
.sticky-fab .fab.call::after {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0.35;
  animation: fab-pulse 2.2s ease-out infinite;
}
@keyframes fab-pulse {
  0%   { transform: scale(1); opacity: 0.5; }
  80%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}
.sticky-fab .label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%; transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--ink); color: var(--bone);
  padding: 8px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}
.sticky-fab .label::after {
  content: "";
  position: absolute;
  left: 100%; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 6px solid var(--ink);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.sticky-fab .fab:hover .label { opacity: 1; }
@media (max-width: 640px) {
  .sticky-fab {
    right: 12px;
    bottom: 12px;
    gap: 8px;
    /* respect device safe areas (iPhone notch / home indicator) */
    right: calc(12px + env(safe-area-inset-right));
    bottom: calc(12px + env(safe-area-inset-bottom));
  }
  .sticky-fab .fab { width: 48px; height: 48px; }
  .sticky-fab .fab svg { width: 20px; height: 20px; }
  .sticky-fab .label { display: none; }
  /* Hide pulse ring on mobile — distracting at small size */
  .sticky-fab .fab.call::after { display: none; }
}

/* Hide FABs while mobile drawer is open (so they don't sit over the menu) */
body:has(#navLinks.is-open) .sticky-fab { display: none; }

/* ---------- Intro overlay (splash screen first visit) ---------- */
body.intro-active {
  overflow: hidden;
}
/* Smooth fade for nav + FABs that matches intro overlay's exit timing.
   When intro fades out, these fade IN at the same pace — header appears
   together with the page content, no lag.
   (Nav has opacity transition built into its main rule; FAB needs its own.) */
.sticky-fab {
  transition: opacity 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}
body.intro-active .nav,
body.intro-active .sticky-fab {
  opacity: 0;
  pointer-events: none;
}

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background:
    radial-gradient(ellipse 70% 60% at 50% 45%, rgba(201,168,117,0.22) 0%, rgba(201,168,117,0.06) 35%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 15% 90%, rgba(201,168,117,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 10%, rgba(201,168,117,0.1) 0%, transparent 60%),
    linear-gradient(180deg, #1a110d 0%, #0a0604 100%);
  color: var(--bone);
  font-family: var(--font-sans);
  display: grid;
  place-items: center;
  overflow: hidden;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.55s cubic-bezier(0.2,0.7,0.2,1), transform 0.55s cubic-bezier(0.2,0.7,0.2,1);
  animation: intro-enter 0.4s ease-out;
}
.intro-overlay.is-exit {
  opacity: 0;
  transform: translateY(-6vh);
  pointer-events: none;
}

@keyframes intro-enter {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes intro-scale {
  from { opacity: 0; transform: scale(0.82); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes intro-slide-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes intro-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes intro-line {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.intro-stage {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 32px;
  max-width: 680px;
  width: 100%;
}

.intro-logo {
  width: 120px; height: 120px;
  margin: 0 auto 28px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,117,0.3);
  opacity: 0;
  animation: intro-scale 0.9s cubic-bezier(0.2,0.7,0.2,1) 0.15s forwards;
}
.intro-logo img {
  width: 100%; height: 100%; object-fit: cover;
}

.intro-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
  opacity: 0;
  animation: intro-fade 0.7s cubic-bezier(0.2,0.7,0.2,1) 0.45s forwards;
}

.intro-brand {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(56px, 10vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  color: var(--bone);
  opacity: 0;
  animation: intro-slide-up 0.9s cubic-bezier(0.2,0.7,0.2,1) 0.6s forwards;
}
.intro-brand em { font-style: italic; color: var(--gold); }

.intro-line {
  width: 200px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 28px;
  transform-origin: left center;
  transform: scaleX(0);
  animation: intro-line 0.8s cubic-bezier(0.2,0.7,0.2,1) 1.0s forwards;
  box-shadow: 0 0 10px rgba(201,168,117,0.4);
}

.intro-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.3;
  color: rgba(250,247,242,0.85);
  margin: 0 0 44px;
  opacity: 0;
  animation: intro-slide-up 0.7s cubic-bezier(0.2,0.7,0.2,1) 1.25s forwards;
}

.intro-stats {
  list-style: none;
  padding: 0; margin: 0 0 36px;
  display: flex;
  justify-content: center;
  gap: clamp(24px, 5vw, 64px);
  opacity: 0;
  animation: intro-fade 0.7s cubic-bezier(0.2,0.7,0.2,1) 1.5s forwards;
}
.intro-stats li {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.intro-stats .n {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1;
  color: var(--gold);
}
.intro-stats .n em { font-style: normal; font-size: 0.7em; color: var(--gold); vertical-align: baseline; }
.intro-stats .k {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(250,247,242,0.6);
}

.intro-phone {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: rgba(250,247,242,0.72);
  margin: 0;
  opacity: 0;
  animation: intro-fade 0.6s cubic-bezier(0.2,0.7,0.2,1) 1.85s forwards;
}

/* Grain / film texture */
.intro-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.25 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.12;
  pointer-events: none;
}

@media (max-width: 640px) {
  .intro-stats { gap: 20px; }
  .intro-stats .k { font-size: 9px; letter-spacing: 0.18em; }
}

@media (prefers-reduced-motion: reduce) {
  .intro-overlay, .intro-logo, .intro-kicker, .intro-brand,
  .intro-line, .intro-tagline, .intro-stats, .intro-phone {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ---------- Drop cap (editorial magazine feel) ---------- */
.drop-cap::first-letter {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 5.2em;
  line-height: 0.82;
  color: var(--gold-deep);
  float: left;
  padding: 6px 12px 0 0;
  margin-top: 4px;
}

/* ---------- Utility ---------- */
.center      { text-align: center; }
.mt-xs { margin-top: 8px; }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 64px; }
.hidden-sm { display: initial; }
@media (max-width: 640px) { .hidden-sm { display: none; } }

/* ---------- Semantic HTML defaults reset ---------- */
/* Ensure dl/p/ol/ul used in design components have predictable spacing */
.hero-bottom,
.hero-ctas,
.cta-band .actions,
.reviews-header p,
.reviews-rating p,
.review p,
.case-info .actions,
.patient-band-card .actions,
.svc-list,
.location-card .actions,
.cta-card dl,
.hero h1 + p,
.hero-left p {
  margin: 0;
}
/* Keep .prices centered; only reset default <dl> margins vertically */
.prices { margin-top: 0; margin-bottom: 0; }
.hero-bottom { list-style: none; padding: 0; }
.hero-bottom dt, .hero-bottom dd { margin: 0; }
.cta-card dl { padding: 0; }
.cta-card dl dt, .cta-card dl dd { margin: 0; }
.prices { padding: 0; list-style: none; }
.price-row dt, .price-row dd { margin: 0; }
.svc-list { padding: 0; }
.reviews-header p, .reviews-rating p, .review p { padding: 0; }
.section-head p { padding: 0; }
.body-lg + p, .body-muted + p { margin-top: 16px; }
main p { margin: 0 0 0.75em; }
main p:last-child { margin-bottom: 0; }
main .hero p,
main .section-head p,
main .hero-ctas,
main .case-info p,
main .case-info .actions,
main .location-card p,
main .location-card .actions,
main .cta-band p,
main .cta-band .actions,
main figure { margin: 0; }
/* Preserve section-foot breathing room (matches .section-foot margin-top) */
main .section-foot { margin: var(--space-5) 0 0; /* 40px */ }

/* ========================================================================
   SERVICES LIST PAGE — triaj grid, editorial catalog, soft CTA
   ======================================================================== */

/* ---------- Triaj: intent-based scenario grid ---------- */
.triaj-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);         /* 24px */
}
@media (max-width: 900px) { .triaj-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .triaj-grid { grid-template-columns: 1fr; } }

.triaj-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "ix    ix    arrow"
    "icon  body  arrow";
  column-gap: var(--space-2); /* 16px */
  row-gap: var(--space-2);
  align-items: center;
  padding: var(--space-3) var(--space-3) var(--space-3) var(--space-3); /* 24px all around */
  background: var(--white, #fff);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease;
}
.triaj-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.triaj-card:hover,
.triaj-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
  outline: none;
}
.triaj-card:hover::before,
.triaj-card:focus-visible::before { transform: scaleY(1); }

.triaj-card__ix {
  grid-area: ix;
  font-family: var(--font-mono);
  font-size: 0.625rem;          /* 10px */
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.triaj-card__icon {
  grid-area: icon;
  width: 3rem; height: 3rem;    /* 48px */
  border-radius: 50%;
  background: var(--cream);
  display: grid;
  place-items: center;
  color: var(--ink);
  flex: none;
  transition: background 0.35s ease, color 0.35s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.triaj-card__icon svg { width: 1.5rem; height: 1.5rem; } /* 24px */
.triaj-card:hover .triaj-card__icon {
  background: var(--ink);
  color: var(--gold);
  transform: rotate(-6deg);
}

.triaj-card__body {
  grid-area: body;
  display: flex;
  flex-direction: column;
  gap: 4px;                     /* 4px sub-grid — tight label/lead cluster */
  min-width: 0;
}
.triaj-card__intent {
  font-family: var(--font-serif);
  font-size: 1.125rem;          /* 18px */
  line-height: 1.25;
  color: var(--ink);
  font-weight: 400;
}
.triaj-card__lead {
  font-size: 0.8125rem;         /* 13px */
  line-height: 1.45;
  color: var(--muted);
}

.triaj-card__arrow {
  grid-area: arrow;
  width: 2rem; height: 2rem;    /* 32px */
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  color: var(--muted);
  flex: none;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease;
}
.triaj-card:hover .triaj-card__arrow {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: translateX(3px);
}

/* ---------- Catalog editorial — white bg + sticky left timeline rail ---------- */
.catalog-wrap {
  display: grid;
  grid-template-columns: 12rem 1fr;   /* 192px rail + fluid content */
  gap: var(--space-6);                 /* 48px */
  align-items: start;
}
@media (max-width: 900px) {
  .catalog-wrap { grid-template-columns: 1fr; gap: 0; }
}

/* --- Sticky left rail: scroll-progress timeline --- */
.catalog-rail {
  position: sticky;
  top: 6rem;                          /* clears nav */
  padding: var(--space-2) 0;
}
.catalog-rail__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;               /* 11px */
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--space-3);         /* 24px */
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--line);
}
.catalog-rail__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  counter-reset: rail;
}
/* Vertical track line through the left edge of numbers */
.catalog-rail__list::before {
  content: "";
  position: absolute;
  left: 0.75rem;                      /* 12px — aligns with number left edge */
  top: 0.625rem;                      /* 10px optical start */
  bottom: 0.625rem;
  width: 1px;
  background: var(--line-strong);
  z-index: 0;
}
.catalog-rail__item {
  position: relative;
  counter-increment: rail;
}
.catalog-rail__item a {
  display: grid;
  grid-template-columns: 1.5rem 1fr;  /* 24px number col + name */
  align-items: center;
  gap: var(--space-2);                /* 16px */
  padding: 0.625rem 0;                /* 10px vertical for rhythm */
  text-decoration: none;
  color: var(--muted);
  transition: color 0.3s ease;
}
.catalog-rail__ix {
  font-family: var(--font-mono);
  font-size: 0.625rem;                /* 10px */
  letter-spacing: 0.1em;
  color: var(--muted);
  transition: color 0.3s ease;
  background: var(--white, #fff);
  padding: 0.125rem 0;                /* 2px — pulls number above line */
  position: relative;
  z-index: 1;
  text-align: center;
}
.catalog-rail__name {
  font-size: 0.8125rem;               /* 13px */
  line-height: 1.3;
  color: var(--muted);
  transition: color 0.3s ease;
}
.catalog-rail__item:hover a,
.catalog-rail__item:hover .catalog-rail__name,
.catalog-rail__item:hover .catalog-rail__ix { color: var(--ink); }

/* Active state — gold dot + bold name */
.catalog-rail__item.is-active .catalog-rail__ix {
  color: var(--ink);
  font-weight: 600;
}
.catalog-rail__item.is-active .catalog-rail__ix::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1.75rem;                     /* 28px — the gold dot */
  height: 1.75rem;
  border-radius: 50%;
  background: var(--gold);
  z-index: -1;
}
.catalog-rail__item.is-active .catalog-rail__name {
  color: var(--ink);
  font-weight: 500;
}
.catalog-rail__item.is-done .catalog-rail__ix { color: var(--gold-deep); }
.catalog-rail__item.is-done .catalog-rail__name { color: var(--ink); }

/* --- Catalog list (white bg rows) --- */
.catalog-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-7);                /* 64px between rows */
}
@media (max-width: 900px) { .catalog-list { gap: var(--space-5); /* 40px */ } }

.catalog-row {
  position: relative;
  scroll-margin-top: 5rem;            /* offset for fixed nav on anchor jump */
}
.catalog-row__ix {
  font-family: var(--font-mono);
  font-size: 0.625rem;                /* 10px */
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--space-2);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}
.catalog-row__ix::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
  margin-left: var(--space-2);
}

.catalog-row__card {
  display: grid;
  grid-template-columns: 20rem 1fr;   /* 320px image + content */
  gap: var(--space-5);                 /* 40px */
  align-items: start;
  background: var(--white, #fff);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-3);            /* 24px inner padding */
  text-decoration: none;
  color: var(--ink);
  transition: box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s ease,
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.catalog-row__card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 168, 117, 0.5);
  transform: translateY(-2px);
}
@media (max-width: 900px) {
  .catalog-row__card {
    grid-template-columns: 1fr;
    gap: var(--space-3);              /* 24px */
    padding: var(--space-2);
  }
}

.catalog-row__img {
  margin: 0;
  aspect-ratio: 1 / 1;                /* SQUARE — smaller footprint than 4:5 */
  overflow: hidden;
  border-radius: 0.5rem;              /* 8px */
  background: var(--cream);
}
.catalog-row__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.catalog-row__card:hover .catalog-row__img img { transform: scale(1.05); }

.catalog-row__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);                /* 16px */
  padding: var(--space-1) 0;          /* 8px optical top/bottom */
  min-width: 0;
}
.catalog-row__cat {
  font-family: var(--font-mono);
  font-size: 0.6875rem;               /* 11px */
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0;
}
.catalog-row__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.4vw, 2rem); /* 24 → 32 px — more modest */
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.catalog-row__card:hover .catalog-row__title { color: var(--gold-deep); transition: color 0.3s ease; }
.catalog-row__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.0625rem;               /* 17px */
  line-height: 1.4;
  color: var(--muted);
  margin: 0;
}
.catalog-row__intro {
  font-size: 0.9375rem;               /* 15px */
  line-height: 1.65;
  color: var(--ink);
  margin: 0;
  max-width: 52ch;
}
.catalog-row__proc-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;                /* 10px */
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: var(--space-1) 0 0;          /* 8px above */
}
.catalog-row__chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;                      /* 6px sub-grid */
}
.catalog-row__chips li {
  font-family: var(--font-mono);
  font-size: 0.625rem;                /* 10px */
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(201, 168, 117, 0.10);
  border: 1px solid rgba(201, 168, 117, 0.28);
  padding: 0.3125rem 0.625rem;         /* 5px / 10px */
  border-radius: 999px;
}
.catalog-row__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding-top: var(--space-2);
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.catalog-row__price {
  font-family: var(--font-mono);
  font-size: 0.6875rem;               /* 11px */
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.catalog-row__price em {
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.0625rem;               /* 17px */
  color: var(--gold-deep);
  letter-spacing: 0;
  text-transform: none;
  margin-left: var(--space-1);         /* 8px */
}
.catalog-row__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-family: var(--font-sans);
  font-size: 0.875rem;                /* 14px */
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.catalog-row__card:hover .catalog-row__cta {
  color: var(--gold-deep);
  border-color: var(--gold);
}
.catalog-row__card:hover .catalog-row__cta svg {
  transform: translateX(3px);
  transition: transform 0.3s ease;
}

/* Mobile: hide sticky rail (revealed only as chips below hero?) */
@media (max-width: 900px) {
  .catalog-rail { display: none; }
}

/* ========================================================================
   CLINIC TOUR VIDEO (replaces cinema slideshow on home)
   ======================================================================== */
.clinic-tour {
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
}
.clinic-tour__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.clinic-tour__caption {
  position: absolute;
  left: var(--space-3);                /* 24px */
  top: var(--space-3);
  z-index: 2;
  pointer-events: none;
}
.clinic-tour__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 0.5rem 0.875rem;            /* 8px / 14px */
  border-radius: 999px;
  background: rgba(15, 10, 6, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 168, 117, 0.32);
  font-family: var(--font-mono);
  font-size: 0.6875rem;                /* 11px */
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone);
}
.clinic-tour__badge::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 117, 0.25);
  animation: trust-pulse 2s ease-in-out infinite;
}

@media (max-width: 720px) {
  .clinic-tour { aspect-ratio: 4 / 3; }
  .clinic-tour__caption { left: var(--space-2); top: var(--space-2); }
  .clinic-tour__badge { font-size: 0.625rem; padding: 0.375rem 0.625rem; }
}

/* ========================================================================
   PRICING PAGE — full catalog with sticky rail (reuses .catalog-wrap)
   ======================================================================== */
.pricing-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-7);                /* 64px between groups */
}
@media (max-width: 900px) { .pricing-list { gap: var(--space-5); } }

.pricing-group { scroll-margin-top: 5rem; }
.pricing-group__head {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);                /* 16px */
  margin-bottom: var(--space-3);      /* 24px */
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--line-strong);
  flex-wrap: wrap;
}
.pricing-group__ix {
  font-family: var(--font-mono);
  font-size: 0.625rem;                /* 10px */
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0;
}
.pricing-group__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 2.4vw, 2rem); /* 24 → 32 px */
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  flex: 1;
  min-width: 0;
}
.pricing-group__meta {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.pricing-table {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-2);
  padding: var(--space-2) 0;          /* 16px vertical */
  border-bottom: 1px solid var(--line);
}
.pricing-row dt,
.pricing-row dd { margin: 0; }
.pricing-row .srv {
  font-size: 0.9375rem;               /* 15px */
  color: var(--ink);
  flex: 1;
}
.pricing-row .p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.0625rem;               /* 17px */
  color: var(--gold-deep);
  white-space: nowrap;
}
.pricing-row .p em { font-style: italic; }

/* ========================================================================
   BEFORE / AFTER PAGE — case slider gallery
   ======================================================================== */
.ba-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-9);                /* 96px between cases */
}
@media (max-width: 900px) { .ba-list { gap: var(--space-6); /* 48px */ } }

.ba-case { scroll-margin-top: 5rem; }
.ba-case__ix {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 var(--space-2);          /* 16px */
  display: flex;
  align-items: center;
  gap: var(--space-1);
}
.ba-case__ix::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
  margin-left: var(--space-2);
}

.ba-case__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-areas: "slider body";
  gap: var(--space-6);                 /* 48px */
  align-items: center;
}
.ba-case.reverse .ba-case__inner {
  grid-template-areas: "body slider";
}
@media (max-width: 900px) {
  .ba-case__inner,
  .ba-case.reverse .ba-case__inner {
    grid-template-columns: 1fr;
    grid-template-areas: "slider" "body";
    gap: var(--space-3);
  }
}
.ba-slider { grid-area: slider; }
.ba-case__body { grid-area: body; min-width: 0; }

.ba-case__cat {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 var(--space-1);
}
.ba-case__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.6vw, 2.25rem); /* 24 → 36 px */
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 var(--space-2);
  color: var(--ink);
}
.ba-case__title em { font-style: italic; color: var(--gold-deep); }
.ba-case__desc {
  font-size: 1rem;                    /* 16px */
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 var(--space-3);          /* 24px */
  max-width: 50ch;
}
.ba-case__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);                 /* 16px */
  margin: 0 0 var(--space-3);
  padding: var(--space-2) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 540px) {
  .ba-case__meta { grid-template-columns: repeat(2, 1fr); }
}
.ba-case__meta > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ba-case__meta dt {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.ba-case__meta dd {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--ink);
  margin: 0;
}
.ba-case__cta { margin: 0; }

/* The slider frame */
.ba-frame {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: var(--shadow-md);
  user-select: none;
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.ba-frame .after {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 50%);
  z-index: 2;
}
.ba-tag {
  position: absolute;
  top: var(--space-2);                /* 16px */
  font-family: var(--font-mono);
  font-size: 0.625rem;                /* 10px */
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.375rem 0.625rem;          /* 6px / 10px */
  border-radius: 999px;
  z-index: 3;
}
.ba-tag--before {
  left: var(--space-2);
  background: rgba(15, 10, 6, 0.78);
  color: var(--bone);
}
.ba-tag--after {
  right: var(--space-2);
  background: var(--gold);
  color: var(--ink);
}
.ba-frame .handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2.5rem;                      /* 40px */
  margin-left: -1.25rem;              /* center */
  z-index: 5;
  pointer-events: none;
  display: grid;
  place-items: center;
}
.ba-frame .handle-line {
  width: 2px;
  height: 100%;
  background: var(--bone);
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
}
.ba-frame .handle::after {
  content: "";
  position: absolute;
  width: 2.5rem; height: 2.5rem;       /* 40px */
  border-radius: 50%;
  background: var(--bone);
  border: 2px solid var(--gold);
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 6;
}

/* ========================================================================
   TEAM PAGE — specialty label helper
   ======================================================================== */
.team-specialty {
  font-family: var(--font-serif);
  font-size: 1.375rem;                 /* 22px */
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 var(--space-2);          /* 16px */
}

/* ========================================================================
   CONTACT PAGE — form, success banner, info list
   ======================================================================== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);                /* 24px */
  margin-top: var(--space-3);
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);                /* 16px */
}
@media (max-width: 540px) {
  .contact-form__row { grid-template-columns: 1fr; }
}
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);                /* 8px */
}
.contact-form__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;               /* 11px */
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-form__label em {
  color: var(--gold-deep);
  font-style: normal;
  margin-left: 2px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-sans);
  font-size: 1rem;                    /* 16px — prevents iOS zoom on focus */
  padding: 0.875rem var(--space-2);   /* 14px / 16px */
  border: 1px solid var(--line-strong);
  border-radius: 0.5rem;              /* 8px */
  background: var(--white, #fff);
  color: var(--ink);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 117, 0.15);
}
.contact-form textarea { resize: vertical; min-height: 6rem; }
.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M3 5l3 3 3-3' stroke='%236B5D52' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.contact-form__consent {
  font-size: 0.8125rem;               /* 13px */
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}
.contact-form__actions {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-top: var(--space-1);
}

/* Success banner after form submission */
.contact-success {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3);                /* 24px */
  align-items: start;
  padding: var(--space-3);            /* 24px */
  background: rgba(63, 172, 96, 0.08); /* faint mint */
  border: 1px solid rgba(63, 172, 96, 0.32);
  border-radius: var(--radius-lg);
}
.contact-success__icon {
  width: 3rem; height: 3rem;          /* 48px */
  border-radius: 50%;
  background: var(--success, #3FAC60);
  color: var(--white, #fff);
  display: grid;
  place-items: center;
  flex: none;
}
.contact-success__icon svg { width: 1.5rem; height: 1.5rem; }
.contact-success__title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.625rem); /* 20 → 26 px */
  margin: 0 0 var(--space-1);          /* 8px */
  color: var(--ink);
}
.contact-success__title em { font-style: italic; color: var(--success, #3FAC60); }
.contact-success p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ink);
}
.contact-success a { color: var(--gold-deep); font-weight: 500; }

/* Info list with gold dashes */
.contact-list {
  list-style: none;
  margin: var(--space-3) 0 0;          /* 24px */
  padding: 0;
  display: flex;
  flex-direction: column;
}
.contact-list li {
  position: relative;
  padding: var(--space-2) 0 var(--space-2) var(--space-4); /* 16px / 32px left */
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink);
}
.contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.375rem;                       /* 22px optical */
  width: 1.25rem;                      /* 20px */
  height: 2px;
  background: var(--gold);
}
.contact-list li:last-child { border-bottom: 0; }

/* ========================================================================
   ABOUT PAGE — values list + milestones timeline
   ======================================================================== */

/* --- Values: 3 numbered editorial cards --- */
.about-values {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about-value {
  display: grid;
  grid-template-columns: 6rem 1fr;     /* 96px number + content */
  gap: var(--space-5);                 /* 40px */
  padding: var(--space-5) 0;           /* 40px vertical */
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.about-value:first-child { border-top: 1px solid var(--line); }
.about-value:last-child  { border-bottom: 0; }
@media (max-width: 720px) {
  .about-value {
    grid-template-columns: 1fr;
    gap: var(--space-2);                /* 16px */
    padding: var(--space-4) 0;          /* 32px */
  }
}
.about-value__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(3rem, 5vw, 4.5rem); /* 48 → 72 px */
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.about-value__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);                 /* 16px */
  max-width: 50ch;
}
.about-value__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6875rem;                /* 11px */
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0;
}
.about-value__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.4vw, 2rem); /* 24 → 32 px */
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.about-value__desc {
  font-size: 1rem;                     /* 16px */
  line-height: 1.65;
  color: var(--ink);
  margin: 0;
}

/* --- Timeline of milestones --- */
.about-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
@media (max-width: 980px) {
  .about-timeline {
    grid-template-columns: 1fr;
    gap: var(--space-4);              /* 32px */
  }
}

.about-mile {
  position: relative;
  padding: var(--space-3);             /* 24px */
  display: flex;
  flex-direction: column;
  gap: var(--space-2);                 /* 16px */
  text-align: center;
  border-right: 1px solid var(--line);
}
.about-mile:last-child { border-right: 0; }
@media (max-width: 980px) {
  .about-mile {
    text-align: left;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: var(--space-3) 0;
  }
  .about-mile:last-child { border-bottom: 0; }
}

.about-mile__year {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2.25rem, 3.6vw, 3rem); /* 36 → 48 px */
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.about-mile__line {
  width: 2.5rem;                       /* 40px */
  height: 2px;
  background: var(--gold);
  align-self: center;
}
@media (max-width: 980px) {
  .about-mile__line { align-self: flex-start; }
}
.about-mile__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-mile__title {
  font-family: var(--font-serif);
  font-size: 1.125rem;                 /* 18px */
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
}
.about-mile__desc {
  font-size: 0.8125rem;                /* 13px */
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

/* ---------- Geriatrie Traian helpers ---------- */
.traian-lead {
  font-size: 1.0625rem;          /* 17px */
  line-height: 1.7;
  color: var(--ink);
  margin: var(--space-2) 0;      /* 16px top/bottom */
}
.traian-list {
  padding: 0;
  list-style: none;
  margin: var(--space-3) 0 var(--space-4);  /* 24px / 32px */
}
.traian-list li {
  padding: var(--space-1) 0 var(--space-1) var(--space-4); /* 8px / 32px left */
  border-bottom: 1px solid var(--line);
  position: relative;
  font-size: 1rem;               /* 16px */
}
.traian-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.875rem;                 /* 14px — optical alignment with first line */
  width: 0.625rem;               /* 10px */
  height: 0.625rem;
  background: var(--gold);
  transform: rotate(45deg);
}
.traian-actions {
  display: flex;
  gap: var(--space-1);           /* 8px */
  flex-wrap: wrap;
}

/* ---------- Soft CTA (not pushy — guidance-first) ---------- */
.svc-soft-cta {
  background:
    radial-gradient(80% 100% at 50% 0%, rgba(201, 168, 117, 0.18) 0%, transparent 70%),
    var(--ink);
  color: var(--bone);
  padding: var(--space-9) 0;     /* 96px top/bottom — dramatic */
  text-align: center;
  position: relative;
  overflow: hidden;
}
.svc-soft-cta::before {
  content: "";
  position: absolute;
  left: 50%; top: 0;
  width: 1px; height: var(--space-7); /* 64px */
  background: linear-gradient(to bottom, transparent, var(--gold));
}
.svc-soft-cta__inner {
  max-width: 42rem;              /* 672px */
  margin: 0 auto;
}
.svc-soft-cta .eyebrow {
  color: var(--gold);
  margin-bottom: var(--space-2); /* 16px */
}
.svc-soft-cta h2 {
  color: var(--bone);
  margin: 0 0 var(--space-3);    /* 24px */
}
.svc-soft-cta h2 em { font-style: italic; color: var(--gold); }
.svc-soft-cta p {
  color: rgba(250, 247, 242, 0.72);
  font-size: 1.0625rem;          /* 17px */
  line-height: 1.65;
  margin: 0 auto var(--space-5); /* 40px */
  max-width: 38rem;
}
.svc-soft-cta__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-2);           /* 16px */
  flex-wrap: wrap;
}
.svc-soft-cta .btn-ghost {
  border-color: rgba(250, 247, 242, 0.32);
  color: var(--bone);
}
.svc-soft-cta .btn-ghost:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

/* ========================================================================
   SERVICE PAGE — inline spacing helpers (8-grid, rem-based)
   Replaces prior inline styles on service-detail sections.
   ======================================================================== */
.svc-benefits-list { margin-top: var(--space-1); /* 8px */ }
.svc-benefit-title {
  font-size: clamp(1.0625rem, 1.8vw, 1.3125rem); /* 17 → 21 px */
  margin: 0;
}
.svc-prices { margin-top: var(--space-3); /* 24px */ }
.svc-prices-actions { margin-top: var(--space-3); /* 24px */ }
.svc-related-card { text-decoration: none; }
.svc-related-tagline {
  color: var(--muted);
  font-size: 0.875rem; /* 14px */
  line-height: 1.55;
  margin: 0 0 var(--space-2); /* 16px */
}
