/* ============================================================
   ICALIBRATE — Shared Stylesheet v3
   Direction: Mediterranean Precision — Neutral Luxury
   Fonts: Noto Serif (display) · Noto Sans (body)
   Palette: Cream · Gold · Charcoal · Ink · Teal · Sage
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Noto+Serif:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&display=swap');

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  /* ─ EXACT ORIGINAL PALETTE ─ */
  --c-cream:      #fdfbf7;   /* primary background */
  --c-gold:       #c5a47e;   /* warm accent — primary highlight */
  --c-gold-lt:    #d4b896;   /* lighter gold for on-dark contexts */
  --c-gold-dim:   rgba(197,164,126,0.18); /* subtle gold tint */
  --c-charcoal:   #323639;   /* body text */
  --c-ink:        #1a1b1c;   /* headings, primary dark */
  --c-teal:       #2b3e4c;   /* featured / dark sections */
  --c-teal-lt:    #3a5263;   /* lighter teal */
  --c-sage:       #b3c7c4;   /* cool accent — sparingly */

  /* ─ DERIVED NEUTRALS ─ */
  --c-light:      #f2f2f2;   /* very light grey */
  --c-mist:       #f0f1ef;   /* alternate section background */
  --c-grey-text:  #7a7a7a;   /* eyebrow / muted text */
  --c-white:      #ffffff;

  /* ─ BORDER TOKENS (gold-based) ─ */
  --c-border:     rgba(197,164,126,0.22);
  --c-border-lt:  rgba(197,164,126,0.12);
  --c-border-dk:  rgba(255,255,255,0.10); /* on dark backgrounds */

  /* ─ TYPOGRAPHY ─ */
  --f-serif: 'Noto Serif', Georgia, 'Times New Roman', serif;
  --f-sans:  'Noto Sans', system-ui, -apple-system, sans-serif;

  /* ─ LAYOUT ─ */
  --max-w:  1120px;
  --nav-h:  76px;
  --gutter: 60px;

  /* ─ ANIMATION ─ */
  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t-fast: 200ms;
  --t-mid:  380ms;
  --t-slow: 640ms;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--c-cream);
  color: var(--c-charcoal);
  font-family: var(--f-sans);
  font-size: 18px;
  line-height: 1.65;
}
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── LAYOUT ──────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container--narrow {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section        { padding: 140px 0; }
.section--md    { padding: 96px 0; }
.section--sm    { padding: 64px 0; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.t-eyebrow {
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-grey-text);
}
.t-eyebrow--gold  { color: var(--c-gold); }
.t-eyebrow--light { color: rgba(253,251,247,0.45); }
.t-eyebrow--sage  { color: var(--c-sage); opacity: 0.75; }

/* Italic accent → gold */
.t-display {
  font-family: var(--f-serif);
  font-size: clamp(48px, 6.5vw, 84px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--c-ink);
}
.t-display em,
.italic-accent { font-style: italic; color: var(--c-gold); }

.t-h1 {
  font-family: var(--f-serif);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-ink);
}
.t-h2 {
  font-family: var(--f-serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--c-ink);
}
.t-h3 {
  font-family: var(--f-serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--c-ink);
}
.t-body    { font-size: 18px; line-height: 1.75; color: var(--c-charcoal); }
.t-body-lg { font-size: 20px; line-height: 1.75; color: var(--c-charcoal); }
.t-caption { font-size: 15px; line-height: 1.55; color: var(--c-charcoal); opacity: 0.6; }

.on-dark        { color: var(--c-cream) !important; }
.on-dark-muted  { color: rgba(253,251,247,0.65) !important; }
.color-gold     { color: var(--c-gold) !important; }

/* Small-caps utility */
.sc {
  font-variant: small-caps;
  font-size: 16px;
  letter-spacing: 0.04em;
}

/* ── DIVIDERS ────────────────────────────────────────────── */
.divider {
  width: 48px;
  height: 1px;
  background: var(--c-gold);
  margin: 28px 0;
  opacity: 0.6;
}
.divider--center { margin: 28px auto; }
.divider--light  { background: rgba(253,251,247,0.3); opacity: 1; }
.divider--teal   { background: var(--c-teal); }

/* Minos-style ornamental hairline divider */
.orn-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 32px 0;
  width: 100%;
  color: var(--c-gold);
}
.orn-divider::before,
.orn-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.3;
}
.orn-divider__gem {
  width: 5px;
  height: 5px;
  border: 1px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.5;
  flex-shrink: 0;
}
.orn-divider--light { color: rgba(253,251,247,0.4); }
.orn-divider--center { margin-left: auto; margin-right: auto; }

