/* ═══════════════════════════════════════════════════════════════
   BIOHEALTHCARE CLUB — REDESIGN
   Editorial · Clinical · Architectural Calm
═══════════════════════════════════════════════════════════════ */

:root {
  /* Surface */
  --bg:       #071218;
  --bg-2:     #0B1715;
  --bg-3:     #0F1C1A;
  --ink:      #050B0E;

  /* Lines */
  --line:    rgba(217,212,203,0.08);
  --line-2:  rgba(217,212,203,0.16);
  --line-3:  rgba(217,212,203,0.28);

  /* Accent */
  --sage:    #7F947C;
  --sage-2:  #94A691;
  --sage-dim:#5A6E58;
  --sage-glow: rgba(127,148,124,0.16);
  --gold:    #C9B783;

  /* Text */
  --t1: #D9D4CB;
  --t2: #A7B0AA;
  --t3: #6B7570;
  --t4: #4A524D;

  /* Type */
  --f-display: "Cormorant Garamond", "Cormorant", "Times New Roman", serif;
  --f-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Motion */
  --ease-out: cubic-bezier(.2,.7,.2,1);
  --ease-soft: cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }

body {
  color-scheme: dark;
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--t1);
  background: var(--bg);
  overflow-x: hidden;
  letter-spacing: 0.005em;
}

img, video { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

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

/* ─── TYPE PRIMITIVES ─────────────────────────────────────── */

.h-display {
  font-family: var(--f-display);
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.02;
  color: var(--t1);
  text-wrap: balance;
}
.h-display em { font-style: italic; color: var(--sage-2); font-weight: 300; }

.h1 { font-size: clamp(56px, 8.4vw, 152px); }
.h2 { font-size: clamp(44px, 6vw, 100px); }
.h3 { font-size: clamp(34px, 4vw, 64px); }
.h4 { font-size: clamp(26px, 2.6vw, 40px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--f-body);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.eyebrow.no-rule::before { display: none; }

.kicker {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
}

.lead { font-size: 18px; color: var(--t2); line-height: 1.75; max-width: 56ch; }
.body-l { font-size: 16.5px; color: var(--t2); line-height: 1.85; max-width: 60ch; }
.body { font-size: 15px; color: var(--t2); line-height: 1.8; }
.cap  { font-size: 11px; color: var(--t3); letter-spacing: 0.22em; text-transform: uppercase; }

/* ─── LAYOUT PRIMITIVES ───────────────────────────────────── */

.wrap { width: 100%; max-width: 1480px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 4rem); }
.wrap-tight { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 4rem); }

.section { padding: clamp(3rem, 11vw, 3rem) 0; }
.section-tight { padding: clamp(4rem, 7vw, 7rem) 0; }

.bg-1 { background: var(--bg-2); }
.bg-2 { background: var(--bg-3); }

.rule { height: 1px; background: var(--line); width: 100%; }
.rule-sage { height: 1px; background: var(--sage); width: 56px; opacity: 0.8; }

/* ─── BUTTONS ─────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.05rem 1.85rem;
  font-family: var(--f-body);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--sage);
  border: 1px solid var(--sage);
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn:hover { background: var(--sage-2); border-color: var(--sage-2); transform: translateY(-1px); }
.btn .arrow { transition: transform 0.4s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--t1);
  border: 1px solid var(--line-3);
}
.btn-ghost:hover { background: rgba(217,212,203,0.04); border-color: var(--t1); transform: translateY(-1px); }

.btn-line {
  background: transparent;
  color: var(--sage);
  border: 1px solid var(--sage);
}
.btn-line:hover { background: var(--sage-glow); }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0;
  background: transparent;
  border: 0;
  font-family: var(--f-body);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  border-bottom: 1px solid var(--sage);
  padding-bottom: 0.4rem;
  transition: all 0.4s var(--ease-out);
}
.btn-link:hover { color: var(--sage-2); border-color: var(--sage-2); }
.btn-link .arrow { transition: transform 0.4s var(--ease-out); }
.btn-link:hover .arrow { transform: translateX(4px); }

/* ─── NAV ─────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem clamp(1.5rem, 4vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: all 0.4s var(--ease-out);
  background: linear-gradient(to bottom, rgba(7,18,24,0.6), rgba(7,18,24,0));
}
.nav.solid {
  background: rgba(7,18,24,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 1rem clamp(1.5rem, 4vw, 4rem);
}

.nav-brand {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--t1);
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
	width: 50%;
}
.nav-brand strong { font-weight: 500; }
.nav-brand .tm { font-size: 10px; color: var(--sage); margin-left: 2px; transform: translateY(-8px); }

.nav-links {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.nav-link {
  position: relative;
  padding: 0.5rem 1.1rem;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--t2);
  transition: color 0.3s var(--ease-out);
  cursor: pointer;
}
.nav-link:hover, .nav-link.active { color: var(--t1); }
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 1.1rem; right: 1.1rem;
  height: 1px;
  background: var(--sage);
}

.nav-r { display: flex; align-items: center; gap: 1rem; }
.nav-r .btn { padding: 0.75rem 1.4rem; font-size: 10.5px; }

/* Mega dropdown */
.nav-mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-mega-trigger::after {
  content: "+";
  font-size: 14px;
  color: var(--t3);
  transition: transform 0.3s var(--ease-out);
}
.nav-item:hover .nav-mega-trigger::after,
.nav-item.open .nav-mega-trigger::after { transform: rotate(45deg); color: var(--sage); }

.nav-item { position: relative; }
.nav-mega {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  background: rgba(7,18,24,0.97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid var(--line);
  padding: 6.5rem clamp(1.5rem, 4vw, 4rem) 4rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: all 0.45s var(--ease-out);
  z-index: 99;
}
.nav-item:hover .nav-mega,
.nav-item.open .nav-mega { opacity: 1; pointer-events: auto; transform: translateY(0); }

.mega-inner {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
}
.mega-head { font-family: var(--f-body); font-size: 10px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--sage); margin-bottom: 1.5rem; }
.mega-col { display: flex; flex-direction: column; gap: 0.85rem; }
.mega-link {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--t1);
  letter-spacing: -0.005em;
  transition: color 0.3s var(--ease-out);
  position: relative;
  padding-bottom: 0.15rem;
}
.mega-link em { font-style: italic; color: var(--sage-2); }
.mega-link:hover { color: var(--sage); }
.mega-link .arr {
  display: inline-block;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s var(--ease-out);
  margin-left: 0.5rem;
  font-size: 14px;
  color: var(--sage);
}
.mega-link:hover .arr { opacity: 1; transform: translateX(0); }

