/* ============================================================
   VARIABLES (from variables.css)
   ============================================================ */
:root {
  --paper:        #F8F6F3;
  --paper-2:      #F1EDEB;
  --paper-cool:   #DEEDF3;
  --ink:          #33312E;
  --ink-soft:     #54514C;
  --muted:        #989088;
  --line:         #EAE6E1;
  --line-cool:    #DEEDF3;

  --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-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-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;

  --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);

  --ice-deep:   #71A8B5;
  --sage-deep:  #70877A;

  --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);

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

  --maxw: 1720px;
  --maxw-text: 640px;
  --gutter: clamp(1.5rem, 3.5vw, 4.5rem);
  --section-y: clamp(4rem, 8vw, 9rem);

  --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(16px, 1.2vw, 18px);
  --fs-body:  16px;
  --fs-small: 14px;
  --fs-micro: 12px;

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

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

/* ============================================================
   BASE (from shayne.html global)
   ============================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }

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); }
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); }

.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; }

.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;
}

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

.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); }

/* ===== Reveal ===== */
.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; }
}

/* ============================================================
   BREADCRUMB + HERO (pattern from about.css)
   ============================================================ */
.bleed { width: 100vw; position: relative; left: 50%; right: 50%; margin-inline: -50vw; }

main section { padding-block: clamp(3rem, 6vw, 6rem); }

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

.si-hero {
  background: #FFFFFF;
  min-height: 82svh;
  display: flex; align-items: flex-end;
  position: relative; overflow: hidden;
  padding: clamp(2rem, 4vh, 3.5rem) 0 0;
}
.si-hero__media { position: absolute; inset: 0; z-index: 0; }
.si-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.si-hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.9) 30%, rgba(255,255,255,.45) 56%, rgba(255,255,255,0) 78%),
    linear-gradient(to top, rgba(255,255,255,.9) 0%, rgba(255,255,255,0) 42%);
}
.si-hero__inner {
  position: relative; z-index: 2; color: var(--ink);
  padding-bottom: clamp(3.5rem, 8vh, 6rem);
}
.si-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;
}
.si-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: 1.6rem; max-width: none;
  text-wrap: balance;
}
.si-hero__title em { font-style: italic; color: var(--ice-deep); }
.si-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: 56ch;
}

/* ============================================================
   INTRO (image left / statement right) — from ab-phil
   ============================================================ */
.si-intro { background: #FFFFFF; }
.si-intro__grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.si-intro__media { overflow: hidden; aspect-ratio: 4/5; }
.si-intro__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--ease); }
.si-intro__media:hover img { transform: scale(1.03); }
.si-intro__text { max-width: 640px; }
.si-intro .kicker { display: block; margin-bottom: 1.6rem; color: var(--ice-deep); }
.si-intro__title { font-weight: 400; font-size: clamp(32px, 4vw, 52px); line-height: 1.1; margin-bottom: 1.4rem; }
.si-intro__title em { font-style: italic; color: var(--ice-deep); }
.si-intro__lede { font-family: var(--font-body); font-weight: 300; color: var(--ink-soft); line-height: 1.9; margin-bottom: 1.2rem; }

/* ============================================================
   FIGURE ROW — text beside image (left/right)
   ============================================================ */
.si-figrow {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.si-figrow--media-left { grid-template-columns: 0.9fr 1.1fr; }
.si-figrow--media-left .si-figrow__media { order: -1; }
/* media on the RIGHT, text on the left */
.si-figrow--media-right { grid-template-columns: 1.1fr 0.9fr; }
.si-figrow--media-right .si-figrow__media { order: 2; }
.si-figrow--media-right .si-figrow__text { order: 1; }
.si-figrow__text { max-width: 640px; }
.si-figrow__text .si-block__head { margin-bottom: clamp(1.4rem, 3vw, 2rem); }
.si-figrow__media { overflow: hidden; aspect-ratio: 4/5; margin: 0; }
.si-figrow__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--ease); }
.si-figrow__media:hover img { transform: scale(1.03); }
/* Editorial variant — smaller image, top-aligned so short copy doesn't float */
.si-figrow--editorial { grid-template-columns: 1fr 0.62fr; align-items: start; gap: clamp(2rem, 5vw, 4rem); }
.si-figrow--editorial .si-figrow__text { padding-top: .3rem; }
.si-figrow--editorial .si-figrow__media { aspect-ratio: 4/5; max-width: 340px; margin-inline-start: auto; }