/* ── CORNER FRAME ACCENT ─────────────────────────────────── */
/* Adds Minos/CLP-style corner bracket accents to a box */
.frame-box { position: relative; }
.frame-box::before,
.frame-box::after {
  content: '';
  position: absolute;
  pointer-events: none;
  opacity: 0.3;
}
.frame-box::before {
  top: 0; left: 0;
  width: 20px; height: 20px;
  border-top: 1px solid var(--c-gold);
  border-left: 1px solid var(--c-gold);
}
.frame-box::after {
  bottom: 0; right: 0;
  width: 20px; height: 20px;
  border-bottom: 1px solid var(--c-gold);
  border-right: 1px solid var(--c-gold);
}
.frame-box--light::before { border-color: rgba(253,251,247,0.5); }
.frame-box--light::after  { border-color: rgba(253,251,247,0.5); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--t-mid) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--c-ink);
  color: var(--c-cream);
  border: 1px solid var(--c-ink);
}
.btn--primary:hover {
  background: var(--c-teal);
  border-color: var(--c-teal);
}
.btn--gold {
  background: var(--c-gold);
  color: var(--c-cream);
  border: 1px solid var(--c-gold);
}
.btn--gold:hover {
  background: var(--c-gold-lt);
  border-color: var(--c-gold-lt);
}
/* Legacy class kept for existing HTML — maps to teal */
.btn--orange {
  background: var(--c-teal);
  color: var(--c-cream);
  border: 1px solid var(--c-teal);
}
.btn--orange:hover {
  background: var(--c-teal-lt);
  border-color: var(--c-teal-lt);
}
.btn--outline {
  background: transparent;
  color: var(--c-ink);
  border: 1px solid rgba(26,27,28,0.3);
}
.btn--outline:hover {
  background: var(--c-ink);
  color: var(--c-cream);
  border-color: var(--c-ink);
}
.btn--outline-light {
  background: transparent;
  color: var(--c-cream);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-gold {
  background: transparent;
  color: var(--c-gold);
  border: 1px solid rgba(197,164,126,0.5);
}
.btn--outline-gold:hover {
  background: var(--c-gold);
  color: var(--c-cream);
  border-color: var(--c-gold);
}
/* Legacy — kept for existing HTML */
.btn--outline-orange {
  background: transparent;
  color: var(--c-gold);
  border: 1px solid rgba(197,164,126,0.5);
}
.btn--outline-orange:hover {
  background: var(--c-gold);
  color: var(--c-cream);
}
.btn .arrow {
  transition: transform var(--t-fast) var(--ease);
  font-size: 14px;
}
.btn:hover .arrow { transform: translateX(4px); }

/* ── NAVIGATION ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(253,251,247,0.55);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  transition: background var(--t-mid) var(--ease),
              box-shadow var(--t-mid) var(--ease);
}
.nav.is-scrolled {
  background: rgba(253,251,247,0.88);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter) 0 48px;
}
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo img {
  height: 28px;
  width: auto;
  display: block;
}
.nav__logo-text {
  font-family: var(--f-serif);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-ink);
  transition: opacity var(--t-fast);
}
.nav__logo-text:hover { opacity: 0.7; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__link {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--c-charcoal);
  opacity: 0.7;
  transition: opacity var(--t-fast);
  white-space: nowrap;
}
.nav__link:hover, .nav__link.active { opacity: 1; }
.nav__cta { padding: 10px 18px; font-size: 12px !important; white-space: nowrap; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--c-ink);
  transition: all var(--t-fast);
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--c-cream);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu__close {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 22px;
  color: var(--c-charcoal);
  opacity: 0.4;
  cursor: pointer;
  transition: opacity var(--t-fast);
}
.mobile-menu__close:hover { opacity: 0.8; }
.mobile-menu__link {
  font-family: var(--f-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--c-ink);
  transition: color var(--t-fast);
}
.mobile-menu__link:hover { color: var(--c-gold); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
  padding-top: var(--nav-h);
  background: var(--c-cream);
  overflow: hidden;
}
.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px var(--gutter) 80px var(--gutter);
  max-width: 640px;
}
.hero__eyebrow { margin-bottom: 36px; }
.hero__headline {
  font-family: var(--f-serif);
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--c-ink);
  margin-bottom: 32px;
}
.hero__headline em {
  font-style: italic;
  color: var(--c-gold);
}
.hero__sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--c-charcoal);
  opacity: 0.68;
  max-width: 420px;
  margin-bottom: 52px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero__creds {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__cred {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-charcoal);
  opacity: 0.55;
}
.hero__cred-sep {
  width: 1px;
  height: 14px;
  background: rgba(0,0,0,0.18);
}

/* Hero visual panel — teal with texture overlay */
.hero__visual {
  position: relative;
  background: var(--c-teal);
  background-image: url('../images/textures/Tan Shadows 2.jpeg');
  background-size: cover;
  background-position: center;
  background-blend-mode: luminosity;
  overflow: hidden;
  min-height: 100%;
}
.hero__visual::after {
  content: 'i';
  position: absolute;
  font-family: var(--f-serif);
  font-size: 480px;
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.06);
  bottom: -80px;
  right: -40px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.hero__visual-label {
  position: absolute;
  bottom: 40px;
  left: 40px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}

/* Hero stats bar — teal with dark ripples texture */
.hero__stats {
  background: var(--c-teal);
  background-image: url('../images/textures/Dark Ripples.jpg');
  background-size: cover;
  background-blend-mode: soft-light;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.hero__stat {
  padding: 44px 56px;
  border-right: 1px solid var(--c-border-dk);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero__stat:last-child { border-right: none; }
.hero__stat-num {
  font-family: var(--f-serif);
  font-size: 48px;
  font-weight: 400;
  color: var(--c-cream);
  line-height: 1;
}
.hero__stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253,251,247,0.65);
  max-width: 200px;
}

/* ── CREDENTIAL STRIP ────────────────────────────────────── */
.cred-strip {
  background: var(--c-teal);
  padding: 30px 0;
}
.cred-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.cred-strip__item {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.cred-strip__sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.2);
}