/* Compact nav dropdown (Locations) */
.nav-drop {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 230px;
  background: rgba(7,18,24,0.97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--line);
  padding: 0.85rem 0;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  z-index: 220;
}
.nav-item:hover .nav-drop,
.nav-item.open .nav-drop { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-drop a {
  display: block;
  padding: 0.7rem 1.6rem;
  font-family: var(--f-display);
  font-size: 18px; font-weight: 300;
  color: var(--t1); white-space: nowrap;
  transition: color 0.25s var(--ease-out), background 0.25s var(--ease-out);
}
.nav-drop a em { font-style: italic; color: var(--gold); }
.nav-drop a:hover { color: var(--gold); background: rgba(255,255,255,0.03); }
.nav-drop .drop-tag {
  font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--sage); display: block; margin-top: 2px;
}

/* Mobile menu */
.nav-burger {
  display: none;
  width: 36px; height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--t1);
  transition: all 0.3s var(--ease-out);
  margin-left: auto;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 95;
  padding: 6rem 1.5rem 3rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
  overflow-y: auto;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { display: block; font-family: var(--f-display); font-size: 32px; font-weight: 300; color: var(--t1); padding: 0.6rem 0; border-bottom: 1px solid var(--line); }
.mobile-menu a em { color: var(--sage-2); }
.mobile-menu .mob-label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--sage); margin: 2rem 0 0.5rem; }
.mobile-menu .mob-cta { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.mobile-menu .mob-cta .btn { justify-content: center; }

@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

/* ─── HERO ────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 8rem clamp(1.5rem, 4vw, 4rem) clamp(4rem, 8vw, 8rem);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0a141a center/cover no-repeat;
}
.hero-media video, .hero-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-media[data-fallback]::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--fallback);
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, var(--sage-glow), transparent 50%),
    linear-gradient(to top, var(--bg) 0%, rgba(7,18,24,0.65) 40%, rgba(7,18,24,0.4) 100%);
  z-index: 1;
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 50% 50%, transparent 0%, rgba(7,18,24,0.4) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
}
.hero h1 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(56px, 8.6vw, 152px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--t1);
  margin-bottom: 1.5rem;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--sage-2); font-weight: 300; }
.hero h1 sup { font-size: 0.28em; color: var(--sage); vertical-align: super; margin-left: 0.1em; letter-spacing: 0; }

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 0.5rem;
}
.hero-sub { font-size: 17px; color: var(--t2); line-height: 1.7; max-width: 38ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 0.5rem; }

.hero-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 clamp(1.5rem, 4vw, 4rem) 1.75rem;
  border-bottom: 1px solid var(--line);
  pointer-events: none;
}
.hero-scroll {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--t3);
}
.hero-scroll-line { width: 40px; height: 1px; background: var(--sage); opacity: 0.6; }

@media (max-width: 900px) {
  .hero { min-height: 92vh; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-bottom { display: none; }
}

/* ─── SECTION HEADERS ─────────────────────────────────────── */

.sec-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.sec-head-single { display: block; max-width: 900px; margin-bottom: clamp(3rem, 6vw, 5rem); }
.sec-head h2 { margin-top: 1.25rem; }
@media (max-width: 800px) { .sec-head { grid-template-columns: 1fr; align-items: start; } }

/* ─── SPLIT (image + text) ────────────────────────────────── */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 78vh;
}
.split-img { position: relative; overflow: hidden; min-height: 60vh; background: #0b1715 center/cover no-repeat; }
.split-img video, .split-img img { width: 100%; height: 100%; object-fit: contain; position: absolute; inset: 0; }
.split-img::after {
  content: "";
  position: absolute; inset: 0;
  background: none;
  pointer-events: none;
}
.split-body {
  padding: clamp(4rem, 7vw, 4rem) clamp(2rem, 5vw, 6rem);
  display: flex; flex-direction: column; gap: 1.75rem;
  justify-content: center;
  background: var(--bg);
}
.split-body.bg-2 { background: var(--bg-2); }
.split-body h2 { color: var(--t1); }
.split.flip .split-img { order: 2; }
.split.flip .split-img::after { background: none; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split.flip .split-img { order: 0; }
}

/* ─── CENTERED TYPOGRAPHIC SECTION ────────────────────────── */

.statement {
  text-align: center;
  padding: clamp(5rem, 14vw, 5rem) clamp(1.5rem, 4vw, 4rem);
  position: relative;
  overflow: hidden;
}
.statement::before {
  content: "";
  position: absolute;
  width: 70vw; height: 70vw; max-width: 900px; max-height: 900px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--sage-glow), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.statement-inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; }
.statement h2 { margin: 1.5rem 0 2rem; }
.statement p { font-size: 17px; color: var(--t2); max-width: 60ch; margin: 0 auto; line-height: 1.85; }

/* ─── BULLET LIST (key points) ────────────────────────────── */

.k-list {
  display: flex;
  flex-direction: column;
}
.k-list > * + * { border-top: 1px solid var(--line); }
.k-item {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 0;
}
.k-num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--sage);
  letter-spacing: 0.1em;
}
.k-text { font-family: var(--f-display); font-size: clamp(22px, 2.4vw, 30px); font-weight: 300; color: var(--t1); line-height: 1.2; letter-spacing: -0.01em; }
.k-text em { font-style: italic; color: var(--sage-2); }
.k-meta { font-size: 11px; color: var(--t3); letter-spacing: 0.18em; text-transform: uppercase; }

/* ─── TICKER ──────────────────────────────────────────────── */

