/* Coach Reza — site styles
   Palette pulled from the existing logo: crest navy + signal red. */
/* Self-hosted fonts (SIL Open Font License) */
@font-face { font-family: "Big Shoulders Display"; src: url("fonts/big-shoulders-display.woff2") format("woff2"); font-weight: 100 900; font-style: normal; font-display: swap; }
@font-face { font-family: "Instrument Sans"; src: url("fonts/instrument-sans.woff2") format("woff2"); font-weight: 400 700; font-style: normal; font-display: swap; }

:root {
  --navy: #0b1b33;        /* crest navy, main dark ground */
  --navy-2: #13284a;      /* raised navy */
  --red: #e0282e;         /* signal red, CTAs + accents */
  --red-dark: #b81d22;
  --chalk: #f5f7fa;       /* cool off-white ground */
  --white: #ffffff;
  --line: #d9dee7;        /* pitch-line grey on light */
  --ink: #0b1b33;
  --slate: #56637a;       /* secondary text on light */
  --mist: #aebbd0;        /* secondary text on navy */

  --display: "Big Shoulders Display", "Arial Narrow", Impact, sans-serif;
  --body: "Instrument Sans", "Segoe UI", system-ui, -apple-system, sans-serif;

  --step--1: 0.875rem;
  --step-0: 1.0625rem;
  --step-1: 1.25rem;
  --step-2: 1.6rem;
  --step-3: 2.25rem;
  --step-4: clamp(2.6rem, 5vw, 3.6rem);
  --step-5: clamp(3.4rem, 9vw, 6.75rem);

  --gutter: clamp(16px, 4vw, 40px);
  --max: 1180px;
  --radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; animation: none !important; } }

body {
  margin: 0;
  background: var(--chalk);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--display); line-height: 0.95; margin: 0; text-wrap: balance; text-transform: uppercase; letter-spacing: 0.005em; }
p { margin: 0; }
.wrap { max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 16px; top: 16px; z-index: 100; background: var(--white); padding: 8px 12px; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

.eyebrow {
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.on-navy .eyebrow { color: #ff5a5f; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  font: 600 1rem/1 var(--body);
  padding: 0.95em 1.4em;
  border-radius: var(--radius);
  text-decoration: none;
  border: 2px solid transparent;
  transition: background-color .15s, color .15s, border-color .15s, transform .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); }
.btn-ghost { border-color: currentColor; color: var(--white); }
.btn-ghost:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-line { border-color: var(--navy); color: var(--navy); }
.btn-line:hover { background: var(--navy); color: var(--white); }
.btn-sm { padding: 0.7em 1.05em; font-size: 0.95rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(1.4) blur(6px);
}
.site-header .wrap { display: flex; align-items: center; gap: 24px; min-height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
.brand img { width: 44px; height: auto; }
.brand span { font-family: var(--display); font-weight: 800; font-size: 1.45rem; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a:not(.btn) { text-decoration: none; font-weight: 500; font-size: 0.98rem; color: var(--slate); }
.nav a:not(.btn):hover, .nav a[aria-current="page"] { color: var(--ink); }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--ink); }
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    padding: 8px var(--gutter) 20px;
    display: none;
  }
  .nav.open { display: flex; }
  .nav a:not(.btn) { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav .btn { margin-top: 16px; }
}

/* Sections */
.section { padding-block: clamp(64px, 9vw, 112px); }
.on-navy { background: var(--navy); color: var(--white); }
.on-white { background: var(--white); }
.section-head { display: grid; gap: 14px; max-width: 760px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head h2 { font-size: var(--step-4); font-weight: 800; }
.section-head p { color: var(--slate); max-width: 62ch; }
.on-navy .section-head p { color: var(--mist); }

/* Hero */
.hero { position: relative; overflow: hidden; background: var(--navy); color: var(--white); }
.hero::before {
  /* chalk penalty-box markings */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: url("images/pitch-lines.svg");
  background-repeat: no-repeat; background-position: right -120px center; background-size: auto 130%;
  opacity: 0.35;
}
.hero .wrap { position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 5vw, 64px); align-items: center; padding-block: clamp(48px, 7vw, 96px); }
.hero h1 { font-size: var(--step-5); font-weight: 900; margin-block: 18px 22px; }
.hero h1 em { font-style: normal; color: var(--red); }
.hero .lead { font-size: var(--step-1); color: #d5ddea; max-width: 38ch; line-height: 1.5; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-note { margin-top: 18px; font-size: var(--step--1); color: var(--mist); }

.hero-photo { position: relative; justify-self: end; width: 100%; max-width: 440px; }
.hero-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); }
.hero-photo figcaption {
  position: absolute; left: -24px; bottom: 28px;
  background: var(--white); color: var(--navy);
  padding: 14px 18px; border-left: 5px solid var(--red);
  box-shadow: 0 18px 40px rgba(3, 10, 24, 0.35);
  display: grid; gap: 2px;
}
.hero-photo figcaption strong { font-family: var(--display); font-size: 1.5rem; text-transform: uppercase; font-weight: 800; line-height: 1; }
.hero-photo figcaption span { font-size: 0.9rem; color: var(--slate); }