/* ── NUMBERS SECTION ─────────────────────────────────────── */
.numbers__header {
  text-align: center;
  margin-bottom: 72px;
}
.numbers__grid {
  display: grid;
  grid-template-columns: 26% 26% 24% 24%;
  border: 1px solid var(--c-border);
  gap: 1px;
  background: var(--c-border);
  overflow: hidden;
}
.numbers__item {
  background: var(--c-cream);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.numbers__num {
  font-family: var(--f-serif);
  font-size: clamp(36px, 3.2vw, 52px);
  font-weight: 400;
  color: var(--c-ink);
  line-height: 1;
  overflow: visible;
}
.numbers__text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-charcoal);
  opacity: 0.65;
}

/* ── METHOD SECTION ──────────────────────────────────────── */
.method {
  background: var(--c-mist);
  background-image: url('../images/textures/Sand Ripples.jpg');
  background-size: cover;
  background-blend-mode: multiply;
}
.method__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.method__visual {
  height: 560px;
  background: var(--c-teal);
  background-image: url('../images/textures/Soft Ocean Stones.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: luminosity;
  position: relative;
  overflow: hidden;
}
.method__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,39,50,0.4), transparent 60%);
}
.method__visual-label {
  position: absolute;
  bottom: 32px;
  left: 36px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  z-index: 1;
}
.method__arc { margin-top: 40px; display: flex; flex-direction: column; }
.method__step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--c-border);
}
.method__step:last-child { border-bottom: none; }
.method__step-num {
  font-family: var(--f-serif);
  font-size: 12px;
  font-weight: 400;
  color: var(--c-gold);
  letter-spacing: 0.1em;
  min-width: 28px;
  padding-top: 3px;
}
.method__step-body h4 {
  font-family: var(--f-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--c-ink);
  margin-bottom: 8px;
}
.method__step-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-charcoal);
  opacity: 0.68;
}

/* ── PROGRAMS SECTION ────────────────────────────────────── */
.programs__header { text-align: center; margin-bottom: 72px; }
.programs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--c-border);
  gap: 1px;
  background: var(--c-border);
}
/* Signature spans full width */
.prog-card--hero { grid-column: 1 / -1; }
/* Inner two-column layout for the hero card */
.prog-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  width: 100%;
}
/* Two-column feature list inside hero card */
.prog-hero__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.prog-card {
  background: var(--c-cream);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  transition: background var(--t-mid) var(--ease);
}
.prog-card:hover { background: var(--c-mist); }

