: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;
  padding: 22px 40px;
  transition: all 0.3s ease;
  backdrop-filter: blur(0);
}

.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;
}

.logo-mark {
  color: var(--sunset);
  font-style: italic;
  font-weight: 300;
}

.logo-text {
  letter-spacing: 0.14em;
  font-size: 18px;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: 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: 140px 40px 60px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.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(--sunset);
  font-size: 0.7em;
}

.stat-label {
  font-size: 12px;
  line-height: 1.4;
  color: var(--bone-faint);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

.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: 72px;
}

.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;
}

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

/* ====== WATCH ====== */
.watch {
  padding: 140px 0 120px;
  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;
  aspect-ratio: 9/16;
  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: 140px 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-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: 64px;
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
  color: var(--bone);
}

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

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

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

.coach-body { padding-top: 20px; }

.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);
}

/* ====== SERVICES ====== */
.services {
  padding: 140px 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: 140px 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: 140px 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: 720px;
  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;
}

.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 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 32px;
  letter-spacing: 0.12em;
  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: 56px;
    max-width: 520px;
  }

  .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: 48px; }

  .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; }
}
