:root {
  --bg: #0E0D0B;
  --bg-2: #14110E;
  --surface: #1C1916;
  --line: #2A241E;
  --bone: #F4EDE2;
  --bone-dim: rgba(244, 237, 226, 0.72);
  --bone-faint: rgba(244, 237, 226, 0.38);
  --sand: #D4BE97;
  --sunset: #E8622A;
  --sunset-soft: rgba(232, 98, 42, 0.14);
  --teal: #3D7F88;
  --teal-deep: #264D54;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--bone);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-weight: 400;
}

/* film grain overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image:
    radial-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  background-position: 0 0, 1px 1px;
  mix-blend-mode: overlay;
}

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

.italic {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.accent { color: var(--sunset); }
.hl { color: var(--sand); }

/* ====== NAV ====== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 40px;
  transition: all 0.3s ease;
  backdrop-filter: blur(0);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav.scrolled {
  background: rgba(14, 13, 11, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding: 14px 40px;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.02em;
}

/* Global logo safety net — any image whose src ends with /logo.png */
img[src$="/logo.png"] {
  max-height: 240px;
  width: auto;
}

.logo-img {
  height: 138px !important;
  width: auto !important;
  max-width: 540px !important;
  max-height: 138px !important;
  display: block;
}

.nav.scrolled .logo-img { height: 107px !important; max-height: 107px !important; }

.nav-links {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--bone-dim);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover { color: var(--bone); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: var(--sunset);
  color: var(--bone) !important;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: #F0703B;
  box-shadow: 0 8px 24px rgba(232, 98, 42, 0.3);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
}

.nav-toggle span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--bone);
  transition: 0.3s;
  left: 0;
}

.nav-toggle span:nth-child(1) { top: 2px; }
.nav-toggle span:nth-child(2) { top: 11px; }
.nav-toggle span:nth-child(3) { top: 20px; }

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg); top: 11px; }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg); top: 11px; }

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 80px 40px 32px;
  display: none;
  flex-direction: column;
  gap: 22px;
  z-index: 90;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}

.mobile-menu.open {
  display: flex;
  transform: translateY(0);
}

.mobile-menu a {
  font-size: 20px;
  font-weight: 500;
  font-family: 'Fraunces', Georgia, serif;
}

.mobile-cta {
  margin-top: 12px;
  padding: 14px 24px;
  background: var(--sunset);
  border-radius: 100px;
  text-align: center;
  font-family: 'Inter', sans-serif !important;
  font-size: 16px !important;
  font-weight: 600;
}

/* ====== HERO ====== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-grid { padding: 140px 40px 60px; }

.hero::before {
  content: '';
  position: absolute;
  top: 20%; left: 50%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(232, 98, 42, 0.12) 0%, transparent 60%);
  transform: translateX(-50%);
  pointer-events: none;
  filter: blur(40px);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(61, 127, 136, 0.18) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(40px);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 32px;
}

.eyebrow.light { color: var(--bone-faint); }
.eyebrow.center-row { align-self: center; margin-left: auto; margin-right: auto; }

.dot {
  width: 6px;
  height: 6px;
  background: var(--sunset);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--sunset);
}

.hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(60px, 9vw, 128px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 36px;
}

.hero-title .line {
  display: block;
}

.hero-title .line.italic {
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.02em;
  margin-left: 0.4em;
  color: var(--sand);
}

.hero-lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--bone-dim);
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-lede strong {
  color: var(--bone);
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-primary-dark,
.btn-ghost,
.btn-outline,
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 100px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--sunset);
  color: var(--bone);
}

.btn-primary:hover {
  background: #F0703B;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(232, 98, 42, 0.35);
}

.btn-primary-dark {
  background: var(--bone);
  color: var(--bg);
}

.btn-primary-dark:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(244, 237, 226, 0.18);
}

.btn-ghost {
  color: var(--bone-dim);
  background: transparent;
  border: 1px solid var(--line);
  padding: 15px 26px;
}

.btn-ghost:hover {
  color: var(--bone);
  border-color: var(--sand);
  background: rgba(244, 237, 226, 0.03);
}

.btn-outline {
  display: inline-flex;
  padding: 0;
  color: var(--sunset);
  background: transparent;
  border: none;
  border-radius: 0;
  position: relative;
  padding-bottom: 6px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--sunset);
}

.btn-outline:hover {
  color: var(--bone);
  border-color: var(--bone);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  max-width: 520px;
}

.stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 44px;
  line-height: 1;
  color: var(--bone);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-num span {
  color: var(--bone);
  font-size: 0.7em;
}

.stat-label {
  font-size: 12px;
  line-height: 1.4;
  color: rgba(244, 237, 226, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

/* hero videos — asymmetric stack */
.hero-videos {
  position: relative;
  height: 640px;
}