/* Methodological — grid mirrors the 3 boxes above: image = box 1, table = box 2+3 */
.si-method {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 2.6vw, 2.2rem); align-items: start;
  max-width: none; margin-inline: auto;
}
.si-method__media {
  grid-column: span 1;
  overflow: hidden; aspect-ratio: 4/5; margin: 0; border-radius: 3px;
  position: sticky; top: clamp(88px, 12vh, 116px);
}
.si-method__main { grid-column: span 2; }
/* Let grid items shrink below content width so the table scrolls inside its wrap
   instead of forcing horizontal page overflow on small screens. */
.si-method__media, .si-method__main { min-width: 0; }
.si-method__main .si-table-wrap { max-width: 100%; overflow-x: auto; }
.si-method__media img { width: 100%; height: 100%; object-fit: cover; }
.si-method__main .si-prose { max-width: none; margin-bottom: clamp(1.4rem, 3vw, 2rem); }
/* Title sits at the top of the column so it lines up with the 360V2 image top */
.si-method__main .si-prose h3 { margin-top: 0; }
.si-method__main .si-table-wrap { max-width: none; }
.si-method__main .si-table { min-width: 0; }

/* ============================================================
   PROSE BLOCK (heading + subheading + body) — neutral editorial
   ============================================================ */
.si-block { background: #FFFFFF; }
.si-block--alt { background: var(--tide-50); }
.si-block__head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.si-block__head .kicker { color: var(--ice-deep); margin-bottom: 1.4rem; display: block; }
.si-block__head h2 { font-weight: 400; font-size: clamp(28px, 3.4vw, 44px); line-height: 1.14; margin-bottom: 1.2rem; }
.si-block__head h2 em { font-style: italic; }
.si-block__head .lead { color: var(--color-muted); font-size: 16px; font-weight: 300; }

.si-prose { max-width: 720px; }
.si-prose p { color: var(--ink-soft); font-weight: 300; line-height: 1.9; margin-bottom: 1.4rem; }
.si-prose h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(20px, 2.2vw, 28px); line-height: 1.2;
  color: var(--ink); margin-top: 2.4rem; margin-bottom: 1rem;
}

/* concern / feature list */
.si-list { max-width: 760px; display: grid; gap: 0; }
.si-list li {
  padding: clamp(1.2rem, 2.4vw, 1.6rem) 0;
  border-bottom: 1px solid var(--color-line);
}
.si-list li:first-child { border-top: 1px solid var(--color-line); }
.si-list .si-list__t {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(1.3rem, 1.9vw, 1.7rem);
  color: var(--ice-deep); display: block; margin-bottom: .4rem; line-height: 1.2;
}
.si-list .si-list__d { color: var(--ink-soft); font-weight: 300; line-height: 2.05; font-size: var(--fs-body); }

/* center-aligned blocks (Our Approach, Recovery & Aftercare) */
.si-block--center .si-block__head { max-width: 760px; margin-left: auto; margin-right: auto; text-align: center; }
.si-block--center .si-prose { max-width: 720px; margin-left: auto; margin-right: auto; text-align: center; }
.si-block--center .si-prose h3 { text-align: center; }

/* ============================================================
   APPLICATIONS — 2 columns (text left / looping carousel right)
   ============================================================ */
.si-apps {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem); align-items: center;
}
.si-apps__text .si-block__head { margin-bottom: clamp(1.6rem, 3vw, 2.4rem); max-width: none; }
.si-apps__text .si-list { max-width: none; }
/* Carousel on desktop — flows gently down with the scroll, then locks at the end
   of its section (driven by JS in skin-insight-360.js). */
@media (min-width: 981px) {
  .si-apps { align-items: start; }
  .si-apps__media { will-change: transform; }
  /* Technology image: match the height of the text block beside it (no taller) */
  .si-figrow--media-right { align-items: stretch; }
  .si-figrow--media-right .si-figrow__media {
    aspect-ratio: auto; height: 100%; align-self: stretch;
  }
}
/* Reduced-motion fallback: pin in view instead of the JS flow-and-lock. */
@media (min-width: 981px) and (prefers-reduced-motion: reduce) {
  .si-apps__media { position: sticky; top: clamp(88px, 12vh, 116px); }
}

