:root {
  --orange: #ff5a1f;
  --orange-deep: #e64713;
  --ink: #121716;
  --field: #1b332d;
  --field-light: #385148;
  --cream: #fffaf4;
  --paper: #f3eee8;
  --line: #ddd8d0;
  --muted: #625e59;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
}
::selection { background: var(--orange); color: #fff; }
main section { scroll-margin-top: 130px; }
a, button { transition: color .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 30;
  padding: 12px 16px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 124px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 244, .96);
  backdrop-filter: blur(12px);
}
.brand-logo { display: block; line-height: 0; }
.brand-logo img { display: block; width: 360px; height: 108px; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 25px; }
.nav a { color: var(--ink); font-size: 13px; font-weight: 700; text-decoration: none; }
.nav a:not(.nav-button):hover { color: var(--orange); }
.nav-dropdown { position: relative; }
.nav-dropdown summary { color: var(--ink); font-size: 13px; font-weight: 700; cursor: pointer; list-style: none; }
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary span { color: var(--orange); margin-left: 3px; font-size: 15px; }
.nav-dropdown[open] summary, .nav-dropdown summary:hover { color: var(--orange); }
.nav-dropdown-menu { position: absolute; top: calc(100% + 16px); right: -12px; min-width: 170px; padding: 8px 0; background: var(--cream); border: 1px solid var(--line); box-shadow: 6px 6px 0 rgba(18,23,22,.1); }
.nav-dropdown-menu a { display: block; padding: 11px 16px; white-space: nowrap; }
.nav-dropdown-menu a:hover { color: var(--orange); background: var(--paper); }
.nav-button, .button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 14px 20px;
  border: 0;
  border-radius: 2px;
  background: var(--orange);
  color: #fff;
  font: 700 14px "DM Sans", sans-serif;
  text-decoration: none;
  cursor: pointer;
}
.nav-button:hover, .button:hover { background: var(--orange-deep); transform: translateY(-2px); box-shadow: 4px 4px 0 rgba(18, 23, 22, .18); }
.button-dark { background: var(--ink); }
.button-dark:hover { background: #262d2b; }
.menu-toggle { display: none; border: 0; background: transparent; font-size: 25px; }

.eyebrow {
  margin: 0 0 20px;
  color: #6b6761;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; font-family: "Barlow Condensed", sans-serif; line-height: .88; letter-spacing: -1.5px; text-transform: uppercase; }
em { color: var(--orange); font-style: normal; }

.hero {
  position: relative;
  min-height: 625px;
  padding: 80px 8vw 90px 11vw;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
  align-items: center;
  gap: 7vw;
  overflow: hidden;
  background: var(--field);
  color: #fff;
}
.hero::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent 0, transparent 9.9%, rgba(255,255,255,.035) 10%, transparent 10.2%); }
.hero-copy, .hero-options { position: relative; z-index: 1; }
.hero .eyebrow { color: #ffb196; }
.hero-kicker { margin-bottom: 25px; font-size: clamp(14px, 1.2vw, 18px); letter-spacing: 2.4px; }
.hero h1 { font-size: clamp(76px, 9vw, 132px); }
.hero-text { max-width: 540px; margin: 30px 0; font-size: 17px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.text-link { color: #fff; font-size: 14px; font-weight: 700; text-decoration: none; }
.text-link:hover { color: #ffb196; }
.hero-options { padding: 30px; border-top: 7px solid var(--orange); background: var(--cream); box-shadow: 16px 16px 0 rgba(0,0,0,.18); color: var(--ink); }
.hero-options .eyebrow { color: var(--orange); }
.hero-options a { padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); color: var(--ink); text-decoration: none; }
.hero-options a:last-of-type { border-bottom: 1px solid var(--line); }
.hero-options a:hover span { color: var(--orange); }
.hero-options span { font-weight: 800; }
.hero-options span small { display: block; margin-top: 4px; color: #686868; font-size: 10px; font-weight: 700; line-height: 1.35; }
.hero-options a strong { color: var(--muted); font-size: 12px; white-space: nowrap; }
.hero-options .small-group-option > strong { flex: 1; min-width: 0; text-align: right; white-space: normal; }
.hero-options a strong .group-email-label { display: block; margin-top: 2px; color: var(--muted); font-size: 10px; font-weight: 800; text-align: right; }
.hero-options span .group-booking-note { display: block; margin-top: 4px; color: #686868; font-size: 10px; font-weight: 800; line-height: 1.25; white-space: normal; }
.hero-location-note { margin: 16px 0 0; color: var(--field); font-size: 12px; font-weight: 800; line-height: 1.5; overflow-wrap: anywhere; }
.hero-location-note strong { color: inherit; font-size: inherit; white-space: normal; }

.intro { max-width: 1050px; margin: auto; padding: 95px 12vw; text-align: center; }
.intro h2, .section-heading h2, .booking h2, .faq h2 { font-size: clamp(56px, 7vw, 92px); }
.intro > p:last-child { max-width: 640px; margin: 34px auto 0; color: var(--muted); line-height: 1.7; }

.training { padding: 90px 8vw; background: var(--ink); color: #fff; }
.training .eyebrow { color: #aaa39b; }
.section-heading { margin-bottom: 45px; }
.training-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; }
.training-card { min-height: 340px; padding: 31px; display: flex; flex-direction: column; }
.card-number { font: 700 20px "Barlow Condensed", sans-serif; opacity: .72; }
.training-card h3 { margin: 48px 0 18px; font-size: clamp(42px, 4vw, 57px); }
.training-card p { max-width: 340px; margin: auto 0 0; font-size: 14px; line-height: 1.58; }
.dark-card { background: #29322f; }
.orange-card { background: var(--orange); }
.film-card { background: var(--field-light); }

.about-us { padding: 75px 12vw; display: grid; grid-template-columns: minmax(155px, .35fr) minmax(0, 1fr); gap: clamp(35px, 7vw, 110px); border-bottom: 1px solid var(--line); }
.about-label { align-self: start; }
.about-us .eyebrow { margin: 6px 0 18px; color: var(--orange); font-size: clamp(17px, 1.7vw, 22px); }
.about-coaches-link { color: var(--ink); font-size: 13px; font-weight: 800; text-decoration: none; }
.about-coaches-link span { color: var(--orange); margin-left: 5px; }
.about-coaches-link:hover { color: var(--orange); }
.about-us > p:last-child { max-width: 790px; margin: 0; font-size: clamp(18px, 1.6vw, 23px); line-height: 1.52; }

.coach-photo-placeholder { min-height: 430px; display: grid; place-items: center; border: 2px dashed rgba(255,255,255,.45); background: var(--field); color: #ffb196; box-shadow: 14px 14px 0 rgba(18,23,22,.12); }
.coach-photo-image { overflow: hidden; border: 0; }
.coach-photo-image img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 35%; }
.coach-photo-placeholder span { font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }
.coach-copy h2 { max-width: 720px; font-size: clamp(54px, 6.4vw, 90px); }
.coach-copy h3 { margin-top: 38px; font-size: 34px; }
.coach-role { margin: 8px 0 20px; color: var(--orange); font-size: 12px; font-weight: 800; letter-spacing: 1.1px; text-transform: uppercase; }
.coach-copy > p:not(.eyebrow):not(.coach-role) { max-width: 600px; color: var(--muted); line-height: 1.7; }
.nav a[aria-current="page"] { color: var(--orange); }
.coaches-hero { padding: 95px 12vw 80px; background: var(--field); color: #fff; }
.coaches-hero .eyebrow { color: #ffb196; }
.coaches-hero h1 { max-width: 980px; font-size: clamp(76px, 9vw, 132px); }
.coaches-hero > p:last-child { max-width: 650px; margin: 32px 0 0; color: #e4ded6; font-size: 17px; line-height: 1.7; }
.coach-profile { padding: 95px 12vw; display: grid; grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr); align-items: center; gap: 8vw; background: var(--paper); }
.coach-profile-alt { border-top: 1px solid var(--line); background: var(--cream); }
.coach-profile-alt .coach-copy { order: -1; }
.coach-profile-alt .coach-photo-placeholder { background: var(--ink); box-shadow: -14px 14px 0 rgba(18,23,22,.12); }
.coach-edit-note { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 12px; font-weight: 700; }
.coach-cta { padding: 62px 12vw; display: flex; align-items: center; justify-content: space-between; gap: 35px; background: var(--ink); color: #fff; }
.coach-cta .eyebrow { color: #aaa39b; }
.coach-cta h2 { font-size: clamp(48px, 5vw, 72px); }

.booking { padding: 95px 12vw; display: grid; grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr); gap: 8vw; background: var(--field); color: #fff; }
.booking .eyebrow { color: #ffb196; }
.booking-copy > p:not(.eyebrow) { max-width: 500px; line-height: 1.7; color: #e4ded6; }
.booking-steps { margin-top: 32px; display: grid; gap: 11px; }
.booking-steps span { padding: 7px 0 7px 14px; border-left: 3px solid var(--orange); font-size: 13px; font-weight: 700; }
.booking-panel { padding: 34px; border-top: 7px solid var(--orange); background: var(--cream); color: var(--ink); box-shadow: 14px 14px 0 rgba(0,0,0,.18); }
.booking-panel .eyebrow { color: var(--orange); }
.booking-choice { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); color: var(--ink); text-decoration: none; }
.booking-choice:hover strong { color: var(--orange); }
.booking-choice span, .booking-choice strong, .booking-choice small { display: block; }
.booking-choice small { margin-top: 4px; color: var(--muted); font-size: 12px; }
.hero-options .group-booking-note, .booking-choice .group-booking-note { margin-top: 5px; color: #686868; font-size: 11px; font-weight: 700; }
.booking-choice b { font-size: 12px; white-space: nowrap; }
.location-note, .policy-note { margin: 18px 0 0; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; line-height: 1.55; }
.policy-note { margin-top: 12px; padding-top: 0; border: 0; }

.film-review { padding: 95px 12vw; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 8vw; background: var(--paper); }
.film-section-label { margin: 0 0 24px; color: var(--field-light); font-size: clamp(14px, 1.4vw, 18px); font-weight: 800; letter-spacing: 1.7px; text-transform: uppercase; }
.film-review h2 { font-size: clamp(72px, 8vw, 122px); }
.film-review-copy > p:not(.film-section-label) { max-width: 530px; margin: 30px 0; color: var(--muted); line-height: 1.7; }
.film-steps { display: grid; gap: 10px; font-size: 13px; font-weight: 700; }
.film-steps span { padding: 7px 12px; border-left: 3px solid var(--orange); }
.film-purchase { padding: 38px; border-top: 7px solid var(--orange); background: var(--cream); box-shadow: 12px 12px 0 rgba(18,23,22,.12); }
.film-purchase h3 { font-size: 52px; }
.film-price { margin: 28px 0 12px; color: var(--orange); font: 800 23px "Barlow Condensed", sans-serif; letter-spacing: .4px; text-transform: uppercase; }
.film-purchase > p:not(.eyebrow):not(.film-price):not(.form-note) { font-size: 14px; line-height: 1.55; }
.film-purchase .button { width: 100%; margin: 15px 0; }
.film-request-form { display: grid; gap: 8px; margin-top: 22px; }
.film-request-form label { margin-top: 5px; color: var(--ink); font-size: 12px; font-weight: 800; }
.film-request-form input, .film-request-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 0; padding: 12px 13px; background: var(--paper); color: var(--ink); font: inherit; }
.film-request-form textarea { min-height: 105px; resize: vertical; }
.film-request-form input:focus, .film-request-form textarea:focus { outline: 2px solid var(--orange); outline-offset: 1px; border-color: var(--orange); }
.film-request-form .button { border: 0; cursor: pointer; }
.film-request-form .button:disabled { cursor: wait; opacity: .7; }
.form-status { min-height: 18px; margin: 0; color: #9b3211; font-size: 12px; line-height: 1.45; }
.form-note { margin: 0; color: #6b6761; font-size: 12px; line-height: 1.5; text-align: center; }

.faq { max-width: 900px; margin: auto; padding: 90px 6vw; }
.faq h2 { margin-bottom: 45px; }
.faq details { padding: 21px 0; border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; justify-content: space-between; list-style: none; cursor: pointer; font-size: 17px; font-weight: 700; }
.faq summary span { color: var(--orange); font-size: 22px; line-height: 15px; transition: transform .18s ease; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { max-width: 650px; margin: 14px 0 0; color: var(--muted); line-height: 1.65; }

footer { padding: 38px 6vw; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); color: #6b6761; font-size: 12px; }
footer .brand-logo img { width: 225px; height: 82px; }
footer > a:last-child { color: var(--ink); font-weight: 700; }
footer > a:last-child:hover { color: var(--orange); }

.payment-redirect { min-height: 100vh; display: grid; place-content: center; gap: 22px; max-width: 720px; margin: auto; padding: 60px 7vw; text-align: center; }
.payment-redirect h1 { font-size: clamp(58px, 9vw, 110px); }
.payment-redirect p:not(.eyebrow) { color: var(--muted); line-height: 1.65; }
.payment-redirect .button { justify-self: center; }

@media (min-width: 761px) and (max-width: 1180px) {
  .site-header { height: 95px; padding: 0 3vw; }
  .brand-logo img { width: 225px; height: 74px; }
  .nav { gap: 15px; }
  .hero { padding-left: 7vw; padding-right: 7vw; }
}

@media (max-width: 760px) {
  .site-header { height: 70px; padding: 0 6vw; }
  .brand-logo img { width: 175px; height: 54px; }
  .menu-toggle { display: block; }
  .nav { display: none; position: absolute; top: 69px; left: 0; right: 0; padding: 25px 7vw; flex-direction: column; align-items: flex-start; background: var(--cream); border-bottom: 1px solid var(--line); }
  .nav.open { display: flex; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown summary { padding: 0; }
  .nav-dropdown-menu { position: static; min-width: 0; margin: 12px 0 0 14px; padding: 0 0 0 14px; border: 0; border-left: 2px solid var(--orange); box-shadow: none; }
  .nav-dropdown-menu a { padding: 8px 0; }
  main section { scroll-margin-top: 70px; }
  .hero { min-height: auto; padding: 62px 7vw 70px; grid-template-columns: 1fr; gap: 45px; }
  .hero h1 { font-size: clamp(62px, 20vw, 88px); }
  .hero-options { padding: 25px; }
  .intro, .training, .booking, .film-review { padding: 72px 7vw; }
  .intro h2, .section-heading h2, .booking h2, .faq h2 { font-size: clamp(48px, 15vw, 70px); }
  .film-review h2 { font-size: clamp(58px, 18vw, 88px); }
  .training-grid, .booking, .film-review { grid-template-columns: 1fr; }
  .training-card { min-height: 300px; }
  .about-us { padding: 65px 7vw; grid-template-columns: 1fr; gap: 18px; }
  .about-us .eyebrow { margin: 0; }
  .coach-photo-placeholder { min-height: 360px; }
  .coaches-hero { padding: 65px 7vw; }
  .coaches-hero h1 { font-size: clamp(60px, 18vw, 88px); }
  .coach-copy h2 { font-size: clamp(50px, 16vw, 76px); }
  .coach-profile { padding: 72px 7vw; grid-template-columns: 1fr; gap: 48px; }
  .coach-cta { padding: 52px 7vw; align-items: flex-start; flex-direction: column; }
  .booking { gap: 45px; }
  .booking-panel { padding: 26px; }
  .booking-choice { align-items: flex-start; flex-direction: column; gap: 10px; }
  .film-review { gap: 42px; }
  .faq { padding: 75px 7vw; }
  footer { padding: 30px 7vw; display: grid; gap: 18px; }
  footer p { margin: 0; }
}

@media (max-width: 480px) {
  .site-header { height: 62px; padding: 0 5vw; }
  .brand-logo img { width: 145px; height: 46px; }
  .menu-toggle { font-size: 22px; }
  .nav { top: 61px; padding: 20px 6vw; gap: 20px; }
  main section { scroll-margin-top: 62px; }

  .button, .nav-button { gap: 15px; padding: 12px 16px; font-size: 13px; }
  .eyebrow { margin-bottom: 15px; font-size: 10px; letter-spacing: 1.5px; }

  .hero { padding: 44px 6vw 52px; gap: 32px; }
  .hero-kicker { margin-bottom: 18px; font-size: 12px; letter-spacing: 1.8px; }
  .hero h1 { font-size: clamp(50px, 16vw, 68px); }
  .hero-text { margin: 22px 0; font-size: 15px; line-height: 1.55; }
  .hero-actions { gap: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-options { padding: 20px; border-top-width: 5px; box-shadow: 8px 8px 0 rgba(0,0,0,.18); }
  .hero-options a { padding: 15px 0; gap: 12px; font-size: 14px; }
  .hero-options a strong { font-size: 11px; }
  .hero-location-note { font-size: 11px; line-height: 1.45; }

  .intro, .training, .booking, .film-review { padding: 52px 6vw; }
  .intro h2, .section-heading h2, .booking h2, .faq h2 { font-size: clamp(42px, 13vw, 56px); }
  .intro > p:last-child { margin-top: 24px; font-size: 14px; line-height: 1.6; }
  .section-heading { margin-bottom: 30px; }
  .training-grid { gap: 12px; }
  .training-card { min-height: 235px; padding: 24px; }
  .training-card h3 { margin: 32px 0 14px; font-size: 40px; }
  .training-card p { font-size: 13px; }

  .about-us { padding: 48px 6vw; gap: 14px; }
  .about-us .eyebrow { font-size: 16px; }
  .about-us > p:last-child { font-size: 17px; line-height: 1.48; }

  .booking { gap: 32px; }
  .booking-copy > p:not(.eyebrow) { font-size: 14px; line-height: 1.6; }
  .booking-steps { margin-top: 24px; }
  .booking-steps span { font-size: 12px; }
  .booking-panel { padding: 20px; border-top-width: 5px; box-shadow: 8px 8px 0 rgba(0,0,0,.18); }
  .booking-choice { padding: 16px 0; }

  .film-review { gap: 32px; }
  .film-review h2 { font-size: clamp(50px, 15vw, 66px); }
  .film-section-label { margin-bottom: 17px; font-size: 12px; letter-spacing: 1.3px; }
  .film-review-copy > p:not(.film-section-label) { margin: 22px 0; font-size: 14px; line-height: 1.6; }
  .film-steps { font-size: 12px; }
  .film-purchase { padding: 22px; border-top-width: 5px; box-shadow: 8px 8px 0 rgba(18,23,22,.12); }
  .film-purchase h3 { font-size: 42px; }
  .film-price { margin: 20px 0 10px; font-size: 19px; }
  .film-request-form { margin-top: 18px; }
  .film-request-form input, .film-request-form textarea { padding: 10px 11px; font-size: 14px; }
  .film-request-form textarea { min-height: 90px; }
  .film-request-form .button { gap: 10px; }

  .faq { padding: 54px 6vw; }
  .faq h2 { margin-bottom: 30px; }
  .faq details { padding: 17px 0; }
  .faq summary { gap: 15px; font-size: 15px; }
  .faq details p { font-size: 14px; }

  .coaches-hero { padding: 48px 6vw; }
  .coaches-hero h1 { font-size: clamp(50px, 15vw, 68px); }
  .coaches-hero > p:last-child { margin-top: 22px; font-size: 15px; }
  .coach-profile { padding: 52px 6vw; gap: 32px; }
  .coach-photo-placeholder { min-height: 285px; box-shadow: 8px 8px 0 rgba(18,23,22,.12); }
  .coach-profile-alt .coach-photo-placeholder { box-shadow: -8px 8px 0 rgba(18,23,22,.12); }
  .coach-copy h2 { font-size: clamp(44px, 13vw, 58px); }
  .coach-copy h3 { margin-top: 28px; font-size: 28px; }
  .coach-copy > p:not(.eyebrow):not(.coach-role) { font-size: 14px; line-height: 1.6; }
  .coach-cta { padding: 42px 6vw; gap: 24px; }
  .coach-cta h2 { font-size: 42px; }

  footer { padding: 24px 6vw; gap: 13px; font-size: 11px; }
  footer .brand-logo img { width: 155px; height: 55px; }
  .payment-redirect { gap: 18px; padding: 42px 6vw; }
  .payment-redirect h1 { font-size: 50px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