/* Hero photo — flush to top, right side of hero, Adam facing text */
.hero-photo {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: auto !important;
  width: 52% !important;
  height: 100vh !important;
  min-height: 100% !important;
  z-index: 1;
  pointer-events: none;
  margin: 0 !important;
  padding: 0 !important;
}
.hero-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% center;
  display: block;
  filter: saturate(0.95) contrast(1.03);
  mask-image: linear-gradient(to left, #000 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, #000 70%, transparent 100%);
}
@media (max-width: 1024px) {
  .hero-photo { position: relative; width: 100%; height: 440px; }
  .hero-photo-img { mask-image: linear-gradient(to top, transparent 0%, #000 25%); -webkit-mask-image: linear-gradient(to top, transparent 0%, #000 25%); }
}

/* Watch player: JS API mount needs explicit sizing */
.watch-player .yt-mount {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.watch-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Watch poster — shown before play, covers iframe */
.watch-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: transparent;
  z-index: 4 !important;
  transition: opacity 0.4s ease;
  display: block;
}
.watch-player.playing .watch-poster {
  opacity: 0;
  pointer-events: none;
}
.watch-player iframe {
  z-index: 1;
}

/* Play overlay button */
.play-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: 0;
  color: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, opacity 0.35s;
  z-index: 5;
}
.play-overlay::before {
  content: '';
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  position: absolute;
  transition: transform 0.25s, background 0.25s;
}
.play-overlay svg {
  position: relative;
  z-index: 1;
  margin-left: 3px;
  width: 22px;
  height: 22px;
  color: var(--ink, #0E0D0B);
}
.play-overlay:hover::before {
  transform: scale(1.08);
  background: #fff;
}
.play-overlay.hide,
.watch-player.playing .play-overlay {
  opacity: 0;
  pointer-events: none;
}

/* Remove any lingering scroll-cue visual if element still exists */
.scroll-cue { display: none !important; }

.video-card {
  position: absolute;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(244,237,226,0.06);
  aspect-ratio: 9/16;
  transition: transform 0.4s ease;
}

.video-card iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 180%;
  height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.video-card-1 {
  width: 54%;
  top: 0;
  left: 10%;
  z-index: 3;
  transform: rotate(-3deg);
}

.video-card-2 {
  width: 46%;
  top: 14%;
  right: 0;
  z-index: 2;
  transform: rotate(4deg);
}

.video-card-3 {
  width: 44%;
  bottom: 4%;
  left: 30%;
  z-index: 1;
  transform: rotate(-1deg);
}

.video-card:hover {
  transform: rotate(0) scale(1.02);
  z-index: 10;
}

.video-tag {
  position: absolute;
  bottom: 20px;
  left: 40%;
  z-index: 5;
  background: var(--sunset);
  color: var(--bone);
  padding: 8px 16px;
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 600;
  border-radius: 100px;
  white-space: nowrap;
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--bone-faint);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  animation: bob 2.6s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ====== MARQUEE ====== */
.marquee {
  background: var(--sunset);
  color: var(--bg);
  padding: 24px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.marquee-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  align-items: center;
  animation: marquee 38s linear infinite;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.mdot {
  opacity: 0.5;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ====== SECTIONS ====== */
section {
  position: relative;
  z-index: 2;
}

.section-head {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  margin-bottom: 48px;
}

.section-head.center {
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}

.lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--bone-dim);
  max-width: 640px;
}
.lede-wide { max-width: 960px !important; }
.h2-nowrap { white-space: nowrap; }

.section-head.center .lede {
  margin: 0 auto;
}

/* ====== WATCH ====== */
.watch {
  padding: 80px 0 80px;
  background: var(--bg);
  position: relative;
}

.watch::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line), transparent);
}

.watch-grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.watch-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.watch-player {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 540px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  border: 1px solid var(--line);
}

.watch-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.watch-item figcaption {
  padding: 0 4px;
}

.watch-num {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  color: var(--sunset);
  font-size: 22px;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.watch-item h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}

.watch-item p {
  font-size: 16px;
  color: var(--bone-dim);
  line-height: 1.55;
}

/* ====== COACH ====== */
.coach {
  padding: 80px 0;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}

.coach::before {
  content: '';
  position: absolute;
  top: 0; left: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(61, 127, 136, 0.1) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

.coach-grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 100px;
  align-items: start;
}

.coach-meta { position: sticky; top: 100px; }

.coach-headshot {
  width: 100%;
  margin-bottom: 18px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--light-bg-2, #2A241E);
  aspect-ratio: 3 / 4;
}
.coach-headshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.coach-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  color: var(--bone);
  white-space: nowrap;
}

.coach-resume {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.coach-resume li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  font-size: 13px;
  line-height: 1.35;
  color: var(--bone-dim);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.coach-resume li span {
  color: var(--sunset);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.coach-body { padding-top: 0; }

.coach-h2 {
  margin-bottom: 48px;
  max-width: 800px;
}

.coach-copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 40px;
  max-width: 660px;
}

.coach-copy p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--bone-dim);
}

/* ====== GALLERY ====== */
.gallery {
  padding: 80px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.gallery .section-head { margin-bottom: 56px; }

.gallery-grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}

.gallery-grid .g-cell {
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--line);
  position: relative;
  background: var(--surface);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), border-color 0.3s;
}

.gallery-grid .g-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) contrast(1.02);
  transition: filter 0.3s, transform 0.6s cubic-bezier(0.22,1,0.36,1);
}

.gallery-grid .g-cell:hover {
  border-color: var(--sand);
  transform: translateY(-4px);
  z-index: 2;
}

.gallery-grid .g-cell:hover img {
  filter: saturate(1.1) contrast(1.05);
  transform: scale(1.04);
}

.gallery-grid .g-wide { grid-column: span 2; }
.gallery-grid .g-tall { grid-row: span 2; }

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-grid .g-wide { grid-column: span 2; }
  .gallery-grid .g-tall { grid-row: span 2; }
}

@media (max-width: 520px) {
  .gallery { padding: 80px 0; }
  .gallery-grid { padding: 0 20px; grid-auto-rows: 150px; gap: 8px; }
}

