/* === variables.css === */
:root {
  /* ===== Base paper / ink ===== */
  --paper:        #F8F6F3;   /* warm Aman beige page bg */
  --paper-2:      #F1EDEB;   /* tide 50 — warm soft section bg */
  --paper-cool:   #DEEDF3;   /* glacier 50 — cool image placeholder bg */
  --ink:          #33312E;   /* warm editorial charcoal — softer than near-black */
  --ink-soft:     #54514C;
  --muted:        #989088;   /* secondary text, warm gentle grey */
  --line:         #EAE6E1;   /* warm hairline */
  --line-cool:    #DEEDF3;

  /* ===== PEWTER (sage-grey green) ===== */
  --pewter-50:  #EBF1EC;
  --pewter-100: #DAE5DC;
  --pewter-200: #CAD9CE;
  --pewter-300: #BACDC0;
  --pewter-400: #AAC0B3;
  --pewter-500: #96AEA0;
  --pewter-600: #829B8C;
  --pewter-700: #70877A;
  --pewter-800: #617067;
  --pewter-900: #515A55;
  --pewter-950: #404542;

  /* ===== GLACIER (blue) ===== */
  --glacier-50:  #DEEDF3;
  --glacier-100: #D5E8EE;
  --glacier-200: #CDE2E9;
  --glacier-300: #BAD6E0;
  --glacier-400: #A7CBD6;
  --glacier-500: #95BFCB;
  --glacier-600: #83B3C1;
  --glacier-700: #71A8B5;
  --glacier-800: #669CAA;
  --glacier-900: #558C99;
  --glacier-950: #4C7B85;

  /* ===== TIDE (warm taupe) ===== */
  --tide-50:  #F1EDEB;
  --tide-100: #EEEAE7;
  --tide-200: #E3DDD9;
  --tide-300: #D8D0CA;
  --tide-400: #CCC3BD;
  --tide-500: #C0B6AF;
  --tide-600: #B4A9A2;
  --tide-700: #A79C95;
  --tide-800: #988F88;
  --tide-900: #8D827C;
  --tide-950: #7F7671;

  /* ===== Accent aliases (kept names used across CSS) ===== */
  --ice:        var(--glacier-300);
  --ice-pale:   var(--glacier-50);
  --dove:       var(--glacier-400);
  --sage:       var(--pewter-300);
  --sage-grey:  var(--pewter-400);
  --mint:       var(--pewter-200);
  --mint-pale:  var(--pewter-50);

  /* deeper tints for accents / text on pale */
  --ice-deep:   #71A8B5;   /* glacier 700 — softened primary accent (quiet luxury) */
  --sage-deep:  #70877A;   /* pewter 700 — secondary accent, gentler */

  /* ===== Semantic ===== */
  --color-bg:        #F8F6F3;
  --color-surface:   var(--paper-cool);
  --color-ink:       var(--ink);
  --color-text:      var(--ink-soft);
  --color-muted:     var(--muted);
  --color-line:      var(--line);
  --color-accent:    var(--ice-deep);
  --color-accent-2:  var(--sage-deep);

  /* ===== Fonts ===== */
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body:    "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* ===== Spatial — generous, quiet ===== */
  --maxw: 1720px;
  --maxw-text: 640px;
  --gutter: clamp(1.5rem, 3.5vw, 4.5rem);
  --section-y: clamp(5.5rem, 12vw, 13rem);

  /* ===== Type scale — modest, not shouting ===== */
  --fs-hero:  clamp(2rem, 3.6vw, 3.4rem);
  --fs-h2:    clamp(1.6rem, 2.6vw, 2.4rem);
  --fs-h3:    clamp(1.25rem, 1.7vw, 1.6rem);
  --fs-lead:  clamp(1rem, 1.2vw, 1.1rem);
  --fs-body:  0.95rem;
  --fs-small: 0.82rem;
  --fs-micro: 0.68rem;

  --track-wide: 0.22em;
  --track-mega: 0.34em;

  --ease: cubic-bezier(.16,.84,.32,1);
}

/* === global.css === */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-ink);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0.002em;
}
h1 { font-size: var(--fs-hero); font-weight: 400; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h1 em, h2 em, h3 em { font-style: italic; font-weight: 400; }

p { font-size: var(--fs-body); }
a { color: inherit; text-decoration: none; transition: color .4s var(--ease), opacity .4s var(--ease); }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

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

/* ===== Layout ===== */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 1040px; }
section { padding-block: var(--section-y); position: relative; }
.treat, .team, .voices { border-top: 1px solid var(--color-line); }

/* ===== Quiet editorial labels ===== */
.kicker {
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  font-weight: 400;
  letter-spacing: var(--track-mega);
  text-transform: uppercase;
  color: var(--color-muted);
  display: inline-block;
}

.section-head { max-width: 620px; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .kicker { margin-bottom: 1.6rem; }
.section-head h2 { margin-bottom: 1.4rem; font-weight: 400; }
.section-head .lead { color: var(--color-muted); font-size: var(--fs-lead); max-width: 56ch; line-height: 1.75; }
.section-head.center .lead { margin-inline: auto; }

.lead { font-size: var(--fs-lead); line-height: 1.8; font-weight: 300; }
.rule { height: 1px; background: var(--color-line); border: 0; }

/* ===== Links — Aman/Kinfolk style underlined "Discover more" ===== */
.disc-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ice-deep);
  padding-bottom: .4rem;
  border-bottom: 1px solid var(--ice-deep);
  transition: border-color .6s var(--ease), color .6s var(--ease);
}
.disc-link:hover { color: var(--sage-deep); border-color: var(--sage-deep); }

