/* ============================================================
   PRIYANK THAKKAR — COMMUNICATION COACH
   Expressive editorial redesign
   Fonts: Fraunces (display) + Space Grotesk (sans)
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --paper:      #ffffff;
  --paper-2:    #f6f8ff;
  --cream:      #ffffff;
  --ink:        #000000;
  --ink-soft:   #262626;
  --muted:      #5f5f5f;
  --terra:      #0040ff;
  --terra-2:    #2e62ff;
  --clay:       #0031c4;
  --gold:       #0040ff;
  --line:       #dbe3ff;
  --line-soft:  #f0f3ff;

  --shadow-sm: 0 10px 24px rgba(23, 19, 13, 0.05);
  --shadow-md: 0 24px 50px rgba(23, 19, 13, 0.08);
  --shadow-lg: 0 40px 90px rgba(23, 19, 13, 0.12);

  --radius: 22px;
  --radius-lg: 34px;
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Wix Madefor Display", "Space Grotesk", Arial, sans-serif;
  --font-sans: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink-fixed: #000000;
  --cream-fixed: #ffffff;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Animated gradient blobs behind everything */
.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}
.bg-orbs span {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  animation: float 22s ease-in-out infinite;
}
.bg-orbs span:nth-child(1) { width: 46vw; height: 46vw; left: -12vw; top: -8vw;  background: radial-gradient(circle, rgba(224,122,63,0.55), transparent 70%); }
.bg-orbs span:nth-child(2) { width: 40vw; height: 40vw; right: -10vw; top: 18vh; background: radial-gradient(circle, rgba(214,164,65,0.45), transparent 70%); animation-delay: -6s; }
.bg-orbs span:nth-child(3) { width: 38vw; height: 38vw; left: 30vw;  bottom: -14vw; background: radial-gradient(circle, rgba(200,90,43,0.35), transparent 70%); animation-delay: -12s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(4vw, 3vh) scale(1.08); }
  66%      { transform: translate(-3vw, -2vh) scale(0.96); }
}

/* Subtle film grain overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.05; letter-spacing: -0.02em; color: var(--ink); }

h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.9rem); }

.serif-italic { font-style: italic; font-weight: 500; color: var(--terra); }

p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.8; }

a { color: var(--terra); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--clay); }

::selection { background: var(--terra); color: var(--cream); }

/* Eyebrow / kicker label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--terra);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--terra);
}
.eyebrow.center { justify-content: center; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 2rem; }
section { padding: 7rem 2rem; position: relative; }
.narrow { max-width: 820px; margin: 0 auto; }

/* ---------- Navigation (floating pill) ---------- */
nav {
  position: fixed;
  top: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 2.4rem);
  max-width: 1120px;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.7rem 0.7rem 1.4rem;
  background: rgba(253, 250, 245, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
nav.scrolled .nav-container { box-shadow: var(--shadow-md); background: rgba(253, 250, 245, 0.9); }

.logo {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.logo .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--terra); display: inline-block; }

.nav-links { display: flex; align-items: center; gap: 0.35rem; list-style: none; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 0.5rem 0.95rem;
  border-radius: 100px;
  transition: all 0.25s var(--ease);
}
.nav-links a:hover { color: var(--ink); background: rgba(200, 90, 43, 0.08); }
.nav-links a.active { color: var(--cream); background: var(--ink); }
.nav-links .nav-cta { color: var(--cream); background: var(--terra); }
.nav-links .nav-cta:hover { background: var(--clay); color: var(--cream); }

.mobile-menu { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.6rem 0.8rem; }
.mobile-menu span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.3s var(--ease); }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 700;
  padding: 0 0 4px;
  border-radius: 0;
  border: none;
  border-bottom: 2px solid currentColor;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  letter-spacing: 0.01em;
  text-decoration: none;
  overflow: visible;
  transition: gap 0.25s var(--ease), opacity 0.2s var(--ease);
}
.btn::before { display: none; }
.btn:hover { transform: none; opacity: 0.65; gap: 0.9rem; }

.btn-primary { color: var(--ink); }
.btn-secondary { color: var(--ink); }

/* Nav CTA pill — stays as a pill */
.nav-links .nav-cta,
.nav-links .nav-cta:hover {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.95rem;
  border-radius: 100px;
  border: none;
  border-bottom: none;
  background: var(--terra);
  color: var(--cream);
  font-weight: 500;
  font-size: 0.9rem;
  opacity: 1;
  gap: 0;
  letter-spacing: 0;
}
.nav-links .nav-cta:hover { background: var(--clay); opacity: 1; }

.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Marquee ---------- */
.marquee {
  padding: 1.4rem 0;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  white-space: nowrap;
  border-block: 1px solid rgba(255,255,255,0.08);
}
.marquee__track { display: inline-flex; gap: 2.5rem; animation: scrollx 26s linear infinite; will-change: transform; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
}
.marquee span::after { content: "✦"; color: var(--terra-2); font-style: normal; font-size: 0.7em; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ---------- Hero (home) ---------- */
.hero-home { padding-top: 10rem; padding-bottom: 4rem; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
}
.hero-home h1 { margin: 1.4rem 0 1.6rem; }
.hero-home h1 .line { display: block; overflow: hidden; }
.hero-profile { max-width: 40rem; font-size: 1.05rem; color: var(--ink-soft); }
.hero-profile strong { color: var(--ink); font-weight: 600; }
.hero-profile em { color: var(--terra); font-style: italic; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

/* Professional hero rhythm */
.pro-hero h1 { margin-bottom: 2.2rem; }
.pro-subhead {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  line-height: 1.15;
  margin-top: 0.6rem;
  margin-bottom: 1.9rem;
}
.pro-intro-para {
  font-size: 1.12rem;
  line-height: 1.85;
  max-width: 44ch;
  margin-bottom: 1.4rem;
}
.pro-intro-para-two {
  max-width: 44ch;
  font-size: 1.08rem;
  line-height: 1.85;
  margin-top: 1.7rem;
}

.hero-media { position: relative; display: flex; justify-content: center; }
.hero-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4/5;
  border-radius: 200px 200px var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(224,122,63,0.16), rgba(214,164,65,0.12));
  box-shadow: var(--shadow-lg);
  z-index: 1;
}
.hero-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo-fallback {
  position: absolute; inset: 0; display: none;
  align-items: center; justify-content: center; text-align: center;
  color: var(--muted); font-size: 0.95rem; padding: 2rem;
}
/* floating badge */
.hero-badge {
  position: absolute;
  bottom: 1.6rem; left: -1.2rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0.9rem 1.1rem;
  box-shadow: var(--shadow-md);
  z-index: 2;
  animation: bob 5s ease-in-out infinite;
}
.hero-badge .n { font-family: var(--font-display); font-size: 1.7rem; color: var(--terra); line-height: 1; }
.hero-badge .t { font-size: 0.76rem; color: var(--muted); letter-spacing: 0.02em; }
.hero-badge.two { bottom: auto; top: 1.4rem; left: auto; right: -1rem; animation-delay: -2.5s; }
@keyframes bob { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-10px);} }