/* Featured card — teal */
.prog-card--featured {
  background: var(--c-teal);
  background-image: url('../images/textures/Dark Ripples.jpg');
  background-size: cover;
  background-blend-mode: soft-light;
}
.prog-card--featured:hover {
  background-color: var(--c-teal-lt);
}

.prog-card__badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  background: var(--c-gold-dim);
  padding: 5px 10px;
  margin-bottom: 32px;
  align-self: flex-start;
}
.prog-card--featured .prog-card__badge {
  color: var(--c-cream);
  background: rgba(255,255,255,0.1);
}
.prog-card__tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 32px;
}
.prog-card--featured .prog-card__tag { color: var(--c-gold-lt); }
.prog-card__name {
  font-family: var(--f-serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--c-ink);
  margin-bottom: 10px;
  line-height: 1.15;
}
.prog-card--featured .prog-card__name { color: var(--c-cream); }
.prog-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-charcoal);
  opacity: 0.65;
  margin-bottom: 40px;
}
.prog-card--featured .prog-card__desc { color: rgba(253,251,247,0.72); opacity: 1; }
.prog-card__price {
  font-family: var(--f-serif);
  font-size: 44px;
  font-weight: 400;
  color: var(--c-ink);
  line-height: 1;
  margin-bottom: 8px;
}
.prog-card--featured .prog-card__price { color: var(--c-cream); }
.prog-card__price-note {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-charcoal);
  opacity: 0.45;
  margin-bottom: 40px;
}
.prog-card--featured .prog-card__price-note { color: var(--c-gold-lt); opacity: 1; }
.prog-card__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 48px;
}
.prog-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--c-charcoal);
  opacity: 0.75;
  font-variant: small-caps;
  letter-spacing: 0.03em;
}
.prog-card--featured .prog-card__feature { color: rgba(253,251,247,0.82); opacity: 1; }
.feat-dash { color: var(--c-gold); flex-shrink: 0; line-height: 1.5; }
.prog-card--featured .feat-dash { color: var(--c-gold-lt); }
.prog-card__cta { margin-top: auto; }

/* ── ADVISORY BOARD ──────────────────────────────────────── */
.board {
  background: var(--c-mist);
  background-image: url('../images/textures/White Shadows 1.jpeg');
  background-size: cover;
  background-blend-mode: multiply;
}
.board__header { text-align: center; margin-bottom: 80px; }
.board__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.board-card { display: flex; flex-direction: column; gap: 20px; }
.board-card__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--c-sage);
  border: 1px solid var(--c-border);
  flex-shrink: 0;
}
.board-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(15%);
}
.board-card__initials {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--c-sage);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--c-teal);
  flex-shrink: 0;
}
.board-card__role {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 6px;
}
.board-card__name {
  font-family: var(--f-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--c-ink);
  margin-bottom: 6px;
  line-height: 1.2;
}
.board-card__title {
  font-size: 12px;
  line-height: 1.55;
  color: var(--c-charcoal);
  opacity: 0.5;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.board-card__bio { font-size: 14px; line-height: 1.7; color: var(--c-charcoal); opacity: 0.7; }

/* ── TESTIMONIALS — teal with texture ───────────────────── */
.testimonials {
  background: var(--c-teal);
  background-image: url('../images/textures/Dark Ripples.jpg');
  background-size: cover;
  background-blend-mode: soft-light;
}
.testimonials__header { text-align: center; margin-bottom: 72px; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--c-border-dk);
  gap: 1px;
  background: var(--c-border-dk);
}
.testi-card {
  background: rgba(43,62,76,0.85);
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.testi-card__quote {
  font-family: var(--f-serif);
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  color: rgba(253,251,247,0.88);
  line-height: 1.75;
  flex: 1;
}
.testi-card__divider {
  width: 32px;
  height: 1px;
  background: var(--c-gold);
  opacity: 0.45;
}
.testi-card__author {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold-lt);
}

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section { background: var(--c-cream); text-align: center; }
.cta-section__inner { max-width: 680px; margin: 0 auto; padding: 0 var(--gutter); }
.cta-section h2 {
  font-family: var(--f-serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--c-ink);
  margin: 20px 0 24px;
}
.cta-section h2 em { font-style: italic; color: var(--c-gold); }
.cta-section p { font-size: 16px; line-height: 1.75; color: var(--c-charcoal); opacity: 0.65; margin-bottom: 48px; }
.cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-section__note {
  margin-top: 24px;
  font-size: 10px !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-charcoal);
  opacity: 0.4;
}
/* Equal-width CTA action buttons */
.cta-section__actions .btn,
.hero__actions .btn {
  width: 230px;
  text-align: center;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  padding-left: 40px;
  padding-right: 40px;
}
.cta-chat-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-charcoal);
  border: 1px solid rgba(26,27,28,0.2);
  transition: all var(--t-mid) var(--ease);
  white-space: nowrap;
}
.cta-chat-btn:hover {
  background: var(--c-ink);
  color: var(--c-cream);
  border-color: var(--c-ink);
}
.cta-chat-btn .arrow {
  transition: transform var(--t-fast) var(--ease);
  font-size: 14px;
}
.cta-chat-btn:hover .arrow { transform: translateX(4px); }
.cta-actions-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