/* soft, non-shouty button */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.05rem 2.6rem;
  border: 1px solid var(--ice-deep);
  color: var(--ice-deep);
  background: transparent;
  cursor: pointer;
  transition: background .7s var(--ease), color .7s var(--ease), border-color .7s var(--ease);
}
.btn:hover { background: var(--ice-deep); color: #fff; border-color: var(--ice-deep); }
.btn--light { color: var(--ice-deep); border-color: var(--ice-deep); background: rgba(255,255,255,.92); }
.btn--light:hover { background: var(--ice-deep); color: #fff; border-color: var(--ice-deep); }

.phys__lic { display: block; font-family: var(--font-body); font-size: var(--fs-micro); letter-spacing: .05em; color: var(--color-muted); margin-bottom: .6rem; }

/* soft, airy frosted button — quiet presence over imagery */
.btn--soft {
  color: #fff;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-weight: 300;
  letter-spacing: 0.12em;
  padding: 1.05rem 2.6rem;
}
.btn--soft:hover {
  background: rgba(255,255,255,.92);
  color: var(--ink);
  border-color: rgba(255,255,255,.92);
}

/* ===== Reveal — slow, gentle ===== */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 1.6s var(--ease), transform 1.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .16s; }
.reveal[data-d="2"] { transition-delay: .32s; }
.reveal[data-d="3"] { transition-delay: .48s; }
.reveal[data-d="4"] { transition-delay: .64s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* full-bleed helper (from shayne.html) */
.bleed { width: 100vw; position: relative; left: 50%; right: 50%; margin-inline: -50vw; }

/* Logo — centred by default (Aman) */

/* Burger — left */

/* CTA on the right (closed bar) */

/* Dark theme over hero — flush at top (burger + cta turn light; logo stays dark) */

/* Scrolled — warm frosted bar */

/* Links list — left aligned */

/* Bottom-right actions (contact + book) */

/* keep logo + burger above the overlay while open */

/* Follow us — sits below the tagline */

/* === article.css === */
/* ============================================================
   ARTICLE (Ultherapy SPT) — Shayne & Co.
   Program sub-page. Type scale matched to about.html; body
   layout widened to match shayne.html (full container, 2-col
   section register: heading left, content right). Tokens from
   variables.css / global.css; this file loads last and wins.
   ============================================================ */

/* Type scale matched EXACTLY to about.css (fluid clamps). */
body {
  --fs-hero:  clamp(32px, 3.6vw, 54px);
  --fs-h2:    clamp(26px, 2.6vw, 38px);
  --fs-h3:    clamp(20px, 1.7vw, 26px);
  --fs-lead:  clamp(16px, 1.2vw, 18px);
  --fs-body:  16px;
  --fs-small: 14px;
  --fs-micro: 12px;
  --section-y: clamp(4rem, 8vw, 9rem);
}

.a-hero { background: var(--paper); position: relative; overflow: hidden; }
.a-hero .a-hero__inner { position: relative; z-index: 1; }

.a-crumbs {
  position: absolute; top: 32px; left: 0; right: 0; z-index: 3;
  background: transparent;
  padding-top: clamp(7rem, 13vh, 9rem);
  padding-bottom: 0;
}
.a-crumbs .container { display: flex; align-items: center; flex-wrap: wrap; }
.a-crumbs a,
.a-crumbs span {
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.4s ease;
}
.a-crumbs a:hover { color: var(--ice-deep); }
.a-crumbs a:last-of-type { color: var(--ice-deep); }
.a-crumbs .sep { margin: 0 .8rem; color: var(--color-muted); }

/* two-column header: kicker+title left, intro lead right.
   Pushed below the absolute breadcrumb with matching top space. */
.a-hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding-top: clamp(11rem, 19vh, 13.5rem);
  padding-bottom: clamp(2rem, 4vw, 3.2rem);
}
.a-hero__kicker {
  display: block; font-family: var(--font-body); font-size: var(--fs-micro);
  letter-spacing: var(--track-mega); text-transform: uppercase;
  color: var(--ice-deep); margin-bottom: 1.6rem;
}
.a-hero__title {
  font-family: var(--font-display); font-weight: 400; color: var(--ink);
  font-size: clamp(36px, 5vw, 68px); line-height: 1.06;
  letter-spacing: .01em; margin-bottom: 0; max-width: 18ch;
}
.a-hero__title em { font-style: italic; color: var(--ice-deep); }
.a-hero__right { padding-top: .4rem; }
.a-hero__lead {
  font-family: var(--font-body); font-weight: 300;
  font-size: var(--fs-lead); line-height: 1.85;
  color: var(--ink-soft); max-width: 52ch;
}
.a-hero__lead + .a-hero__lead { margin-top: 1.1rem; }

/* ============================================================
   ARTICLE BODY — widened to shayne.html proportions.
   Each section: heading column (left) + content column (right),
   inside the full shayne container. Restrained colour rhythm.
   ============================================================ */
.a-body { background: var(--paper); }

/* section bands span full width; inner grid uses the wide container */
.a-sec { padding-block: clamp(3rem, 6vw, 5.5rem); }
.a-body > .a-sec:first-of-type { padding-top: clamp(2rem, 4vw, 3rem); }

/* the 2-column section register (mirrors shayne section-head + body) */
.a-grid {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: start;
}
.a-grid__head { position: sticky; top: 104px; }
.a-grid__body { min-width: 0; max-width: 760px; }

/* refined foreground bands (used sparingly) */
.a-band--paper   { background: var(--paper); }
.a-band--tint    { background: #F1EDEB; }
.a-band--feature { background: #EBF1EC; }

/* H2 — section heading (Cormorant), about h2 scale, lives in the left column */
.a-h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: var(--fs-h2); line-height: 1.14; letter-spacing: .005em;
  color: var(--ink);
  margin: 0;
}
.a-h2::after {
  content: ""; display: block; width: 44px; height: 1px;
  background: var(--ice-deep); margin-top: 1.4rem; opacity: .6;
}

/* H3 — sub-section heading inside the content column */
.a-h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: var(--fs-h3); line-height: 1.3; letter-spacing: .005em;
  color: var(--ink);
  margin-top: 2rem; margin-bottom: .8rem;
}

/* body paragraphs */
.a-body p {
  font-family: var(--font-body); font-weight: 300;
  font-size: var(--fs-body); line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}
.a-grid__body > p:first-child { margin-top: 0; }
.a-body p:last-child { margin-bottom: 0; }
.a-body strong { font-weight: 500; color: var(--ink); }

.a-lead-in { margin-top: 1.4rem; font-weight: 500 !important; color: var(--ink) !important; }

/* definition-style bullet lists (term + description) */
.a-defs { list-style: none; margin: 1.3rem 0 0; padding: 0; }
.a-defs li {
  font-family: var(--font-body); font-weight: 300;
  font-size: var(--fs-body); line-height: 1.75;
  color: var(--ink-soft);
  padding: .9rem 0 .9rem 1.4rem;
  border-bottom: 1px solid var(--color-line);
  position: relative;
}
.a-defs li:first-child { border-top: 1px solid var(--color-line); }
.a-defs li::before {
  content: ""; position: absolute; left: 0; top: 1.4rem;
  width: 5px; height: 5px; border-radius: 50%; background: var(--ice-deep);
}
.a-term { font-weight: 500; color: var(--ink); }

/* numbered procedure steps */
.a-steps { list-style: none; margin: 1.6rem 0 0; padding: 0; }
.a-steps > li { padding: 1.6rem 0; border-top: 1px solid var(--color-line); }
.a-steps > li:last-child { border-bottom: 1px solid var(--color-line); }
.a-step__head {
  display: flex; align-items: baseline; flex-wrap: wrap;
  gap: .5rem 1.1rem; margin-bottom: .8rem;
}
.a-step__num {
  font-family: var(--font-body); font-weight: 400;
  font-size: var(--fs-micro); letter-spacing: var(--track-wide);
  color: var(--ice-deep); width: 1.6rem; flex: none;
}
.a-step__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: var(--fs-h3); line-height: 1.25; letter-spacing: .005em;
  color: var(--ink); margin: 0; flex: 1 1 auto;
}
.a-step__meta {
  font-family: var(--font-body); font-weight: 400;
  font-size: var(--fs-micro); letter-spacing: var(--track-wide);
  text-transform: uppercase; color: var(--ice-deep); flex: none;
}
.a-steps > li p { margin-left: 2.7rem; margin-bottom: 0; }