/* Professional page hero: wide editorial framing for the workshop photograph */
.pro-hero .hero-grid {
  position: relative;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: clamp(1.5rem, 3vw, 4rem);
  align-items: start;
  padding: clamp(2.4rem, 5vw, 5.5rem) 2rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.pro-hero .hero-grid::after {
  display: none;
}

.pro-hero .hero-copy {
  position: relative;
  z-index: 3;
  background: transparent;
  border: 0;
  padding: 0;
  margin-right: -5.5rem;
  margin-top: 0;
  max-width: 45rem;
}

.pro-hero .hero-copy::before {
  content: none;
}

.pro-hero h1 {
  max-width: 9ch;
  font-size: clamp(3.6rem, 6.7vw, 7rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0 0 1.5rem;
}

/* Students hero heading is intentionally a little smaller than professionals. */
body[data-audience="students"] .pro-hero h1 {
  font-size: clamp(3.43rem, 6.4vw, 6.83rem);
}

.pro-hero .pro-subhead {
  font-size: clamp(1.5rem, 2.6vw, 2.35rem);
  margin: 0 0 2.35rem;
}

body[data-audience="students"] .pro-hero .pro-subhead {
  font-size: clamp(1.33rem, 2.35vw, 2.18rem);
}

.pro-hero .pro-intro-para,
.pro-hero .pro-intro-para-two {
  max-width: 42ch;
  font-size: 1rem;
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 0 0 1.15rem;
}

.pro-hero .hero-actions .btn {
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.pro-hero .hero-media {
  position: relative;
  z-index: 2;
  margin: clamp(5rem, 9vw, 9rem) 0 0;
}

.pro-hero .hero-media::after {
  display: none;
}

.pro-hero .hero-photo-wrap {
  max-width: 620px;
  aspect-ratio: 16 / 10;
  border-radius: 30px;
  border: 0;
  background: #1f1f1f;
  box-shadow: 0 16px 38px rgba(0,0,0,0.22);
}

.pro-hero .hero-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 83% 8%, rgba(255,208,152,0.28), transparent 44%);
  pointer-events: none;
  z-index: 2;
}

.pro-hero .hero-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16,14,12,0.5) 0%, rgba(16,14,12,0.08) 52%, rgba(16,14,12,0) 100%);
  pointer-events: none;
  z-index: 2;
}

.pro-hero .hero-photo {
  transform: scale(1.04);
  transform-origin: center;
  object-position: 58% 35%;
  filter: grayscale(1) contrast(0.9) saturate(0) brightness(0.95);
}

.pro-hero .hero-badge {
  left: auto;
  right: 1.1rem;
  top: 1.1rem;
  bottom: auto;
  padding: 0.62rem 0.75rem;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(15,15,15,0.52);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.24);
  animation: none;
  max-width: 200px;
}

.pro-hero .hero-badge .t {
  color: var(--cream-fixed);
  font-size: 0.68rem;
  line-height: 1.36;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

/* ---------- Section header ---------- */
.section-head { max-width: 720px; margin-bottom: 3.5rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin: 1rem 0 1rem; }
.section-head p { font-size: 1.08rem; }
.section-head p strong { color: var(--ink); font-weight: 600; }
.section-head p em { color: var(--terra); font-style: italic; }

/* ---------- Split feature (philosophy) ---------- */
.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.split h2 { max-width: 11ch; }
.split .big-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.4;
  color: var(--ink);
}
.split .big-quote em { color: var(--terra); }
.split .support { margin-top: 1.4rem; color: var(--ink-soft); }

/* ---------- Cards / grid ---------- */
.grid { display: grid; gap: 1.6rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(224,122,63,0.10), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(200,90,43,0.4); }
.card:hover::before { opacity: 1; }
.card > * { position: relative; }
.card h3 { margin-bottom: 0.9rem; }
.card p { margin-bottom: 1.4rem; }
.card .card-index {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--terra);
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 0.8rem;
}
.card ul { list-style: none; margin: 1rem 0 1.4rem; }
.card ul li { position: relative; padding-left: 1.4rem; margin-bottom: 0.6rem; color: var(--ink-soft); }
.card ul li::before { content: "→"; position: absolute; left: 0; color: var(--terra); }

/* Program pillars — large numbered feature cards */
.pillar { text-align: left; }
.pillar .num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--terra);
  line-height: 1;
  display: block;
  margin-bottom: 0.6rem;
}