@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-photo { justify-self: start; max-width: 360px; }
  .hero-photo figcaption { left: 12px; right: 12px; }
  .hero::before { background-position: right -260px top; opacity: 0.3; }
}

/* Credentials scoreboard */
.scoreboard { background: var(--navy-2); color: var(--white); border-top: 1px solid rgba(255,255,255,0.08); }
.scoreboard ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); }
.scoreboard li { padding: 28px 24px; display: grid; gap: 6px; align-content: start; border-left: 1px solid rgba(255,255,255,0.1); }
.scoreboard li:first-child { border-left: 0; padding-left: 0; }
.scoreboard b { font-family: var(--display); font-weight: 800; font-size: clamp(2.4rem, 4vw, 3.2rem); line-height: 1; font-variant-numeric: tabular-nums; }
.scoreboard span { color: var(--mist); font-size: 0.95rem; line-height: 1.4; }
@media (max-width: 860px) {
  .scoreboard ul { grid-template-columns: repeat(2, 1fr); }
  .scoreboard li { border-left: 0; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.1); }
  .scoreboard li:nth-child(-n+2) { border-top: 0; }
}

/* Who it's for */
.audience { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 48px); }
.audience article { border-top: 3px solid var(--navy); padding-top: 22px; display: grid; gap: 10px; align-content: start; }
.audience h3 { font-size: var(--step-2); font-weight: 800; }
.audience p { color: var(--slate); }
@media (max-width: 760px) { .audience { grid-template-columns: 1fr; } }

/* Sessions: team-sheet rows */
.sessions { display: grid; border-top: 1px solid var(--line); }
.session {
  display: grid; grid-template-columns: 150px 1fr 220px; gap: clamp(20px, 3vw, 40px);
  padding-block: clamp(28px, 4vw, 40px); border-bottom: 1px solid var(--line); align-items: start;
}
.session-code { font-family: var(--display); font-weight: 900; font-size: clamp(3.4rem, 6vw, 4.6rem); line-height: 0.85; color: var(--navy); letter-spacing: -0.01em; }
.session-code small { display: block; font-family: var(--body); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; color: var(--slate); margin-top: 10px; text-transform: uppercase; }
.session-body { display: grid; gap: 12px; }
.session-body h3 { font-size: var(--step-3); font-weight: 800; }
.session-body > p { color: var(--slate); max-width: 60ch; }
.ticks { list-style: none; padding: 0; margin: 6px 0 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 24px; }
.ticks li { position: relative; padding-left: 20px; font-size: 0.97rem; }
.ticks li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 9px; height: 9px; background: var(--red); transform: rotate(45deg); }
.session-price { display: grid; gap: 12px; justify-items: start; }
.price { font-family: var(--display); font-weight: 800; font-size: 2.6rem; line-height: 1; font-variant-numeric: tabular-nums; }
.price sup { font-size: 0.45em; vertical-align: 0.9em; margin-right: 2px; }
.price-word { font-size: 2rem; }
.price-sub { font-size: 0.92rem; color: var(--slate); line-height: 1.45; }
@media (max-width: 900px) {
  .session { grid-template-columns: 1fr; }
  .session-code { font-size: 3.2rem; }
  .ticks { grid-template-columns: 1fr; }
}

/* Steps */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; counter-reset: step; }
.steps li { background: var(--navy-2); padding: 32px 28px 36px; display: grid; gap: 12px; align-content: start; counter-increment: step; }
.steps li::before { content: counter(step); font-family: var(--display); font-weight: 900; font-size: 3.2rem; line-height: 1; color: var(--red); }
.steps h3 { font-size: var(--step-2); font-weight: 800; }
.steps p { color: var(--mist); }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

/* Every session includes */
.includes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 40px; }
.includes div { display: grid; gap: 6px; align-content: start; }
.includes h3 { font-family: var(--body); text-transform: none; font-size: 1.1rem; font-weight: 700; line-height: 1.3; letter-spacing: 0; }
.includes p { color: var(--slate); font-size: 0.98rem; }
@media (max-width: 860px) { .includes { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .includes { grid-template-columns: 1fr; } }

/* Rates board */
.rates-wrap { overflow-x: auto; }
.rates { width: 100%; border-collapse: collapse; background: var(--white); }
.rates th, .rates td { text-align: left; padding: 18px 20px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.rates thead th { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); font-weight: 600; background: var(--chalk); }
.rates td.fmt { font-family: var(--display); font-weight: 800; font-size: 1.9rem; line-height: 1; white-space: nowrap; }
.rates td.num { font-variant-numeric: tabular-nums; font-weight: 600; font-size: 1.1rem; white-space: nowrap; }
.rates td.num small { display: block; font-weight: 400; font-size: 0.85rem; color: var(--slate); }
.rates td:last-child { text-align: right; }
.rates tr.featured td { background: #fff5f5; }
.rates small.each { display: none; }
@media (max-width: 560px) {
  .rates th:nth-child(3), .rates td:nth-child(3) { display: none; }
  .rates small.each { display: block; }
  .rates .btn { white-space: normal; text-align: center; }
  .rates th, .rates td { padding: 14px 6px; }
  .rates td.fmt { font-size: 1.3rem; }
  .rates td.num { font-size: 1rem; }
  .rates .btn-sm { padding: 0.6em 0.8em; }
}
.rates-note { margin-top: 16px; font-size: 0.92rem; color: var(--slate); }

/* Photo strip */
.photo-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.photo-strip img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--radius); }
@media (max-width: 760px) { .photo-strip { grid-template-columns: repeat(2, 1fr); } }

