/* =====================================================
   ST. JOHN'S LIFT CLUB — Stylesheet
   Sibling of stjohnshikeclub.com. Same frame (rhythm,
   type, spacing, motion), different room (palette).
   Palette lives entirely in :root — changing the brand
   is a one-block edit.
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

/* ── Tokens ── */
/*
  The whole brand is these few lines. Every colour below is expressed through
  a token, including the translucent ones — the accent's RGB channels live in
  --accent-rgb precisely so rgba() shadows, borders and washes recolour with
  everything else. Hard-coding rgba(var(--accent-rgb),...) is what leaves ghosts of
  the old brand in the shadows after a repaint.
*/
:root {
  /* Surfaces: midnight steel. SJHC's forest, moved indoors under gym light. */
  --iron:        #12161f;
  --iron-mid:    #191f2b;
  --iron-light:  #222a3a;

  /* Accent: club blue. */
  --accent:       #2f6fd0;
  --accent-warm:  #4d8ce8;
  --accent-light: #8ab6f5;
  /* Channels only — for rgba(). Must track --accent. */
  --accent-rgb:   47, 111, 208;

  /* Secondary muted tone: cool steel. */
  --steel:       #8b98ab;

  /* Light neutrals: chalk. */
  --chalk:       #eef1f6;
  --chalk-dark:  #dde2ea;
  --white:       #fafbfd;

  --text-faint:  rgba(238, 241, 246, 0.6);
  --border:      rgba(var(--accent-rgb), 0.22);
  --border-soft: rgba(238, 241, 246, 0.08);

  /* Structure — inherited from SJHC verbatim */
  --nav-h:      80px;
  --radius:     4px;
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.12);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.18);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.25);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--iron);
  color: var(--chalk);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Visible keyboard focus everywhere */
:focus-visible {
  outline: 2px solid var(--accent-warm);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
}
.section-title .italic { font-style: italic; color: var(--accent-warm); }
.divider {
  width: 48px; height: 3px;
  background: var(--accent);
  margin: 1.5rem 0 2.5rem;
}

/* Inline SVG icons inherit currentColor */
.icon {
  width: 1em; height: 1em;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: inline-block;
  vertical-align: middle;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--iron);
}
.btn-primary:hover {
  background: var(--accent-warm);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--accent-rgb),0.35);
}
.btn-outline {
  background: transparent;
  color: var(--chalk);
  border: 1.5px solid rgba(238,241,246,0.4);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--accent);
  padding: 0;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
}
.btn-ghost:hover { color: var(--accent-warm); }
.btn-ghost::after { content: ' →'; }

/* ══════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(18,22,31,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav.open.scrolled {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background: var(--iron);
}
.nav-inner {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-mark {
  display: block;
  width: 44px; height: 44px;
  flex-shrink: 0;
  color: var(--accent);
}
.nav-mark .icon { width: 100%; height: 100%; stroke-width: 1.5; }
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--chalk);
  line-height: 1.25;
}
.nav-logo-text span {
  display: block;
  font-size: 0.68rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(238,241,246,0.5);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links > li > a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(238,241,246,0.85);
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-links > li > a:hover { color: var(--accent-warm); }
.nav-mobile-cta { display: none; }

/* Header CTA: unlike SJHC, this stays visible at every width.
   Price in the header is the point of the page. */
.nav-cta { margin-left: 0.5rem; white-space: nowrap; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--chalk);
  border-radius: 2px;
  transition: var(--transition);
}

/* ══════════════════════════════════════════════════
   HERO
   Diverges from SJHC: no slow zoom, harder overlay.
   Indoors, evening, tungsten light.
══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  /* images/hero.jpg comes from the launch shoot. Until it exists the
     gradient beneath renders, so the page never shows a broken image. */
  background-image: url('images/hero.jpg'),
    linear-gradient(160deg, var(--iron-light) 0%, var(--iron) 55%, #0d1119 100%);
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(18,22,31,0.95) 0%, rgba(18,22,31,0.35) 45%, rgba(18,22,31,0.55) 100%),
    linear-gradient(100deg, rgba(18,22,31,0.85) 0%, rgba(18,22,31,0.2) 60%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: var(--nav-h);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(var(--accent-rgb),0.15);
  border: 1px solid rgba(var(--accent-rgb),0.35);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--accent-light);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s 0.2s both;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* The signature moment: the stacked headline. Bigger and tighter
   than SJHC's; everything else on the page stays disciplined. */
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.4rem, 10vw, 7.5rem);
  font-weight: 900;
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 1.75rem;
  animation: fadeUp 0.6s 0.4s both;
}
.hero-title span { display: block; }
.hero-title em {
  font-style: italic;
  color: var(--accent-warm);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(238,241,246,0.8);
  max-width: 55ch;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  font-weight: 300;
  animation: fadeUp 0.6s 0.6s both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.8s both;
}

