/* ============================================================
   HUGO SPEAKS — hugospeaks.com
   Design system: Navy + Gold + Cream
   Type: Playfair Display (display) + Inter (UI)
   ============================================================ */

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  /* Color */
  --navy:        #1A1A2E;
  --navy-deep:   #0F0F1E;
  --navy-soft:   #252540;
  --gold:        #C9A84C;
  --gold-hover:  #DABE63;
  --gold-mid:    #E2C97E;
  --gold-soft:   rgba(201, 168, 76, 0.12);
  --gold-line:   rgba(201, 168, 76, 0.32);
  --cream:       #F8F4EC;
  --cream-deep:  #EFE9DC;
  --white:       #FFFFFF;
  --ink:         #2C2C3E;
  --ink-muted:   #5A5A72;
  --rule:        #D8D0BE;
  --border-dark: rgba(255,255,255,0.08);

  /* Type scale (fluid) */
  --t-hero:    clamp(3rem, 7.5vw, 6.5rem);
  --t-display: clamp(2.25rem, 4.5vw, 3.75rem);
  --t-h2:      clamp(1.75rem, 3.2vw, 2.5rem);
  --t-h3:      clamp(1.25rem, 2vw, 1.5rem);
  --t-sub:     clamp(1.0625rem, 1.5vw, 1.25rem);
  --t-body:    clamp(0.9375rem, 1.1vw, 1.0625rem);
  --t-sm:      0.875rem;
  --t-xs:      0.75rem;

  /* Layout */
  --container: min(1240px, 90vw);
  --container-wide: min(1440px, 94vw);
  --pad-y: clamp(5rem, 9vw, 8.5rem);
  --radius: 4px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Base ───────────────────────────────────────────────── */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: var(--t-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.serif { font-family: 'Playfair Display', Georgia, serif; }

.container { width: var(--container); margin: 0 auto; }
.container-wide { width: var(--container-wide); margin: 0 auto; }

section { padding: var(--pad-y) 0; position: relative; }

.eyebrow {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--navy);
}

p { max-width: 65ch; }

/* ── Reveal system ──────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
  transition-delay: var(--delay, 0s);
  will-change: transform, opacity;
}
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="fade"]  { transform: none; }
[data-reveal].is-visible { opacity: 1; transform: none; }

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

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.35s var(--ease), padding 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(15, 15, 30, 0.82);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  padding: 0.85rem 0;
  border-bottom-color: var(--border-dark);
}

.nav-inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.wordmark {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: 1.625rem;
  color: var(--gold);
  letter-spacing: 0.03em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 0.18em;
}
.wordmark span {
  font-weight: 400;
  font-style: italic;
  font-size: 0.7em;
  color: var(--gold-mid);
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.78);
  font-size: var(--t-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.35rem 0;
  transition: color 0.25s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.is-active::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  background: var(--gold);
  color: var(--navy);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: background 0.25s var(--ease), transform 0.2s var(--ease), box-shadow 0.3s var(--ease);
}
.nav-cta:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px rgba(201,168,76,0.55);
}
.nav-cta:active { transform: scale(0.98); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.nav-toggle span {
  width: 22px; height: 1.5px;
  background: currentColor;
  position: relative;
  transition: background 0.2s var(--ease);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s var(--ease), top 0.3s var(--ease);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top:  7px; }

body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after  { top: 0; transform: rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 6rem;
}

/* Background layers */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-glow {
  position: absolute;
  top: 25%; left: 50%;
  width: 900px; height: 900px;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at center, rgba(201,168,76,0.22) 0%, rgba(201,168,76,0.08) 25%, transparent 60%);
  filter: blur(20px);
  animation: glow-drift 14s ease-in-out infinite alternate;
}
.hero-glow-2 {
  position: absolute;
  bottom: -15%; right: -10%;
  width: 600px; height: 600px;
  background:
    radial-gradient(circle at center, rgba(201,168,76,0.14) 0%, transparent 60%);
  filter: blur(30px);
  animation: glow-drift-2 18s ease-in-out infinite alternate;
}
@keyframes glow-drift {
  0%   { transform: translate(-50%, -50%) scale(1); }
  100% { transform: translate(-45%, -55%) scale(1.15); }
}
@keyframes glow-drift-2 {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.9; }
  100% { transform: translate(-40px, 40px) scale(1.1); opacity: 0.6; }
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.7'/%3E%3C/svg%3E");
}

.hero-inner {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  max-width: 1100px;
}