/* ---------- Journey timeline ---------- */
.journey-section { overflow: hidden; }
.journey-rail { position: relative; max-width: 1000px; margin: 0 auto; }
.journey-rail::before {
  content: "";
  position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(200,90,43,0.55) 8%, rgba(200,90,43,0.25) 92%, transparent);
}
.journey-node { position: relative; width: calc(50% - 2.6rem); margin-bottom: 2.4rem; }
.journey-node.left  { margin-right: auto; }
.journey-node.right { margin-left: auto; }
.journey-node::before {
  content: "";
  position: absolute; top: 1.5rem;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--terra); border: 3px solid var(--paper);
  box-shadow: 0 0 0 4px rgba(200,90,43,0.18);
}
.journey-node.left::before  { right: -3.35rem; }
.journey-node.right::before { left: -3.35rem; }
.journey-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.journey-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.journey-index {
  font-family: var(--font-display);
  font-size: 2.4rem; color: rgba(200,90,43,0.25); line-height: 1; display: block; margin-bottom: 0.3rem;
}
.journey-meta { color: var(--terra); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.74rem; font-weight: 600; margin-bottom: 0.4rem; }
.journey-card h3 { margin-bottom: 0.5rem; }
.journey-card p { margin: 0; font-size: 0.98rem; }
.journey-photo { margin-top: 1.1rem; }

/* ---------- Photo placeholder ---------- */
.photo-placeholder {
  background:
    repeating-linear-gradient(45deg, rgba(200,90,43,0.06) 0 10px, transparent 10px 20px),
    linear-gradient(160deg, rgba(224,122,63,0.12), rgba(214,164,65,0.10));
  border: 1px dashed rgba(168,60,34,0.35);
  border-radius: 16px;
  aspect-ratio: 16/10;
  display: flex; align-items: center; justify-content: center;
  color: var(--clay); font-size: 0.85rem; letter-spacing: 0.03em;
  text-align: center; padding: 1rem;
}

/* ---------- Big statement band ---------- */
.statement {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(3rem, 7vw, 6rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.statement::before {
  content: "";
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,122,63,0.4), transparent 70%);
  top: -180px; right: -120px; filter: blur(30px);
}
.statement h2 { color: var(--cream); position: relative; max-width: 16ch; margin: 0 auto 1.4rem; }
.statement h2 em { color: var(--terra-2); }
.statement p { color: rgba(253,250,245,0.75); position: relative; max-width: 46ch; margin: 0 auto 2rem; }
.statement .btn-secondary { color: var(--cream); border-bottom-color: var(--cream); }

/* Professional coaching block */
.service-spotlight {
  position: relative;
  padding-top: 5.4rem;
  padding-bottom: 5.8rem;
}
.service-spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 9% 18%, rgba(224,122,63,0.16), transparent 33%),
    radial-gradient(circle at 92% 82%, rgba(214,164,65,0.12), transparent 34%);
  pointer-events: none;
}
.service-spotlight .container { position: relative; z-index: 1; }

.service-head h2 {
  font-size: clamp(1.8rem, 3.7vw, 3.2rem);
  line-height: 1.04;
  white-space: nowrap;
}

.coaching-panel {
  max-width: 1080px;
  margin: 0 auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.coaching-panel::before,
.coaching-panel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(200,90,43,0.55) 20%, rgba(214,164,65,0.45) 80%, transparent 100%);
  pointer-events: none;
}
.coaching-panel::before { top: 0; }
.coaching-panel::after { bottom: 0; }

.coach-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  padding: clamp(1.2rem, 2vw, 1.7rem) 0;
}

.coach-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--terra);
  margin-bottom: 0.7rem;
}

.coach-copy {
  padding: 0;
}

.coach-copy-full {
  max-width: 980px;
}

.coach-meta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  margin-bottom: 1.25rem;
}

.coach-meta-inline span {
  position: relative;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--clay);
  letter-spacing: 0.01em;
}

.coach-meta-inline span + span {
  padding-left: 0.95rem;
}

.coach-meta-inline span + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28rem;
  width: 1px;
  height: 0.9rem;
  background: rgba(200,90,43,0.32);
}

.coaching-panel .coach-p {
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.78;
  max-width: 54ch;
  margin: 0;
}
.coaching-panel .coach-p + .coach-p { margin-top: 1.1rem; }
.coaching-panel .coach-p.lead {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 3.25vw, 3.2rem);
  line-height: 1.28;
  margin-right: 1rem;
}
.coaching-panel .coach-p.note {
  margin-top: 1.35rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(200,90,43,0.26);
}

.learn-block {
  margin-bottom: 1.35rem;
}

.learn-block h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.3vw, 2.1rem);
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 1.2rem;
}

.learn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem 1.6rem;
}

.learn-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: start;
  gap: 0.85rem;
}

.learn-num {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.9;
  color: #cf602d;
}

.learn-item h4 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
}