/* ====== SERVICES ====== */
.services {
  padding: 80px 0;
  background: var(--bg);
}

.service-grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 56px 48px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  border-radius: 50%;
  opacity: 0.25;
  filter: blur(40px);
  pointer-events: none;
  transition: transform 0.6s;
}

.service-vb::before {
  background: radial-gradient(circle, var(--sunset), transparent 70%);
}

.service-life::before {
  background: radial-gradient(circle, var(--teal), transparent 70%);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--sand);
}

.service-card:hover::before {
  transform: scale(1.3);
}

.service-tag {
  position: relative;
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  margin-bottom: 36px;
  color: var(--bone-dim);
}

.service-h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 36px;
  position: relative;
}

.service-h3 .italic {
  color: var(--sunset);
}

.service-life .service-h3 .italic {
  color: var(--teal);
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
  position: relative;
}

.service-list li {
  font-size: 16px;
  line-height: 1.55;
  color: var(--bone-dim);
  padding-left: 22px;
  position: relative;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 10px; height: 2px;
  background: var(--sunset);
}

.service-life .service-list li::before {
  background: var(--teal);
}

.service-foot {
  position: relative;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.service-sub {
  margin-top: 14px;
  font-size: 13px;
  color: var(--bone-faint);
  letter-spacing: 0.04em;
}

/* ====== PROCESS ====== */
.process {
  padding: 80px 0;
  background: var(--bg-2);
}

.process-steps {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.step {
  padding: 36px 0 0;
  border-top: 1px solid var(--sunset);
  position: relative;
}

.step-num {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: 64px;
  line-height: 0.9;
  color: var(--sunset);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.step h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}

.step-meta {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 18px;
}

.step p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--bone-dim);
}

/* ====== TESTIMONIALS ====== */
.testimonials {
  padding: 80px 0;
  background: var(--bg);
}

.testimonial-grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 24px;
}

.t-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 40px 36px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.t-card:hover {
  transform: translateY(-4px);
  border-color: var(--sand);
}

.t-card-feature {
  grid-row: span 2;
  background: linear-gradient(180deg, var(--sunset-soft), var(--surface));
  border-color: var(--sunset-soft);
}

.quote-mark {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: 80px;
  line-height: 0.7;
  color: var(--sunset);
  margin-bottom: 12px;
  height: 40px;
}

.t-card p {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.45;
  color: var(--bone);
  letter-spacing: -0.01em;
}

.t-card-feature p {
  font-size: 24px;
}

/* ====== BOOK / CTA ====== */
.book {
  padding: 140px 40px;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}

.book::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(232, 98, 42, 0.12) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  filter: blur(80px);
  pointer-events: none;
}

.book-inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}

.book-h2 {
  margin-bottom: 24px;
}

.book-lede {
  font-size: 18px;
  color: var(--bone-dim);
  margin-bottom: 56px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.book-form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.book-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.book-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.book-form label > span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-faint);
}

.book-form input[type="text"],
.book-form input[type="email"],
.book-form textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--bone);
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.2s;
  resize: vertical;
}

.book-form input:focus,
.book-form textarea:focus {
  outline: none;
  border-color: var(--sunset);
}

.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.form-row .check {
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
}

.form-row .check input { accent-color: var(--sunset); }

.form-row .check span {
  font-size: 14px;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--bone-dim);
  font-weight: 500;
}

.form-row .check:has(input:checked) {
  border-color: var(--sunset);
  background: var(--sunset-soft);
}

.form-row .check:has(input:checked) span {
  color: var(--bone);
}

.btn-submit {
  align-self: flex-start;
  margin-top: 12px;
  padding: 18px 32px;
  font-size: 15px;
  background: var(--sunset);
  color: var(--bone);
}

.btn-submit:hover {
  background: #F0703B;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(232, 98, 42, 0.35);
}

.form-foot {
  font-size: 14px;
  color: var(--bone-faint);
  text-align: center;
  margin-top: 8px;
}

.form-foot a {
  color: var(--sand);
  border-bottom: 1px solid currentColor;
}

/* ====== FOOTER ====== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 80px 40px 32px;
  position: relative;
}

.foot-mark-wrap {
  max-width: 1440px;
  margin: 0 auto 48px;
  text-align: center;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.foot-mark-big {
  height: 260px;
  width: auto;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.95;
  filter: drop-shadow(0 20px 60px rgba(232, 98, 42, 0.18));
}

@media (max-width: 768px) {
  .foot-mark-big { height: 180px; }
  .foot-mark-wrap { margin-bottom: 32px; padding-bottom: 32px; }
}

.foot-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.foot-brand p {
  font-size: 14px;
  color: var(--bone-faint);
  line-height: 1.55;
  max-width: 300px;
}

.foot-logo-img {
  height: 144px !important;
  width: auto !important;
  max-width: 480px !important;
  display: block;
  margin-bottom: 16px;
}

.foot-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.foot-col h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sunset);
  margin-bottom: 8px;
}

.foot-col a {
  font-size: 14px;
  color: var(--bone-dim);
  transition: color 0.2s;
}

.foot-col a:hover { color: var(--bone); }

.foot-bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--bone-faint);
  letter-spacing: 0.04em;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .hero-videos {
    height: 560px;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  .coach-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .coach-meta { position: static; }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 32px;
  }

  .watch-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 360px;
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .t-card-feature { grid-row: span 1; }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  body { font-size: 16px; }

  .nav {
    padding: 16px 20px;
  }

  .nav.scrolled { padding: 12px 20px; }

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }

  .hero {
    padding: 120px 20px 40px;
    min-height: auto;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost { justify-content: center; width: 100%; }

  .hero-videos {
    height: 460px;
  }

  .marquee-track {
    font-size: 18px;
    gap: 20px;
  }

  .section-head { padding: 0 20px; margin-bottom: 48px; }

  .watch, .coach, .services, .process, .testimonials {
    padding: 80px 0;
  }

  .watch-grid, .service-grid, .coach-grid, .process-steps, .testimonial-grid {
    padding: 0 20px;
  }

  .service-grid { grid-template-columns: 1fr; gap: 20px; }
  .service-card { padding: 40px 28px; }
  .service-h3 { font-size: 48px; }

  .process-steps { grid-template-columns: 1fr; gap: 40px; }

  .testimonial-grid { grid-template-columns: 1fr; }

  .coach-name { font-size: 36px; }

  .book { padding: 80px 20px; }

  .book-form .row { grid-template-columns: 1fr; }

  .footer { padding: 60px 20px 24px; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .foot-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ====== CART BUTTON IN NAV ====== */