/* ── COMPARE LINK ────────────────────────────────────────── */
.compare-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold);
  border-bottom: 1px solid rgba(197,164,126,0.4);
  padding-bottom: 3px;
  transition: all var(--t-fast);
}
.compare-link:hover {
  color: var(--c-teal);
  border-color: var(--c-teal);
  gap: 12px;
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--c-ink);
  padding: 88px 0 44px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 72px;
}
.footer__brand {
  margin-bottom: 20px;
}
.footer__brand img {
  height: 32px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer__tagline { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.36); max-width: 260px; }
.footer__col-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 24px;
}
.footer__links { display: flex; flex-direction: column; gap: 14px; }
.footer__link { font-size: 13px; color: rgba(255,255,255,0.45); transition: color var(--t-fast); }
.footer__link:hover { color: rgba(255,255,255,0.85); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { font-size: 12px; color: rgba(255,255,255,0.25); transition: color var(--t-fast); }
.footer__legal a:hover { color: rgba(255,255,255,0.55); }
.footer__disclaimer {
  font-size: 10px;
  line-height: 1.7;
  color: rgba(255,255,255,0.18);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-basis: 100%;
  width: 100%;
  letter-spacing: 0.01em;
}

/* ── PAGE HERO (interior pages) — teal with texture ─────── */
.page-hero {
  padding: calc(var(--nav-h) + 100px) 0 80px;
  background: var(--c-teal);
  background-image: url('../images/textures/Tan Shadows 2.jpeg');
  background-size: cover;
  background-position: center;
  background-blend-mode: soft-light;
}
.page-hero .t-eyebrow { color: rgba(197,164,126,0.75); }
.page-hero .t-h1 { color: var(--c-cream); }
.page-hero .t-body-lg { color: rgba(253,251,247,0.65); }
.page-hero .divider { background: var(--c-gold-lt); opacity: 0.5; }

/* ── FOUNDING QUOTE ─────────────────────────────────────── */
.founding-quote { background: var(--c-cream); padding: 72px 0; }
.founding-quote__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.founding-quote__text {
  font-family: var(--f-serif);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 400;
  font-style: italic;
  color: var(--c-ink);
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
}
.founding-quote__attr {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin: 0;
}

/* ── ACCORDION (FAQ) ─────────────────────────────────────── */
.accordion { border-top: 1px solid var(--c-border); }
.accordion__item { border-bottom: 1px solid var(--c-border); }
.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--f-serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--c-ink);
  transition: color var(--t-fast);
}
.accordion__trigger:hover { color: var(--c-gold); }
.accordion__icon {
  font-size: 20px;
  color: var(--c-gold);
  transition: transform var(--t-fast) var(--ease);
  flex-shrink: 0;
  margin-left: 20px;
  font-style: normal;
}
.accordion__trigger.is-open .accordion__icon { transform: rotate(45deg); }
.accordion__body { overflow: hidden; max-height: 0; transition: max-height var(--t-mid) var(--ease); }
.accordion__body.is-open { max-height: 600px; }
.accordion__body-inner {
  padding: 0 0 32px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--c-charcoal);
  opacity: 0.72;
  max-width: 720px;
}

/* FAQ category heading */
.faq-category__title {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--c-border);
}