@keyframes fadeUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ══════════════════════════════════════════════════
   STAT BAND  (flag-gated in shared.js — see SJLC.showStatBand)
══════════════════════════════════════════════════ */
.stat-band {
  background: var(--iron-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 0;
}
.stat-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
}
.band-stat { text-align: center; }
.band-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--accent-warm);
  line-height: 1;
}
.band-stat-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 0.5rem;
}
.stat-band-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.strip-img {
  height: 120px;
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
}
/* Obvious placeholder tiles until launch-shoot images exist */
.strip-placeholder {
  height: 120px;
  border-radius: var(--radius);
  background: repeating-linear-gradient(
    45deg, var(--iron-light), var(--iron-light) 8px,
    var(--iron-mid) 8px, var(--iron-mid) 16px);
  border: 1px dashed rgba(238,241,246,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(238,241,246,0.35);
}

/* ══════════════════════════════════════════════════
   FIVE PILLARS
══════════════════════════════════════════════════ */
.pillars-section {
  padding: 6rem 0;
  background: var(--iron);
}
.pillars-header {
  max-width: 760px;
  margin: 0 auto 3.5rem;
  padding: 0 2rem;
  text-align: center;
}
.pillars-header .divider { margin: 1.5rem auto 2rem; }
.pillars-header p {
  font-size: 1.05rem;
  color: rgba(238,241,246,0.75);
  line-height: 1.8;
  margin-bottom: 1.1rem;
}
.pillars-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pillar-card {
  background: var(--iron-mid);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--accent-rgb),0.06), transparent);
  opacity: 0;
  transition: var(--transition);
}
.pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--accent-rgb),0.4);
  box-shadow: var(--shadow-md);
}
.pillar-card:hover::before { opacity: 1; }
.pillar-index {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(var(--accent-rgb),0.7);
  display: block;
  margin-bottom: 1rem;
}
.pillar-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.pillar-line {
  font-size: 0.9rem;
  color: rgba(238,241,246,0.65);
  line-height: 1.6;
}
/* "Health, in full" is the differentiating pillar: it spans both
   rows and gets the tinted treatment, so five items land as
   1 featured + 2x2 rather than a ragged orphan row. Explicit
   placement lets the DOM keep constitution order (Together first)
   while the other four auto-flow around it. */