.nav-cart {
  position: relative;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--bone);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  align-self: center;
  padding: 0;
  margin: 0;
  line-height: 1;
  flex-shrink: 0;
}
.nav-cart:hover { border-color: var(--sunset); color: var(--sunset); }
.nav-cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--sunset);
  color: var(--bone);
  font-size: 10px;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
  transform: scale(0);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nav-cart-count.on { transform: scale(1); }

/* ====== CLICKABLE SERVICE CARD ====== */
.service-clickable { cursor: pointer; }
.service-clickable button { cursor: pointer; }

/* service card CTAs — two buttons side by side */
.service-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 12px;
}

.btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 22px;
  background: transparent;
  color: inherit;
  border: 1px solid rgba(26, 24, 20, 0.22);
  border-radius: 100px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.2s;
  opacity: 0.72;
}

.btn-learn-more:hover {
  opacity: 1;
  border-color: var(--sunset);
  color: var(--sunset);
}
.btn-learn-more svg {
  transition: transform 0.3s;
}
.btn-learn-more:hover svg {
  transform: translateY(2px);
}

/* path-grid inside Volleyball process modal */
.path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.path-col {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 24px;
}
.path-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.path-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sunset);
  padding: 6px 14px;
  border: 1px solid var(--sunset);
  border-radius: 100px;
  font-weight: 600;
}
.path-tag-alt {
  color: var(--teal, #3D7F88);
  border-color: var(--teal, #3D7F88);
}
.path-location {
  font-size: 12px;
  color: var(--bone-faint);
  letter-spacing: 0.06em;
}
.path-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  grid-template-columns: 1fr !important;
}
.path-steps .step {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.path-steps .step:first-child {
  padding-top: 0;
  border-top: 0;
}
.path-steps .step-num {
  font-size: 36px;
  margin-bottom: 10px;
}
.path-steps h4 {
  font-size: 20px;
}

/* process-steps inside Life modal — keep as 2x2 grid at the modal width */
.process-steps-modal {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px !important;
  margin-bottom: 24px;
}
.process-steps-modal .step {
  padding: 20px 0 0;
}

@media (max-width: 760px) {
  .path-grid { grid-template-columns: 1fr; gap: 20px; }
  .process-steps-modal { grid-template-columns: 1fr; }
  .service-ctas { flex-direction: column; align-items: stretch; }
  .service-ctas .btn-primary-dark,
  .service-ctas .btn-learn-more { justify-content: center; width: 100%; }
}

/* ====== MODAL ====== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.modal[aria-hidden="false"] { pointer-events: auto; opacity: 1; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 13, 11, 0.82);
  backdrop-filter: blur(6px);
}
.modal-panel {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  max-width: 1100px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 48px 40px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.6);
  transform: translateY(16px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.modal[aria-hidden="false"] .modal-panel { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--bone);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.modal-close:hover { background: var(--sunset); border-color: var(--sunset); color: var(--bone); }
.modal-head { margin-bottom: 32px; max-width: 640px; }
.modal-head .h2 { font-size: clamp(32px, 4vw, 52px); margin-bottom: 16px; }
.modal-head .lede { font-size: 16px; color: var(--bone-dim); }

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}
.program-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s;
}
.program-card:hover { transform: translateY(-4px); border-color: var(--sand); }
.program-img {
  aspect-ratio: 3/2;
  overflow: hidden;
  position: relative;
  background: var(--ink, #0E0D0B);
}
.program-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.program-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--sunset);
  color: var(--bone);
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 600;
}
.program-badge.sold { background: var(--stone, #6b6057); color: var(--bone); }
.program-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.program-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--bone);
}
.program-meta {
  font-size: 13px;
  color: var(--bone-dim);
  line-height: 1.5;
}
.program-meta div { margin-bottom: 3px; }
.program-meta strong { color: var(--bone); }
.program-price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--sunset);
  margin-top: auto;
  padding-top: 8px;
}
.program-price .currency {
  font-size: 0.6em;
  color: var(--bone-faint);
  font-style: italic;
  margin-left: 4px;
}
.program-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--sunset);
  color: var(--bone);
  border: 0;
  border-radius: 100px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 4px;
}
.program-cta:hover { background: #F0703B; transform: translateY(-1px); }
.program-cta.sold,
.program-cta[disabled] {
  background: transparent;
  color: var(--bone-dim);
  border: 1px solid var(--line);
  cursor: not-allowed;
}
.program-cta.sold:hover { transform: none; background: transparent; }

.modal-foot {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.foot-note {
  font-size: 14px;
  color: var(--bone-dim);
  line-height: 1.6;
}
.foot-note a { color: var(--sunset); border-bottom: 1px solid currentColor; }

@media (max-width: 680px) {
  .modal-panel { padding: 40px 24px; }
  .modal-head .h2 { font-size: 28px; }
  .programs-grid { grid-template-columns: 1fr; }
}

/* ====== CART DRAWER ====== */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 210;
  pointer-events: none;
}
.drawer[aria-hidden="false"] { pointer-events: auto; }
.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14,13,11,0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s;
}
.drawer[aria-hidden="false"] .drawer-backdrop { opacity: 1; }
.drawer-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 90vw);
  background: var(--bg-2);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
}
.drawer[aria-hidden="false"] .drawer-panel { transform: translateX(0); }
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--line);
}
.drawer-head h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--bone);
  letter-spacing: -0.015em;
}
.drawer-close {
  background: transparent;
  border: 1px solid var(--line);
  width: 36px; height: 36px;
  border-radius: 50%;
  color: var(--bone);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.drawer-close:hover { border-color: var(--sunset); color: var(--sunset); }
.drawer-body {
  flex: 1;
  padding: 20px 24px;
  overflow-y: auto;
}
.drawer-empty {
  text-align: center;
  color: var(--bone-dim);
  padding: 60px 0;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 18px;
}
.cart-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item-img {
  width: 56px; height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cart-item-info .ci-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 15px;
  line-height: 1.2;
  color: var(--bone);
  margin-bottom: 4px;
}
.cart-item-info .ci-meta {
  font-size: 12px;
  color: var(--bone-faint);
}
.cart-item-price {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--sunset);
  font-size: 16px;
  white-space: nowrap;
  text-align: right;
}
.cart-item-remove {
  display: block;
  margin-top: 4px;
  background: none;
  border: 0;
  color: var(--bone-faint);
  font-size: 11px;
  letter-spacing: 0.08em;
  cursor: pointer;
  text-transform: uppercase;
}
.cart-item-remove:hover { color: var(--sunset); }

