:root {
  --bg: #0a0a0a;
  --bg-2: #121212;
  --bg-3: #1a1a1a;
  --line: #2a2a2a;
  --cream: #e8e0d4;
  --cream-dim: #b8b0a4;
  --muted: #8a8378;
  --rust: #c45c26;
  --rust-hot: #e06a2b;
  --steel: #6e6a64;
  --ok: #7d9b6a;
  --font-display: "Bebas Neue", sans-serif;
  --font-cond: "Oswald", sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --max: 1180px;
  --nav-h: 88px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.eyebrow {
  font-family: var(--font-cond);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--rust);
}
h1, h2, .display {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  line-height: 0.92;
  font-weight: 400;
}
h1 { font-size: clamp(52px, 8vw, 96px); }
h2 { font-size: clamp(36px, 5.4vw, 64px); }
h3 {
  font-family: var(--font-cond);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 22px;
}
p + p { margin-top: 1em; }
.lede { font-size: 1.15rem; color: var(--cream-dim); max-width: 42rem; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 40;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 14px;
}
.brand img {
  height: 72px;
  width: auto;
  object-fit: contain;
  border: 0;
  border-radius: 0;
}
.nav-links { display: flex; gap: 13px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.nav-links a {
  font-family: var(--font-cond);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dim);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px;
  background: var(--rust);
  color: #140b06;
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
  border: 0;
  cursor: pointer;
  transition: background .15s ease;
}
.btn:hover { background: var(--rust-hot); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid #3a3a3a;
}
.btn-ghost:hover { border-color: var(--cream); background: transparent; }
.nav-toggle { display: none; background: none; border: 0; color: var(--cream); font-size: 26px; cursor: pointer; }

/* HERO */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  filter: brightness(0.45) contrast(1.05);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.15) 20%, rgba(10,10,10,.92) 100%);
}
.hero-copy {
  position: relative; z-index: 2;
  padding: 0 0 72px;
  max-width: 42rem;
}
.hero-copy .eyebrow {
  margin-bottom: 16px;
  text-align: center;
}
.hero-copy h1 a {
  color: inherit;
  text-decoration: none;
  border-bottom: 4px solid var(--rust);
}
.hero-copy h1 a:hover { border-bottom-color: var(--rust-hot); }
.hero-copy p { max-width: 42rem; color: var(--cream-dim); margin: 22px 0 32px; }

/* PROCESS */
.process { margin-top: 8px; }
.process-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 8px 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.process-item:last-child { border-bottom: 0; }
.process-n {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  color: var(--rust);
  letter-spacing: 0.02em;
}
.process-item h3 { margin-bottom: 10px; }
h3.as-written { text-transform: none; }
.process-item p { color: var(--cream-dim); max-width: 46rem; }
.process-item p + p { margin-top: 0; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-mark {
  display: block;
  height: clamp(52px, 8vw, 96px);
  width: auto;
  margin: 0 auto 18px;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.65));
}

/* SECTIONS */
section { padding: 88px 0; }
.sec-head { margin-bottom: 36px; }
.sec-head p { margin-top: 14px; color: var(--cream-dim); max-width: 40rem; }
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.split img { width: 100%; height: 420px; object-fit: cover; border: 1px solid var(--line); }
.split.reverse { grid-template-columns: 0.95fr 1.05fr; }
.split.reverse .copy { order: 2; }
.kicker { color: var(--muted); font-size: 15px; margin-top: 10px; }

/* PATH */
.path { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.path-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  counter-reset: step;
}
.path-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: 22px 18px 26px;
  min-height: 220px;
}
.path-card::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--rust);
  margin-bottom: 10px;
}
.path-card h3 { margin-bottom: 10px; font-size: 16px; }
.path-card p { color: var(--muted); font-size: 15px; }

/* CARDS */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 28px 24px;
}
.card h3 { margin: 10px 0 12px; }
.card p { color: var(--cream-dim); font-size: 16px; }
.card .tag {
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
}

/* WOW */
.wow {
  background:
    linear-gradient(180deg, rgba(10,10,10,.55), rgba(10,10,10,.82)),
    url("../images/garage.jpg") center/cover;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.wow-box {
  background: rgba(10,10,10,.72);
  border: 1px solid #333;
  padding: 40px;
  max-width: 720px;
}
.wow-meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin: 18px 0 28px;
  color: var(--cream-dim);
  font-family: var(--font-cond);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}

/* TABLE */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); }
table { width: 100%; border-collapse: collapse; font-size: 16px; }
th, td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); }
th {
  font-family: var(--font-cond);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--muted);
  background: var(--bg-2);
}
td { color: var(--cream-dim); }
tr:last-child td { border-bottom: 0; }
td.roster { white-space: normal; line-height: 1.5; }
.table-wrap .btn { padding: 8px 14px; font-size: 11px; }