.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
  overflow: hidden;
  background: var(--bg);
}
.ticker-track {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: ticker 60s linear infinite;
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--t2);
  letter-spacing: 0.005em;
  width: max-content;
}
.ticker-track em { font-style: italic; color: var(--sage); }
.ticker-track .diamond { color: var(--sage); margin-left: 4rem; font-size: 14px; vertical-align: middle; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── METRIC ROW ──────────────────────────────────────────── */

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.metric {
  padding: 2.5rem clamp(1rem, 2vw, 2rem);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.metric:last-child { border-right: 0; }
.metric-n {
  font-family: var(--f-display);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 300;
  color: var(--t1);
  line-height: 1;
  letter-spacing: -0.02em;
}
.metric-n em { font-style: italic; color: var(--sage-2); }
.metric-n .sm { font-size: 0.5em; color: var(--sage); }
.metric-l { font-size: 11px; color: var(--t3); letter-spacing: 0.22em; text-transform: uppercase; margin-top: 0.5rem; }

@media (max-width: 800px) {
  .metric-row { grid-template-columns: repeat(2, 1fr); }
  .metric { border-bottom: 1px solid var(--line); }
  .metric:nth-child(odd) { border-right: 1px solid var(--line); }
  .metric:nth-child(even) { border-right: 0; }
  .metric:nth-last-child(-n+2) { border-bottom: 0; }
}

/* ─── BIOSYNC PANEL (data UI) ─────────────────────────────── */

.biosync {
  border: 1px solid var(--line-2);
  background: linear-gradient(180deg, rgba(127,148,124,0.04), transparent);
  padding: clamp(2rem, 4vw, 3rem);
}
.biosync-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 1.5rem; border-bottom: 1px solid var(--line);
  margin-bottom: 2rem;
}
.biosync-live {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--sage);
}
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 0 0 var(--sage); animation: livepulse 2s ease-in-out infinite; }
@keyframes livepulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--sage-glow); }
  50% { box-shadow: 0 0 0 8px transparent; }
}
.biosync-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.biosync-cell {
  background: var(--bg);
  padding: 1.5rem 1.25rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.bsc-label { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--t3); }
.bsc-value { font-family: var(--f-display); font-size: 36px; font-weight: 300; color: var(--t1); line-height: 1; letter-spacing: -0.01em; }
.bsc-value .unit { font-size: 12px; color: var(--t3); margin-left: 0.25rem; letter-spacing: 0.05em; }
.bsc-bar { height: 2px; background: var(--line); margin-top: 0.5rem; overflow: hidden; }
.bsc-bar i { display: block; height: 100%; background: var(--sage); }
.bsc-meta { font-size: 10px; color: var(--sage); letter-spacing: 0.1em; }

@media (max-width: 700px) {
  .biosync-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── SPECIALIST PORTRAITS ────────────────────────────────── */

.specialists {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
}
.specialist { display: flex; flex-direction: column; gap: 1rem; }
.specialist-photo {
  aspect-ratio: 3/4;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.specialist-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.specialist:hover .specialist-photo img { transform: scale(1.04); }
.specialist-photo .pl {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--bg-2), var(--bg));
  color: var(--t3); font-family: var(--f-display); font-size: 72px; font-weight: 300; opacity: 0.3;
}
.specialist-name { font-family: var(--f-display); font-size: 22px; font-weight: 400; color: var(--t1); letter-spacing: -0.005em; line-height: 1.1; }
.specialist-spec { font-size: 11px; color: var(--sage); letter-spacing: 0.22em; text-transform: uppercase; }

@media (max-width: 1000px) { .specialists { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .specialists { grid-template-columns: repeat(2, 1fr); } }

/* ─── TIER CARDS ──────────────────────────────────────────── */

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
  margin-top: clamp(3rem, 5vw, 5rem);
}
.tier {
  border: 1px solid var(--line);
  padding: 2.5rem 2rem 2rem;
  display: flex; flex-direction: column; gap: 1.5rem;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
}
.tier::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--line);
  transition: background 0.5s var(--ease-out);
}
.tier:hover { border-color: var(--line-3); transform: translateY(-4px); }
.tier:hover::before { background: var(--sage); }
.tier-mark { font-family: var(--f-mono); font-size: 10px; color: var(--sage); letter-spacing: 0.2em; }
.tier-name { font-family: var(--f-display); font-size: clamp(40px, 4vw, 56px); font-weight: 300; color: var(--t1); letter-spacing: -0.015em; line-height: 1; }
.tier-name em { font-style: italic; color: var(--sage-2); }
.tier-tag { font-size: 10.5px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--sage); }
.tier-desc { font-size: 14.5px; color: var(--t2); line-height: 1.75; }
.tier ul { list-style: none; padding: 0; margin-top: 0.5rem; display: flex; flex-direction: column; gap: 0.65rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.tier ul li { font-size: 13px; color: var(--t2); padding-left: 1.25rem; position: relative; }
.tier ul li::before { content: ""; position: absolute; left: 0; top: 9px; width: 4px; height: 4px; border-radius: 50%; background: var(--sage); }
.tier .btn { margin-top: auto; justify-content: center; }

.tier.featured { background: var(--bg-3); border-color: var(--line-2); }
.tier.featured::before { background: var(--sage); }
.tier-flag { position: absolute; top: 1.25rem; right: 1.25rem; font-size: 9.5px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }

@media (max-width: 900px) { .tiers { grid-template-columns: 1fr; } }

/* ─── FULL BLEED IMAGE QUOTE ─────────────────────────────── */

.bleed-quote {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 4vw, 4rem);
}
.bleed-quote { background: #0a141a center/cover no-repeat; }
.bleed-quote video, .bleed-quote img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.bleed-quote::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,18,24,0.4), rgba(7,18,24,0.85));
  z-index: 1;
}
.bleed-quote .bq-inner {
  position: relative; z-index: 2;
  max-width: 1100px;
}
.bleed-quote h2 {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 96px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--t1);
}
.bleed-quote h2 em { font-style: italic; color: var(--sage-2); }
.bleed-quote .bq-attrib { font-size: 11px; color: var(--sage); letter-spacing: 0.3em; text-transform: uppercase; margin-top: 2rem; }

/* ─── FINAL CTA ───────────────────────────────────────────── */