.pillar-card.featured {
  grid-column: 1;
  grid-row: 1 / 3;
  background: linear-gradient(160deg, var(--iron-light), var(--iron-mid));
  border-color: rgba(var(--accent-rgb),0.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 2rem;
}
.pillar-card.featured .pillar-name {
  font-size: 1.9rem;
  color: var(--accent-warm);
}
.pillar-card.featured .pillar-line {
  font-size: 1rem;
  color: rgba(238,241,246,0.8);
}
.pillar-card.featured .pillar-note {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-soft);
  font-size: 0.85rem;
  color: var(--steel);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════
   MEMBERSHIP BAND
══════════════════════════════════════════════════ */
.membership-band {
  background: linear-gradient(135deg, var(--iron-light), var(--iron-mid));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5.5rem 0;
  text-align: center;
}
.membership-band .container { max-width: 640px; }
.membership-price {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.membership-price .italic { font-style: italic; color: var(--accent-warm); }
.membership-blurb {
  font-size: 1rem;
  color: rgba(238,241,246,0.75);
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

/* ══════════════════════════════════════════════════
   BENEFIT CARDS
══════════════════════════════════════════════════ */
.benefits-section {
  padding: 6rem 0;
  background: var(--iron);
}
.benefits-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}
.benefits-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.benefit-card {
  background: var(--iron-mid);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--accent-rgb),0.06), transparent);
  opacity: 0;
  transition: var(--transition);
}
.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--accent-rgb),0.4);
  box-shadow: var(--shadow-md);
}
.benefit-card:hover::before { opacity: 1; }
.benefit-icon {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: rgba(var(--accent-rgb),0.12);
  color: var(--accent-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.benefit-icon .icon { width: 22px; height: 22px; }
.benefit-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.benefit-meta {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.benefit-desc {
  font-size: 0.875rem;
  color: rgba(238,241,246,0.65);
  line-height: 1.6;
}
/* Unresolved values render as visible placeholders on purpose */
.placeholder-value {
  background: rgba(var(--accent-rgb),0.15);
  border: 1px dashed rgba(var(--accent-rgb),0.5);
  border-radius: 3px;
  padding: 0 0.3em;
}

/* ══════════════════════════════════════════════════
   PARTNER ROW
══════════════════════════════════════════════════ */
.partners-strip {
  padding: 4.5rem 0;
  background: var(--iron);
  border-top: 1px solid var(--border-soft);
}
.partners-strip-label { text-align: center; margin-bottom: 2.5rem; }
.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.partner-mark {
  text-align: center;
}
.partner-mark-name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: rgba(238,241,246,0.7);
  transition: var(--transition);
}
.partner-mark:hover .partner-mark-name { color: var(--white); }
.partner-mark-role {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 0.35rem;
}
.partner-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.5);
  transition: var(--transition);
}
.partner-logo-img:hover { filter: brightness(0) invert(1) opacity(1); }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.footer {
  background: var(--iron-mid);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.footer-mark {
  display: block;
  width: 52px; height: 52px;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.footer-mark .icon { width: 100%; height: 100%; stroke-width: 1.5; }
.footer-brand p {
  font-size: 0.82rem;
  color: rgba(238,241,246,0.55);
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 260px;
}
.footer-socials { display: flex; gap: 0.5rem; }
.social-btn {
  width: 36px; height: 36px;
  background: var(--iron-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(238,241,246,0.7);
  transition: var(--transition);
}
.social-btn .icon { width: 17px; height: 17px; }
.social-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--iron);
}
.footer-col h4 {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.footer-col ul li { margin-bottom: 0.35rem; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(238,241,246,0.6);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--chalk); }
.footer-col .soon {
  font-size: 0.875rem;
  color: rgba(238,241,246,0.3);
  cursor: default;
}
.footer-col .soon::after {
  content: ' · soon';
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: rgba(238,241,246,0.25);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(238,241,246,0.4);
}
.footer-estd {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(var(--accent-rgb),0.6);
}

/* ══════════════════════════════════════════════════
   MOTION
══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stat-band-inner { gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  /* CTA stays visible on mobile, compact */
  .nav-cta { display: inline-flex; padding: 0.6rem 1.1rem; font-size: 0.8rem; }

  .nav.open { background: var(--iron); }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0; bottom: 0;
    background: var(--iron);
    padding: 1.5rem 1.75rem 2rem;
    gap: 0;
    overflow-y: auto;
  }
  .nav.open .nav-links > li { border-bottom: 1px solid var(--border-soft); }
  .nav.open .nav-links > li:last-child { border-bottom: none; }
  .nav.open .nav-links > li > a {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--chalk);
  }
  .nav.open .nav-links > li > a:hover { color: var(--accent-warm); }
  .nav.open .nav-mobile-cta {
    display: block;
    margin-top: auto;
    padding-top: 1.25rem;
    border-bottom: none;
  }
  body.menu-open { overflow: hidden; }

  .hero-title { font-size: clamp(2.6rem, 14vw, 4.5rem); }
  .hero-sub { font-size: 0.95rem; margin-bottom: 1.75rem; }
  .hero-content { padding-top: calc(var(--nav-h) + 1rem); }

  .stat-band { padding: 2.5rem 0; }
  .stat-band-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .stat-band-strip { grid-column: 1 / -1; order: 2; }

  .pillars-section { padding: 3.5rem 0; }
  .pillars-header { margin-bottom: 2.5rem; }
  .pillars-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .pillar-card { padding: 1.5rem 1.25rem; }
  .pillar-card.featured { padding: 2rem 1.5rem; }
  .pillar-card.featured .pillar-name { font-size: 1.5rem; }

  .membership-band { padding: 3.5rem 0; }

  .benefits-section { padding: 3.5rem 0; }
  .benefits-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .benefits-grid { gap: 1rem; }

  .partners-strip { padding: 3rem 0; }
  .partners-logos { gap: 1.5rem; }

  .footer { padding: 2rem 0 1.25rem; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; gap: 1.25rem; padding-bottom: 1.25rem; margin-bottom: 1rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 100%; }
  .footer-col h4 { margin-bottom: 0.5rem; }
  .footer-col ul li { margin-bottom: 0.25rem; }
  .footer-col ul li a, .footer-col .soon { font-size: 0.8rem; }
  .footer-bottom { flex-direction: column; gap: 0.35rem; text-align: center; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; gap: 0.75rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stat-band-inner { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar-card.featured { grid-column: auto; grid-row: auto; }
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  /* Mark-only header: no room for the wordmark beside the price CTA */
  .nav-logo-text { display: none; }
  .nav-mark { width: 38px; height: 38px; }
}

/* =====================================================
   INTERIOR PAGES
   The home page is a pitch; these are reference. Same
   frame and rhythm, quieter: shorter hero, one column
   of readable measure, cards only where a list of
   like things genuinely needs separating.
   ===================================================== */

/* ── Page hero — a header, not a landing ── */
.page-hero {
  padding: calc(var(--nav-h) + 5rem) 2rem 3.5rem;
  background: linear-gradient(180deg, var(--iron-mid), var(--iron));
  border-bottom: 1px solid var(--border-soft);
  text-align: center;
}
.page-hero .container { max-width: 780px; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 1rem;
}
.page-hero h1 .italic { font-style: italic; color: var(--accent-light); }
.page-hero p {
  color: var(--text-faint);
  font-size: 1.05rem;
  max-width: 60ch;
  margin: 0 auto;
}

/* ── Generic section + prose ── */
.page-section { padding: 4.5rem 2rem; }
.page-section.tint { background: var(--iron-mid); }
.page-section > .container { max-width: 1100px; }
.prose { max-width: 68ch; }
.prose p { margin-bottom: 1.1rem; color: var(--chalk-dark); }
.prose p:last-child { margin-bottom: 0; }
.prose h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 2rem 0 .75rem;
}
.prose a { color: var(--accent-light); border-bottom: 1px solid var(--border); }
.prose a:hover { border-bottom-color: var(--accent-warm); }
.lede { font-size: 1.15rem; line-height: 1.7; color: var(--chalk); }