.learn-item p {
  margin: 0.2rem 0 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.coach-context {
  margin: 1.8rem 0 0;
  padding: 0 0 0 1.15rem;
  border: 0;
  border-left: 3px solid rgba(200,90,43,0.5);
  background: transparent;
  color: var(--ink-soft);
  font-size: clamp(0.96rem, 1.05vw, 1.08rem);
  line-height: 1.64;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.01em;
  max-width: none;
  width: 100%;
}


.coach-invite {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.coach-invite-tag {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--terra);
}

.coaching-panel .coach-note-wide {
  margin-top: 0;
  max-width: none;
  width: 100%;
  border-top: 0;
  padding-top: 0;
  font-size: clamp(0.88rem, 0.9vw, 1rem);
  line-height: 1.45;
  white-space: normal !important;
  overflow-wrap: anywhere;
  overflow: visible;
  color: var(--ink);
}

/* Remove inherited divider from .coach-p.note in this specific footer line */
.coaching-panel .coach-p.note.coach-note-wide {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.coach-cta-wide {
  margin-top: 0;
}

.coach-cta-wide .btn {
  font-size: 1.03rem;
  font-weight: 700;
}

.coach-cta-wide .btn:hover {
  opacity: 0.65;
}

.coach-foot {
  margin-top: 1.7rem;
  padding: 1.05rem 1.15rem;
  border: 1px solid rgba(200,90,43,0.26);
  border-radius: 20px;
  background:
    linear-gradient(120deg, rgba(200,90,43,0.06) 0%, rgba(214,164,65,0.03) 50%, rgba(200,90,43,0.02) 100%),
    rgba(255,255,255,0.12);
  backdrop-filter: blur(3px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem 1.2rem;
}

@media (max-width: 1200px) {
  .coach-foot {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .coach-cta-wide {
    justify-self: start;
  }
}

.coach-cta-row {
  margin-top: 0;
}

.coaching-panel .btn {
  margin-top: 0;
  box-shadow: 0 16px 32px rgba(200,90,43,0.28);
}

/* ---------- Page hero (interior) ---------- */
.page-hero { padding-top: 11rem; padding-bottom: 3rem; text-align: center; }
.page-hero .tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--terra);
  margin-bottom: 0.4rem;
}
.page-hero h1 { max-width: 16ch; margin: 1rem auto 1.4rem; }
.page-hero p { max-width: 46ch; margin: 0 auto; font-size: 1.1rem; }

/* Prose block for text-heavy sections */
.prose p { font-size: 1.08rem; margin-bottom: 1.3rem; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--ink); }
.lead {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  line-height: 1.5;
  color: var(--ink);
}
.lead em { color: var(--terra); }

/* ---------- Contact form ---------- */
.form-field { margin-bottom: 1.3rem; }
.form-field label { display: block; margin-bottom: 0.5rem; font-size: 0.85rem; font-weight: 600; color: var(--ink); letter-spacing: 0.02em; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--terra);
  box-shadow: 0 0 0 4px rgba(200,90,43,0.12);
}
.form-field textarea { resize: vertical; min-height: 130px; }

.contact-info-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  margin-bottom: 1.2rem;
}
.contact-info-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.contact-info-card p, .contact-info-card a { margin: 0; }

/* ---------- Testimonials (flip cards) ---------- */
.flip { perspective: 1400px; height: 320px; outline: none; cursor: pointer; }
.flip-inner {
  position: relative; width: 100%; height: 100%;
  transition: transform 0.7s var(--ease);
  transform-style: preserve-3d;
}
.flip:hover .flip-inner,
.flip:focus .flip-inner,
.flip:focus-within .flip-inner { transform: rotateY(180deg); }
.flip-face {
  position: absolute; inset: 0;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.flip-front {
  background: var(--cream);
  align-items: center; justify-content: center; text-align: center;
}
.flip-avatar {
  width: 66px; height: 66px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.4rem; color: var(--terra);
  background: linear-gradient(160deg, rgba(224,122,63,0.18), rgba(214,164,65,0.14));
  border: 1px solid var(--line); margin-bottom: 1.1rem;
}
.flip-front h3 { margin-bottom: 0.3rem; }
.flip-role { color: var(--muted); font-size: 0.92rem; margin: 0; }
.flip-hint {
  margin-top: 1.3rem; color: var(--terra);
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
}
.flip-back {
  background: var(--ink); color: var(--cream);
  transform: rotateY(180deg);
  align-items: flex-start; justify-content: center;
}
.flip-back p {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.12rem; line-height: 1.5; color: rgba(253,250,245,0.92); margin: 0;
}
.flip-back .flip-name {
  margin-top: 1.1rem; color: var(--terra-2);
  font-weight: 600; font-size: 0.92rem; letter-spacing: 0.02em;
}

/* ---------- Offers as two blocks (How I Help) ---------- */
.offer2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 1000px; margin: 3rem auto 0; }
.offer2-item {
  display: flex; flex-direction: column;
  padding: 2.2rem 2rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-top: 3px solid var(--line);
  border-radius: 0;
  transform-origin: bottom center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.offer2-item:hover { transform: scale(1.04); box-shadow: var(--shadow-md); border-top-color: var(--terra); background: #fff; z-index: 2; }
.offer2-top { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.1rem; }
.offer2-num { font-family: var(--font-display); font-size: 1.7rem; line-height: 1; color: var(--terra); }
.offer2-kicker { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; color: var(--muted); }
.offer2-item h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-bottom: 0.7rem; }
.offer2-item p { margin-bottom: 1.6rem; }
.offer2-item .btn { align-self: flex-start; margin-top: auto; }
@media (max-width: 700px) { .offer2 { grid-template-columns: 1fr; } .offer2-item:hover { transform: scale(1.02); } }

/* ---------- Footer ---------- */
footer { background: var(--ink); color: var(--cream); padding: 5rem 2rem 2.5rem; margin-top: 5rem; border-radius: var(--radius-lg) var(--radius-lg) 0 0; position: relative; overflow: hidden; }
.footer-word {
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 9rem);
  line-height: 0.9;
  color: rgba(253,250,245,0.06);
  letter-spacing: -0.03em;
  pointer-events: none;
  margin-bottom: 2rem;
  white-space: nowrap;
}
.footer-content {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer-brand .logo { color: var(--cream); margin-bottom: 0.8rem; }
.footer-brand p { color: rgba(253,250,245,0.6); max-width: 30ch; }
.footer-section h4 { color: var(--cream); font-family: var(--font-sans); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 1.1rem; opacity: 0.6; }
.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 0.6rem; }
.footer-section a { color: rgba(253,250,245,0.8); font-size: 0.95rem; }
.footer-section a:hover { color: var(--terra-2); }
.footer-bottom {
  position: relative;
  max-width: var(--maxw); margin: 3rem auto 0;
  padding-top: 1.6rem; border-top: 1px solid rgba(253,250,245,0.1);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  color: rgba(253,250,245,0.5); font-size: 0.85rem;
}