.final-cta {
  text-align: center;
  padding: clamp(7rem, 13vw, 6rem) clamp(1.5rem, 4vw, 4rem);
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.final-cta::before {
  content: "";
  position: absolute;
  width: 1200px; height: 1200px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--sage-glow), transparent 60%);
  z-index: 0;
}
.final-cta-inner { position: relative; z-index: 1; max-width: 1000px; margin: 0 auto; }
.final-cta h2 { margin: 1.5rem 0 1.75rem; }
.final-cta .cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; }

/* ─── HOW IT WORKS — cinematic full-bleed ─────────────────── */

.hiw {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 4vw, 4rem);
}

/* Background */
.hiw-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hiw-bg video, .hiw-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* Dual-layer veil: dark left-fade + overall dark wash — matches image */
.hiw-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right,  rgba(7,18,24,0.78) 0%, rgba(7,18,24,0.55) 45%, rgba(7,18,24,0.72) 100%),
    linear-gradient(to bottom, rgba(7,18,24,0.25) 0%, rgba(7,18,24,0.15) 50%, rgba(7,18,24,0.55) 100%);
}

/* Inner two-column grid */
.hiw-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
}

/* Left — headline */
.hiw-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.hiw-headline {
  font-size: clamp(48px, 7vw, 112px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--t1);
}
.hiw-headline em {
  font-style: italic;
  color: var(--sage-2);
}

/* Right — content panel */
.hiw-right {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}
.hiw-desc {
  font-size: 15.5px;
  color: var(--t2);
  line-height: 1.85;
  max-width: 52ch;
}

/* Steps */
.hiw-steps {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(217,212,203,0.12);
}
.hiw-step {
  display: grid;
  grid-template-columns: 2.4rem 1.5rem 1fr;
  gap: 0 1rem;
  align-items: center;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(217,212,203,0.12);
  transition: border-color 0.3s var(--ease-out);
}
.hiw-step:hover { border-color: rgba(217,212,203,0.22); }

.hiw-n {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--sage);
  flex-shrink: 0;
}
.hiw-rule {
  display: block;
  width: 16px;
  height: 1px;
  background: var(--line-3);
  flex-shrink: 0;
}
.hiw-label {
  font-family: var(--f-display);
  font-size: clamp(18px, 1.9vw, 26px);
  font-weight: 300;
  color: var(--t1);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.hiw-label em {
  font-style: italic;
  color: var(--sage-2);
}

/* CTA */
.hiw-cta {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .hiw-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hiw { min-height: auto; padding: clamp(5rem, 10vw, 7rem) clamp(1.5rem, 4vw, 4rem); }
}
@media (max-width: 500px) {
  .hiw-headline { font-size: clamp(42px, 11vw, 64px); }
}

/* ─── FOOTER ──────────────────────────────────────────────── */

.foot {
  background: var(--ink);
  padding: clamp(5rem, 8vw, 8rem) clamp(1.5rem, 4vw, 4rem) 2rem;
  border-top: 1px solid var(--line);
}
.foot-grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--line);
}
.foot-brand-name { font-family: var(--f-display); font-size: 32px; font-weight: 300; color: var(--t1); letter-spacing: -0.01em; }
.foot-brand-name strong { font-weight: 500; }
.foot-brand-name .tm { font-size: 12px; color: var(--sage); vertical-align: super; }
.foot-tagline { font-size: 14px; color: var(--t2); line-height: 1.75; margin-top: 1.25rem; max-width: 40ch; }
.foot-col-title { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--sage); margin-bottom: 1.5rem; }
.foot-col { display: flex; flex-direction: column; gap: 0.65rem; }
.foot-col a { font-size: 14px; color: var(--t2); transition: color 0.3s; }
.foot-col a:hover { color: var(--t1); }
.foot-bottom {
  max-width: 1480px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem;
  font-size: 11.5px; color: var(--t3); letter-spacing: 0.05em;
  flex-wrap: wrap; gap: 1rem;
}
.foot-legal { display: flex; gap: 2rem; }
.foot-legal a { color: var(--t3); transition: color 0.3s; }
.foot-legal a:hover { color: var(--t1); }

@media (max-width: 800px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}

/* ─── UTILITIES ───────────────────────────────────────────── */

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.js .reveal.in { opacity: 1; transform: none; }

.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; } .mt-4 { margin-top: 4rem; }
.mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; } .mb-3 { margin-bottom: 3rem; }
.flex { display: flex; } .flex-col { flex-direction: column; }
.gap-1 { gap: 1rem; } .gap-2 { gap: 2rem; } .gap-3 { gap: 3rem; }
.wrap-flex { flex-wrap: wrap; }

/* ─── INTRO BAND  ─────────────────────────────────────────── */
.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.intro-band-col {
  padding: clamp(2.5rem, 4vw, 4rem) clamp(1.5rem, 2.5vw, 2.5rem);
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 0.85rem;
}
.intro-band-col:last-child { border-right: 0; }
.intro-band-label { font-size: 10.5px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--sage); }
.intro-band-title { font-family: var(--f-display); font-size: 26px; font-weight: 300; color: var(--t1); letter-spacing: -0.01em; line-height: 1.15; }
.intro-band-body { font-size: 14.5px; color: var(--t2); line-height: 1.75; }
@media (max-width: 900px) {
  .intro-band { grid-template-columns: 1fr; }
  .intro-band-col { border-right: 0; border-bottom: 1px solid var(--line); }
  .intro-band-col:last-child { border-bottom: 0; }
}