/* FAQ blocks — accordion (ported from skin-insight-360) */
.si-faq__list { max-width: 880px; border-top: 1px solid var(--color-line); }
.si-faq__item { border-bottom: 1px solid var(--color-line); }
.si-faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; gap: 1.2rem;
  padding: clamp(1.3rem, 2.6vw, 1.8rem) 0;
  font-family: var(--font-display); font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  color: var(--ink); line-height: 1.25; transition: color .4s var(--ease);
}
.si-faq__q:hover { color: var(--ice-deep); }
.si-faq__q > span:first-child { flex: 1 1 auto; min-width: 0; }
.si-faq__icon {
  position: relative; flex: 0 0 32px; width: 32px; height: 32px; min-width: 32px; max-width: 32px;
  border: 1px solid var(--color-line); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease);
}
.si-faq__icon::after {
  content: ""; width: 8px; height: 8px;
  border-right: 1.5px solid var(--ink-soft);
  border-bottom: 1.5px solid var(--ink-soft);
  transform: translateY(-2px) rotate(45deg);
  transition: transform .4s var(--ease), border-color .35s var(--ease);
}
.si-faq__q:hover .si-faq__icon {
  background: var(--ice-deep); border-color: var(--ice-deep);
}
.si-faq__q:hover .si-faq__icon::after { border-color: #fff; }
.si-faq__item.open .si-faq__icon {
  background: var(--ice-deep); border-color: var(--ice-deep);
}
.si-faq__item.open .si-faq__icon::after {
  border-color: #fff; transform: translateY(2px) rotate(-135deg);
}
.si-faq__item.open .si-faq__q { color: var(--ice-deep); }
.si-faq__a {
  overflow: hidden; max-height: 0;
  transition: max-height .5s var(--ease), opacity .5s var(--ease), padding .5s var(--ease);
  opacity: 0;
}
.si-faq__item.open .si-faq__a { max-height: 400px; opacity: 1; padding-bottom: clamp(1.2rem, 2.4vw, 1.8rem); }
.si-faq__a p { color: var(--ink-soft); font-weight: 300; line-height: 1.85; max-width: 64ch; }

/* ============================================================
   HOW THE TECHNOLOGY OPERATES — image LEFT, text RIGHT, big image
   ============================================================ */
.a-tech {
  display: grid;
  grid-template-columns: clamp(360px, 44%, 560px) 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.a-tech__media { margin: 0; position: sticky; top: 104px; }
.a-tech__media img {
  display: block; width: 100%; height: auto; border-radius: 2px;
}
.a-tech__text { min-width: 0; max-width: 680px; }
.a-tech__text .a-h2 { margin-bottom: 1.6rem; }

/* ============================================================
   LAYOUT COMPONENTS — splits, card grids, pillars, overlay band,
   candidacy. Photo areas use grey .ph placeholders; a real <img>
   fills them when supplied.
   ============================================================ */

/* ----- Grey image placeholders ----- */
.ph {
  position: relative; overflow: hidden;
  background:
    repeating-linear-gradient(135deg, transparent 0 24px, rgba(255,255,255,.35) 24px 25px),
    var(--tide-200);
  border: 1px solid var(--line);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
}
.ph::after {
  content: attr(data-label);
  font-family: var(--font-body); font-size: var(--fs-micro);
  letter-spacing: var(--track-wide); text-transform: uppercase;
  color: var(--tide-800);
}
.ph--portrait  { aspect-ratio: 4 / 5; }
.ph--square    { aspect-ratio: 1 / 1; }
.ph--landscape { aspect-ratio: 3 / 2; }
.ph--wide      { aspect-ratio: 16 / 6; }
/* real image fills the frame; falls back to the grey placeholder if the file is missing */
.ph > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

/* ----- Section eyebrow / number kicker ----- */
.a-kicker {
  display: block; font-family: var(--font-body); font-size: var(--fs-micro);
  letter-spacing: var(--track-mega); text-transform: uppercase;
  color: var(--ice-deep); margin-bottom: 1.2rem;
}

/* ----- Centred section head ----- */
.a-sec__head { max-width: 720px; margin: 0 auto clamp(2.4rem, 5vw, 4rem); text-align: center; }
.a-sec__head .a-kicker {
  display: block; font-family: var(--font-body); font-size: var(--fs-micro);
  letter-spacing: var(--track-mega); text-transform: uppercase;
  color: var(--ice-deep); margin-bottom: 1.3rem;
}
.a-sec__head .a-h2 { margin-inline: auto; }
.a-sec__head .a-h2::after { margin-inline: auto; }
.a-sec__head .a-lead {
  font-family: var(--font-body); font-weight: 300; font-size: var(--fs-lead);
  line-height: 1.8; color: var(--ink-soft); max-width: 62ch; margin: 1.4rem auto 0;
}

/* ----- Image + text split ----- */
.a-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5.5rem); align-items: center; }
.a-split__media { margin: 0; }
.a-split__body { min-width: 0; max-width: 600px; }
.a-split__body .a-h2 { margin-bottom: 1.6rem; }
.a-split--rev .a-split__media { order: 2; }
.a-split--rev .a-split__body  { order: 1; }