/* ---------- Scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal].d1 { transition-delay: 0.08s; }
[data-reveal].d2 { transition-delay: 0.16s; }
[data-reveal].d3 { transition-delay: 0.24s; }

/* ---------- Custom cursor ---------- */
.cursor-dot {
  position: fixed; top: 0; left: 0; width: 34px; height: 34px;
  border: 1.5px solid var(--terra); border-radius: 50%;
  transform: translate(-50%, -50%); pointer-events: none; z-index: 9999;
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s var(--ease), opacity 0.25s var(--ease);
  mix-blend-mode: multiply;
}
.cursor-dot.hover { width: 56px; height: 56px; background: rgba(200,90,43,0.12); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; } .mt-4 { margin-top: 2rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .hero-media { order: -1; }
  .pro-hero .hero-grid { grid-template-columns: 1fr; gap: 1.2rem; padding: 1rem; }
  .pro-hero .hero-grid::after { width: 122px; height: 72px; right: 0.75rem; bottom: -0.9rem; }
  .pro-hero .hero-copy { margin-right: 0; margin-top: 0; max-width: 100%; }
  .pro-hero .hero-copy::before { left: -0.55rem; top: 0; bottom: 0; }
  .pro-hero .hero-media { margin-left: 0; }
  .pro-hero .hero-media::after { right: 1.1rem; bottom: 0.9rem; width: 170px; height: 56px; }
  .pro-hero .hero-photo-wrap { max-width: 100%; aspect-ratio: 16 / 10; }
  .split { grid-template-columns: 1fr; gap: 1.4rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 4.5rem 1.2rem; }
  .cursor-dot { display: none; }
  .nav-links {
    display: none;
    position: absolute; top: calc(100% + 0.6rem); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0.2rem;
    background: rgba(253,250,245,0.97); backdrop-filter: blur(16px);
    border: 1px solid var(--line); border-radius: 22px; padding: 0.6rem;
    box-shadow: var(--shadow-md);
  }
  .nav-links a { padding: 0.8rem 1rem; }
  .mobile-menu { display: flex; }

  .journey-rail::before { left: 7px; }
  .journey-node, .journey-node.left, .journey-node.right { width: calc(100% - 2.2rem); margin-left: 2.2rem; margin-right: 0; }
  .journey-node::before, .journey-node.left::before, .journey-node.right::before { left: -2.05rem; right: auto; }

  .grid-2 { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; }
  .hero-badge, .hero-badge.two { display: none; }

  .hero-home { padding-top: 7.5rem; }
  .page-hero { padding-top: 8rem; }
  .container { padding: 0; }
  .flip { height: 360px; }
  .flip-back p { font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ===================== Modern additions ===================== */

/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 10000;
  background: linear-gradient(90deg, var(--terra), var(--gold));
  transform: scaleX(0); transform-origin: left; will-change: transform;
}

/* Nav actions + theme toggle */
.nav-right { display: flex; align-items: center; gap: 0.6rem; }

/* Eyebrow as pill */
.eyebrow {
  padding: 0.42rem 0.9rem;
  background: rgba(200,90,43,0.09);
  border: 1px solid rgba(200,90,43,0.22);
  border-radius: 100px;
}
.eyebrow::before { content: none; }

/* Ghost index numbers on pillar cards */
.card.pillar { position: relative; overflow: hidden; }
.card.pillar .num {
  position: absolute; top: -0.8rem; right: 0.4rem;
  margin: 0; font-size: 6rem; line-height: 1;
  color: rgba(200,90,43,0.12); pointer-events: none;
}

/* Keep brand-dark surfaces dark in both themes */
footer { background: var(--ink-fixed); }
footer .logo, .footer-section h4 { color: var(--cream-fixed); }
.statement { background: var(--ink-fixed); }
.statement h2 { color: var(--cream-fixed); }
.statement .btn-secondary { color: var(--cream-fixed); border-color: var(--cream-fixed); }
.flip-back { background: var(--ink-fixed); color: var(--cream-fixed); }

/* How it works steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.step { position: relative; padding: 1.8rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); }
.step-num { font-family: var(--font-display); font-size: 2.4rem; line-height: 1; color: var(--terra); display: block; margin-bottom: 0.6rem; }
.step h3 { margin-bottom: 0.5rem; }
.step p { margin: 0; }

/* Outcomes chips */
.outcomes { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; max-width: 860px; margin: 3rem auto 0; }
.outcomes span {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.2rem; border: 1px solid var(--line); border-radius: 100px;
  background: var(--cream); color: var(--ink); font-weight: 500; font-size: 0.95rem;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.outcomes span::before { content: "\2713"; color: var(--terra); font-weight: 700; }
.outcomes span:hover { transform: translateY(-3px); border-color: var(--terra); }

/* FAQ accordion */
.faq { max-width: 760px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.35rem 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--font-display); font-size: 1.15rem; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--terra); border-radius: 2px; }
.faq-icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-icon::after { left: 8px; top: 0; width: 2px; height: 18px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a {
  padding: 0 0 1.4rem;
}
.faq-a p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.8;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.1rem;
}

/* Journey: draw-in + more compact */
.journey-header { margin-bottom: 2.5rem; }
.journey-node { margin-bottom: 1.5rem; }
.journey-card { padding: 1.3rem; }
.journey-card h3 { font-size: 1.2rem; }
.journey-index { font-size: 2rem; }
.journey-photo { height: 96px; aspect-ratio: auto; margin-top: 0.85rem; }
.journey-rail::before { transform: scaleY(0); transform-origin: top; transition: transform 1.1s var(--ease); }
.journey-rail.drawn::before { transform: scaleY(1); }
.journey-node::before { opacity: 0; transform: scale(0); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.journey-rail.drawn .journey-node::before { opacity: 1; transform: scale(1); }
.journey-rail.drawn .journey-node:nth-child(1)::before { transition-delay: 0.30s; }
.journey-rail.drawn .journey-node:nth-child(2)::before { transition-delay: 0.55s; }
.journey-rail.drawn .journey-node:nth-child(3)::before { transition-delay: 0.80s; }
.journey-rail.drawn .journey-node:nth-child(4)::before { transition-delay: 1.05s; }

/* Audience Switch — dual-label pill toggle */
.audience-switch {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--line-soft);
  border-radius: 100px;
  padding: 3px;
  margin: 0 0.75rem 0 0;
  border: 1.5px solid var(--line);
  transition: border-color 0.3s;
}