/* PAGE HERO */
.page-hero {
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(800px 240px at 10% 0%, rgba(196,92,38,.12), transparent 60%),
    var(--bg);
}
.page-hero p { margin-top: 16px; max-width: 42rem; color: var(--cream-dim); }

/* FORM */
form { display: grid; gap: 14px; max-width: 560px; }
label { font-family: var(--font-cond); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
input, select, textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid #333;
  color: var(--cream);
  padding: 12px 14px;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--rust); }
textarea { min-height: 120px; resize: vertical; }
.note { color: var(--muted); font-size: 14px; }

/* SHOP */
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product {
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.product img { width: 100%; height: 240px; object-fit: cover; }
.product .info { padding: 18px 18px 22px; }
.product .price { color: var(--rust); font-family: var(--font-cond); margin-top: 6px; }

/* FOOTER */
footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 28px;
  color: var(--muted);
  font-size: 15px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.foot-brand { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; color: var(--cream); }
.foot-brand img { height: 80px; width: auto; object-fit: contain; }
footer h4 {
  font-family: var(--font-cond);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--cream);
  margin-bottom: 12px;
}
footer a { display: block; color: var(--muted); margin: 6px 0; }
footer a:hover { color: var(--cream); }
.legal { border-top: 1px solid var(--line); padding-top: 18px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* FAQ */
.faq-list { margin-top: 8px; max-width: 46rem; }
.faq {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.faq:last-child { border-bottom: 0; }
.faq h3 { margin-bottom: 12px; }
.faq p { color: var(--cream-dim); }
.faq .table-wrap { margin: 16px 0 20px; }

.assoc-list a {
  color: var(--rust);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.assoc-list a:hover { color: var(--rust-hot); }
section .wrap > p { max-width: 46rem; color: var(--cream-dim); }
section .wrap p a {
  color: var(--rust);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* UTILS */
.muted { color: var(--muted); }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.center { text-align: center; }
.narrow { max-width: 720px; margin-inline: auto; }

/* COACHES FEED */
.feed-wrap { max-width: 720px; }
.coach-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.coach-bar .coach-note { color: var(--muted); font-size: 15px; margin: 0; }
.compose-actions { display: flex; gap: 12px; margin: 8px 0 0; }

.post-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.72);
  display: grid;
  place-items: center;
  padding: 24px;
}
.post-modal[hidden] { display: none; }
.post-modal-card {
  width: min(560px, 100%);
  background: #000;
  color: #fff;
  border: 1px solid #2a2a2a;
  padding: 28px 28px 24px;
  display: grid;
  gap: 10px;
}
.post-modal-date {
  color: #fff;
  font-family: var(--font-cond);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
  margin: 0;
}
.post-modal-name {
  color: #fff;
  font-size: 18px;
  margin: 0 0 8px;
}
.post-modal-card label { color: #bbb; }
.post-modal-card input,
.post-modal-card textarea {
  background: #0a0a0a;
  border: 1px solid #333;
  color: #fff;
}
.post-modal-card .btn-ghost {
  color: #fff;
  border-color: #fff;
}
.feed .post {
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
.feed .post:first-child { padding-top: 0; }
.feed .post h2 { margin: 8px 0 16px; }
.post-body { color: var(--cream-dim); line-height: 1.7; }
.post-tools { margin-top: 18px; font-size: 14px; color: var(--muted); }
button.linkish {
  background: none;
  border: 0;
  padding: 0;
  color: var(--rust);
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
}
button.linkish:hover { color: var(--cream); }
.list { margin: 12px 0 0 18px; color: var(--cream-dim); }
.list li { margin: 6px 0; }
.rank-pill {
  display: inline-block;
  border: 1px solid var(--rust);
  color: var(--rust);
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 8px;
}
.finder-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.tabs { display: flex; gap: 8px; flex-wrap: wrap; margin: 18px 0 22px; }
.tab {
  border: 1px solid var(--line);
  padding: 8px 12px;
  font-family: var(--font-cond);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}
.tab.on { border-color: var(--rust); color: var(--cream); }
@media (max-width: 900px) {
  .finder-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1100px) {
  .path-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    background: #111; border-bottom: 1px solid var(--line);
    padding: 20px 24px 28px; gap: 16px;
  }
  .nav-toggle { display: block; }
  .split, .split.reverse, .cards, .path-grid, .shop-grid, .foot-grid {
    grid-template-columns: 1fr;
  }
  .split.reverse .copy { order: 0; }
  .split img { height: 280px; }
  .hero { min-height: 78vh; }
}