.hero-eyebrow {
  color: var(--gold);
  margin-bottom: 1.75rem;
  animation: rise 1s var(--ease-out) 0.1s both;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: var(--t-hero);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: rise 1.1s var(--ease-out) 0.25s both;
  max-width: 18ch;
}
.hero h1 em {
  font-style: italic;
  font-weight: 600;
  color: var(--gold-mid);
}
.hero h1 .reveal-line {
  display: block;
  overflow: hidden;
}

.hero-sub {
  font-size: var(--t-sub);
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 58ch;
  margin-bottom: 2.75rem;
  animation: rise 1s var(--ease-out) 0.5s both;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: rise 1s var(--ease-out) 0.7s both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  animation: rise 1s var(--ease-out) 1s both;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50%      { transform: scaleY(1);   transform-origin: top; opacity: 1; }
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem 1.75rem;
  min-height: 52px;
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.35s var(--ease);
  white-space: nowrap;
}
.btn::after {
  content: '→';
  font-family: 'Inter', sans-serif;
  font-size: 1.1em;
  transition: transform 0.3s var(--ease);
}
.btn:hover::after { transform: translateX(4px); }
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,0.42) 50%, transparent 75%);
  transform: translateX(-110%);
  transition: transform 0.7s var(--ease-out);
}
.btn-primary:hover {
  background: var(--gold-hover);
  box-shadow: 0 14px 36px -12px rgba(201,168,76,0.65);
}
.btn-primary:hover::before { transform: translateX(110%); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.32);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-soft);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--navy-soft);
  box-shadow: 0 14px 36px -12px rgba(26,26,46,0.4);
}

/* ============================================================
   CREDIBILITY BAR
   ============================================================ */
.cred {
  background: var(--navy-deep);
  color: var(--white);
  padding: 2.25rem 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.cred-inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2.5rem;
}
.cred-item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.3s var(--ease);
}
.cred-item:hover { color: var(--gold); }
.cred-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--gold-soft);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.about-aside {
  position: sticky;
  top: 8rem;
}
.about h2 {
  font-size: var(--t-display);
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.about h2 em {
  font-style: italic;
  color: var(--gold);
}
.about-lead {
  font-size: var(--t-sub);
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.about-body p {
  margin-bottom: 1.25rem;
  color: var(--ink-muted);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--rule);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-num span { color: var(--gold); }
.stat-label {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 0.4rem;
}

/* ============================================================
   SIGNATURE QUOTE BAND
   ============================================================ */
.quote-band {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 11vw, 9rem) 0;
}
.quote-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.quote-band .container { position: relative; }
.quote-mark-large {
  font-family: 'Playfair Display', serif;
  font-size: clamp(6rem, 14vw, 11rem);
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.55;
  margin-bottom: 1.5rem;
  display: block;
}
.quote-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.75rem, 3.8vw, 3rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--white);
  max-width: 22ch;
  margin: 0 auto 2rem;
}
.quote-text strong { font-weight: 600; color: var(--gold-mid); font-style: normal; }
.quote-attr {
  display: inline-block;
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 1.25rem;
  position: relative;
}
.quote-attr::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 1px;
  background: var(--gold);
}

/* ============================================================
   FRAMEWORK — Honest Hours
   ============================================================ */
.framework {
  background: var(--cream);
  position: relative;
}
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(3rem, 5vw, 5rem);
}
.section-head .eyebrow { margin-bottom: 1.5rem; }
.section-head h2 {
  font-size: var(--t-display);
  margin-bottom: 1.25rem;
}
.section-head h2 em { font-style: italic; color: var(--gold); }
.section-head p {
  font-size: var(--t-sub);
  color: var(--ink-muted);
  max-width: 60ch;
  margin: 0 auto;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.pillar {
  background: var(--white);
  padding: 2.25rem 1.75rem 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.5s var(--ease-out),
    box-shadow 0.5s var(--ease-out),
    border-color 0.4s var(--ease);
  cursor: default;
  isolation: isolate;
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-mid) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.pillar:hover {
  transform: translateY(-6px);
  border-color: var(--gold-line);
  box-shadow:
    0 24px 48px -24px rgba(26,26,46,0.18),
    0 4px 12px -2px rgba(201,168,76,0.18);
}
.pillar:hover::before { transform: scaleX(1); }

.pillar-num {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.pillar-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.pillar-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink-muted);
}

.framework-cta {
  text-align: center;
  margin-top: clamp(3rem, 5vw, 4rem);
}

/* ============================================================
   PROGRAMS
   ============================================================ */