.aud-opt {
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--muted);
  transition: all 0.25s var(--ease);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.aud-opt:hover {
  color: var(--ink);
}

.aud-opt.aud-active {
  background: var(--terra);
  color: var(--cream-fixed);
  box-shadow: 0 2px 8px rgba(200, 90, 43, 0.35);
}

/* Situations Grid */
.situations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
  margin-top: 2.4rem;
}

.situation {
  padding: 2rem;
  background: rgba(200, 90, 43, 0.05);
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  transition: all 0.35s var(--ease);
}

.situation:hover {
  border-color: var(--terra);
  background: rgba(200, 90, 43, 0.08);
  transform: translateY(-6px);
  box-shadow: var(--shadow-sm);
}

.situation h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--ink);
}

.situation p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* Student progression video showcase */
.student-video-section {
  padding-top: 5.2rem;
  padding-bottom: 5.2rem;
}

.video-head {
  margin-bottom: 2.3rem;
}

.video-slider {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
}

.video-slider-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: calc(50% - 145px);
  padding: 1rem max(1rem, calc(50% - 145px)) 1.5rem;
  cursor: grab;
}

.video-slider-viewport::-webkit-scrollbar { display: none; }
.video-slider-viewport:active { cursor: grabbing; }

.video-slider-track {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: max-content;
}

.video-story-card {
  position: relative;
  flex: 0 0 clamp(180px, 23vw, 290px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  scroll-snap-align: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #000;
  cursor: pointer;
  padding: 0;
  opacity: 0.38;
  transform: scale(0.9);
  filter: saturate(0.7);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), filter 0.35s var(--ease), border-color 0.35s var(--ease);
}

.video-story-card.is-active,
.video-story-card:hover,
.video-story-card:focus-visible {
  opacity: 1;
  transform: scale(1);
  filter: none;
  border-color: var(--terra);
  outline: none;
}

.video-story-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
  pointer-events: none;
}

.video-story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.62));
  pointer-events: none;
}

.video-story-card::before {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--terra);
  color: #fff;
  font-size: 1rem;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 26px rgba(0, 64, 255, 0.32);
  pointer-events: none;
}

.video-story-card .video-play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--terra);
  color: #fff;
  font-size: 1.05rem;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 26px rgba(0, 64, 255, 0.32);
}

.video-story-card .video-card-label {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 0.9rem;
  left: 1rem;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
}

.video-slider-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transform: translateY(-50%);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}

.video-slider-nav.prev { left: 0.4rem; }
.video-slider-nav.next { right: 0.4rem; }

.video-slider-nav:hover {
  border-color: var(--terra);
  background: var(--terra);
  color: #fff;
}

.video-slider-dots {
  margin-top: 1.15rem;
  display: flex;
  justify-content: center;
  gap: 0.55rem;
}

.video-slider-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: color-mix(in srgb, var(--ink) 22%, transparent);
  cursor: pointer;
  padding: 0;
}

.video-slider-dots button.active {
  background: var(--terra);
}

.video-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
  width: min(420px, calc(100vw - 2rem));
  max-width: none;
  max-height: calc(100vh - 2rem);
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 18px;
  background: #000;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.video-modal::backdrop { background: rgba(0, 0, 0, 0.72); backdrop-filter: blur(4px); }