.si-carousel { position: relative; }
.si-carousel__viewport { overflow: hidden; background: var(--paper-cool); }
.si-carousel__track { display: flex; transition: transform 1.1s var(--ease); }
.si-carousel__slide { flex: 0 0 100%; margin: 0; line-height: 0; }
.si-carousel__slide img {
  width: 100%; height: clamp(360px, 52vh, 560px);
  object-fit: cover; object-position: center; display: block; background: #0a0a0a;
}
.si-carousel__controls {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(1.4rem, 3vw, 2.4rem); margin-top: clamp(1.4rem, 2.4vw, 2rem);
}
.si-carousel__arrow {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--color-line); background: transparent;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--ink-soft);
  transition: background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
}
.si-carousel__arrow svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.si-carousel__arrow:hover { background: var(--ice-deep); border-color: var(--ice-deep); color: #fff; }
.si-carousel__count {
  font-family: var(--font-body); font-size: var(--fs-small);
  letter-spacing: .14em; color: var(--ink-soft); min-width: 56px; text-align: center;
}
.si-carousel__cur { color: var(--ice-deep); }

/* ============================================================
   MODALITIES (how it works) — full-bleed dark, 3 columns
   ============================================================ */
.si-mods {
  position: relative; overflow: hidden; color: #fff;
  width: 100vw; left: 50%; right: 50%; margin-inline: -50vw;
  padding-block: clamp(4.5rem, 9vw, 9rem);
}
.si-mods__bg { position: absolute; inset: 0; z-index: 0; }
.si-mods__bg img { width: 100%; height: 100%; object-fit: cover; }
.si-mods__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(64,69,66,.82) 0%, rgba(64,69,66,.78) 100%);
}
.si-mods__inner { position: relative; z-index: 2; }
.si-mods__head { max-width: 760px; margin: 0 auto clamp(3rem, 6vw, 5rem); text-align: center; }
.si-mods__head .kicker { color: rgba(255,255,255,.8); margin-bottom: 1.6rem; letter-spacing: var(--track-mega); }
.si-mods__head h2 { color: #fff; font-weight: 400; }
.si-mods__head h2 em { font-style: italic; }
.si-mods__head .lead { color: rgba(255,255,255,.72); margin-top: 1.2rem; margin-inline: auto; max-width: 60ch; }

.si-mods__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  max-width: 1160px; margin-inline: auto;
}
.si-mod {
  background: transparent; padding: clamp(1.4rem, 2.4vw, 2.6rem) clamp(1.4rem, 2.6vw, 2.8rem);
  display: flex; flex-direction: column;
  border-left: 1px solid rgba(255,255,255,.22);
}
.si-mod:first-child { border-left: 0; }
.si-mod__no {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  color: #fff; line-height: 1; margin-bottom: 1.4rem; opacity: .9;
}
.si-mod h3 { color: #fff; font-weight: 500; font-size: clamp(1.3rem, 1.9vw, 1.7rem); line-height: 1.2; margin-bottom: 1rem; letter-spacing: .02em; }
.si-mod p { color: rgba(255,255,255,.74); font-size: 14px; line-height: 1.8; }

/* Light variant — clean white background, dark editorial text */
.si-mods--light { background: #FFFFFF; color: var(--ink); padding-top: clamp(1.5rem, 3vw, 3rem); }
.si-mods--light .si-mods__head .kicker { color: var(--ice-deep); }
.si-mods--light .si-mods__head h2 { color: var(--ink); }
.si-mods--light .si-mods__head .lead { color: var(--ink-soft); }
.si-mods--light .si-mod { border-left-color: var(--color-line); }
.si-mods--light .si-mod__no { color: var(--ice-deep); }
.si-mods--light .si-mod h3 { color: var(--ink); }
.si-mods--light .si-mod p { color: var(--ink-soft); }

/* ============================================================
   STEPS (treatment experience)
   ============================================================ */
.si-steps__head { max-width: 720px; margin-bottom: clamp(2.2rem, 4vw, 3.2rem); }
.si-steps__head .kicker { color: var(--ice-deep); margin-bottom: 1.4rem; display: block; }
.si-steps__head h2 { font-weight: 400; font-size: clamp(28px, 3.4vw, 44px); line-height: 1.14; }
.si-steps__list { display: grid; gap: 0; max-width: 880px; }
.si-step {
  display: grid; grid-template-columns: 56px 1fr; gap: clamp(1.2rem, 3vw, 2.4rem);
  padding: clamp(.7rem, 1.4vw, 1rem) 0; border-bottom: 1px solid var(--color-line);
  align-items: start;
}
.si-step:first-child { border-top: 1px solid var(--color-line); }
.si-step__no {
  font-family: var(--font-display); font-style: italic; color: var(--ice-deep);
  font-size: clamp(1.4rem, 2vw, 1.9rem); line-height: 1;
}
.si-step__t { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.3rem, 1.9vw, 1.7rem); color: var(--ice-deep); margin-bottom: .45rem; line-height: 1.2; }
.si-step__d { color: var(--ink-soft); font-weight: 300; line-height: 1.75; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.si-table-wrap { max-width: 1100px; overflow-x: auto; }
.si-table-wrap--center { margin-inline: auto; }
.si-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.si-table th, .si-table td {
  text-align: left; padding: clamp(.9rem, 1.8vw, 1.3rem) clamp(.9rem, 1.6vw, 1.4rem);
  border-bottom: 1px solid var(--color-line);
  font-size: var(--fs-small); line-height: 1.6;
}
.si-table thead th {
  font-family: var(--font-body); font-weight: 400; text-transform: uppercase;
  letter-spacing: .08em; font-size: var(--fs-micro); color: var(--ink);
  border-bottom: 1px solid var(--ink-soft);
}
.si-table thead th:nth-child(2) { color: var(--ink); }
/* Column 1 (row labels) — Cormorant Garamond, bold, brand teal */
.si-table thead th:first-child {
  font-family: var(--font-display); font-weight: 700; color: #558C99;
}
.si-table tbody th {
  font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: #558C99;
}
.si-table tbody td { color: var(--ink-soft); font-weight: 300; }
.si-table tbody td:nth-child(2) { color: var(--ink); font-weight: 400; }
/* Highlight the "Skin Insight 360 Framework" column: #EEEAE7 base + a faint 5%
   white gradient + ~1% noise texture. */
.si-table thead th:nth-child(2),
.si-table tbody td:nth-child(2) {
  background-color: #EEEAE7;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='cn'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23cn)' opacity='0.04'/%3E%3C/svg%3E"),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,0));
}

/* ============================================================
   FAQ
   ============================================================ */
.si-faq__head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.si-faq__head .kicker { color: var(--ice-deep); margin-bottom: 1.4rem; display: block; }
.si-faq__head h2 { font-weight: 400; font-size: clamp(28px, 3.4vw, 44px); line-height: 1.14; }
.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; }

/* ============================================================
   CTA — from ab-cta
   ============================================================ */
.si-cta {
  position: relative; overflow: hidden;
  background: #F1EDEB; color: var(--ink);
  width: 100vw; left: 50%; right: 50%; margin-inline: -50vw;
  text-align: center;
  padding-block: clamp(4rem, 9vw, 8rem);
}
.si-cta__inner { position: relative; z-index: 2; max-width: 720px; margin-inline: auto; padding-inline: var(--gutter); }
.si-cta .kicker { color: var(--ice-deep); margin-bottom: 1.4rem; display: block; }
.si-cta h2 { color: var(--ink); font-weight: 400; font-size: clamp(40px, 5vw, 64px); line-height: 1.08; margin-bottom: 1.4rem; }
.si-cta h2 em { font-style: italic; color: var(--ice-deep); }
.si-cta p { color: var(--ink-soft); font-weight: 300; font-size: clamp(13.5px, 1.02vw, 15px); line-height: 1.85; margin-bottom: 2.4rem; max-width: 52ch; margin-inline: auto; }
/* Solid blue CTA button for the consultation section */
.si-cta .btn { background: var(--ice-deep); color: #fff; border-color: var(--ice-deep); }
.si-cta .btn:hover { background: var(--glacier-800); border-color: var(--glacier-800); color: #fff; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .si-intro__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .si-intro__media { aspect-ratio: 16/10; max-height: 460px; }
  .si-figrow, .si-figrow--media-left, .si-figrow--media-right, .si-figrow--editorial { grid-template-columns: 1fr; gap: clamp(1.6rem, 4vw, 2.5rem); }
  .si-figrow--media-left .si-figrow__media { order: 0; }
  .si-figrow--media-right .si-figrow__media { order: 0; }
  .si-figrow--media-right .si-figrow__text { order: 1; }
  .si-figrow__media { aspect-ratio: 16/10; max-height: 460px; }
  .si-figrow--editorial .si-figrow__media { aspect-ratio: 4/5; max-width: 320px; max-height: none; margin-inline: auto; }
  .si-method { grid-template-columns: 1fr; gap: clamp(1.6rem, 4vw, 2.4rem); }
  .si-method__media, .si-method__main { grid-column: auto; }
  .si-method__media { position: static; max-height: 100%; }
  .si-method__main .si-table { min-width: 560px; }
  .si-mods__grid { grid-template-columns: 1fr; }
  .si-mod { border-left: 0; border-top: 1px solid rgba(255,255,255,.18); }
  .si-mods--light .si-mod { border-top-color: var(--color-line); }
  .si-mod:first-child { border-top: 0; }
  .si-apps { grid-template-columns: 1fr; gap: 2.5rem; }
  .si-carousel__slide img { height: clamp(320px, 56vw, 480px); }
}

@media (max-width: 600px) {
  .si-step { grid-template-columns: 40px 1fr; gap: 1rem; }
}

/* ============================================================
   CANDIDACY — concentric "golden-circle" + slow ripple
   ============================================================ */
.si-candidacy { position: relative; overflow: hidden; background: #fff; }
/* Wave field: #DEEDF3 -> white, softened (lighter than before) */
.si-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, #ffffff 0%, rgba(222,237,243,.1) 100%);
}
.si-candidacy__rings {
  position: absolute; top: 46%; left: 44%; transform: translate(-50%, -50%);
  width: min(60vw, 500px); aspect-ratio: 1 / 1; z-index: 0;
  opacity: .5; pointer-events: none;
}
.si-ring {
  position: absolute; top: 50%; left: 50%; border-radius: 50%;
  transform: translate(-50%, -50%);
}
.si-ring--static { border: 1px solid rgba(113,168,181,.30); }
.si-ring--static.s1 { width: 100%; height: 100%; }
.si-ring--static.s2 { width: 66%;  height: 66%; }
.si-ring--static.s3 { width: 34%;  height: 34%; }
.si-ring--glow {
  width: 58%; height: 58%; border: 0;
  background: radial-gradient(circle at 50% 50%, rgba(113,168,181,.55) 0%, rgba(222,237,243,.55) 40%, rgba(255,255,255,0) 72%);
  filter: blur(2px);
  animation: si-breathe 6.5s ease-in-out infinite;
}
.si-ring--pulse {
  width: 34%; height: 34%; border: 1px solid rgba(113,168,181,.42);
  animation: si-ripple 8s var(--ease) infinite;
}
.si-ring--pulse.p2 { animation-delay: 2.6s; }
.si-ring--pulse.p3 { animation-delay: 5.2s; }
@keyframes si-ripple {
  0%   { transform: translate(-50%,-50%) scale(.55); opacity: 0; }
  12%  { opacity: .5; }
  100% { transform: translate(-50%,-50%) scale(3); opacity: 0; }
}
@keyframes si-breathe {
  0%, 100% { transform: translate(-50%,-50%) scale(1);    opacity: .8; }
  50%      { transform: translate(-50%,-50%) scale(1.08); opacity: 1; }
}
.si-candidacy__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 5rem); align-items: center;
  min-height: min(72vw, 600px);
}
.si-candidacy__lead { max-width: 420px; }
.si-candidacy__lead .kicker { color: var(--ice-deep); display: block; margin-bottom: 1.4rem; }
.si-candidacy__lead h2 {
  font-family: var(--font-display); font-weight: 400; color: var(--ink);
  font-size: clamp(30px, 4.2vw, 56px); line-height: 1.08; margin-bottom: 1.3rem;
}
.si-candidacy__lead h2 em { font-style: italic; color: var(--ice-deep); }
.si-candidacy__lead .lead { color: var(--ink-soft); font-weight: 300; line-height: 1.85; }
.si-candidacy__items { list-style: none; display: grid; gap: clamp(1.8rem, 4vw, 2.8rem); }
.si-cand { position: relative; }
.si-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;
}
.si-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);
}
.si-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;
}
.si-cand__d {
  display: block; color: var(--ink-soft); font-weight: 300;
  line-height: 1.85; font-size: var(--fs-body); max-width: 48ch;
}