/* ----- Three-tile image strip ----- */
.a-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.8rem, 1.6vw, 1.4rem); margin-top: clamp(1.6rem, 3vw, 2.6rem); }

/* §1 Introduction — wide image column on the left, text on the right */
@media (min-width: 901px) {
  #introduction .a-split { grid-template-columns: 1.12fr 0.88fr; align-items: start; }
}
#introduction .a-split__media .ph { aspect-ratio: 16 / 9; }
#introduction .a-strip .ph { aspect-ratio: 4 / 3; }

/* ----- Icon card grid ----- */
.a-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 1.8vw, 1.6rem); }
.a-card { background: var(--paper); border: 1px solid var(--line); border-radius: 6px; padding: clamp(1.6rem, 2.4vw, 2.3rem); transition: transform .6s var(--ease), box-shadow .6s var(--ease), border-color .6s var(--ease); }
.a-card:hover { transform: translateY(-4px); border-color: var(--glacier-300); box-shadow: 0 18px 42px -28px rgba(51,49,46,.45); }
.a-card__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--glacier-50); color: var(--ice-deep); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.a-card__icon svg { width: 22px; height: 22px; }
.a-card__title { font-family: var(--font-display); font-weight: 500; font-size: var(--fs-h3); line-height: 1.25; color: var(--ink); margin-bottom: .7rem; }
.a-card__text { font-family: var(--font-body); font-weight: 300; font-size: var(--fs-body); line-height: 1.7; color: var(--ink-soft); margin: 0; }

/* §3 Indications — no icon chips; pulsing blue border */
@keyframes a-card-pulse {
  0%, 100% { border-color: var(--glacier-200); box-shadow: 0 0 0 0 rgba(113,168,181,0); }
  50%      { border-color: var(--ice-deep);    box-shadow: 0 0 0 3px rgba(113,168,181,.18); }
}
#indications .a-card { border-color: var(--glacier-300); animation: a-card-pulse 2.4s var(--ease) infinite; }
#indications .a-card:nth-child(2) { animation-delay: .3s; }
#indications .a-card:nth-child(3) { animation-delay: .6s; }
#indications .a-card:nth-child(4) { animation-delay: .9s; }
#indications .a-card:nth-child(5) { animation-delay: 1.2s; }
@media (prefers-reduced-motion: reduce) { #indications .a-card { animation: none; border-color: var(--glacier-300); } }

/* ----- Feature pillars ----- */
.a-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 4rem); margin-top: clamp(2.4rem, 4vw, 3.4rem); }
.a-pillar { text-align: center; padding-inline: clamp(0rem, 2vw, 1.5rem); position: relative; }
.a-pillar + .a-pillar::before { content: ""; position: absolute; left: 0; top: 8%; bottom: 8%; width: 1px; background: var(--line); }
.a-pillar__icon { width: 54px; height: 54px; margin: 0 auto 1.4rem; display: flex; align-items: center; justify-content: center; color: var(--ice-deep); }
.a-pillar__icon svg { width: 42px; height: 42px; }
.a-pillar__title { font-family: var(--font-display); font-weight: 500; font-size: var(--fs-h3); color: var(--ink); margin-bottom: .6rem; line-height: 1.25; }
.a-pillar__text { font-family: var(--font-body); font-weight: 300; font-size: var(--fs-body); line-height: 1.7; color: var(--ink-soft); margin: 0; }