.drawer-foot {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--line);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}
.cart-total-label {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.cart-total-amt {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  color: var(--bone);
}
.cart-checkout {
  width: 100%;
  padding: 16px;
  background: var(--sunset);
  color: var(--bone);
  border: 0;
  border-radius: 100px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.cart-checkout:hover { background: #F0703B; }
.cart-disclaimer {
  font-size: 11px;
  color: var(--bone-faint);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

/* ====== LIGHTBOX ====== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 250;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.lightbox[aria-hidden="false"] {
  pointer-events: auto;
  opacity: 1;
}
.gallery-grid .g-cell { cursor: zoom-in; }
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 8, 0.94);
  backdrop-filter: blur(8px);
}
.lightbox-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 80px;
  pointer-events: none;
}
.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
  transform: scale(0.98);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s;
  pointer-events: auto;
}
.lightbox[aria-hidden="false"] .lightbox-img {
  transform: scale(1);
}
.lightbox-img.swap {
  opacity: 0;
  transform: scale(0.99);
}
.lightbox-close,
.lightbox-arrow {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 2;
}
.lightbox-close:hover,
.lightbox-arrow:hover {
  background: var(--sunset);
  border-color: var(--sunset);
}
.lightbox-close {
  top: 28px;
  right: 28px;
}
.lightbox-prev { left: 28px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 28px; top: 50%; transform: translateY(-50%); }
.lightbox-count {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  z-index: 2;
}

@media (max-width: 680px) {
  .lightbox-stage { padding: 72px 16px; }
  .lightbox-close { top: 16px; right: 16px; width: 40px; height: 40px; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .lightbox-prev,
  .lightbox-next { width: 40px; height: 40px; }
}

/* ====== TOAST ====== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink-soft, #1f1b16);
  color: var(--bone);
  padding: 12px 20px;
  border-radius: 100px;
  border: 1px solid var(--sunset);
  font-size: 14px;
  z-index: 220;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ====== GEAR GRID ====== */
.gear-grid {
  max-width: 1200px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gear-card {
  display: block;
  color: inherit;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), border-color 0.3s;
  position: relative;
}
.gear-card:hover { transform: translateY(-4px); border-color: var(--sunset); }
.gear-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;
}
.gear-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.gear-card:hover .gear-img img { transform: scale(1.06); }
.gear-name {
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--bone);
  text-align: center;
  letter-spacing: 0.01em;
}
.shop-cta-wrap {
  text-align: center;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .gear-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 32px; }
  .gear-name { font-size: 13px; padding: 10px 12px; }
  .shop-cta-wrap { margin-top: 32px; }
}

/* ====== TESTIMONIAL CAROUSEL ====== */
.testimonial-carousel {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.t-stage {
  position: relative;
  min-height: 260px;
  flex: 1;
  min-width: 0;
}
.t-slide {
  position: absolute;
  inset: 0;
  padding: 48px 32px;
  background: var(--light-surface, #FFFAF1);
  border: 1px solid var(--light-line, rgba(26,24,20,0.10));
  border-radius: 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.t-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
.t-slide .quote-mark {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: normal;
  font-weight: 700;
  font-size: 80px;
  line-height: 0.9;
  color: var(--sunset);
  margin-bottom: 4px;
  height: 38px;
  letter-spacing: -0.02em;
}
.t-slide p {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.35;
  color: var(--light-ink);
  letter-spacing: -0.005em;
  max-width: 640px;
  margin: 0 auto;
}
.t-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--light-line, rgba(26,24,20,0.20));
  color: var(--light-ink, #1A1814);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  flex-shrink: 0;
}
.t-arrow:hover { background: var(--sunset); border-color: var(--sunset); color: var(--bone); }
.t-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 8px;
  flex-basis: 100%;
}
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(26,24,20,0.22);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s;
}
.t-dot.active {
  width: 32px;
  border-radius: 4px;
  background: var(--sunset);
}
.t-dot:hover { background: var(--sunset); }

@media (max-width: 680px) {
  .testimonial-carousel { padding: 0 20px; gap: 12px; }
  .t-slide { padding: 36px 20px; }
  .t-stage { min-height: 300px; }
  .t-slide p { font-size: 20px; }
  .t-arrow { width: 40px; height: 40px; }
}

/* ====== SHOP GEAR ====== */
.shop-gear {
  padding: 120px 40px;
  background: var(--bg);
  color: var(--bone);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--light-line, rgba(26,24,20,0.10));
  border-bottom: 1px solid rgba(244,237,226,0.08);
}
.shop-gear::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(232,98,42,0.16) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  filter: blur(70px);
  pointer-events: none;
}
.shop-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.shop-mark {
  height: 72px;
  width: auto;
  margin: 0 auto 28px;
  display: block;
  opacity: 0.9;
}
.shop-gear .eyebrow { justify-content: center; color: var(--bone-dim); margin-bottom: 20px; display: inline-flex; }
.shop-h2 { margin-bottom: 20px; color: var(--bone); }
.shop-lede {
  font-size: 18px;
  color: var(--bone-dim);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.shop-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .shop-gear { padding: 80px 20px; }
  .shop-mark { height: 56px; margin-bottom: 20px; }
}