/* ============================================================
   STEPS LAYOUT — image left / steps right
   ============================================================ */
.si-steps__layout {
  display: grid; grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: stretch;
}
/* Image stretches to match the steps body height (equal columns) — minimum
   keeps it from collapsing if the body is ever shorter than the image. */
.si-steps__media {
  overflow: hidden; margin: 0; min-height: 460px; width: 100%;
}
.si-steps__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.6s var(--ease);
}
.si-steps__media:hover img { transform: scale(1.03); }
.si-steps__body .si-steps__list { max-width: none; }
.si-steps__body .si-steps__head { margin-bottom: clamp(.7rem, 1.4vw, 1rem); }
.si-steps__body .si-steps__head .lead { margin-top: .6rem; line-height: 1.6; }

/* ============================================================
   COMBINATION BOXES — image top / #71A8B5 caption below
   ============================================================ */
.si-center { text-align: center; margin-left: auto; margin-right: auto; }
.si-block__head.si-center { max-width: 760px; }
.si-prose.si-center { max-width: 720px; }
.si-prose.si-center h3 { text-align: center; }
.si-combos {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.4vw, 1.8rem);
  max-width: 1180px; margin: clamp(2rem, 4vw, 3.2rem) auto 0;
}
.si-combo {
  display: flex; flex-direction: column; overflow: hidden;
  border-radius: 3px; background: #fff; border: 1px solid var(--color-line);
}
.si-combo__media { aspect-ratio: 4 / 3; overflow: hidden; }
.si-combo__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.6s var(--ease);
}
.si-combo:hover .si-combo__media img { transform: scale(1.04); }
.si-combo__body {
  flex: 1; background: #71A8B5; color: #fff; text-align: center;
  padding: clamp(1.4rem, 2.4vw, 2rem);
}
.si-combo__t {
  font-family: var(--font-display); font-weight: 500; color: #fff;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem); line-height: 1.2; margin-bottom: .7rem;
}
.si-combo__d {
  color: rgba(255,255,255,.92); font-weight: 300;
  font-size: var(--fs-small); line-height: 1.7;
}
/* 3-up on desktop/tablet, single centred column on phones (no orphan box) */
@media (max-width: 700px) {
  .si-combos { grid-template-columns: 1fr; max-width: 440px; }
}