/* ─── CARD GRID (generic feature/pillar cards) ────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.feature-card {
  background: var(--bg);
  padding: clamp(2rem, 3.5vw, 3.5rem) clamp(1.5rem, 2.5vw, 2.5rem);
  display: flex; flex-direction: column; gap: 1rem;
  transition: background 0.5s var(--ease-out);
}
.feature-card:hover { background: var(--bg-2); }
.feature-num { font-family: var(--f-mono); font-size: 11px; color: var(--sage); letter-spacing: 0.2em; }
.feature-title { font-family: var(--f-display); font-size: clamp(22px, 2.2vw, 30px); font-weight: 300; color: var(--t1); letter-spacing: -0.005em; line-height: 1.2; }
.feature-title em { font-style: italic; color: var(--sage-2); }
.feature-body { font-size: 14.5px; color: var(--t2); line-height: 1.75; }
@media (max-width: 900px) { .card-grid, .card-grid.cols-4 { grid-template-columns: 1fr; } }
@media (min-width: 600px) and (max-width: 900px) { .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }

/* ─── PAGE HEADER (non-home) ─────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 10rem clamp(1.5rem, 4vw, 4rem) clamp(4rem, 8vw, 8rem);
  overflow: hidden;
}
.page-hero .hero-media { position: absolute; inset: 0; z-index: 0; }
.page-hero .hero-veil { z-index: 1; }
.page-hero-inner {
  position: relative; z-index: 2; max-width: 1480px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: end;
}
.page-hero h1 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(48px, 6.4vw, 112px);
  line-height: 1;
  letter-spacing: -0.022em;
  color: var(--t1);
  margin-top: 1.5rem;
  text-wrap: balance;
}
.page-hero h1 em { font-style: italic; color: var(--sage-2); }
@media (max-width: 900px) { .page-hero-inner { grid-template-columns: 1fr; } }

/* ─── FORM ───────────────────────────────────────────────── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-field label { font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sage); }
.form-field input, .form-field select, .form-field textarea {
  background: transparent;
  border: 0; border-bottom: 1px solid var(--line-2);
  padding: 0.85rem 0;
  font-family: var(--f-body); font-size: 15px; color: var(--t1);
  width: 100%;
  transition: border-color 0.3s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-bottom-color: var(--sage); }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--t3); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field select { appearance: none; -webkit-appearance: none; color-scheme: dark; padding-right: 1.75rem; background-color: transparent; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%237F947C' d='M2 4l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right center; background-size: 11px; cursor: pointer; }
.form-field select option { background-color: #0B1715; color: #D9D4CB; }
.form-field select option:checked, .form-field select option:hover { background-color: #0F1C1A; color: #fff; }
.form-field select option[disabled] { color: #6B7570; }
@media (max-width: 700px) { .form-row { grid-template-columns: 1fr; } }

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 1rem;
  padding: 1.85rem 0; cursor: pointer;
  font-family: var(--f-display); font-size: clamp(20px, 2vw, 28px); font-weight: 300; color: var(--t1); letter-spacing: -0.005em;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--sage-2); }
.faq-icon {
  width: 26px; height: 26px; position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--sage);
}
.faq-icon::before { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%); transition: transform 0.3s; }
.faq-item.open .faq-icon::after { transform: translateX(-50%) scaleY(0); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease-out), padding 0.5s;
  font-size: 15px; color: var(--t2); line-height: 1.85;
  padding: 0 0 0 0;
  max-width: 80ch;
}
.faq-item.open .faq-a { max-height: 600px; padding: 0 0 1.85rem 0; }

/* ─── CONTACT BLOCKS ──────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
}
.contact-cards { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card {
  padding: 2rem;
  border: 1px solid var(--line);
  background: var(--bg-2);
  display: flex; flex-direction: column; gap: 0.6rem;
}
.contact-card-city { font-family: var(--f-display); font-size: 26px; font-weight: 300; color: var(--t1); letter-spacing: -0.01em; }
.contact-card-row { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 14px; color: var(--t2); }
.contact-card-row svg { width: 14px; height: 14px; color: var(--sage); flex-shrink: 0; margin-top: 4px; }
.contact-card-row a { color: var(--t2); border-bottom: 1px solid transparent; }
.contact-card-row a:hover { color: var(--t1); border-color: var(--sage); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ─── LOCATION CARDS ──────────────────────────────────────── */
.loc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.loc-card {
  background: var(--bg);
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: background 0.5s var(--ease-out);
}
.loc-card-img { position: absolute; inset: 0; z-index: 0; }
.loc-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.loc-card:hover .loc-card-img img { transform: scale(1.04); }
.loc-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(7,18,24,0.95) 0%, rgba(7,18,24,0.3) 60%, rgba(7,18,24,0) 100%);
}
.loc-card-info { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 0.4rem; }
.loc-card-tag { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--sage); }
.loc-card-name { font-family: var(--f-display); font-size: clamp(28px, 2.4vw, 36px); font-weight: 300; color: var(--t1); letter-spacing: -0.01em; line-height: 1.1; }
.loc-card-country { font-size: 12px; color: var(--t2); letter-spacing: 0.15em; text-transform: uppercase; }
.loc-card-status { font-size: 11px; color: var(--sage); margin-top: 0.5rem; }
.loc-card-status.soon { color: var(--gold); }
@media (max-width: 900px) { .loc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .loc-grid { grid-template-columns: 1fr; } }
.loc-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .loc-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .loc-grid.cols-4 { grid-template-columns: 1fr; } }

/* ─── PROCESS STEPS (vertical) ───────────────────────────── */
.process-list {
  display: flex; flex-direction: column;
}
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr 1.5fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.process-step:last-child { border-bottom: 1px solid var(--line); }
.process-n { font-family: var(--f-mono); font-size: 11px; color: var(--sage); letter-spacing: 0.2em; padding-top: 0.5rem; }
.process-name { font-family: var(--f-display); font-size: clamp(26px, 2.6vw, 36px); font-weight: 300; color: var(--t1); letter-spacing: -0.01em; line-height: 1.1; }
.process-name em { font-style: italic; color: var(--sage-2); }
.process-body { font-size: 15px; color: var(--t2); line-height: 1.8; }
@media (max-width: 800px) {
  .process-step { grid-template-columns: 1fr; gap: 0.75rem; }
  .process-name { font-size: 24px; }
}