/* ================================================================ */
/* LIGHT SECTION OVERRIDES — alternating light/dark rhythm            */
/* ================================================================ */

:root {
  --light-bg:      #F5EEDF;
  --light-bg-2:    #ECE3D2;
  --light-surface: #FFFAF1;
  --light-ink:     #1A1814;
  --light-ink-dim: rgba(26,24,20,0.72);
  --light-ink-faint: rgba(26,24,20,0.42);
  --light-line:    rgba(26,24,20,0.10);
}

/* Base light-section backgrounds */
.watch,
.gallery,
.services,
.process {
  background: var(--light-bg);
  color: var(--light-ink);
}
.coach,
.testimonials {
  background: var(--light-bg-2);
  color: var(--light-ink);
}

/* Remove decorative dark-mode flourishes that don't belong on light bg */
.watch::before { display: none; }
.coach::before { opacity: 0.4; background: radial-gradient(circle, rgba(61,127,136,0.10) 0%, transparent 60%); }
.services .section-head.center .lede { color: var(--light-ink-dim); }

/* Section heads */
.watch .eyebrow,
.coach .eyebrow,
.gallery .eyebrow,
.services .eyebrow,
.testimonials .eyebrow,
.process .eyebrow { color: var(--light-ink-dim); }
.watch .eyebrow.light,
.gallery .eyebrow.light,
.process .eyebrow.light { color: var(--light-ink-faint); }

.watch .h2,
.coach .h2,
.coach .coach-h2,
.gallery .h2,
.services .h2,
.testimonials .h2,
.process .h2 { color: var(--light-ink); }

.watch .lede,
.gallery .lede,
.testimonials .lede { color: var(--light-ink-dim); }

/* PROCESS section (now light) */
.process .step { border-top-color: var(--sunset); }
.process .step h4 { color: var(--light-ink); }
.process .step-meta { color: var(--sunset); }
.process .step p { color: var(--light-ink-dim); }

/* WATCH section */
.watch-item h3 { color: var(--light-ink); }
.watch-item p { color: var(--light-ink-dim); }
.watch-player {
  background: #fff;
  border-color: var(--light-line);
  box-shadow: 0 30px 60px rgba(26,24,20,0.10);
}

/* COACH section */
.coach-name { color: var(--light-ink); }
.coach-resume li {
  border-bottom-color: var(--light-line);
  color: var(--light-ink-dim);
}
.coach-copy p { color: var(--light-ink-dim); }
.hl { color: var(--sunset); }
.coach .btn-outline { color: var(--sunset); border-color: var(--sunset); }
.coach .btn-outline:hover { color: var(--light-ink); border-color: var(--light-ink); }

/* GALLERY cells */
.gallery .gallery-grid .g-cell {
  background: var(--light-bg-2);
  border-color: var(--light-line);
}
.gallery .gallery-grid .g-cell:hover { border-color: var(--sunset); }

/* SERVICES cards */
.services .service-card {
  background: var(--light-surface);
  border-color: var(--light-line);
}
.services .service-tag {
  color: var(--light-ink-dim);
  border-color: var(--light-line);
}
.services .service-h3 { color: var(--light-ink); }
.services .service-list li { color: var(--light-ink-dim); }
.services .service-foot { border-top-color: var(--light-line); }
.services .service-sub { color: var(--light-ink-faint); }

/* TESTIMONIALS cards */
.testimonials .t-card {
  background: var(--light-surface);
  border-color: var(--light-line);
}
.testimonials .t-card p { color: var(--light-ink); }
.testimonials .t-card-feature {
  background: linear-gradient(180deg, var(--sunset-soft) 0%, var(--light-surface) 100%);
  border-color: transparent;
}