/* ----- Feature overlay band ----- */
.a-feature { position: relative; overflow: hidden; border-radius: 4px; min-height: clamp(420px, 58vh, 620px); display: flex; align-items: flex-end; }
.a-feature .ph { position: absolute; inset: 0; border: 0; border-radius: 0; }
.a-feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(33,49,46,0) 30%, rgba(33,49,46,.72) 100%), linear-gradient(90deg, rgba(33,49,46,.7) 0%, rgba(33,49,46,.32) 38%, rgba(33,49,46,0) 64%); }
.a-feature__inner { position: relative; z-index: 2; padding: clamp(2rem, 5vw, 4rem); max-width: 660px; text-shadow: 0 1px 16px rgba(33,49,46,.45); }
.a-feature__inner .a-kicker { display: block; font-family: var(--font-body); font-size: var(--fs-micro); letter-spacing: var(--track-mega); text-transform: uppercase; color: rgba(255,255,255,.78); margin-bottom: 1.2rem; }
.a-feature__inner h2 { color: #fff; margin-bottom: 1.2rem; }
.a-feature__inner h2::after { display: none; }
.a-feature__inner p { color: rgba(255,255,255,.92) !important; font-weight: 300; max-width: 56ch; margin-bottom: 1.8rem !important; }

/* ----- Inline mid-page CTA ----- */
.a-cta { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: clamp(1rem, 2.5vw, 2.2rem); text-align: center; padding: clamp(1.6rem, 3vw, 2.6rem) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.a-cta__text { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: var(--fs-h3); line-height: 1; color: var(--ink); margin: 0!important; transform: translateY(-0.06em); }
.btn--sm { padding: .8rem 1.9rem; font-size: var(--fs-micro); letter-spacing: .14em; line-height: 1; }

/* ============================================================
   Borrowed from Skin Insight 360 "Candidacy" — rings, wave-field,
   connector list, italic heading accent.
   ============================================================ */
.a-h2 em { font-style: italic; color: var(--ice-deep); }
.a-rings { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: min(60vw, 500px); aspect-ratio: 1 / 1; z-index: 0; opacity: .5; pointer-events: none; }
.a-ring { position: absolute; top: 50%; left: 50%; border-radius: 50%; transform: translate(-50%, -50%); }
.a-ring--s { border: 1px solid rgba(113,168,181,.30); }
.a-ring--s.s1 { width: 100%; height: 100%; }
.a-ring--s.s2 { width: 66%;  height: 66%; }
.a-ring--s.s3 { width: 34%;  height: 34%; }
.a-ring--glow { width: 58%; height: 58%; border: 0; background: radial-gradient(circle at 50% 50%, rgba(113,168,181,.5) 0%, rgba(222,237,243,.5) 40%, rgba(255,255,255,0) 72%); filter: blur(2px); animation: a-breathe 6.5s ease-in-out infinite; }
.a-ring--p { width: 34%; height: 34%; border: 1px solid rgba(113,168,181,.42); animation: a-ripple 8s var(--ease) infinite; }
.a-ring--p.p2 { animation-delay: 2.6s; }
.a-ring--p.p3 { animation-delay: 5.2s; }
@keyframes a-ripple { 0% { transform: translate(-50%,-50%) scale(.55); opacity: 0; } 12% { opacity: .5; } 100% { transform: translate(-50%,-50%) scale(3); opacity: 0; } }
@keyframes a-breathe { 0%,100% { transform: translate(-50%,-50%) scale(1); opacity: .8; } 50% { transform: translate(-50%,-50%) scale(1.08); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .a-ring--glow, .a-ring--p { animation: none !important; } }
.a-rings--hero { left: auto; right: 4%; top: 54%; transform: translateY(-50%); width: min(40vw, 440px); opacity: .3; }
.a-candidacy { position: relative; overflow: hidden; }
.a-candidacy::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(110% 85% at 44% 42%, rgba(222,237,243,.34) 0%, rgba(222,237,243,0) 58%), linear-gradient(180deg, var(--paper) 0%, rgba(222,237,243,.10) 100%); }
.a-candidacy__inner { position: relative; z-index: 1; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; min-height: min(60vw, 520px); }
.a-candidacy__lead { max-width: 440px; }
.a-candidacy__lead .a-h2 { font-size: clamp(30px, 4.2vw, 52px); line-height: 1.08; margin-bottom: 1.3rem; }
.a-candidacy__lead .a-h2::after { display: none; }
.a-candidacy__lead .a-lead { color: var(--ink-soft); font-weight: 300; line-height: 1.85; font-size: var(--fs-lead); }
.a-cand-list { list-style: none; display: grid; gap: clamp(1.8rem, 4vw, 2.8rem); }
.a-cand { position: relative; }
.a-cand__line { display: block; position: relative; height: 1px; width: 100%; background: linear-gradient(to right, rgba(113,168,181,.55), var(--color-line)); margin-bottom: 1.1rem; }
.a-cand__dot { position: absolute; left: 0; top: 50%; transform: translate(-50%, -50%); width: 11px; height: 11px; border-radius: 50%; background: var(--ice-deep); box-shadow: 0 0 0 5px rgba(113,168,181,.16); }
.a-cand__t { display: block; font-family: var(--font-display); color: var(--ink); font-size: clamp(1.25rem, 2vw, 1.7rem); letter-spacing: .02em; line-height: 1.2; margin-bottom: .55rem; }
.a-cand__d { display: block; color: var(--ink-soft); font-weight: 300; line-height: 1.85; font-size: var(--fs-body); max-width: 48ch; }
@media (max-width: 900px) {
  .a-candidacy__inner { grid-template-columns: 1fr; gap: clamp(2rem, 6vw, 3rem); min-height: 0; }
  .a-rings { top: 30%; width: min(86vw, 440px); opacity: .34; }
  .a-rings--hero { display: none; }
  .a-candidacy__lead { max-width: none; }
}

/* §6 Workflow — vertical timeline; §7/§8 — numbered editorial list */
#workflow .a-steps { position: relative; }
#workflow .a-steps > li { position: relative; border: 0; padding: 0 0 clamp(1.8rem, 3vw, 2.6rem) 3.4rem; }
#workflow .a-steps > li:last-child { padding-bottom: 0; }
#workflow .a-steps > li::before { content: ""; position: absolute; left: 13px; top: 6px; bottom: 0; width: 1px; background: var(--line); }
#workflow .a-steps > li:last-child::before { display: none; }
#workflow .a-step__num { position: absolute; left: 0; top: 1px; width: 27px; height: 27px; margin: 0; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--ice-deep); border-radius: 50%; background: var(--paper-2); color: var(--ice-deep); font-size: var(--fs-micro); letter-spacing: 0; z-index: 1; }
#workflow .a-steps > li p { margin-left: 0; }
#preparation .a-defs, #aftercare .a-defs { counter-reset: dnum; }
#preparation .a-defs li, #aftercare .a-defs li { padding-left: 2.8rem; }
#preparation .a-defs li::before, #aftercare .a-defs li::before { counter-increment: dnum; content: counter(dnum, decimal-leading-zero); width: auto; height: auto; border-radius: 0; background: none; left: 0; top: .95rem; font-family: var(--font-body); font-weight: 400; font-size: var(--fs-micro); letter-spacing: var(--track-wide); color: var(--ice-deep); }

/* ----- Responsive ----- */
@media (max-width: 1080px) { .a-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) {
  .a-split { grid-template-columns: 1fr; gap: clamp(1.6rem, 5vw, 2.4rem); }
  .a-split--rev .a-split__media { order: 1; }
  .a-split--rev .a-split__body  { order: 2; }
  .a-split__body { max-width: none; }
  .a-pillars { grid-template-columns: 1fr; gap: clamp(2rem, 6vw, 2.6rem); }
  .a-pillar { padding-inline: 0; }
  .a-pillar + .a-pillar::before { display: none; }
  .a-pillar + .a-pillar { padding-top: clamp(2rem, 6vw, 2.6rem); border-top: 1px solid var(--line); }
}
@media (max-width: 620px) { .a-cards { grid-template-columns: 1fr; } .a-strip { gap: .7rem; } }

/* ============================================================
   Shared-component overrides (kept out of variables.css)
   ============================================================ */

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  /* stack the section register: heading above content */
  .a-grid { grid-template-columns: 1fr; gap: clamp(1.2rem, 3vw, 1.8rem); }
  .a-grid__head { position: static; top: auto; }
  .a-grid__body { max-width: none; }
  .a-h2::after { margin-top: 1rem; }
}

@media (max-width: 900px) {
  .a-hero__inner { grid-template-columns: 1fr; gap: clamp(1.4rem, 4vw, 2rem); }
  .a-hero__right { padding-top: 0; }
  .a-hero__title { max-width: none; }

  /* technology section stacks: image, then text */
  .a-tech { gap: clamp(1.8rem, 5vw, 2.4rem); }
  .a-tech__media { position: static; top: auto; max-width: 100%; }
  .a-tech__text { max-width: none; }
}

@media (max-width: 768px) {
  .a-tech { grid-template-columns: 1fr!important; }
}
@media (max-width: 480px) {
  .a-steps > li p { margin-left: 0; }
  /* mobile: information body text at 14px */
  .a-body p,
  .a-defs li,
  .a-steps > li p,
  .a-hero__lead { font-size: 14px; }
  
}

/* === NAVBAR + FOOTER (verbatim from shayne.html) === */
/* ============================================================
   NAVBAR — logo centred (closed) → shifts left when menu opens
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  transition: background .7s var(--ease), border-color .7s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  min-height: 92px; gap: 1.5rem;
}

/* Logo — centred by default (Aman) */
.nav__logo {
  grid-column: 2; grid-row: 1; justify-self: center;
  display: block; line-height: 0; position: relative;
  transition: transform .8s var(--ease);
}
.nav__logo img { height: 22px; width: auto; }

/* Burger — left */
.nav__burger {
  grid-column: 1; grid-row: 1; justify-self: start;
  display: flex; flex-direction: column; gap: 6px; width: 40px; height: 40px;
  align-items: flex-start; justify-content: center; background: none; border: none; cursor: pointer;
}
.nav__burger span { width: 26px; height: 1px; background: var(--color-ink); transition: transform .5s var(--ease), opacity .5s var(--ease), width .5s var(--ease), background .7s var(--ease); }
.nav__burger span:nth-child(2) { width: 18px; }
.nav__burger.open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); width: 26px; }
.nav__burger.open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); width: 26px; }