/* ─── FEATURE SHOWCASE GRID ──────────────────────────────── */
.feat-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.feat-showcase.cols-3 { grid-template-columns: repeat(3, 1fr); }
.feat-showcase.cols-2 { grid-template-columns: repeat(2, 1fr); }
.feat-tile {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 1.75rem;
  transition: background 0.5s var(--ease-out);
  text-decoration: none;
  color: inherit;
}
.feat-tile-media {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  transition: transform 1.4s var(--ease-out), filter 0.6s;
  filter: brightness(0.55) saturate(0.85);
}
.feat-tile:hover .feat-tile-media { transform: scale(1.04); filter: brightness(0.7) saturate(1); }
.feat-tile::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(7,18,24,0.35) 0%, rgba(7,18,24,0.55) 50%, rgba(7,18,24,0.92) 100%);
}
.feat-tile-top, .feat-tile-bot { position: relative; z-index: 2; }
.feat-tile-num { font-family: var(--f-mono); font-size: 10.5px; color: var(--sage); letter-spacing: 0.22em; }
.feat-tile-tag { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--sage); display: block; margin-bottom: 0.6rem; }
.feat-tile-title {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(26px, 2.4vw, 36px);
  color: var(--t1); letter-spacing: -0.01em; line-height: 1.05;
  min-height: 2.1em;
  display: flex;
  align-items: flex-end;
}
.feat-tile-title em { font-style: italic; color: var(--sage-2); }
.feat-tile-title sup { font-size: 0.32em; color: var(--sage); vertical-align: super; }
.feat-tile-sub {
  font-size: 13px; color: var(--t2); line-height: 1.6;
  margin-top: 0.75rem; max-width: 28ch;
  min-height: 3.2em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.feat-tile-arrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  margin-top: 1rem;
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sage);
  transition: gap 0.3s var(--ease-out);
}
.feat-tile:hover .feat-tile-arrow { gap: 1rem; color: var(--sage-2); }
.feat-tile.tall { aspect-ratio: 4/6; }
.feat-tile.wide { grid-column: span 2; aspect-ratio: 8/5; }

@media (max-width: 1100px) {
  .feat-showcase { grid-template-columns: repeat(2, 1fr); }
  .feat-tile.wide { grid-column: span 2; }
}
@media (max-width: 600px) {
  .feat-showcase { grid-template-columns: 1fr; }
  .feat-tile.wide, .feat-tile.tall { grid-column: span 1; aspect-ratio: 4/5; }
}
.prog-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.prog { background: var(--bg); padding: 2rem 1.5rem; display: flex; flex-direction: column; gap: 0.85rem; transition: background 0.5s; }
.prog:hover { background: var(--bg-2); }
.prog-dur { font-family: var(--f-display); font-size: 48px; font-weight: 300; color: var(--t1); letter-spacing: -0.02em; line-height: 1; }
.prog-dur span { font-size: 14px; color: var(--t3); font-family: var(--f-body); letter-spacing: 0.05em; margin-left: 0.4rem; }
.prog-name { font-size: 13px; color: var(--sage); letter-spacing: 0.22em; text-transform: uppercase; }
.prog-desc { font-size: 13.5px; color: var(--t2); line-height: 1.7; }
.prog.gold .prog-dur, .prog.gold .prog-name { color: var(--gold); }
@media (max-width: 1100px) { .prog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .prog-grid { grid-template-columns: 1fr; } }

/* ─── WEIGHT MANAGEMENT FEATURE BAND ─────────────────────── */
.wm-feature {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 80vh;
  overflow: hidden;
}
.wm-feature-media { position: relative; overflow: hidden; background: var(--bg-2); }
.wm-feature-media img, .wm-feature-media video {
  position: absolute; inset: 0; width: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.wm-feature:hover .wm-feature-media img, .wm-feature:hover .wm-feature-media video { transform: scale(1.03); }
.wm-feature-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(7,18,24,0.95) 100%);
}
.wm-feature-body {
  background: var(--bg-2);
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(4rem, 7vw, 7rem) clamp(2rem, 5vw, 5rem);
  gap: 1.5rem; position: relative;
}
.wm-feature-num { font-family: var(--f-mono); font-size: 11px; color: var(--sage); letter-spacing: 0.22em; }
.wm-feature h2 {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(40px, 5.5vw, 88px);
  line-height: 0.98; letter-spacing: -0.022em; color: var(--t1); text-wrap: balance;
}
.wm-feature h2 em { font-style: italic; color: var(--sage-2); }
.wm-feature-rule { height: 1px; background: var(--sage); width: 56px; opacity: 0.7; margin: 0.25rem 0; }
.wm-feature-points {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin-top: 0.5rem; padding-top: 1.75rem; border-top: 1px solid var(--line);
}
.wm-feature-points > div { display: flex; flex-direction: column; gap: 0.4rem; }
.wm-feature-points .pt-l { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sage); }
.wm-feature-points .pt-v {
  font-family: var(--f-display); font-size: 22px; font-weight: 300;
  color: var(--t1); letter-spacing: -0.005em; line-height: 1.15;
}
.wm-feature-points .pt-v em { font-style: italic; color: var(--sage-2); }
.wm-feature-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1rem; }

/* ─── FOUNDATION HEADER (text left, video right) ─────────── */
.foundation-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 6rem);
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.foundation-header-text {
  display: flex;
  flex-direction: column;
}
.foundation-header-video {
  position: relative;
}
.foundation-vid-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg);
}
.foundation-vid-wrap video, .foundation-vid-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 2.5s var(--ease-out);
}
.foundation-vid-wrap:hover video { transform: scale(1.02); }
.foundation-vid-wrap::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,18,24,0.15) 0%, rgba(7,18,24,0) 30%, rgba(7,18,24,0) 70%, rgba(7,18,24,0.5) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(7,18,24,0.35) 100%);
  pointer-events: none;
}
.foundation-vid-wrap .foundation-band-tag {
  left: clamp(1rem, 2.5vw, 2rem);
  bottom: clamp(1rem, 2.5vw, 2rem);
}
.foundation-vid-wrap .foundation-band-right {
  right: clamp(1rem, 2.5vw, 2rem);
  bottom: clamp(1rem, 2.5vw, 2rem);
}
@media (max-width: 900px) {
  .foundation-header { grid-template-columns: 1fr; }
  .foundation-vid-wrap { aspect-ratio: 16/9; }
  .foundation-vid-wrap .foundation-band-right { display: none; }
}

