:root {
  --gold: #c9a84c;
  --gold-dim: #9a7c35;
  --bg: #0a0a0a;
  --bg-2: #10100f;
  --bg-3: #171613;
  --text: #efece3;
  --muted: rgba(239, 236, 227, 0.72);
  --muted-soft: rgba(239, 236, 227, 0.52);
  --border: rgba(239, 236, 227, 0.11);
  --danger: #ef9a8c;
  --success: #b8d98c;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-fast: cubic-bezier(0.25, 1, 0.5, 1);
  --container: min(1180px, calc(100vw - 40px));
}

*, *::before, *::after { box-sizing: border-box; }

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 84% 8%, rgba(201, 168, 76, 0.13), transparent 24rem),
    linear-gradient(180deg, #090909 0%, var(--bg) 45%, #080807 100%);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  inset-block-start: -100px;
  inset-inline-start: 1rem;
  z-index: 100;
  background: var(--gold);
  color: var(--bg);
  padding: .75rem 1rem;
  text-decoration: none;
  font-weight: 700;
}
.skip-link:focus { inset-block-start: 1rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem max(20px, 4vw);
  transition: background 260ms var(--ease-fast), border-color 260ms var(--ease-fast), padding 260ms var(--ease-fast);
}

.site-header.is-scrolled {
  background: rgba(10, 10, 10, .9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
  padding-block: .72rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  min-height: 44px;
}

.brand-mark img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(.75rem, 2.5vw, 2rem);
  font-size: .82rem;
  color: var(--muted);
}

.primary-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: color 160ms var(--ease-fast);
}

.primary-nav a:hover { color: var(--text); }
.primary-nav .nav-cta {
  min-height: 46px;
  padding: .6rem .85rem .6rem 1rem;
  border: 1px solid rgba(201, 168, 76, .7);
  background: rgba(201, 168, 76, .09);
  color: #f2d485;
  font-weight: 700;
}
.primary-nav .nav-cta:hover { color: #10100f; background: var(--gold); }

.hero {
  min-height: 84svh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .72fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  width: var(--container);
  margin-inline: auto;
  padding: 7rem 0 clamp(3rem, 6vw, 6rem);
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  width: min(76vw, 920px);
  aspect-ratio: 1;
  left: -32%;
  top: -42%;
  border: 1px solid rgba(201, 168, 76, .09);
  border-radius: 50%;
  box-shadow: 0 0 0 4.5rem rgba(201, 168, 76, .017), 0 0 0 9rem rgba(201, 168, 76, .012);
  pointer-events: none;
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-copy .eyebrow::before {
  content: "";
  display: inline-block;
  width: 1.7rem;
  height: 1px;
  margin: 0 .75rem .25rem 0;
  background: currentColor;
}

p { overflow-wrap: anywhere; }

h1, h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: .98;
  text-wrap: balance;
}

h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(3.5rem, 6vw, 6.4rem);
}

.hero h1 em {
  color: #d4c4a3;
  font-weight: 400;
  text-decoration: underline;
  text-decoration-color: rgba(201, 168, 76, .48);
  text-decoration-thickness: 1px;
  text-underline-offset: .12em;
}

.nowrap { white-space: nowrap; }

h2 {
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
}

h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.4vw, 2.4rem);
  font-weight: 500;
  line-height: 1.05;
}

.hero-lede {
  max-width: 58ch;
  margin: 1.5rem 0 2rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.hero-actions, .form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  align-items: center;
}

.button, .text-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: .85rem 1.15rem;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
  transition: transform 160ms var(--ease-fast), background 180ms var(--ease-fast), border-color 180ms var(--ease-fast), color 180ms var(--ease-fast);
}

.button:hover, .text-button:hover { transform: translateY(-1px); }
.button:active, .text-button:active { transform: translateY(1px); }

.button-primary {
  background: var(--gold);
  color: #10100f;
  border-color: var(--gold);
}

.button-primary:hover { background: #d7ba62; }
.button-primary:disabled { opacity: .55; cursor: wait; transform: none; }

.apply-cta {
  position: relative;
  overflow: hidden;
  gap: 1.5rem;
  isolation: isolate;
  box-shadow: 0 6px 22px rgba(0, 0, 0, .12);
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out), background 240ms var(--ease-out), color 240ms var(--ease-out);
}
.apply-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 248, 218, .42) 50%, transparent 80%);
  transform: translateX(-110%);
  transition: transform 500ms var(--ease-out);
  pointer-events: none;
}
.apply-cta:hover::before, .apply-cta:focus-visible::before { transform: translateX(110%); }
.apply-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201, 168, 76, .17); }
.apply-cta:active { transform: translateY(1px) scale(.985); }
.apply-cta > span { position: relative; z-index: 1; }
.cta-arrow {
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 400;
  transition: transform 240ms var(--ease-out);
}
.apply-cta:hover .cta-arrow, .apply-cta:focus-visible .cta-arrow { transform: translate(3px, -3px); }
.apply-cta:disabled::before { display: none; }
.apply-cta:disabled:hover { transform: none; box-shadow: none; }