/* ── Detail card: the facts of a single thing (a meet) ── */
.detail-card {
  background: var(--iron-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
}
.detail-rows { display: grid; gap: 0; margin: 1.5rem 0; }
.detail-rows > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1.25rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--border-soft);
}
.detail-rows > div:last-child { border-bottom: 0; }
.detail-rows dt {
  font-family: 'DM Mono', monospace;
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--steel);
  padding-top: .2rem;
}
.detail-rows dd { color: var(--chalk); }

/* Unknown-yet values look deliberately unfinished rather than wrong —
   an empty slot reads as a mistake, "to be confirmed" reads as honest. */
.tbc {
  font-family: 'DM Mono', monospace;
  font-size: .8rem;
  color: var(--steel);
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px dashed var(--border);
  border-radius: 3px;
  padding: .12rem .5rem;
}

/* ── Card grids: team, partners, past meets ── */
.card-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card-grid.two-up { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.info-card {
  background: var(--iron-mid);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color var(--transition), transform var(--transition);
}
.info-card:hover { border-color: rgba(var(--accent-rgb), 0.4); transform: translateY(-3px); }
.info-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: .3rem; }
.info-card .role {
  font-family: 'DM Mono', monospace;
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .9rem;
}
.info-card p { color: var(--text-faint); font-size: .95rem; }

/* Team page: two co-founder cards up top, then the crew row of three
   slightly smaller cards beneath them. */