/* CTA on the right (closed bar) */
.nav__cta {
  grid-column: 3; grid-row: 1; justify-self: end;
  font-family: var(--font-body); font-size: var(--fs-small);
  font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-ink); position: relative; padding-block: .4rem; white-space: nowrap;
}
.nav__cta::after { content: ""; position: absolute; left: 0; bottom: .15rem; width: 0; height: 1px; background: currentColor; transition: width .6s var(--ease); }
.nav__cta:hover::after { width: 100%; }

/* Dark theme over hero — keep burger + cta black for contrast (logo stays dark) */
.nav[data-theme="dark"]:not(.scrolled) .nav__cta { color: #000000; }
.nav[data-theme="dark"]:not(.scrolled) .nav__burger span { background: #000000; }

/* Scrolled — warm frosted bar */
.nav.scrolled {
  background: rgba(248,246,243,.88);
  backdrop-filter: saturate(120%) blur(18px); -webkit-backdrop-filter: saturate(120%) blur(18px);
  border-bottom-color: var(--color-line);
}
.nav.scrolled .nav__inner { min-height: 70px; }
.nav.scrolled .nav__cta { color: var(--color-ink); }
.nav.scrolled .nav__burger span { background: var(--color-ink); }

/* ===== Menu OPEN: logo slides to top-left, burger/cta hidden, dark ink ===== */
body.menu-open .nav__inner { grid-template-columns: auto 1fr auto; }
body.menu-open .nav__logo {
  grid-column: 1; justify-self: start; transform: none;
}
body.menu-open .nav__inner > .nav__cta { opacity: 0; pointer-events: none; }
body.menu-open .nav__burger { grid-column: 3; justify-self: end; }
body.menu-open .nav__burger span { background: #000000; }
.nav__burger.open span { background: #000000; }

/* ===== Full overlay drawer (0do style) ===== */
.nav__menu {
  position: fixed; inset: 0; z-index: 1900;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(5rem, 12vh, 8rem) clamp(2.5rem, 8vw, 8rem) clamp(2rem, 6vh, 4rem);
  background: var(--paper);
  opacity: 0; visibility: hidden; transform: scale(1.02);
  transition: opacity .7s var(--ease), transform .9s var(--ease), visibility .7s var(--ease);
}
.nav__menu.open { opacity: 1; visibility: visible; transform: none; }

/* Links list — left aligned */
.nav__menu-links { display: flex; flex-direction: column; align-items: flex-start; gap: clamp(.8rem, 2vw, 1.5rem); }
/* Display-type styling shared by top-level links and the dropdown toggle */
.nav__menu-links > a,
.nav__dd-link {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 3rem); letter-spacing: .01em; line-height: 1.1;
  color: var(--ink); position: relative; padding-block: .15rem;
}
/* Reveal stagger — applies to each top-level item (link or dropdown wrapper) */
.nav__menu-links > a,
.nav__menu-links > .nav__dd {
  opacity: 0; transform: translateY(16px);
  transition: color .5s var(--ease), opacity .8s var(--ease), transform .8s var(--ease);
}
.nav__menu.open .nav__menu-links > a,
.nav__menu.open .nav__menu-links > .nav__dd { opacity: 1; transform: none; }
.nav__menu.open .nav__menu-links > *:nth-child(1) { transition-delay: .12s; }
.nav__menu.open .nav__menu-links > *:nth-child(2) { transition-delay: .18s; }
.nav__menu.open .nav__menu-links > *:nth-child(3) { transition-delay: .24s; }
.nav__menu.open .nav__menu-links > *:nth-child(4) { transition-delay: .30s; }
.nav__menu.open .nav__menu-links > *:nth-child(5) { transition-delay: .36s; }
.nav__menu.open .nav__menu-links > *:nth-child(6) { transition-delay: .42s; }
.nav__menu-links > a:hover,
.nav__menu-links > a.active,
.nav__dd-link:hover { color: var(--ice-deep); }
.nav__menu-links > a.active::after,
.nav__menu-links > a:hover::after,
.nav__dd-link:hover::after {
  content: ""; position: absolute; left: 0; bottom: -.1rem;
  width: clamp(70px, 8vw, 110px); height: 1px; background: currentColor;
}

/* ===== Program dropdown (within the overlay menu) ===== */
.nav__dd { position: relative; display: flex; flex-direction: column; align-items: flex-start; }
/* Program link + caret toggle sit on one row; submenu drops below */
.nav__dd-head { display: inline-flex; align-items: center; gap: .5rem; }
.nav__dd-toggle {
  display: inline-flex; align-items: center;
  background: none; border: 0; cursor: pointer; padding: .2rem;
  color: var(--ink); line-height: 0;
}
.nav__dd-toggle:hover { color: var(--ice-deep); }
.nav__dd-caret {
  width: clamp(18px, 2.2vw, 26px); height: clamp(18px, 2.2vw, 26px);
  flex: none; transition: transform .45s var(--ease);
}
.nav__dd:hover .nav__dd-caret,
.nav__dd.open .nav__dd-caret { transform: rotate(180deg); }
.nav__dd-menu {
  display: grid; gap: clamp(.45rem, 1vw, .75rem);
  padding-left: clamp(.9rem, 2vw, 1.5rem);
  max-height: 0; overflow: hidden; opacity: 0; margin-top: 0;
  transition: max-height .55s var(--ease), opacity .45s var(--ease), margin-top .45s var(--ease);
}
.nav__dd:hover .nav__dd-menu,
.nav__dd.open .nav__dd-menu {
  max-height: 60vh; opacity: 1; margin-top: clamp(.5rem, 1.4vw, 1rem);
}
.nav__dd-menu a {
  font-family: var(--font-body); font-weight: 300;
  font-size: clamp(1rem, 1.5vw, 1.2rem); letter-spacing: .02em; line-height: 1.3;
  color: var(--ink-soft); width: max-content; max-width: 100%;
  position: relative; transition: color .4s var(--ease);
}
.nav__dd-menu a:hover { color: var(--ice-deep); }

/* Bottom-right actions (contact + book) */
.nav__menu-actions {
  position: absolute; right: clamp(2.5rem, 8vw, 8rem); bottom: clamp(2rem, 6vh, 4rem);
  display: flex; align-items: center; gap: clamp(1.5rem, 3vw, 2.5rem);
  opacity: 0; transform: translateY(12px);
  transition: opacity .8s var(--ease) .4s, transform .8s var(--ease) .4s;
}
.nav__menu.open .nav__menu-actions { opacity: 1; transform: none; }
.nav__menu-contact {
  font-family: var(--font-body); font-size: var(--fs-small);
  letter-spacing: .08em; color: var(--ink-soft); position: relative; padding-left: 3rem;
}
.nav__menu-contact::before {
  content: ""; position: absolute; left: 0; top: 50%; width: 2rem; height: 1px; background: currentColor;
}
.nav__menu-contact:hover { color: var(--ice-deep); }
.nav__menu-actions .nav__cta {
  position: static; grid-column: auto; justify-self: auto;
  font-family: var(--font-body); font-size: var(--fs-small);
  text-transform: uppercase; letter-spacing: .12em; color: var(--ink-soft);
  border: 1px solid var(--line); padding: .9rem 2rem; background: var(--paper-2);
}
.nav__menu-actions .nav__cta::after { display: none; }
.nav__menu-actions .nav__cta:hover { background: var(--ice-deep); color: #fff; border-color: var(--ice-deep); }

/* keep logo + burger above the overlay while open */
body.menu-open .nav { z-index: 2000; }
/* backdrop-filter on .nav makes it a containing block for the fixed menu,
   collapsing the overlay to the header height — disable it while open */
body.menu-open .nav.scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; background: transparent; border-bottom-color: transparent; }
body.menu-open .nav__menu { z-index: 2000; }
.nav__menu.open ~ .nav__inner,
body.menu-open .nav__burger,
body.menu-open .nav__logo { z-index: 2010; }

@media (max-width: 600px) {
  /* Links group toward the top/center, actions pinned to the bottom */
  .nav__menu { align-items: stretch; justify-content: space-between; padding-block: clamp(7rem, 16vh, 9rem) clamp(2.5rem, 6vh, 3.5rem); }
  .nav__menu-actions { position: static; margin-top: 0; flex-direction: column; align-items: center; gap: 1.25rem; }
  .nav__menu-actions .nav__cta { width: 100%; max-width: 280px; text-align: center; }
  /* Center the logo and hide the Book CTA on mobile */
  .nav__inner { grid-template-columns: 1fr auto 1fr; }
  .nav__logo { grid-column: 2; justify-self: center; transform: none; }
  .nav__burger { grid-column: 1; justify-self: start; }
  .nav__inner > .nav__cta { display: none; }
  /* Keep logo centered even when the menu is open */
  body.menu-open .nav__inner { grid-template-columns: 1fr auto 1fr; }
  body.menu-open .nav__logo { grid-column: 2; justify-self: center; }
  body.menu-open .nav__burger { grid-column: 3; justify-self: end; }
  /* Center the open menu links */
  .nav__menu-links { align-items: center; text-align: center; justify-content: center; }
  /* Program dropdown — centre on mobile to match the centred menu */
  .nav__dd { align-items: center; }
  .nav__dd-toggle { justify-content: center; }
  .nav__dd-menu { padding-left: 0; justify-items: center; text-align: center; }
  .nav__menu-links a.active::after,
  .nav__menu-links a:hover::after { left: 50%; transform: translateX(-50%); }
  .nav__menu-contact { padding-left: 0; }
  .nav__menu-contact::before { display: none; }
}

.footer {
  background: var(--glacier-50);
  color: var(--ink-soft);
  padding-top: clamp(4rem, 9vw, 7rem);
}
.footer a { color: var(--ink-soft); }
.footer a:hover { color: var(--ice-deep); }
.footer__h {
  display: block; font-size: var(--fs-micro);
  letter-spacing: var(--track-wide); text-transform: uppercase;
  color: var(--glacier-950); margin-bottom: 1.3rem;
}

.footer__top {
  display: grid; grid-template-columns: 1.4fr 2fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.footer__logo { height: 20px; width: auto; margin-bottom: 1.6rem; opacity: .95; }
.footer__tagline { font-family: var(--font-body); font-size: .9rem; line-height: 1.6; color: var(--ink); max-width: 30ch; font-weight: 300; margin-top: 1.6rem; }

/* Follow us — sits below the tagline */
.footer__brand .footer__follow { margin-top: 1.6rem; }

.footer__nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer__col a { display: block; font-size: var(--fs-small); margin-bottom: .9rem; }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; gap: clamp(1rem, 3vw, 2rem); flex-wrap: nowrap;
  margin-top: clamp(3rem, 6vw, 5rem); padding-top: clamp(1.8rem, 3vw, 2.6rem); padding-bottom: clamp(1.8rem, 3vw, 2.6rem);
  border-top: 1px solid var(--glacier-300);
  font-size: var(--fs-micro); letter-spacing: .03em; color: var(--color-muted);
}
.footer__bottom-logo { flex: none; display: block; line-height: 0; }
.footer__bottom-logo img { height: clamp(22px, 2.6vw, 30px); width: auto; opacity: .95; }

.footer__follow { display: flex; align-items: center; gap: clamp(.8rem, 2vw, 1.4rem); }
.footer__follow-label { font-family: var(--font-body); font-size: var(--fs-small); color: var(--ink-soft); letter-spacing: .02em; white-space: nowrap; }
.footer__icons { display: flex; align-items: center; gap: clamp(.8rem, 1.8vw, 1.5rem); }
.footer__icons a { color: var(--glacier-950); display: inline-flex; transition: color .4s var(--ease), transform .4s var(--ease); }
.footer__icons a:hover { color: var(--ice-deep); transform: translateY(-2px); }

.footer__copy { margin: 0; text-align: left; line-height: 1.6; white-space: nowrap; }

@media (max-width: 860px) {
  .footer__top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__nav { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 1.6rem; flex-wrap: wrap; }
  .footer__copy { text-align: left; white-space: normal; }
}
@media (max-width: 560px) {
  .footer__nav { grid-template-columns: 1fr; }
  .footer__follow { flex-wrap: wrap; }
}

/* ============================================================
   OVERVIEW — Executive Snapshot (image + spec table)
   ============================================================ */
/* breadcrumb pinned to page top (static, clears the fixed nav) */
.a-crumbs--top {
  position: static; top: auto; left: auto; right: auto;
  padding-top: clamp(7rem, 13vh, 9rem); padding-bottom: 0;
}
/* tightened spacing between Overview and the Program hero */
/* hero isn't .a-sec, so it inherited the large generic section padding — trim it */
.a-hero--sub { padding-block: clamp(1rem, 2.2vw, 1.8rem); }
.a-hero--sub .a-hero__inner { padding-top: clamp(1.2rem, 2.6vw, 2rem); padding-bottom: clamp(1.4rem, 3vw, 2.4rem); }
.a-overview { padding-top: clamp(1.2rem, 2.4vw, 2rem); padding-bottom: clamp(1.2rem, 2.6vw, 2.2rem); }

/* 2-column: compact image left (height matches table), data prominent right */
.a-overview__grid {
  display: grid; grid-template-columns: 0.56fr 1.44fr;
  gap: clamp(1.6rem, 4vw, 3.5rem); align-items: stretch;
}
.a-overview__media { margin: 0; display: flex; }
.a-overview__media .ph { aspect-ratio: auto; width: 100%; height: 100%; min-height: 260px; overflow: hidden; }
/* zoom in to crop the practitioner's face out — focus on the device + patient */
.a-overview__media .ph img { object-position: center; transform: scale(1); transform-origin: 50% 50%; }
.a-overview__info { min-width: 0; }
.a-overview__info .a-kicker { display: block; margin-bottom: clamp(.9rem, 2vw, 1.5rem); }

/* spec table — label | value rows with hairline rules */
.a-spec { display: grid; }
.a-spec__row {
  display: grid; grid-template-columns: minmax(150px, .5fr) 1fr;
  gap: clamp(1rem, 2.5vw, 2rem); align-items: baseline;
  padding-block: clamp(.8rem, 1.5vw, 1.1rem);
  border-top: 1px solid var(--line);
}
.a-spec__row:last-child { border-bottom: 1px solid var(--line); }
.a-spec__k {
  display: flex; align-items: center; gap: 1rem; margin: 0;
  font-family: var(--font-display); font-size: 16px; font-weight: 700;
  letter-spacing: var(--track-wide); text-transform: uppercase; color: var(--ice-deep); line-height: 1.4;
}
.a-spec__icon {
  width: 30px; height: 30px; flex: none; border-radius: 8px;
  background: var(--glacier-50); color: var(--ice-deep);
  display: flex; align-items: center; justify-content: center;
}
.a-spec__icon svg { width: 17px; height: 17px; }
.a-spec__v {
  margin: 0; font-family: var(--font-body); font-weight: 400;
  font-size: 14px; line-height: 1.5; color: var(--ink);
}
.a-spec__row--feature .a-spec__v {
  font-style: normal; font-weight: 400;
  font-size: 14px; line-height: 1.5; color: var(--ink);
}

@media (max-width: 860px) {
  .a-overview__grid { grid-template-columns: 1fr; gap: clamp(1.4rem, 4vw, 2rem); }
  .a-overview__media .ph { aspect-ratio: 16 / 9; height: auto; min-height: 0; }
}
@media (max-width: 560px) {
  .a-spec__row { grid-template-columns: 1fr; gap: .45rem; }
}