.foundation-band {
  position: relative;
  overflow: hidden;
  aspect-ratio: 21/9;
  margin: clamp(2rem, 4vw, 4rem) 0 clamp(3rem, 5vw, 5rem);
  background: var(--bg) center/cover no-repeat;
}
.foundation-band video, .foundation-band img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 2.5s var(--ease-out);
}
.foundation-band:hover video, .foundation-band:hover img { transform: scale(1.02); }
.foundation-band::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,18,24,0.2) 0%, rgba(7,18,24,0) 30%, rgba(7,18,24,0) 70%, rgba(7,18,24,0.55) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(7,18,24,0.4) 100%);
  pointer-events: none;
}
.foundation-band-tag {
  position: absolute;
  z-index: 2;
  left: clamp(1.25rem, 3vw, 3rem);
  bottom: clamp(1.25rem, 3vw, 3rem);
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--f-body);
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--t1);
}
.foundation-band-tag::before {
  content: ""; width: 28px; height: 1px; background: var(--sage); opacity: 0.8;
}
.foundation-band-right {
  position: absolute;
  z-index: 2;
  right: clamp(1.25rem, 3vw, 3rem);
  bottom: clamp(1.25rem, 3vw, 3rem);
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(16px, 1.6vw, 22px); color: var(--t1); font-weight: 300;
  letter-spacing: -0.005em;
}
@media (max-width: 700px) {
  .foundation-band { aspect-ratio: 4/5; }
  .foundation-band-right { display: none; }
}

/* ─── ELITE MEMBERSHIP PAGE ──────────────────────────────── */
.elite-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.75rem, 3.5vw, 3.5rem); }
.elite-cols.three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 820px) { .elite-cols, .elite-cols.three { grid-template-columns: 1fr; } }
.elite-block-title { font-family: var(--f-display); font-size: clamp(19px, 1.9vw, 25px); font-weight: 300; color: var(--t1); letter-spacing: -0.005em; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.elite-block-title em { font-style: italic; color: var(--gold); }
.elite-list { list-style: none; padding: 0; margin: 1.1rem 0 0; display: flex; flex-direction: column; gap: 0.6rem; }
.elite-list li { font-size: 13.5px; color: var(--t2); padding-left: 1.15rem; position: relative; line-height: 1.55; }
.elite-list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); opacity: 0.85; }

/* ═══════════════════════════════════════════════════════════════
   ELITE — calm editorial layout (dark theme)
═══════════════════════════════════════════════════════════════ */
.e-hero { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem,5vw,5rem); align-items: center; max-width: 1480px; margin: 0 auto; padding: clamp(9rem,13vw,12rem) clamp(1.5rem,4vw,4rem) clamp(4rem,7vw,7rem); }
.e-hero-img { height: auto; overflow: hidden; border-radius: 4px; }
.e-hero-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .e-hero { grid-template-columns: 1fr; } .e-hero-img { height: 50vh; order: -1; } }

.e-band { background: linear-gradient(180deg, #26331E, #1B2716); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.e-band-grid { max-width: 1480px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); }
.e-band-col { padding: clamp(2.5rem,4vw,3.75rem) clamp(1.5rem,2.5vw,2.5rem); border-right: 1px solid rgba(217,212,203,0.12); }
.e-band-col:last-child { border-right: 0; }
.e-band-label { font-family: var(--f-body); font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.9rem; }
.e-band-text { font-size: 13.5px; color: var(--t2); line-height: 1.65; }
@media (max-width: 820px) { .e-band-grid { grid-template-columns: repeat(2,1fr); } .e-band-col:nth-child(2) { border-right: 0; } .e-band-col:nth-child(1),.e-band-col:nth-child(2) { border-bottom: 1px solid rgba(217,212,203,0.12); } }
@media (max-width: 480px) { .e-band-grid { grid-template-columns: 1fr; } .e-band-col { border-right: 0; border-bottom: 1px solid rgba(217,212,203,0.12); } }

.e-stat-row { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(2.5rem,6vw,6rem); align-items: center; }
@media (max-width: 820px) { .e-stat-row { grid-template-columns: 1fr; } }
.e-stats { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.75rem,3vw,2.75rem); }
.e-stat-n { font-family: var(--f-display); font-weight: 300; font-size: clamp(48px,5.2vw,76px); line-height: 0.95; color: var(--t1); letter-spacing: -0.02em; }
.e-stat-n em { font-style: italic; color: var(--gold); }
.e-stat-l { font-family: var(--f-body); font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--sage); margin-top: 0.7rem; line-height: 1.5; }

/* Header right-side secondary links (About / Contact) */
.nav-r { display: flex; align-items: center; gap: 1.75rem; }
.nav-r-link { font-size: 12px; letter-spacing: 0.12em; }
@media (max-width: 1050px) { .nav-r-link { display: none; } }

/* ── Two-row centered header ── */
.nav { flex-direction: column; align-items: stretch; padding: 0; gap: 0; }
.nav-main { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; padding: 1.1rem clamp(1.5rem,4vw,4rem); }
.nav.solid .nav-main { padding: 0.75rem clamp(1.5rem,4vw,4rem); }
.nav-main .nav-brand { justify-self: start; }
.nav-main .nav-links { justify-content: center; }
.nav-main .nav-r { justify-self: end; }
.nav-sub { display: flex; justify-content: center; gap: 2.75rem; padding: 0.55rem 1rem; border-top: 1px solid var(--line); }
.nav-sub-link { font-family: var(--f-body); font-size: 10.5px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--t3); transition: color 0.3s var(--ease-out); }
.nav-sub-link:hover, .nav-sub-link.active { color: var(--sage); }
.nav-burger { justify-self: end; }
@media (max-width: 1100px) {
  .nav-main { display: flex; justify-content: space-between; align-items: center; }
  .nav-main .nav-r { display: none; }
  .nav-sub { display: none; }
}


/* ═══════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE — index.php
   Breakpoints: 768px · 480px
═══════════════════════════════════════════════════════════════ */