/* Light/dark section transitions: subtle top/bottom borders */
.watch { border-top: 1px solid rgba(244,237,226,0.06); }
.process { border-top: 1px solid var(--light-line); border-bottom: 1px solid var(--light-line); }
.book { border-top: 1px solid var(--light-line); }

/* ================================================================ */
/* MOBILE POLISH — comprehensive overrides for phones (<=768)        */
/* and very small phones (<=480). Keep at end so they win cascade.   */
/* ================================================================ */
@media (max-width: 768px) {
  /* Nav: shrink the logo dramatically on phones */
  .logo-img {
    height: 72px !important;
    max-height: 72px !important;
    max-width: 280px !important;
  }
  .nav.scrolled .logo-img {
    height: 56px !important;
    max-height: 56px !important;
  }
  .nav { padding: 14px 18px; gap: 12px; }
  .nav.scrolled { padding: 10px 18px; }
  .nav-right { gap: 16px; }

  /* Hero: single-column stack with photo on top */
  .hero { min-height: auto; padding: 0; }
  .hero-grid {
    padding: 110px 20px 40px !important;
    gap: 36px !important;
    grid-template-columns: 1fr !important;
  }
  .hero-title {
    font-size: 52px !important;
    line-height: 0.95;
    margin-bottom: 22px;
  }
  .hero-title .line.italic { margin-left: 0.3em; }
  .hero-lede {
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 28px;
  }
  .hero-ctas { margin-bottom: 36px; gap: 12px; }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
    padding-top: 28px;
    max-width: 100%;
  }
  .stat-num { font-size: 38px; }
  .stat-label { font-size: 12px; line-height: 1.3; }

  /* Hero photo: cap height on phones, above the text */
  .hero-photo {
    height: 360px !important;
    order: -1;
  }

  /* Marquee */
  .marquee { padding: 16px 0; }
  .marquee-track { font-size: 16px !important; gap: 18px !important; }

  /* Section heads */
  .section-head { padding: 0 20px; margin-bottom: 40px; }
  .h2 { font-size: clamp(34px, 9vw, 48px) !important; }
  .lede { font-size: 16px; }

  /* Coach section: center sidebar content */
  .coach-headshot {
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
  .coach-meta { text-align: center; }
  .coach-name {
    font-size: 30px !important;
    text-align: center;
    margin-bottom: 24px;
  }
  .coach-resume {
    max-width: 420px;
    margin: 0 auto;
    text-align: left;
  }
  .coach-resume li { font-size: 13px; grid-template-columns: 70px 1fr; gap: 12px; }
  .coach-h2 { font-size: clamp(28px, 7.5vw, 40px) !important; }
  .coach-h2 span { white-space: normal !important; }
  .coach-copy p { font-size: 15px; line-height: 1.65; }

  /* Watch section */
  .watch-player { max-width: 280px; height: 480px; }
  .watch-item figcaption { padding: 20px; }
  .watch-item h3 { font-size: 22px; }
  .watch-item p { font-size: 14px; line-height: 1.5; }

  /* Gallery already handled at 900 + 520 breakpoints — keep */

  /* Services */
  .service-card { padding: 32px 22px; }
  .service-h3 { font-size: 42px !important; margin-bottom: 24px; }
  .service-list li { font-size: 15px; line-height: 1.55; }
  .service-sub { font-size: 13px; }
  .service-ctas .btn-primary-dark,
  .service-ctas .btn-learn-more { font-size: 14px; padding: 12px 18px; }

  /* Shop Gear */
  .shop-gear { padding: 72px 0; }
  .shop-inner { padding: 0 20px; }
  .shop-mark { height: 56px !important; max-height: 56px !important; margin-bottom: 20px !important; }
  .shop-h2 { font-size: clamp(38px, 10vw, 56px) !important; }
  .shop-lede {
    white-space: normal !important;
    font-size: 15px !important;
    padding: 0 10px;
    max-width: 100% !important;
    line-height: 1.55;
  }
  .gear-grid { padding: 0 16px; margin-top: 32px; }

  /* Testimonials */
  .testimonials { padding: 72px 0; }
  .t-stage { min-height: auto; padding: 0 48px; }
  .t-slide { padding: 16px 0; }
  .t-slide p { font-size: 16px !important; line-height: 1.6; }
  .quote-mark { font-size: 48px !important; }
  .t-arrow { width: 40px !important; height: 40px !important; }
  .t-arrow-prev { left: 6px !important; }
  .t-arrow-next { right: 6px !important; }

  /* Book section */
  .book { padding: 72px 20px; }
  .book-inner { max-width: 100%; }
  .book-h2 { font-size: 40px !important; margin-bottom: 18px; }
  .book-lede { font-size: 16px; margin-bottom: 32px; max-width: 100%; }
  .book-split { margin-top: 28px !important; gap: 48px !important; }
  .book-col-label { font-size: 11px; }
  .book-col-h { font-size: 22px !important; line-height: 1.2; }
  .book-col-sub { font-size: 14px; margin-bottom: 18px; }
  .book-form { gap: 16px; }

  /* Footer */
  .footer { padding: 56px 20px 24px; }
  .foot-logo-img {
    height: 96px !important;
    max-height: 96px !important;
    max-width: 320px !important;
    margin: 0 auto 16px !important;
    display: block;
  }
  .foot-brand { text-align: center; }
  .foot-brand p { max-width: 100%; margin: 0 auto; font-size: 14px; }
  .foot-col { align-items: flex-start; }
  .foot-col a { font-size: 15px; }
  .foot-bottom { font-size: 12px; }

  /* Modals */
  .modal-panel { padding: 32px 18px !important; border-radius: 12px; max-height: 92vh; }
  .modal-close { top: 14px; right: 14px; width: 36px; height: 36px; }
  .modal-head { padding-right: 40px; }
  .modal-head .h2 { font-size: 30px !important; }
  .modal-head .lede { font-size: 15px; }
  .programs-grid { gap: 16px; }
  .path-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .foot-note, .foot-policy { font-size: 13px !important; }

  /* Cart drawer */
  .drawer-panel { width: 100%; max-width: 420px; }
  .drawer-head { padding: 24px 20px; }
  .drawer-body { padding: 20px; }

  /* Lightbox controls — larger touch targets */
  .lightbox-close { width: 48px !important; height: 48px !important; top: 16px; right: 16px; }
  .lightbox-arrow { width: 48px !important; height: 48px !important; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-count { font-size: 13px; }

  /* Refund-policy page */
  .legal { padding: 160px 20px 80px; }
  .legal-h1 { margin-bottom: 48px; }
  .legal-h2 { font-size: 24px; margin: 56px 0 24px; padding-bottom: 16px; }
  .legal-list li { font-size: 16px; padding: 22px 0; }
  .legal-list li strong { font-size: 17px; }
  .legal-foot { flex-direction: column; align-items: stretch; gap: 12px; margin-top: 48px; }
  .legal-foot .btn-primary, .legal-foot .btn-ghost { text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
  .logo-img { height: 60px !important; max-height: 60px !important; max-width: 220px !important; }
  .nav.scrolled .logo-img { height: 48px !important; max-height: 48px !important; }
  .nav { padding: 12px 16px; }

  .hero-grid { padding: 92px 18px 32px !important; }
  .hero-title { font-size: 44px !important; }
  .hero-lede { font-size: 15px; }
  .hero-photo { height: 320px !important; }
  .stat-num { font-size: 32px; }

  .coach-name { font-size: 26px !important; }
  .coach-headshot { max-width: 220px; }

  .service-h3 { font-size: 36px !important; }
  .shop-h2 { font-size: clamp(32px, 11vw, 44px) !important; }
  .shop-mark { height: 48px !important; max-height: 48px !important; }

  .book-h2 { font-size: 32px !important; }
  .book-col-h { font-size: 20px !important; }

  .foot-logo-img { height: 80px !important; max-height: 80px !important; }

  .watch-player { max-width: 100%; height: 420px; }
  .modal-head .h2 { font-size: 26px !important; }
  .legal-h2 { font-size: 22px; }
}

/* ====== LEGAL / REFUND POLICY PAGE ====== */
.legal {
  padding: 280px 40px 160px;
  background: var(--light-bg);
  color: var(--light-ink);
  min-height: 80vh;
}
.legal-inner {
  max-width: 820px;
  margin: 0 auto;
}
.legal-h1 {
  color: var(--light-ink);
  margin-bottom: 72px;
  line-height: 1.05;
}
.legal-h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.01em;
  color: var(--light-ink);
  margin: 72px 0 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--light-line);
}
.legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.legal-list li {
  font-size: 17px;
  line-height: 1.75;
  color: var(--light-ink-dim);
  padding: 28px 0;
  border-bottom: 1px solid var(--light-line);
}
.legal-list li:last-child { border-bottom: none; }
.legal-list li strong {
  color: var(--light-ink);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  font-size: 19px;
  letter-spacing: -0.005em;
}
.legal-foot {
  margin-top: 80px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.legal .btn-primary {
  background: var(--sunset);
  color: var(--bone);
}
.legal .btn-ghost {
  color: var(--light-ink);
  border: 1px solid var(--light-ink);
}
@media (max-width: 768px) {
  .legal { padding: 200px 20px 100px; }
  .legal-h1 { margin-bottom: 48px; }
  .legal-h2 { font-size: 24px; margin: 56px 0 24px; }
  .legal-list li { font-size: 16px; padding: 22px 0; }
  .legal-list li strong { font-size: 17px; }
}

/* BOOK: side-by-side Calendly + form */
.book-split {
  margin-top: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: stretch;
  text-align: left;
}
.book-col { min-width: 0; }
.book-col-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sunset);
  margin-bottom: 14px;
}
.book-col-label .dot {
  width: 6px; height: 6px;
  background: var(--sunset);
  border-radius: 50%;
  display: inline-block;
}
.book-col-h {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.book-col-sub {
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.8;
  margin-bottom: 22px;
}

.calendly-wrap {
  background: var(--light-bg);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  width: 80%;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.calendly-inline-widget {
  width: 100% !important;
  min-width: 0 !important;
  height: 760px;
  min-height: 700px;
}

.book-col-form .book-form { margin-top: 0; }

@media (max-width: 760px) {
  .book-split { grid-template-columns: 1fr; gap: 56px; }
  .calendly-wrap { width: 100%; max-width: 100%; }
  .calendly-inline-widget { height: 1040px; }
}

/* Programs modal small footer link */
.modal-foot .foot-policy {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  color: var(--bone-dim);
  line-height: 1.6;
}
.modal-foot .foot-policy a {
  color: var(--sunset);
  border-bottom: 1px solid currentColor;
}
.modal-foot .foot-policy a:hover { color: #F0703B; }