.button-secondary, .text-button {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.button-secondary:hover, .text-button:hover {
  border-color: rgba(201, 168, 76, .58);
  color: var(--gold);
}

.hero-media {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  justify-self: end;
  width: min(100%, 420px);
  height: min(70svh, 660px);
  position: relative;
  margin: 0;
}

.film-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0%;
  border: 1px solid rgba(220, 210, 187, .22);
  filter: saturate(.72) contrast(1.04);
  display: block;
}

.film-frame::before {
  content: "";
  position: absolute;
  inset: -10px 10px 10px -10px;
  border: 1px solid rgba(201, 168, 76, .38);
  pointer-events: none;
}

.film-toggle {
  position: absolute;
  z-index: 2;
  top: .8rem;
  right: .8rem;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(239, 236, 227, .42);
  border-radius: 50%;
  background: rgba(10, 10, 10, .68);
  color: var(--text);
  cursor: pointer;
  transition: background 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.film-toggle:hover { background: var(--gold); color: #10100f; transform: scale(1.05); }

.film-toggle-icon {
  display: block;
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid currentColor;
}

.film-toggle[aria-pressed="true"] .film-toggle-icon {
  width: 10px;
  height: 12px;
  margin-left: 0;
  border: 0;
  border-left: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

section {
  width: var(--container);
  margin-inline: auto;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

section[id] { scroll-margin-top: 5rem; }

.section-band {
  width: 100%;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  border-block: 1px solid var(--border);
  background: radial-gradient(ellipse at 0 100%, rgba(201, 168, 76, .055), transparent 38%), #0e0e0d;
}

.section-intro {
  max-width: 820px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-intro::after {
  content: "";
  display: block;
  width: 4rem;
  height: 1px;
  margin-top: clamp(1.35rem, 2.5vw, 2rem);
  background: linear-gradient(90deg, var(--gold), rgba(201, 168, 76, 0));
}

.section-intro.narrow { max-width: 680px; }
.section-intro p:not(.eyebrow), .about-copy p, .path p, .faq p, .experience-list p, .supporting-tech {
  color: var(--muted);
}

.experience {
  display: block;
}

.experience-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--border);
}

.experience-list article {
  position: relative;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border-right: 1px solid var(--border);
}

.experience-list article:last-child { border-right: 0; }

.experience-list article::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  top: -4px;
  left: clamp(1.25rem, 2.5vw, 2rem);
  background: var(--gold);
  transform: rotate(45deg);
}

.experience-list article:nth-child(2) {
  background: linear-gradient(145deg, rgba(201, 168, 76, .055), transparent 70%);
}

.experience-list span {
  display: block;
  margin-bottom: 1.2rem;
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gold);
}

.experience-list h3,
.experience-list p {
  margin: 0;
}

.experience-list p { margin-top: .55rem; }

.path-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
  margin-bottom: 0;
}
.path-tab {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(.6rem, 2vw, 1.4rem);
  min-height: 92px;
  padding: 1rem clamp(.85rem, 2.3vw, 1.6rem);
  border: 1px solid rgba(201, 168, 76, .32);
  background: #1c1914;
  color: #eee5d4;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  line-height: 1.05;
  cursor: pointer;
  transition: background 280ms var(--ease-out), border-color 280ms var(--ease-out), color 280ms var(--ease-out);
}
.path-tab:nth-child(2) { background: #1b1d17; }
.path-tab[aria-selected="true"] { background: #352b1b; border-color: #e2c475; color: #fff7e5; }
.path-tab:nth-child(2)[aria-selected="true"] { background: #313325; }
.path-tab::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: #e4c578;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 420ms var(--ease-out);
}
.path-tab[aria-selected="true"]::after { transform: scaleX(1); }
.path-tab-number { flex: none; color: #e5c77b; font: 700 .7rem var(--sans); letter-spacing: .12em; }
.path-tab svg { flex: none; width: 44px; height: 44px; margin-left: auto; stroke: #d9c17f; stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; opacity: .68; transition: opacity 300ms var(--ease-out), transform 450ms var(--ease-out); }
.path-tab[aria-selected="true"] svg { opacity: 1; transform: translateY(-2px); }
.path-tab:hover { border-color: #e2c475; }

.path-layout {
  display: block;
}

.path {
  position: relative;
  overflow: hidden;
  padding: clamp(1.3rem, 2.5vw, 2rem) clamp(1.5rem, 3.5vw, 2.6rem);
  border: 1px solid rgba(211, 177, 99, .45);
  border-top: 0;
  background: radial-gradient(circle at 87% 16%, rgba(198, 152, 66, .23), transparent 45%), linear-gradient(145deg, #302719, #17140f 70%);
  box-shadow: inset 0 1px rgba(245, 221, 164, .13), 0 20px 45px rgba(0, 0, 0, .18);
  animation: path-reveal 380ms var(--ease-out) both;
}
@keyframes path-reveal { from { opacity: .25; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.path-bodybuilding { background: radial-gradient(circle at 84% 12%, rgba(182, 174, 120, .22), transparent 45%), linear-gradient(145deg, #29291e, #151611 72%); }

.path::before {
  content: "";
  position: absolute;
  top: -17rem;
  right: -10rem;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgba(201, 168, 76, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 2rem rgba(201, 168, 76, .018), 0 0 0 4rem rgba(201, 168, 76, .012);
  pointer-events: none;
}

.path > * { position: relative; }

.path p { color: rgba(245, 237, 219, .85); }
.path li { color: #f0e9d9; }
.path p { margin: 0; }

.path ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
}

.path li {
  border-top: 1px solid var(--border);
  padding: .7rem 0 .4rem 1.25rem;
  position: relative;
}

.path li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 1.4rem;
  width: .55rem;
  height: 1px;
  background: #e7c772;
}
.path-bodybuilding li::before { background: #d4d0a5; }

.shared-coaching-note {
  display: grid;
  grid-template-columns: minmax(140px, .55fr) minmax(0, 1.5fr) minmax(220px, .9fr);
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.25rem;
  padding: 1.3rem 1.5rem;
  border-block: 1px solid rgba(201, 168, 76, .42);
  background: linear-gradient(90deg, rgba(201, 168, 76, .12), rgba(201, 168, 76, .035));
}
.shared-coaching-note span {
  color: #e7cc85;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.4;
  text-transform: uppercase;
}
.shared-coaching-note p { margin: 0; color: var(--text); line-height: 1.4; }
.shared-coaching-note small { color: var(--muted); line-height: 1.5; }
.coaching-terms {
  padding-left: clamp(1rem, 2vw, 1.8rem);
  border-left: 1px solid rgba(201, 168, 76, .4);
}
.coaching-terms p {
  margin-top: .3rem;
  color: #f6e4af;
  font: 600 1.05rem/1.4 var(--sans);
  white-space: nowrap;
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
}

.about-media {
  position: relative;
  width: min(100%, 400px);
  height: min(60svh, 500px);
  margin-bottom: 0;
}

.coach-quote {
  margin: clamp(1.75rem, 3vw, 2.5rem) 0 1.5rem;
  padding: 1.35rem 0 0 1.45rem;
  border-left: 1px solid var(--gold);
  border-top: 1px solid rgba(201, 168, 76, .28);
}

.coach-quote blockquote {
  margin: 0;
  max-width: 38ch;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.3vw, 2.15rem);
  font-style: italic;
  line-height: 1.18;
}

.coach-quote em { color: #dfc47e; }

.coach-quote figcaption {
  margin-top: .8rem;
  color: var(--muted-soft);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.about-link {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  min-height: 44px;
  color: var(--gold);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: .4em;
}
.about-link span { font-size: 1.3rem; font-weight: 400; }

.faq-list {
  display: grid;
  border-top: 1px solid rgba(201, 168, 76, .34);
}

details {
  border-bottom: 1px solid var(--border);
  padding: 1.05rem clamp(.4rem, 1vw, 1rem);
  transition: background 220ms var(--ease-out);
}

details[open] { background: linear-gradient(90deg, rgba(201, 168, 76, .065), transparent 55%); }

summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--text);
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  margin-left: auto;
  padding-left: 1.5rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
}
details[open] summary::after { content: "−"; }
details p { max-width: 68ch; margin: .25rem 0 .65rem; }

.apply {
  background: radial-gradient(ellipse at 100% 100%, rgba(201, 168, 76, .09), transparent 39%), #0e0e0d;
  padding-top: clamp(3rem, 5vw, 4.5rem);
}

.apply .section-intro {
  max-width: 940px;
  margin-bottom: 1rem;
}

.apply .section-intro h2 { font-size: clamp(2.35rem, 4.4vw, 4.25rem); }
.apply .section-intro::after { display: none; }

.application-form {
  max-width: 920px;
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 168, 76, .35);
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.form-legend {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.field-wide { grid-column: 1 / -1; }
.application-details {
  margin: .75rem 0 1rem;
  padding: .4rem 0;
  border-block: 1px solid rgba(201, 168, 76, .3);
}
.application-details summary { color: #e6cc8a; }
.application-details[open] summary::after { content: "−"; }
.optional-label { margin-left: .55rem; color: var(--muted-soft); font-size: .78rem; font-weight: 400; }
.application-details > p { margin: .25rem 0 1rem; color: var(--muted); font-size: .9rem; }
.application-details .form-grid { padding-top: .5rem; }
[hidden] { display: none !important; }

label {
  display: grid;
  gap: .35rem;
  margin-bottom: .75rem;
  color: var(--muted);
  font-weight: 700;
  font-size: .86rem;
}

input, select, textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--border);
  border-radius: 0;
  background: #12110f;
  color: var(--text);
  padding: .85rem .95rem;
  transition: border-color 160ms var(--ease-fast), background 160ms var(--ease-fast);
}

textarea { resize: vertical; min-height: 86px; }
input:focus, select:focus, textarea:focus {
  border-color: rgba(201, 168, 76, .72);
  background: #15140f;
}

.privacy-check {
  display: flex;
  flex-direction: row;
  gap: .75rem;
  align-items: flex-start;
  font-weight: 500;
}

.privacy-check input {
  flex: none;
  width: 20px;
  min-height: 20px;
  margin-top: .25rem;
}
.privacy-check a { color: #e6cc8a; }

.privacy-page { padding-top: 8rem; }
.privacy-content { max-width: 880px; margin-inline: auto; }
.privacy-content h1 { font-size: clamp(2.8rem, 7vw, 5.2rem); line-height: 1; }
.privacy-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem 2.5rem; margin-block: 2rem; }
.privacy-facts > div { border-top: 1px solid rgba(201, 168, 76, .38); padding-top: 1rem; }
.privacy-facts h2 { margin: 0; font-size: clamp(1.5rem, 3vw, 2rem); }
.privacy-facts p { margin: .3rem 0 0; }
.privacy-meta { font-size: .8rem; color: var(--muted-soft); }

.honeypot {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.field-error, .form-status {
  min-height: 1.5rem;
  margin: .5rem 0 1rem;
  color: var(--danger);
}

.form-status.success { color: var(--success); }
.form-status a { color: #e6cc8a; }
.turnstile-mount { margin: 0; }

.site-footer {
  width: var(--container);
  margin-inline: auto;
  padding: 2rem 0 3rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.site-footer strong { color: var(--text); }
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms var(--ease-out), transform 680ms var(--ease-out);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .primary-nav a:not(.nav-cta) { display: none; }
  .hero, .about {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 6rem;
  }
  .hero-copy {
    grid-column: 1;
    grid-row: 1;
  }
  .hero-media {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
    width: min(100%, 440px);
    height: 420px;
    max-height: 48svh;
  }
  .shared-coaching-note { grid-template-columns: 1fr 2fr; }
  .coaching-terms { grid-column: 1 / -1; padding: .9rem 0 0; border-left: 0; border-top: 1px solid rgba(201, 168, 76, .28); }
  .experience-list { grid-template-columns: 1fr; }
  .experience-list article { border-right: 0; border-bottom: 1px solid var(--border); }
  .experience-list article::before { top: 1.7rem; left: -4px; }
  .experience-list article:last-child { border-bottom: 0; }
  .about-media { grid-row: 2; }
}

@media (max-width: 680px) {
  :root { --container: min(100vw - 32px, 1180px); }
  .brand-mark span { display: none; }
  .site-header { padding-inline: 16px; }
  .hero {
    min-height: auto;
    padding-top: 5.5rem;
    padding-bottom: 3rem;
  }
  .hero-media {
    width: min(100%, 390px);
    height: min(110vw, 490px);
    max-height: none;
  }
  .hero::before { width: 100vw; left: -45%; top: -14%; }
  .film-frame::before { inset: -6px 6px 6px -6px; }
  h1 {
    max-width: 11ch;
    font-size: clamp(3rem, 12.5vw, 4.2rem);
  }
  .about-media { width: min(100%, 390px); height: min(108vw, 470px); }
  .hero-actions, .form-actions, .site-footer {
    align-items: stretch;
    flex-direction: column;
  }
  .button, .text-button { width: 100%; }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .privacy-facts { grid-template-columns: 1fr; }
  .path-tab { min-height: 96px; flex-wrap: wrap; gap: .3rem .55rem; align-content: center; font-size: clamp(1.22rem, 5.4vw, 1.55rem); }
  .path-tab-number { width: 100%; }
  .path-tab svg { position: absolute; inset: .65rem .65rem auto auto; width: 30px; height: 30px; }
  .path ul { display: block; }
  .path li { padding-block: .5rem; }
  .path li::before { inset-block-start: 1.2rem; }
  .shared-coaching-note { display: block; }
  .shared-coaching-note > p { margin: .65rem 0 1rem; }
  .site-footer nav { justify-content: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .path { animation: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-data: reduce) {
  body::before { display: none; }
}