/* ════════════════════════════════
   ≤ 768px  (tablet / large phone)
════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Global ── */
  body { overflow-x: hidden; }

  .wrap,
  .wrap-tight {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  /* ── Hero ── */
  .hero {
    min-height: 92vh;
    padding-bottom: 5rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero h1 {
    font-size: clamp(42px, 11vw, 64px);
  }

  .hero-bottom { display: none; }

  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }

  .hero-actions .btn,
  .hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  /* ── Section headers ── */
  .sec-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.25rem;
  }

  .h2 { font-size: clamp(30px, 8vw, 44px); }
  .h3 { font-size: clamp(24px, 6vw, 34px); }

  /* ── Clarity grid ── */
  .clarity-grid        { grid-template-columns: 1fr; }
  .clarity-problem-row { grid-template-columns: 1fr; }

  /* ── Foundation header ── */
  .foundation-header {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .foundation-vid-wrap {
    width: 100%;
    aspect-ratio: 16/9;
  }

  .foundation-vid-wrap .foundation-band-right { display: none; }

  /* ── Card grid ── */
  .card-grid { grid-template-columns: 1fr; }

  /* ── Split section ── */
  .split          { grid-template-columns: 1fr; }
  .split-img      { min-height: 55vw; max-height: 300px; }
  .split.flip .split-img { order: 0; }

  .split-body {
    padding: 2.5rem 1.25rem;
  }

  /* ── Feature showcase ── */
  .feat-showcase         { grid-template-columns: repeat(2, 1fr); }
  .feat-showcase.cols-3  { grid-template-columns: 1fr; }

  /* ── Weight management ── */
  .wm-feature { grid-template-columns: 1fr; }

  .wm-feature-media {
    min-height: 55vw;
    max-height: 300px;
  }

  .wm-feature-media img,
  .wm-feature-media video {
    position: relative;
    height: 100%;
  }

  .wm-feature-body {
    padding: 2.5rem 1.25rem;
  }

  .wm-feature-cta {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }

  .wm-feature-cta .btn,
  .wm-feature-cta .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .wm-feature-points { grid-template-columns: 1fr 1fr 1fr; }

  /* ── How It Works ── */
  .hiw-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 1.25rem;
  }

  .hiw-headline { font-size: clamp(32px, 8.5vw, 52px); }

  /* ── Tiers ── */
  .tiers { grid-template-columns: 1fr; }

  /* ── Metric row ── */
  .metric-row { grid-template-columns: repeat(2, 1fr); }
  .metric { border-bottom: 1px solid var(--line); }
  .metric:nth-child(odd)  { border-right: 1px solid var(--line); }
  .metric:nth-child(even) { border-right: 0; }
  .metric:nth-last-child(-n+2) { border-bottom: 0; }

  /* ── Specialists ── */
  .specialists { grid-template-columns: repeat(2, 1fr); }

  /* ── Bleed quote ── */
  .bq-inner h2 {
    font-size: clamp(26px, 7vw, 40px);
    text-align: center;
  }

  /* ── Final CTA ── */
  .final-cta-inner { padding: 0 1.25rem; }

  .cta-actions {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }

  .cta-actions .btn,
  .cta-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  /* ── FAQ ── */
  .faq-q { font-size: clamp(17px, 4.5vw, 22px); }

  /* ── Elite band ── */
  .e-band-grid { grid-template-columns: repeat(2, 1fr); }
  .e-band-col:nth-child(2) { border-right: 0; }
  .e-band-col:nth-child(1),
  .e-band-col:nth-child(2) { border-bottom: 1px solid rgba(217,212,203,0.12); }

  /* ── Location grid ── */
  .loc-grid              { grid-template-columns: repeat(2, 1fr); }
  .loc-grid.cols-4       { grid-template-columns: repeat(2, 1fr); }

  /* ── Contact grid ── */
  .contact-grid { grid-template-columns: 1fr; }

  /* ── Process steps ── */
  .process-step { grid-template-columns: 1fr; gap: 0.75rem; }

  /* ── Elite hero ── */
  .e-hero { grid-template-columns: 1fr; }
  .e-hero-img { height: 50vh; order: -1; }

  /* ── Elite stat row ── */
  .e-stat-row { grid-template-columns: 1fr; }

  /* ── Biosync grid ── */
  .biosync-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── Prog grid ── */
  .prog-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── Nav sub ── */
  .nav-sub  { display: none; }
  .nav-main .nav-r { display: none; }
}


/* ════════════════════════════════
   ≤ 480px  (small phone)
════════════════════════════════ */
@media (max-width: 480px) {

  /* Hero */
  .hero h1    { font-size: clamp(36px, 10vw, 48px); }
  .hero-sub   { font-size: 15px !important; }

  /* Feature showcase: single column */
  .feat-showcase { grid-template-columns: 1fr; }
  .feat-tile.wide,
  .feat-tile.tall { grid-column: span 1; aspect-ratio: 4/5; }

  /* Clarity card padding */
  .clarity-card { padding: 1.5rem 1.25rem; }

  /* Tier images */
  .tier img { height: 200px; width: 100%; object-fit: cover; }

  /* Ticker */
  .ticker-track { font-size: 20px; gap: 2.5rem; }

  /* Typography */
  .h2   { font-size: clamp(26px, 8.5vw, 34px); }
  .body-l { font-size: 15px; }

  /* HIW steps */
  .hiw-rule { display: none; }

  /* WM points */
  .wm-feature-points { grid-template-columns: 1fr; gap: 0.85rem; }

  /* Elite band: single column */
  .e-band-grid { grid-template-columns: 1fr; }
  .e-band-col  { border-right: 0; border-bottom: 1px solid rgba(217,212,203,0.12); }

  /* Specialists: single column */
  .specialists { grid-template-columns: 1fr; }

  /* Location grid: single column */
  .loc-grid,
  .loc-grid.cols-4 { grid-template-columns: 1fr; }

  /* Prog grid: single column */
  .prog-grid { grid-template-columns: 1fr; }

  /* Stats */
  .e-stats { grid-template-columns: 1fr; }

  /* Bleed quote */
  .bq-inner { padding: 3rem 1.25rem; }

  /* Biosync */
  .biosync-grid { grid-template-columns: 1fr; }

  /* Kicker / eyebrow */
  .kicker,
  .eyebrow { font-size: 10px; letter-spacing: 0.14em; }
}
