/* ==========================================================================
   Forge Strength Co. — concrete & signal red
   Concrete #d8d6d1 · Char #1d1c1a · Signal #cf2e21 · chalk white
   Saira Condensed italic 800 (display) + Inter Tight (body)
   Diagonal // slashes carry the identity. Zero JavaScript.
   ========================================================================== */

:root {
  --concrete: #d8d6d1;
  --concrete-deep: #c4c1ba;
  --char: #1d1c1a;
  --char-soft: #2a2926;
  --signal: #cf2e21;
  --signal-deep: #a32118;
  --chalk: #f4f2ec;
  --display: "Saira Condensed", "Arial Narrow", sans-serif;
  --body: "Inter Tight", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: auto; }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

[id] { scroll-margin-top: 1rem; }

body {
  margin: 0;
  background: var(--concrete);
  color: var(--char);
  font-family: var(--body);
  font-size: 1.0425rem;
  line-height: 1.6;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--signal);
  color: var(--chalk);
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
}

.skip-link:focus { top: 0.5rem; }

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 2px;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  line-height: 0.95;
  margin: 0 0 0.55em;
  color: var(--char);
}

h2 { font-size: clamp(2rem, 4.6vw, 3rem); }
h3 { font-size: 1.4rem; }

p { margin: 0 0 1em; }

a { color: var(--signal-deep); }

/* ---------- Header ---------- */

.site-header {
  background: var(--char);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  padding: 0.9rem 1.25rem 0;
}

.brand {
  font-family: var(--display);
  font-weight: 800;
  font-style: italic;
  font-size: 1.5rem;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--chalk);
  white-space: nowrap;
  padding-bottom: 0.75rem;
}

.brand span { color: var(--signal); font-style: normal; }

.header-intro {
  background: var(--signal);
  color: var(--chalk);
  font-family: var(--display);
  font-weight: 800;
  font-style: italic;
  font-size: 1.05rem;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.5rem 1.3rem;
  transform: skewX(-8deg);
  margin-bottom: 0.75rem;
}

.header-intro:hover { background: var(--chalk); color: var(--char); }

.site-nav { width: 100%; }

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0 0 0.8rem;
  display: flex;
  gap: 1.6rem;
}

.site-nav a {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #b9b5ac;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible { color: var(--chalk); }

@media (max-width: 460px) {
  .brand { font-size: 1.2rem; }
  .header-intro { font-size: 0.92rem; padding: 0.45rem 1rem; }
  .site-nav ul { gap: 0; justify-content: space-between; }
  .site-nav a { font-size: 0.95rem; }
}

/* ---------- Hero ---------- */

.hero {
  background:
    linear-gradient(rgba(29, 28, 26, 0.88), rgba(29, 28, 26, 0.88)),
    repeating-linear-gradient(-55deg, #34322e 0 2px, var(--char) 2px 30px);
  color: var(--chalk);
  padding: clamp(3.5rem, 8vw, 6rem) 1.25rem;
}

.hero > * { max-width: 60rem; margin-left: auto; margin-right: auto; }

.kicker {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--signal);
  margin: 0 0 1rem;
}

.hero h1 {
  color: var(--chalk);
  font-size: clamp(3rem, 9vw, 5.5rem);
}

.hero h1 em { color: var(--signal); }

.hero-lede { max-width: 44ch; font-size: 1.15rem; color: #ccc8bf; margin-bottom: 2rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.btn {
  display: inline-block;
  background: var(--signal);
  color: var(--chalk);
  font-family: var(--display);
  font-weight: 800;
  font-style: italic;
  font-size: 1.2rem;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 1.8rem;
  transform: skewX(-8deg);
  border: 2px solid var(--signal);
}

.btn:hover, .btn:focus-visible { background: var(--chalk); color: var(--char); border-color: var(--chalk); }

.btn-line { background: transparent; border-color: var(--chalk); }

.btn-line:hover, .btn-line:focus-visible { background: var(--chalk); color: var(--char); }

/* ---------- Schedule ---------- */

.section {
  max-width: 62rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) 1.25rem;
}

.sched-wrap { overflow-x: auto; }

.sched {
  width: 100%;
  min-width: 38rem;
  border-collapse: collapse;
  background: var(--chalk);
  border: 3px solid var(--char);
}

.sched th, .sched td {
  border: 1px solid var(--concrete-deep);
  padding: 0.6rem 0.7rem;
  text-align: center;
  font-size: 0.92rem;
}

.sched thead th {
  font-family: var(--display);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  font-size: 1rem;
  background: var(--char);
  color: var(--chalk);
  border-color: var(--char);
}

.sched tbody th {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  background: var(--concrete);
  white-space: nowrap;
}

.sched-note { margin-top: 1rem; font-size: 0.92rem; color: #55534d; }

/* ---------- Pricing ---------- */

.pricing-band { max-width: none; background: var(--char); color: var(--chalk); }

.pricing-band > * { max-width: 59.5rem; margin-left: auto; margin-right: auto; }

.pricing-band h2 { color: var(--chalk); }

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 1.25rem;
}

.price {
  border: 2px solid var(--char-soft);
  background: var(--char-soft);
  padding: 1.3rem 1.4rem 1.5rem;
}

.price-hot { border-color: var(--signal); }

.price h3 { color: var(--chalk); margin-bottom: 0.15rem; }

.price-amt {
  font-family: var(--display);
  font-weight: 800;
  font-style: italic;
  font-size: 2.4rem;
  color: var(--signal);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.price-amt span { font-size: 1.1rem; color: #b9b5ac; }

.price p:last-child { margin: 0; font-size: 0.93rem; color: #ccc8bf; }

/* ---------- Coaches ---------- */

.coach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.75rem;
}

.coach { border-left: 6px solid var(--signal); padding-left: 1rem; }

.coach h3 { margin-bottom: 0.2rem; }

.coach-spec { font-size: 0.95rem; color: #55534d; margin: 0; }

/* ---------- FAQ ---------- */

.faq-band { max-width: none; background: var(--chalk); }

.faq-band > * { max-width: 59.5rem; margin-left: auto; margin-right: auto; }

.faq-list { max-width: 50rem; }

.faq-list details { border-bottom: 2px solid var(--concrete-deep); }

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.95rem 0;
}

.faq-list summary:hover { color: var(--signal-deep); }

.faq-list details p { color: #55534d; padding-bottom: 1rem; margin: 0; }

/* ---------- Intro band ---------- */

.intro-band { max-width: none; background: var(--signal); color: var(--chalk); }

.intro-band > * { max-width: 59.5rem; margin-left: auto; margin-right: auto; }

.intro-band h2 { color: var(--chalk); }

.intro-lede { font-size: 1.15rem; max-width: 48rem; margin: 0; }

.intro-lede a { color: var(--chalk); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--char);
  color: #b9b5ac;
  text-align: center;
  padding: 2.5rem 1.25rem;
  font-size: 0.95rem;
}

.site-footer a { color: var(--chalk); }

.footer-fine { font-size: 0.82rem; opacity: 0.7; }

.social-links {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  justify-content: center;
  padding: 0 1.5rem;
  margin: 1.2rem auto 0;
}

.social-links a { display: inline-flex; color: var(--chalk); opacity: 0.8; }

.social-links a:hover, .social-links a:focus-visible { opacity: 1; }

.social-links svg { width: 1.3rem; height: 1.3rem; }