/* ============================================================
   FAQ — centred heading + list, copy stays left-read
   ============================================================ */
.si-faq__head.si-center { max-width: 760px; }
.si-faq--center .si-faq__list { margin-inline: auto; }

/* ============================================================
   SECTION SPACING HELPERS — tighten the gap between neighbours
   ============================================================ */
.si-pb-tight { padding-bottom: clamp(1.5rem, 3vw, 3rem) !important; }
.si-pt-tight { padding-top: clamp(1.5rem, 3vw, 3rem) !important; }
/* Method <-> Candidacy: 10% more breathing room than the standard tight gap */
.si-mods--light.si-pb-tight { padding-bottom: clamp(1.65rem, 3.3vw, 3.3rem) !important; }
.si-candidacy.si-pt-tight { padding-top: clamp(1.65rem, 3.3vw, 3.3rem) !important; }

@media (max-width: 980px) {
  .si-candidacy__inner { grid-template-columns: 1fr; gap: clamp(2rem, 6vw, 3rem); min-height: 0; }
  .si-candidacy__rings { top: 34%; left: 50%; width: min(86vw, 440px); opacity: .38; }
  .si-candidacy__lead { max-width: none; }
  .si-steps__layout { grid-template-columns: 1fr; gap: clamp(1.8rem, 5vw, 2.6rem); }
  .si-steps__media { position: static; aspect-ratio: 16 / 10; max-height: 100%; }
}

/* ============================================================
   NAVBAR + FOOTER — identical to shayne.html (do not edit per-page)
   ============================================================ */
/* ============================================================
   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; }
/* 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; }
  .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; }

      .nav__dd-menu {
        padding-left: 0;
        justify-items: center;
        text-align: center;
    }
    
    .nav__dd { align-items: center; }
}

.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; }
}