.programs { background: var(--white); }
.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.program {
  background: var(--cream);
  padding: clamp(2rem, 3.5vw, 3rem);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 280px;
}
.program::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 100%;
  background: var(--navy);
  transition: width 0.55s var(--ease-out);
  z-index: 0;
}
.program > * { position: relative; z-index: 1; transition: color 0.4s var(--ease); }

.program:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -24px rgba(26,26,46,0.25);
}
.program:hover::after { width: 100%; }
.program:hover .program-title,
.program:hover .program-meta { color: var(--white); }
.program:hover .program-desc { color: rgba(255,255,255,0.78); }
.program:hover .program-price { color: var(--gold-mid); }
.program:hover .program-cta { color: var(--gold); }

.program-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.program-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.875rem;
}
.program-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.3vw, 1.875rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.program-title em { font-style: italic; color: var(--gold); }
.program-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink-muted);
  flex: 1;
}
.program-price {
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.program-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-top: auto;
  align-self: flex-start;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: gap 0.3s var(--ease);
}
.program-cta:hover { gap: 0.85rem; }
.program-cta::after { content: '→'; }

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.social {
  background: var(--cream);
}
.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.testimonial {
  background: var(--white);
  padding: clamp(2rem, 3vw, 2.5rem);
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
  position: relative;
}
.testimonial-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.5;
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
}
.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}
.testimonial-attr {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.testimonial-attr strong { color: var(--navy); }

.logo-strip {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--rule);
  align-items: center;
}
.logo-label {
  grid-column: 1 / -1;
  text-align: center;
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.5rem;
}
.logo-slot {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  opacity: 0.5;
  transition: opacity 0.3s var(--ease), color 0.3s var(--ease);
  text-align: center;
  border-left: 1px solid var(--rule);
}
.logo-slot:first-of-type { border-left: 0; }
.logo-slot:hover { opacity: 1; color: var(--navy); }

/* ============================================================
   ASSESSMENT BAND
   ============================================================ */
.assess {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.assess::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(201,168,76,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.assess .container { position: relative; }
.assess .eyebrow { color: var(--gold); margin-bottom: 1.5rem; justify-content: center; display: inline-flex; }
.assess h2 {
  font-size: var(--t-display);
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}
.assess h2 em { font-style: italic; color: var(--gold-mid); }
.assess p {
  font-size: var(--t-sub);
  color: rgba(255,255,255,0.78);
  max-width: 60ch;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.55;
}
.assess-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 1.5rem;
}
.assess-meta::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-soft);
}

/* ============================================================
   BOOKING CTA
   ============================================================ */
.book {
  background: var(--navy-deep);
  color: var(--white);
  text-align: center;
  border-top: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
}
.book .eyebrow { color: var(--gold); display: inline-flex; margin-bottom: 1.5rem; }
.book h2 {
  font-size: var(--t-display);
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.book h2 em { font-style: italic; color: var(--gold); }
.book-scarce {
  font-size: var(--t-sub);
  color: rgba(255,255,255,0.72);
  max-width: 60ch;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.6;
}
.book-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2rem;
  margin-top: 2.5rem;
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.6);
}
.book-contact a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.book-contact a:hover { border-bottom-color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050510;
  color: rgba(255,255,255,0.55);
  padding: 3rem 0 2rem;
  font-size: var(--t-xs);
}
.footer-inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.footer-left { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-tm {
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.32);
  font-size: 0.6875rem;
}
.footer-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  letter-spacing: 0.04em;
}
.footer-right a:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .pillars { grid-template-columns: repeat(3, 1fr); }
  .pillars .pillar:nth-child(n+4) { grid-column: span 1; }
  .logo-strip { grid-template-columns: repeat(4, 1fr); }
  .logo-slot:nth-child(5) { border-left: 0; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }

  body.nav-open .nav-links {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 90;
    padding-top: 4rem;
  }
  body.nav-open .nav-links a {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    color: var(--white);
  }
  body.nav-open .nav-cta {
    display: inline-flex;
    position: fixed;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 91;
    padding: 1rem 2rem;
  }

  .about-grid { grid-template-columns: 1fr; }
  .about-aside { position: static; }
  .stat-grid { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
  .stat-num { font-size: 1.75rem; }

  .pillars { grid-template-columns: repeat(2, 1fr); }
  .program-grid { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .logo-strip { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .logo-slot { border-left: 0; }

  .hero { min-height: auto; padding: 7rem 0 5rem; }
  .hero h1 { max-width: 100%; }

  .cred-inner { justify-content: flex-start; }
  .cred-item { font-size: 0.6875rem; }
}

@media (max-width: 480px) {
  .pillars { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .footer-inner { flex-direction: column; text-align: center; }
}