/* FAQ */
.faq { display: grid; border-top: 1px solid var(--line); max-width: 860px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 22px 40px 22px 0; font-weight: 600; font-size: 1.1rem; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-family: var(--display); font-size: 2rem; font-weight: 700; color: var(--red); }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 0 22px; color: var(--slate); max-width: 65ch; }

/* Contact */
.contact .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.contact h2 { font-size: var(--step-5); font-weight: 900; }
.contact h2 em { font-style: normal; color: var(--red); }
.contact-lines { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.contact-lines a { text-decoration: none; font-weight: 600; font-size: 1.15rem; border-bottom: 2px solid rgba(255,255,255,0.25); }
.contact-lines a:hover { border-color: var(--red); }
.contact-lines span { display: block; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mist); margin-bottom: 2px; }
.form { background: var(--white); color: var(--ink); padding: clamp(24px, 4vw, 36px); border-radius: var(--radius); display: grid; gap: 16px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { display: grid; gap: 6px; font-size: 0.9rem; font-weight: 600; }
.form input, .form select, .form textarea {
  font: inherit; font-weight: 400; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--chalk); width: 100%;
}
.form textarea { min-height: 120px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus { outline: 2px solid var(--navy); outline-offset: 0; background: var(--white); }
.form .hidden { display: none; }
@media (max-width: 860px) { .contact .wrap { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .form .row { grid-template-columns: 1fr; } }

/* Footer */
.site-footer { background: #07122a; color: var(--mist); padding-block: 36px; font-size: 0.92rem; }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 16px 32px; align-items: center; justify-content: space-between; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 20px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--white); }

/* Mobile sticky book bar */
.book-bar { display: none; }
@media (max-width: 700px) {
  .book-bar {
    display: flex; gap: 8px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: var(--white); border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(11, 27, 51, 0.08);
  }
  .book-bar .btn { flex: 1; }
  body { padding-bottom: 76px; }
}

/* ---------- About page ---------- */
.about-hero .wrap { grid-template-columns: 0.9fr 1.1fr; }
.about-hero h1 { font-size: clamp(3rem, 7vw, 5.4rem); }
.about-hero .hero-photo { justify-self: start; }
@media (max-width: 860px) { .about-hero .wrap { grid-template-columns: 1fr; } .about-hero .hero-photo { order: 2; } }

.story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.story p + p { margin-top: 1em; }
.story p { color: #2d3a50; max-width: 62ch; }
@media (max-width: 860px) { .story { grid-template-columns: 1fr; } }

.timeline { list-style: none; margin: 0; padding: 0; display: grid; }
.timeline li { display: grid; grid-template-columns: 170px 1fr; gap: 24px; padding-block: 28px; border-top: 1px solid rgba(255,255,255,0.12); }
.timeline li:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }
.timeline .when { font-family: var(--display); font-weight: 800; font-size: 1.9rem; text-transform: uppercase; line-height: 1; color: var(--white); }
.timeline .when small { display: block; font-family: var(--body); font-size: 0.8rem; letter-spacing: 0.12em; color: var(--mist); margin-top: 8px; font-weight: 600; }
.timeline h3 { font-size: var(--step-2); font-weight: 800; margin-bottom: 8px; }
.timeline p { color: var(--mist); max-width: 64ch; }
@media (max-width: 700px) { .timeline li { grid-template-columns: 1fr; gap: 10px; } }

.quote { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1; max-width: 22ch; text-wrap: balance; }
.quote em { font-style: normal; color: var(--red); }
.quote-by { margin-top: 18px; color: var(--slate); font-weight: 600; }

.mv { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); }
.mv div { border-top: 3px solid var(--red); padding-top: 20px; display: grid; gap: 12px; align-content: start; }
.mv h3 { font-size: var(--step-3); font-weight: 800; }
.mv p { color: var(--slate); font-size: 1.1rem; }
@media (max-width: 760px) { .mv { grid-template-columns: 1fr; } }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.gallery img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius); }
@media (max-width: 860px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

.cta-band .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.cta-band h2 { font-size: var(--step-4); font-weight: 900; }

.section-head.flush { margin-bottom: 0; }
.hero-ctas.flush { margin-top: 0; }

/* Thanks page */
.thanks { min-height: 60vh; display: grid; align-content: center; }
.thanks h1 { font-size: var(--step-5); font-weight: 900; margin-block: 14px 20px; }
.thanks .lead { color: #d5ddea; max-width: 44ch; font-size: var(--step-1); }