.team-leads {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.team-leads .info-card {
  padding: 2.25rem;
  background: linear-gradient(160deg, var(--iron-light), var(--iron-mid));
  border-color: var(--border);
}
.team-leads .info-card h3 { font-size: 1.55rem; }
.team-leads .avatar { width: 76px; height: 76px; font-size: 1.6rem; }
.team-crew {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.team-crew .info-card { padding: 1.5rem; }
.team-crew .info-card h3 { font-size: 1.15rem; }
.team-crew .info-card p { font-size: .88rem; }
.team-crew .avatar { width: 52px; height: 52px; font-size: 1.1rem; margin-bottom: .9rem; }
@media (max-width: 860px) {
  .team-leads { grid-template-columns: 1fr; }
  .team-crew { grid-template-columns: 1fr; }
}

/* Initials stand in for photographs until the launch shoot exists;
   an <img class="avatar"> drops straight into the same slot. */
img.avatar { object-fit: cover; object-position: center top; }
.avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(var(--accent-rgb), 0.14);
  border: 1px solid var(--border);
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 1.1rem;
}

/* ── Numbered steps: how joining works ── */
.step-list { display: grid; gap: 1.25rem; counter-reset: step; max-width: 760px; }
.step-list > li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1.25rem;
  align-items: start;
  counter-increment: step;
}
.step-list > li::before {
  content: counter(step, decimal-leading-zero);
  font-family: 'DM Mono', monospace;
  font-size: .8rem;
  color: var(--accent);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: grid; place-items: center;
}
.step-list h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: .2rem; }
.step-list p { color: var(--text-faint); font-size: .95rem; }

/* ── FAQ ── */
.faq { max-width: 760px; display: grid; gap: 0; }
.faq details {
  border-bottom: 1px solid var(--border-soft);
  padding: 1.15rem 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--accent); font-size: 1.3rem; line-height: 1; }
.faq details[open] summary::after { content: '−'; }
.faq details p { margin-top: .8rem; color: var(--text-faint); max-width: 62ch; }

/* ── Empty state: a club with no history yet ── */
.empty-state {
  text-align: center;
  padding: 3.5rem 2rem;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  background: rgba(var(--accent-rgb), 0.04);
}
.empty-state h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: .6rem; }
.empty-state p { color: var(--text-faint); max-width: 52ch; margin: 0 auto 1.5rem; }

/* ── Contact ── */
.contact-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr 1fr; align-items: start; }
.contact-methods { display: grid; gap: 1rem; }
.contact-method {
  display: flex; gap: 1rem; align-items: center;
  padding: 1.15rem 1.25rem;
  background: var(--iron-mid);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.contact-method:hover { border-color: rgba(var(--accent-rgb), 0.4); }
.contact-method .icon { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }
.contact-method strong { display: block; font-size: .95rem; }
.contact-method span { color: var(--text-faint); font-size: .85rem; }

.field-set { display: grid; gap: 1.1rem; }
.field-set label { display: grid; gap: .4rem; }
.field-set span {
  font-family: 'DM Mono', monospace;
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--steel);
}
.field-set input, .field-set textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  color: var(--chalk);
  background: var(--iron);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: .8rem .9rem;
  width: 100%;
}
.field-set input:focus, .field-set textarea:focus { outline: none; border-color: var(--accent); }
.form-note { color: var(--steel); font-size: .82rem; margin-top: .9rem; }

/* ── Current page in the nav ── */
.nav-links a.current { color: var(--accent-light); }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .detail-rows > div { grid-template-columns: 1fr; gap: .3rem; }
  .page-hero { padding: calc(var(--nav-h) + 3rem) 1.25rem 2.5rem; }
  .page-section { padding: 3rem 1.25rem; }
}

/* Coming-soon chip. Sits with the price so nobody reads a number as a
   button they can press today. */
.soon-badge {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: rgba(var(--accent-rgb), 0.12);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .3rem .8rem;
  margin-bottom: 1rem;
}

/* The logo image inside the nav and footer marks. object-fit contain so a
   non-square export still sits correctly rather than being stretched. */
.logo-img { width: 100%; height: 100%; object-fit: contain; display: block; }
.nav-mark .logo-img, .footer-mark .logo-img { padding: 0; }