/* ── COMPARE TABLE ───────────────────────────────────────── */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th {
  padding: 36px 32px 28px;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
  vertical-align: bottom;
}
.compare-table th:first-child {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-charcoal);
  opacity: 0.4;
}
.compare-table th .col-name {
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--c-ink);
  display: block;
  margin-bottom: 6px;
}
.compare-table th .col-price { font-size: 13px; color: var(--c-gold); letter-spacing: 0.04em; }
.compare-table td {
  padding: 18px 32px;
  border-bottom: 1px solid var(--c-border-lt);
  color: var(--c-charcoal);
  vertical-align: middle;
  font-size: 15px;
  font-variant: small-caps;
  letter-spacing: 0.03em;
}
.compare-table td:first-child {
  font-variant: normal;
  font-size: 13px;
  font-weight: 400;
  opacity: 0.6;
  letter-spacing: 0.02em;
  max-width: 240px;
}
.compare-table tr:hover td { background: rgba(197,164,126,0.03); }

/* Non-featured cols — Journey & Concierge get subtle mist */
.col-plain { background: rgba(197,164,126,0.04); }

/* Featured Signature col — teal */
.col-featured {
  background: var(--c-teal) !important;
}
.col-featured-header {
  background: var(--c-teal) !important;
}
.col-featured-header .col-name { color: var(--c-cream) !important; }
.col-featured-header .col-price { color: var(--c-gold-lt) !important; }
.col-featured .check { color: var(--c-gold-lt); }
.col-featured td { color: rgba(253,251,247,0.8); border-color: rgba(255,255,255,0.06); }
.col-featured td:first-child { color: rgba(253,251,247,0.8); }

.check { color: var(--c-teal); font-size: 15px; font-weight: 600; }
.dash  { color: var(--c-charcoal); opacity: 0.2; font-size: 18px; }

/* ── SYMPTOM CHECKER ─────────────────────────────────────── */
.symptom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.symptom-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--c-cream);
  border: 1px solid var(--c-border);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
  user-select: none;
}
.symptom-item:hover { border-color: var(--c-gold); }
.symptom-item.selected { border-color: var(--c-teal); background: rgba(43,62,76,0.04); }
.symptom-check {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  transition: all var(--t-fast);
  color: transparent;
}
.symptom-item.selected .symptom-check { background: var(--c-teal); border-color: var(--c-teal); color: white; }
.symptom-text { font-size: 14px; line-height: 1.45; color: var(--c-charcoal); }
.symptom-result { margin-top: 48px; padding: 40px; display: none; }
.symptom-result--low  { background: rgba(197,164,126,0.06); border: 1px solid var(--c-border); }
.symptom-result--mid  { background: rgba(197,164,126,0.10); border: 1px solid rgba(197,164,126,0.3); }
.symptom-result--high { background: rgba(43,62,76,0.06); border: 1px solid rgba(43,62,76,0.2); }
.result-label { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-teal); margin-bottom: 12px; }
.result-msg { font-family: var(--f-serif); font-size: 18px; font-weight: 400; color: var(--c-ink); line-height: 1.5; margin-bottom: 24px; }

/* ── ANIMATIONS ──────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
.fade-up.is-visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 80ms; }
.fade-up-delay-2 { transition-delay: 160ms; }
.fade-up-delay-3 { transition-delay: 240ms; }
.fade-up-delay-4 { transition-delay: 320ms; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero__stats { grid-template-columns: repeat(3, 1fr); }
  .hero__text { padding: 80px var(--gutter); max-width: 100%; }
  .numbers__grid { grid-template-columns: repeat(2, 1fr); }
  .board__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .programs__grid { grid-template-columns: 1fr; }
  .method__inner { grid-template-columns: 1fr; }
  .method__visual { height: 360px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .testimonials__grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --gutter: 24px; }
  .section { padding: 80px 0; }
  .section--md { padding: 60px 0; }
  .nav__inner { padding: 0 24px 0 20px; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .hero__text { padding: 56px 24px 40px; }
  .hero__sub { font-size: 16px; }
  .hero__stats { grid-template-columns: 1fr; }
  .hero__stat { padding: 28px 24px; border-right: none; border-bottom: 1px solid var(--c-border-dk); }
  .hero__stat:last-child { border-bottom: none; }
  .numbers__grid { grid-template-columns: 1fr 1fr; }
  .numbers__item { padding: 32px 24px; }
  .prog-card, .testi-card { padding: 40px 28px; }
  .board__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .symptom-grid { grid-template-columns: 1fr; }
  .compare-table { display: block; overflow-x: auto; white-space: nowrap; }
  .hero__creds { display: none; }
  .cred-strip__sep { display: none; }
  .cred-strip__inner { gap: 16px; }
  .page-hero { padding: calc(var(--nav-h) + 60px) 0 56px; }
}
