/* Lightsteel Hockey — shared styles
   Edit colours, type and spacing here once; every page picks it up. */

:root {
  --red: #c8102e;
  --red-accent: #e2687f;
  --dark: #151515;
  --dark-2: #1e1e1e;
  --light: #f2f1ec;
  --white: #ffffff;
  --ink: #151515;
  --ink-soft: #4a4a4a;
  --ink-mute: #6a6a6a;
  --on-dark: #ffffff;
  --on-dark-soft: #c2c2c2;
  --on-dark-mute: #8a8a8a;
  --line-dark: #333333;
  --line-light: #ddd9cd;
  --wrap: 1080px;
  --read: 62ch;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--red-accent);
  outline-offset: 3px;
}

.skip {
  position: absolute; left: -9999px;
  background: var(--red); color: #fff; padding: 12px 18px; z-index: 100;
}
.skip:focus { left: 12px; top: 12px; }

/* ---------- header ---------- */

.hdr {
  position: sticky; top: 0; z-index: 50; position: -webkit-sticky;
  background: var(--dark);
  border-bottom: 1px solid #2e2e2e;
}
.hdr-in {
  position: relative;
  max-width: var(--wrap); margin: 0 auto;
  padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: block; line-height: 0; text-decoration: none; }
.brand img { height: 52px; width: auto; }
@media (max-width: 860px) { .brand img { height: 42px; } }
@media (max-width: 400px) { .brand img { height: 36px; } }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  color: var(--on-dark-soft); text-decoration: none; font-size: 15px;
  padding: 4px 0; border-bottom: 2px solid transparent;
}
.nav a:hover { color: #fff; }
.nav a[aria-current="page"] { color: #fff; border-bottom-color: var(--red); }

.drop { position: relative; }
.drop > button {
  background: none; border: 0; padding: 4px 0; cursor: pointer;
  color: var(--on-dark-soft); font: inherit; font-size: 15px;
  border-bottom: 2px solid transparent;
}
.drop > button:hover { color: #fff; }
.drop-menu {
  position: absolute; top: calc(100% + 14px); left: -18px;
  background: var(--dark-2); border: 1px solid var(--line-dark);
  border-radius: 12px; padding: 10px; min-width: 260px;
  display: none; flex-direction: column; gap: 2px;
}
/* invisible bridge so the menu survives the gap between button and panel */
.drop-menu::before {
  content: ''; position: absolute;
  top: -16px; left: 0; right: 0; height: 16px;
}
.drop:hover .drop-menu,
.drop:focus-within .drop-menu,
.drop.open .drop-menu { display: flex; }
.drop.open > button, .drop:hover > button { color: #fff; }
.drop-menu a {
  padding: 10px 12px; border-radius: 8px; border: 0;
  color: #fff; font-size: 15px;
}
.drop-menu a span { display: block; color: var(--on-dark-mute); font-size: 13px; line-height: 1.5; }
.drop-menu a:hover { background: #2a2a2a; }

.btn {
  display: inline-block; background: var(--red); color: #fff;
  text-decoration: none; font-size: 15px; font-weight: 600;
  padding: 12px 22px; border-radius: 4px; white-space: nowrap;
}
.btn:hover { background: #a80d26; }
.btn-ghost {
  background: transparent; border: 1px solid #5a5a5a; color: #fff;
}
.btn-ghost:hover { background: #262626; border-color: #7a7a7a; }
.btn-sm { padding: 10px 18px; font-size: 14px; }

/* ---------- bands ---------- */

.band { padding: 76px 24px; }
.band > * { max-width: var(--wrap); margin-left: auto; margin-right: auto; }
.band-dark { background: var(--dark); color: var(--on-dark-soft); }
.band-light { background: var(--light); }
.band-white { background: var(--white); }
.band-red { background: var(--red); color: #fff; }
.band-tight { padding: 44px 24px; }

.band-dark h1, .band-dark h2, .band-dark h3, .band-dark strong { color: #fff; }
.band-red h2, .band-red h3, .band-red strong { color: #fff; }

/* ---------- type ---------- */

h1, h2, h3 {
  font-weight: 600; letter-spacing: -0.02em; line-height: 1.15;
  margin: 0 0 20px;
}
h1 { font-size: clamp(2.4rem, 6vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.2rem); }
h3 { font-size: 1.15rem; letter-spacing: -0.01em; margin-bottom: 10px; }

p { margin: 0 0 18px; max-width: var(--read); }
p:last-child { margin-bottom: 0; }
.lead { font-size: 1.15rem; line-height: 1.7; }
.wide { max-width: none; }

.eyebrow {
  color: var(--red); font-size: 13px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  margin: 0 0 16px;
}
.band-dark .eyebrow { color: var(--red-accent); }

.pull {
  border-left: 3px solid var(--red);
  padding-left: 20px; margin: 28px 0 0;
  font-size: 1.15rem; line-height: 1.6; color: var(--ink);
}
.band-dark .pull { color: #fff; }

.note { color: var(--ink-mute); }
.band-dark .note { color: var(--on-dark-mute); }

.arrow-link {
  display: inline-block; margin-top: 8px;
  color: var(--red); font-weight: 600; text-decoration: none;
  border-bottom: 1px solid transparent;
}
.arrow-link:hover { border-bottom-color: var(--red); }
.band-dark .arrow-link { color: var(--red-accent); }

/* ---------- hero ---------- */

.hero { padding: 92px 24px 76px; text-align: center; }
.hero p { margin-left: auto; margin-right: auto; }
.hero-left { text-align: left; }
.hero-left p { margin-left: 0; }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.hero-left .cta-row { justify-content: flex-start; }

.proofbar { padding: 18px 24px; text-align: center; }
.proofbar p { max-width: none; margin: 0; font-size: 15px; }
.proofbar strong { font-weight: 600; }

/* ---------- grids and cards ---------- */

.grid { display: grid; gap: 16px; margin-top: 28px; }
.g2 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.g3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.g4 { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }

.card { border-radius: 14px; padding: 24px; }
.card p { font-size: 15px; line-height: 1.65; max-width: none; }
.band-white .card { background: var(--light); }
.band-light .card { background: var(--white); }
.band-dark .card { background: none; border: 1px solid var(--line-dark); }
.band-dark .card p { color: var(--on-dark-mute); }

.card-link { text-decoration: none; display: block; }
.card-link:hover { outline: 2px solid var(--red); }

.inset {
  background: var(--dark); color: var(--on-dark-soft);
  border-radius: 14px; padding: 32px; margin-top: 32px;
}
.inset h2, .inset strong { color: #fff; }
.inset hr { border: 0; border-top: 1px solid var(--line-dark); margin: 24px 0; }
.inset .close { color: #fff; font-size: 1.25rem; font-weight: 600; line-height: 1.45; }
.hinge { color: var(--red-accent); font-weight: 600; }

/* ---------- numbered steps ---------- */

.steps { display: grid; gap: 12px; margin: 18px 0 34px; }
.step {
  border: 1px solid var(--line-dark); border-radius: 14px;
  padding: 18px 20px; display: flex; gap: 18px;
}
.step .n { color: var(--red-accent); font-weight: 700; min-width: 26px; }
.step p { margin: 0; font-size: 15px; line-height: 1.65; color: var(--on-dark-mute); max-width: none; }
.step strong { color: #fff; font-weight: 600; }

.group-label {
  color: #fff; font-weight: 600; font-size: 15px;
  letter-spacing: .08em; text-transform: uppercase; margin: 0 0 4px;
}
.group-sub { color: var(--on-dark-mute); font-size: 14px; margin: 0 0 14px; }

/* ---------- rows (stacked arguments) ---------- */

.rows { margin-top: 28px; }
.row { padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px solid var(--line-light); }
.row:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: 0; }
.band-dark .row { border-bottom-color: var(--line-dark); }
.row p { font-size: 16px; }

/* ---------- testimonial ---------- */

.quote { text-align: center; padding: 68px 24px; }
.quote .stars { color: var(--red-accent); letter-spacing: .2em; font-size: 20px; margin: 0 0 18px; }
.quote blockquote {
  margin: 0 auto 20px; max-width: 22ch;
  font-size: clamp(1.6rem, 3.4vw, 2.1rem); font-weight: 600;
  line-height: 1.35; color: #fff; letter-spacing: -0.02em;
}
.quote .who { color: var(--on-dark-mute); font-size: 14px; margin: 0; max-width: none; }

/* ---------- stat block ---------- */

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; margin: 26px 0; }
.stat b { display: block; font-size: 2.1rem; font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; }
.stat span { display: block; font-size: 14px; line-height: 1.5; opacity: .85; margin-top: 4px; }

.ratio {
  background: var(--dark); border-radius: 14px; padding: 28px;
  display: flex; gap: 26px; align-items: center; flex-wrap: wrap; margin-top: 28px;
}
.ratio b { color: #fff; font-size: 2rem; font-weight: 700; white-space: nowrap; letter-spacing: -0.02em; }
.ratio b span { color: var(--on-dark-mute); font-size: 1rem; font-weight: 400; }
.ratio p { color: var(--on-dark-soft); font-size: 15px; margin: 0; flex: 1; min-width: 240px; }

/* ---------- founder quote ---------- */

.founder { border-left: 3px solid var(--red); padding-left: 24px; max-width: var(--read); }
.founder p { font-size: 1.1rem; line-height: 1.8; color: #eaeaea; }
.founder .sig { color: var(--on-dark-mute); font-size: 14px; font-style: normal; }

/* ---------- footer ---------- */

.ftr { background: #0d0d0d; color: var(--on-dark-mute); padding: 56px 24px 40px; }
.ftr-in { max-width: var(--wrap); margin: 0 auto; display: grid; gap: 28px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.ftr h4 { color: #fff; font-size: 14px; margin: 0 0 12px; letter-spacing: .06em; text-transform: uppercase; }
.ftr a { color: var(--on-dark-mute); text-decoration: none; display: block; padding: 3px 0; font-size: 15px; }
.ftr a:hover { color: #fff; }
.ftr .legal { max-width: var(--wrap); margin: 36px auto 0; padding-top: 20px; border-top: 1px solid #232323; font-size: 13px; }

.memorial {
  background: #0d0d0d; border-top: 1px solid #262626;
  padding: 40px 24px; text-align: center; color: var(--on-dark-mute);
}
.memorial p { max-width: 48ch; margin: 0 auto; font-size: 15px; }

/* ---------- mobile ---------- */

/* ---------- mobile menu button ---------- */

.menu-btn {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 10px; margin-right: -10px;
}
.menu-btn span {
  display: block; height: 2px; background: #fff; border-radius: 2px;
  margin: 5px 0; transition: transform .18s ease, opacity .18s ease;
}
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- mobile ---------- */

@media (max-width: 860px) {
  .band { padding: 56px 20px; }
  .hero { padding: 64px 20px 56px; }
  .hdr-in { padding: 10px 20px; }
  .menu-btn { display: block; }

  .nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--dark); border-bottom: 1px solid #2e2e2e;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px 20px 22px;
  }
  .nav.open { display: flex; }
  .nav > a, .drop > button {
    font-size: 17px; padding: 14px 0; width: 100%; text-align: left;
    border-bottom: 1px solid #262626;
  }
  .nav a[aria-current="page"] { border-bottom-color: #262626; }
  .drop { width: 100%; }
  .drop > button { display: none; }

  /* programs listed inline on mobile — no second tap needed */
  .drop-menu {
    position: static; display: flex; background: none; border: 0;
    padding: 0; min-width: 0; border-radius: 0;
  }
  .drop-menu::before { display: none; }
  .drop-menu a {
    padding: 14px 0; border-radius: 0; font-size: 17px;
    border-bottom: 1px solid #262626;
  }
  .drop-menu a:hover { background: none; }
  .drop-menu a span { font-size: 14px; margin-top: 2px; }

  .nav .btn {
    margin-top: 18px; text-align: center; font-size: 16px; padding: 15px 22px;
  }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .band { padding: 48px 18px; }
}