.video-modal video { display: block; width: 100%; max-height: calc(100vh - 2rem); aspect-ratio: 9 / 16; background: #000; }
.video-modal-close { position: absolute; top: 0.75rem; right: 0.75rem; z-index: 1; width: 36px; height: 36px; border: 0; border-radius: 50%; background: rgba(0, 0, 0, 0.62); color: #fff; font-size: 1.35rem; line-height: 1; cursor: pointer; }

@media (max-width: 768px) {
  .pro-hero h1 { margin-bottom: 1.4rem; }
  .pro-hero .hero-grid { grid-template-columns: 1fr; gap: 2.2rem; padding: 0.8rem; border-radius: 4px; }
  .pro-hero .hero-grid::after { display: none; }
  .pro-hero .hero-media::after { display: none; }
  .pro-hero .hero-copy {
    padding: 0.2rem 0;
    margin-right: 0;
  }
  .pro-hero .hero-copy::before { display: none; }
  .hero-actions { gap: 0.55rem; margin-bottom: 0.95rem; }
  .pro-hero .hero-actions .btn { font-size: 0.72rem; padding: 0.72rem 0.82rem; }
  .pro-hero .hero-media { margin-top: 0; }
  .pro-hero .hero-photo-wrap { max-width: 100%; aspect-ratio: 4 / 3; border-radius: 24px; }
  .pro-hero .hero-photo { object-position: 56% 34%; transform: scale(1.03); }
  .pro-hero .hero-badge {
    display: block;
    right: 0.65rem;
    top: 0.65rem;
    bottom: auto;
    left: auto;
    max-width: 154px;
    padding: 0.44rem 0.56rem;
    border-radius: 2px;
  }
  .pro-hero .hero-badge .t { font-size: 0.58rem; letter-spacing: 0.08em; }
  .pro-subhead { margin-bottom: 1.2rem; }
  .pro-intro-para, .pro-intro-para-two { font-size: 1.03rem; line-height: 1.72; max-width: 100%; }
  .service-spotlight { padding-top: 4.4rem; padding-bottom: 4.6rem; }
  .service-head h2 {
    font-size: clamp(1.1rem, 5.1vw, 1.7rem);
    white-space: nowrap;
  }
  .coaching-panel { padding: 0; border-radius: 0; }
  .coach-layout { grid-template-columns: 1fr; gap: 0; padding: 1.15rem 0; }
  .coach-meta-inline { margin-bottom: 1rem; gap: 0.3rem 0.75rem; }
  .coach-meta-inline span { font-size: 0.82rem; }
  .coach-meta-inline span + span { padding-left: 0.72rem; }
  .coach-meta-inline span + span::before { top: 0.26rem; height: 0.75rem; }
  .coach-kicker { margin-bottom: 0.7rem; }
  .learn-grid { grid-template-columns: 1fr; gap: 1rem; }
  .learn-item { grid-template-columns: 52px 1fr; gap: 0.65rem; }
  .learn-num { font-size: 2.5rem; }
  .learn-item h4 { font-size: 0.98rem; }
  .learn-item p { font-size: 0.94rem; }
  .coach-context {
    margin-top: 1.2rem;
    padding-left: 0.8rem;
    font-size: clamp(0.92rem, 3.8vw, 1rem);
    line-height: 1.62;
    max-width: 100%;
  }
  .coaching-panel .coach-note-wide {
    margin-top: 0;
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.55;
    white-space: normal;
  }
  .coach-foot {
    margin-top: 1.2rem;
    padding: 0.9rem;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    border-radius: 18px;
  }
  .coach-invite-tag { font-size: 0.68rem; letter-spacing: 0.14em; }
  .coach-cta-wide .btn {
    width: 100%;
    min-width: 0;
    justify-content: center;
    font-size: 0.98rem;
    padding: 0.96rem 1.25rem;
  }
  .coaching-panel .coach-p.lead { font-size: clamp(1.45rem, 6.2vw, 2rem); margin-right: 0; }
  .coaching-panel .coach-p { font-size: 1rem; }
  .situations { grid-template-columns: 1fr; }
  .audience-switch { margin: 0.5rem 0 0 0; }
  .aud-opt { padding: 0.3rem 0.65rem; font-size: 0.72rem; }
  .steps { grid-template-columns: 1fr; }
  .video-slider {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
  .video-slider-viewport { scroll-padding-inline: calc(50% - 105px); padding-inline: calc(50% - 105px); }
  .video-story-card { flex-basis: 210px; }
  .video-slider-nav {
    width: 40px;
    height: 40px;
  }
}

/* Blue / white palette (single mode). */
:root { --paper:#fff; --paper-2:#f6f8ff; --cream:#fff; --ink:#000; --ink-soft:#262626; --muted:#5f5f5f; --terra:#0040ff; --terra-2:#2e62ff; --clay:#0031c4; --gold:#0040ff; --line:#dbe3ff; --line-soft:#f0f3ff; --ink-fixed:#000; --cream-fixed:#fff; }
body { background:#fff; }
.theme-toggle { display:none; }
.bg-orbs span:nth-child(1) { background:radial-gradient(circle,rgba(0,64,255,.12),transparent 70%); }
.bg-orbs span:nth-child(2) { background:radial-gradient(circle,rgba(0,64,255,.08),transparent 70%); }
.bg-orbs span:nth-child(3) { background:radial-gradient(circle,rgba(0,64,255,.06),transparent 70%); }
.nav-container, nav.scrolled .nav-container { background:rgba(255,255,255,.9); }
.nav-links a:hover { background:rgba(0,64,255,.08); }
.nav-links a.active { background:#000; }
.pro-hero .hero-photo-wrap::before { background:radial-gradient(circle at 83% 8%,rgba(0,64,255,.25),transparent 44%); }
body[data-audience="students"] .pro-hero .hero-photo-wrap { aspect-ratio: 9 / 7; }
body[data-audience="students"] .pro-hero .hero-photo-wrap::before,
body[data-audience="students"] .pro-hero .hero-photo-wrap::after { display: none; }
body[data-audience="students"] .pro-hero .hero-photo {
  transform: none;
  object-position: center;
  filter: none;
}
.card::before { background:linear-gradient(160deg,rgba(0,64,255,.10),transparent 55%); }
.card:hover { border-color:rgba(0,64,255,.45); }
.journey-rail::before { background:linear-gradient(to bottom,transparent,rgba(0,64,255,.55) 8%,rgba(0,64,255,.25) 92%,transparent); }
.journey-node::before { box-shadow:0 0 0 4px rgba(0,64,255,.18); }
.journey-index { color:rgba(0,64,255,.25); }
.photo-placeholder { background:repeating-linear-gradient(45deg,rgba(0,64,255,.06) 0 10px,transparent 10px 20px),linear-gradient(160deg,rgba(0,64,255,.12),rgba(0,64,255,.05)); border-color:rgba(0,64,255,.35); }
.statement::before { background:radial-gradient(circle,rgba(0,64,255,.4),transparent 70%); }
.statement p { color:rgba(255,255,255,.76); }
.service-spotlight::before { background:radial-gradient(circle at 9% 18%,rgba(0,64,255,.11),transparent 33%),radial-gradient(circle at 92% 82%,rgba(0,64,255,.07),transparent 34%); }
.coaching-panel::before, .coaching-panel::after { background:linear-gradient(90deg,transparent 0%,rgba(0,64,255,.58) 20%,rgba(0,64,255,.42) 80%,transparent 100%); }
.coach-meta-inline span { color:var(--clay); }
.coach-meta-inline span + span::before { background:rgba(0,64,255,.35); }
.learn-num { color:var(--terra); }
.coach-context { border-left-color:rgba(0,64,255,.55); }
.coach-cta-wide .btn { background:#0040ff; border-color:#0040ff; box-shadow:0 14px 30px rgba(0,64,255,.24); }
.coach-cta-wide .btn:hover { box-shadow:0 18px 36px rgba(0,64,255,.30); }
.coach-foot { border-color:rgba(0,64,255,.28); background:linear-gradient(120deg,rgba(0,64,255,.06),rgba(0,64,255,.02)),#fff; }
.coaching-panel .btn { box-shadow:0 16px 32px rgba(0,64,255,.28); }

/* About-style editorial CTA variant for selected coaching buttons */
.coach-cta-wide .btn.btn-journey-link {
  padding: 0 0 3px;
  border: 0;
  border-bottom: 2px solid #111;
  border-radius: 0;
  background: transparent;
  color: #111;
  box-shadow: none;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  gap: 0.6rem;
}

.coach-cta-wide .btn.btn-journey-link:hover {
  background: transparent;
  color: #111;
  box-shadow: none;
  opacity: 0.75;
  gap: 1rem;
}

.coach-cta-wide .btn.btn-journey-link:hover .arrow {
  transform: translateX(2px);
}
.scroll-progress { background:#0040ff; }
.cursor-dot.hover { background:rgba(0,64,255,.12); }

/* Audience preview: red accent with inverse Professional / Student foundations. */
body[data-audience="professionals"] {
  --paper: #202020;
  --paper-2: #292929;
  --cream: #292929;
  --ink: #e5e5e5;
  --ink-soft: #c9c9c9;
  --muted: #ababab;
  --terra: #af0b0b;
  --terra-2: #d54343;
  --clay: #820606;
  --gold: #af0b0b;
  --line: #494949;
  --line-soft: #303030;
  --ink-fixed: #202020;
  --cream-fixed: #e5e5e5;
  background: #202020;
}

body[data-audience="students"] {
  --paper: #e5e5e5;
  --paper-2: #dcdcdc;
  --cream: #f2f2f2;
  --ink: #202020;
  --ink-soft: #3d3d3d;
  --muted: #626262;
  --terra: #af0b0b;
  --terra-2: #d54343;
  --clay: #820606;
  --gold: #af0b0b;
  --line: #c7c7c7;
  --line-soft: #d7d7d7;
  --ink-fixed: #202020;
  --cream-fixed: #e5e5e5;
  background: #e5e5e5;
}

body[data-audience] .bg-orbs span:nth-child(1) { background: radial-gradient(circle, rgba(175,11,11,.12), transparent 70%); }
body[data-audience] .bg-orbs span:nth-child(2) { background: radial-gradient(circle, rgba(175,11,11,.08), transparent 70%); }
body[data-audience] .bg-orbs span:nth-child(3) { background: radial-gradient(circle, rgba(175,11,11,.06), transparent 70%); }
body[data-audience] .nav-links a:hover { background: rgba(175,11,11,.08); }
body[data-audience] .pro-hero .hero-photo-wrap::before { background: radial-gradient(circle at 83% 8%, rgba(175,11,11,.25), transparent 44%); }
body[data-audience] .card::before { background: linear-gradient(160deg, rgba(175,11,11,.10), transparent 55%); }
body[data-audience] .card:hover { border-color: rgba(175,11,11,.45); }
body[data-audience] .journey-rail::before { background: linear-gradient(to bottom, transparent, rgba(175,11,11,.55) 8%, rgba(175,11,11,.25) 92%, transparent); }
body[data-audience] .journey-node::before { box-shadow: 0 0 0 4px rgba(175,11,11,.18); }
body[data-audience] .journey-index { color: rgba(175,11,11,.25); }
body[data-audience] .photo-placeholder { background: repeating-linear-gradient(45deg, rgba(175,11,11,.06) 0 10px, transparent 10px 20px), linear-gradient(160deg, rgba(175,11,11,.12), rgba(175,11,11,.05)); border-color: rgba(175,11,11,.35); }
body[data-audience] .statement::before { background: radial-gradient(circle, rgba(175,11,11,.4), transparent 70%); }
body[data-audience] .service-spotlight::before { background: radial-gradient(circle at 9% 18%, rgba(175,11,11,.11), transparent 33%), radial-gradient(circle at 92% 82%, rgba(175,11,11,.07), transparent 34%); }
body[data-audience] .coaching-panel::before, body[data-audience] .coaching-panel::after { background: linear-gradient(90deg, transparent 0%, rgba(175,11,11,.58) 20%, rgba(175,11,11,.42) 80%, transparent 100%); }
body[data-audience] .coach-meta-inline span + span::before { background: rgba(175,11,11,.35); }
body[data-audience] .coach-context { border-left-color: rgba(175,11,11,.55); }
body[data-audience] .coach-cta-wide .btn { background: var(--terra); border-color: var(--terra); box-shadow: 0 14px 30px rgba(175,11,11,.24); }
body[data-audience] .coach-cta-wide .btn:hover, body[data-audience] .coaching-panel .btn { box-shadow: 0 18px 36px rgba(175,11,11,.30); }
body[data-audience="professionals"] .coach-foot { border-color: rgba(175,11,11,.28); background: linear-gradient(120deg, rgba(175,11,11,.06), rgba(175,11,11,.02)), #292929; }
body[data-audience="students"] .coach-foot { border-color: rgba(175,11,11,.28); background: linear-gradient(120deg, rgba(175,11,11,.06), rgba(175,11,11,.02)), #f2f2f2; }
body[data-audience="professionals"] .nav-container, body[data-audience="professionals"] nav.scrolled .nav-container { background: rgba(32,32,32,.92); }
body[data-audience="students"] .nav-container, body[data-audience="students"] nav.scrolled .nav-container { background: rgba(229,229,229,.92); }
body[data-audience="professionals"] .nav-links a.active { background: #000; color: #e5e5e5; }
body[data-audience="professionals"] .nav-links .nav-cta { color: #e5e5e5; }
body[data-audience="professionals"] .coach-cta-wide .btn.btn-journey-link { background: transparent; color: var(--ink); border-bottom-color: var(--ink); box-shadow: none; }
body[data-audience] .scroll-progress { background: var(--terra); }
body[data-audience] .cursor-dot.hover { background: rgba(175,11,11,.12); }
body[data-audience="professionals"] .service-spotlight::before { background: none; }
body[data-page="professionals"] .pro-hero .hero-photo-wrap { aspect-ratio: 9 / 7; }
body[data-page="professionals"] .pro-hero .hero-photo-wrap::before,
body[data-page="professionals"] .pro-hero .hero-photo-wrap::after { display: none; }
body[data-page="professionals"] .pro-hero .hero-photo {
  transform: none;
  object-position: center;
  filter: none;
}
