/* Stoke United F.C. — Heritage Theme
   Ported from the React prototype; kept class-name-compatible so block
   patterns can reuse the same class hooks.

   Palette: navy #1a3a6b, parchment #f4ede0, ink #0f1a2c, brick #a83a2c, gold #c9a961
*/

:root {
  --navy: #1a3a6b;
  --navy-deep: #122a4f;
  --ink: #0f1a2c;
  --parchment: #f4ede0;
  --parchment-2: #ece2cf;
  --paper: #faf6ec;
  --brick: #a83a2c;
  --gold: #c9a961;
  --gold-deep: #a8893f;
  --rule: #d6c9ad;
  --muted: #6b6354;

  --display: 'Bodoni Moda', 'Times New Roman', serif;
  --condensed: 'Roboto Condensed', 'Arial Narrow', sans-serif;
  --body: 'Source Serif 4', Georgia, serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

img { max-width: 100%; display: block; height: auto; }

button { font-family: inherit; cursor: pointer; }

/* ─── helpers used by block patterns ───────────────────────────────── */

.eyebrow {
  font-family: var(--condensed);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}
.eyebrow--gold { color: var(--gold-deep); }
.eyebrow--navy { color: var(--navy); }
.eyebrow--parchment { color: var(--parchment-2); }

.rule { border: 0; border-top: 1px solid var(--rule); margin: 0; }
.rule--double { border: 0; height: 4px; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.rule--gold { border: 0; border-top: 1px solid var(--gold); }

/* ─── top bar ─────────────────────────────────────────────────────── */

.topbar {
  background: var(--ink);
  color: var(--parchment);
  font-family: var(--condensed);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.topbar-links { display: flex; gap: 20px; align-items: center; }
.topbar a:hover { color: var(--gold); text-decoration: none; }

/* ─── masthead ────────────────────────────────────────────────────── */

.masthead {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.masthead-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 32px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.masthead-side {
  font-family: var(--condensed);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
  color: var(--muted);
}
.masthead-side--right { text-align: right; }
.masthead-side strong {
  color: var(--ink);
  display: block;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 2px;
}
.masthead-center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.masthead-crest { width: 64px; height: auto; margin-bottom: 8px; }
.masthead-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 38px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin: 0;
}
.masthead-tagline {
  font-family: var(--condensed);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 10px;
  color: var(--muted);
  margin-top: 6px;
}

.nav,
nav.wp-block-navigation.stoke-nav {
  max-width: 1280px;
  margin: 24px auto 0;
  padding: 0 32px;
  display: flex;
  justify-content: center;
  gap: 36px;
  border-top: 1px solid var(--rule);
}
nav.wp-block-navigation.stoke-nav .wp-block-navigation__container {
  justify-content: center;
  gap: 36px;
  border-top: 0;
  margin-top: 0;
}
nav.wp-block-navigation.stoke-nav .wp-block-navigation-item__content {
  font-family: var(--condensed);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  padding: 16px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}
nav.wp-block-navigation.stoke-nav .wp-block-navigation-item__content:hover {
  border-bottom-color: var(--navy);
  text-decoration: none;
}
nav.wp-block-navigation.stoke-nav .current-menu-item .wp-block-navigation-item__content {
  border-bottom-color: var(--brick);
  color: var(--navy);
}

/* ─── container ───────────────────────────────────────────────────── */

.container,
.wp-block-group.stoke-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ─── hero ────────────────────────────────────────────────────────── */

.hero {
  background: var(--navy);
  color: var(--parchment);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('hero.jpg');
  background-size: cover;
  background-position: center bottom;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 26, 44, 0.55) 0%, rgba(26, 58, 107, 0.78) 60%, rgba(18, 42, 79, 0.92) 100%);
  z-index: 1;
}
.hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 32px 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-family: var(--condensed);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  height: 1px;
  background: var(--gold);
  flex: 0 0 28px;
}
.hero-eyebrow::after { flex: 1; }
.hero-title {
  font-family: var(--display);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  color: var(--paper);
}
.hero-title em { font-style: normal; color: var(--gold); font-weight: 700; }
.hero-lede {
  font-family: var(--body);
  font-size: 19px;
  line-height: 1.55;
  color: rgba(244, 237, 224, 0.85);
  max-width: 52ch;
  margin: 0 0 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-watermark {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  opacity: 0.05;
  z-index: 2;
  pointer-events: none;
}

/* ─── buttons ─────────────────────────────────────────────────────── */

.btn,
.wp-block-button.is-style-stoke .wp-block-button__link {
  font-family: var(--condensed);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  font-weight: 600;
  padding: 14px 22px;
  border: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.15s;
}
.btn:hover { text-decoration: none; }
.btn--gold { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--paper); border-color: var(--paper); }
.btn--brick { background: var(--brick); border-color: var(--brick); color: var(--paper); }
.btn--brick:hover { background: #8b2e22; border-color: #8b2e22; }
.btn--navy { background: var(--navy); border-color: var(--navy); color: var(--paper); }
.btn--navy:hover { background: var(--navy-deep); border-color: var(--navy-deep); }
.btn--ghost-light:hover { background: var(--paper); color: var(--navy); border-color: var(--paper); }

/* ─── section wrapper ─────────────────────────────────────────────── */

.section { padding: 72px 0; }
.section--parchment { background: var(--parchment); }
.section--ink { background: var(--ink); color: var(--parchment); }
.section--paper { background: var(--paper); }

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 24px;
  flex-wrap: wrap;
}
.section-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.05;
  margin: 0;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.section--ink .section-title { color: var(--paper); }
.section-title em { font-style: italic; color: var(--brick); font-weight: 500; }
.section-link {
  font-family: var(--condensed);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  cursor: pointer;
}
.section-link a {
  color: inherit;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  text-decoration: none;
}
.section-link a:hover { color: var(--brick); }
.section--ink .section-link { color: var(--gold); }
.section--ink .section-link a { color: inherit; }

/* Reset margins on heritage typography classes that may render as <p> */
.eyebrow, .pathway-eyebrow, .pathway-cell-age,
.cred-icon, .news-list-num, .news-list-heading,
.footer-brand-text, .footer-sponsor-eyebrow,
.about-eyebrow, .page-header-eyebrow {
  margin: 0;
}
.footer-brand-tag { margin-top: 4px; margin-bottom: 0; }
.about-eyebrow { margin-bottom: 16px; }
.page-header-eyebrow { margin-bottom: 12px; }
.pathway-cell-age { margin-bottom: 8px; }
.cred-icon { margin: 0 auto 8px; }

/* ─── fixtures grid + cards ───────────────────────────────────────── */

.fixtures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.fixture {
  background: var(--paper);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: background 0.15s;
}
.fixture:hover { background: #fff; }
.fixture-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--condensed);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 600;
}
.fixture-comp { color: var(--brick); }
.fixture-date {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
}
.fixture-teams { display: flex; flex-direction: column; gap: 8px; }
.fixture-team-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 12px;
}
.fixture-team-name {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
}
.fixture-team-name.us { color: var(--navy); font-weight: 700; }
.fixture-team-score {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.fixture-team-score.us { color: var(--navy); }
.fixture-vs {
  font-family: var(--condensed);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin: 2px 0;
}
.fixture-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--condensed);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  padding-top: 12px;
  border-top: 1px dashed var(--rule);
}
.fixture-foot strong { color: var(--ink); font-weight: 700; }
.fixture-status {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--condensed);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 3px 8px;
  background: var(--gold);
  color: var(--ink);
}
.fixture-status.upcoming { background: var(--navy); color: var(--paper); }
.fixture-status.result { background: var(--brick); color: var(--paper); }

/* ─── news grid ───────────────────────────────────────────────────── */

.news-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
}
.news-grid--two   { grid-template-columns: 1fr 1fr; }
.news-grid--three { grid-template-columns: repeat(3, 1fr); }
.news-card { display: flex; flex-direction: column; gap: 12px; cursor: pointer; }
.news-card a { color: inherit; }
.news-card:hover .news-headline { color: var(--brick); }
.news-image {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--parchment-2);
  position: relative;
  overflow: hidden;
}
.news-image img { width: 100%; height: 100%; object-fit: cover; }
.news-image-placeholder {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, var(--parchment-2), var(--parchment-2) 12px, var(--parchment) 12px, var(--parchment) 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.news-meta {
  font-family: var(--condensed);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brick);
  font-weight: 600;
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0;
}
.news-meta a { color: inherit; text-decoration: none; }
.news-meta > * + *::before {
  content: "·";
  margin-right: 12px;
  color: var(--muted);
  font-weight: 600;
}
.news-meta-date { color: var(--muted); }
.news-headline {
  font-family: var(--display);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
  transition: color 0.15s;
  letter-spacing: -0.005em;
}
.news-card--lead .news-headline { font-size: 38px; font-weight: 700; line-height: 1.05; }
.news-card--small .news-headline { font-size: 18px; }
.news-dek {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}
.news-list { display: flex; flex-direction: column; }
.news-list-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.news-list-item:first-child { padding-top: 0; }
.news-list-item:last-child { border-bottom: 0; }
.news-list-item:hover .news-headline { color: var(--brick); }
.news-list-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 12px;
  color: var(--gold-deep);
}
.news-list-item .news-headline { font-size: 17px; font-weight: 600; }

/* News section — 3-zone layout (lead + secondary stack + sidebar list) */
.news-zone { min-width: 0; }
.news-zone .wp-block-post-template {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.news-zone--lead .wp-block-post-template { gap: 0; }
.news-zone--lead .wp-block-post { display: contents; }
.news-zone--secondary .wp-block-post { list-style: none; }
.news-zone--sidebar { counter-reset: stoke-newslist 2; }
.news-zone--sidebar .news-list .wp-block-post-template {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.news-zone--sidebar .wp-block-post {
  list-style: none;
  counter-increment: stoke-newslist;
}
.news-zone--sidebar .news-list-num::before {
  content: "№ " counter(stoke-newslist, decimal-leading-zero);
}

/* ─── about ───────────────────────────────────────────────────────── */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.about-image {
  aspect-ratio: 4/5;
  background: var(--parchment-2);
  position: relative;
  border: 1px solid var(--gold);
  display: block;
  margin: 0;
  overflow: hidden;
}
.about-image::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid var(--gold);
  pointer-events: none;
  z-index: 2;
}
.about-image-inner {
  position: absolute;
  inset: 8px;
  background-image: repeating-linear-gradient(135deg, var(--parchment-2), var(--parchment-2) 12px, var(--parchment) 12px, var(--parchment) 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.about-image img {
  position: absolute;
  inset: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  object-fit: cover;
  display: block;
  z-index: 1;
}
.about-eyebrow {
  font-family: var(--condensed);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 12px;
  color: var(--brick);
  font-weight: 700;
  margin-bottom: 16px;
}
.about-headline {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.12;
  color: var(--navy);
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.about-headline em { font-style: italic; color: var(--brick); }
.about-body {
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
}
.about-body p { margin: 0 0 16px; }
.about-body p:first-of-type::first-letter {
  font-family: var(--display);
  font-weight: 700;
  font-size: 64px;
  float: left;
  line-height: 0.85;
  margin: 6px 12px 0 0;
  color: var(--brick);
}

/* ─── pathway ─────────────────────────────────────────────────────── */

.pathway { background: var(--ink); color: var(--parchment); padding: 80px 0; position: relative; }
.pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid rgba(201, 169, 97, 0.3);
  border-left: 1px solid rgba(201, 169, 97, 0.3);
}
.pathway-cell {
  padding: 28px 24px;
  border-right: 1px solid rgba(201, 169, 97, 0.3);
  border-bottom: 1px solid rgba(201, 169, 97, 0.3);
  position: relative;
  transition: background 0.2s;
}
.pathway-cell:hover { background: rgba(201, 169, 97, 0.06); }
.pathway-cell-age {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 8px;
}
.pathway-cell-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 24px;
  color: var(--paper);
  margin: 0 0 10px;
  line-height: 1.1;
}
.pathway-cell-desc {
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(244, 237, 224, 0.7);
  margin: 0;
}

/* ─── creds (accreditations) ──────────────────────────────────────── */

.creds {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.cred {
  border: 1px solid var(--rule);
  padding: 28px;
  text-align: center;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  margin: 0;
  height: 100%;
}
.cred-icon {
  width: 56px; height: 56px;
  margin: 0 auto 8px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  color: var(--brick);
  background: var(--parchment);
}
.cred-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  color: var(--navy);
  margin: 0;
}
.cred-text {
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

/* ─── sponsors ────────────────────────────────────────────────────── */

.sponsors {
  padding: 56px 0;
  background: var(--parchment);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.sponsors-title {
  text-align: center;
  font-family: var(--condensed);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted);
  margin-bottom: 28px;
}
.sponsors-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  align-items: center;
}
.sponsors-row--single {
  display: flex;
  justify-content: center;
}
.sponsor-tile {
  height: 70px;
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--muted);
  background: var(--paper);
  padding: 12px;
}
.sponsor-tile--single {
  height: auto;
  max-width: 320px;
  border: 0;
  background: transparent;
  padding: 0;
}
.sponsor-tile--single img {
  filter: none;
  opacity: 1;
  max-height: 100px;
  width: auto;
}
.sponsor-tile p { margin: 0; line-height: 1.2; text-align: center; }
.sponsor-tile img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.85;
  transition: filter 0.2s, opacity 0.2s;
}
.sponsor-tile a:hover img { filter: grayscale(0); opacity: 1; }

/* ─── footer sponsor band (above main footer) ─────────────────────── */

.footer-sponsor {
  background: var(--paper);
  padding: 56px 0 48px;
  border-top: 1px solid var(--rule);
}
.footer-sponsor .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.footer-sponsor-eyebrow {
  font-family: var(--condensed);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted);
}
.footer-sponsor-logo {
  display: inline-block;
  border: 0;
  background: transparent;
  text-decoration: none;
  max-width: 100%;
}
.footer-sponsor-logo img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 220px;
}

/* ─── footer ──────────────────────────────────────────────────────── */

.footer { background: var(--ink); color: var(--parchment); padding: 64px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(201, 169, 97, 0.25);
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand-row { display: flex; align-items: center; gap: 14px; }
.footer-crest { width: 48px; }
.footer-brand-text {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  color: var(--paper);
  line-height: 1;
}
.footer-brand-tag {
  font-family: var(--condensed);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-top: 4px;
}
.footer-blurb {
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(244, 237, 224, 0.7);
  max-width: 36ch;
  margin: 0;
}
.footer-col h4 {
  font-family: var(--condensed);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin: 0 0 16px;
  font-weight: 700;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-family: var(--body); font-size: 15px; color: var(--parchment); }
.footer-col a:hover { color: var(--gold); text-decoration: none; }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-family: var(--condensed);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(244, 237, 224, 0.5);
}

/* ─── inner page header (navy band) ───────────────────────────────── */

.page-header {
  background: var(--navy);
  color: var(--parchment);
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}
.page-header-eyebrow {
  font-family: var(--condensed);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 11px;
  color: var(--gold);
  margin-bottom: 12px;
}
.page-header-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  margin: 0 0 12px;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.page-header-title em { font-style: italic; color: var(--gold); font-weight: 500; }
.page-header-sub {
  font-family: var(--body);
  font-size: 18px;
  color: rgba(244, 237, 224, 0.8);
  max-width: 60ch;
  margin: 0;
}

/* ─── fixtures table (full schedule page) ─────────────────────────── */

.fixtures-table { width: 100%; border-collapse: collapse; font-family: var(--body); }
.fixtures-table thead th {
  font-family: var(--condensed);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 600;
  text-align: left;
  padding: 14px 12px;
  border-bottom: 2px solid var(--ink);
}
.fixtures-table tbody td {
  padding: 18px 12px;
  border-bottom: 1px solid var(--rule);
  font-size: 16px;
  vertical-align: middle;
}
.fixtures-table tr:hover td { background: var(--parchment); }
.fixtures-table .ft-date {
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  width: 110px;
}
.fixtures-table .ft-comp {
  font-family: var(--condensed);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brick);
  font-weight: 600;
  width: 160px;
}
.fixtures-table .ft-match { font-family: var(--display); font-weight: 500; }
.fixtures-table .ft-match .us { color: var(--navy); font-weight: 700; }
.fixtures-table .ft-score {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  text-align: center;
}
.fixtures-table .ft-venue {
  font-family: var(--condensed);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.tabs { display: flex; gap: 0; border-bottom: 1px solid var(--rule); margin-bottom: 32px; }
.tab {
  font-family: var(--condensed);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 600;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-bottom: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  bottom: -1px;
  display: inline-block;
}
.tab.active {
  color: var(--navy);
  background: var(--paper);
  border-color: var(--rule);
  border-top: 3px solid var(--brick);
  padding-top: 12px;
}

/* ─── article (single post) ───────────────────────────────────────── */

.article { max-width: 720px; margin: 0 auto; padding: 56px 32px; }
.article-meta {
  font-family: var(--condensed);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brick);
  font-weight: 600;
  margin: 0 0 16px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.article-meta a { color: inherit; text-decoration: none; }
.article-meta > * + *::before {
  content: "·";
  margin-right: 14px;
  color: var(--muted);
  font-weight: 600;
}
.article-meta-date { color: var(--muted); }
.article-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.article-dek {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--muted);
  margin: 0 0 32px;
  font-weight: 400;
}
.article-byline {
  font-family: var(--condensed);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
  color: var(--muted);
  padding: 16px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
}
.article-byline strong { color: var(--ink); font-weight: 700; }
.article-image { aspect-ratio: 16/10; margin-bottom: 12px; overflow: hidden; }
.article-image img { width: 100%; height: 100%; object-fit: cover; }
.article-image--placeholder {
  background-image: repeating-linear-gradient(135deg, var(--parchment-2), var(--parchment-2) 12px, var(--parchment) 12px, var(--parchment) 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.article-caption {
  font-family: var(--condensed);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 32px;
  padding-left: 12px;
  border-left: 2px solid var(--gold);
}
.article-body {
  font-family: var(--body);
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink);
}
.article-body p { margin: 0 0 20px; }
.article-body > p:first-of-type::first-letter,
.article-body .has-drop-cap::first-letter {
  font-family: var(--display);
  font-weight: 700;
  font-size: 72px;
  float: left;
  line-height: 0.85;
  margin: 6px 14px 0 0;
  color: var(--brick);
}
.article-body h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 30px;
  margin: 36px 0 16px;
  color: var(--navy);
}
.article-body blockquote {
  font-family: var(--display);
  font-style: italic;
  font-size: 26px;
  line-height: 1.4;
  color: var(--brick);
  margin: 28px 0;
  padding: 12px 0 12px 24px;
  border-left: 3px solid var(--gold);
}

/* ─── contact ─────────────────────────────────────────────────────── */

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }

/* Editor-friendly contact card (one per officer) */
.contact-card {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 18px;
}
.contact-card:last-child { border-bottom: 0; margin-bottom: 0; }
.contact-card h4 {
  font-family: var(--condensed);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brick);
  font-weight: 700;
  margin: 0 0 6px;
}
.contact-card p {
  font-family: var(--body);
  font-size: 17px;
  margin: 0 0 2px;
  color: var(--ink);
  line-height: 1.5;
}
.contact-card p:last-child { margin-bottom: 0; }
.contact-card p strong { font-weight: 700; }
.contact-card a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 2px;
}
.contact-card a:hover { color: var(--brick); }

/* Coach card (smaller, used in 3-column grid) */
.coach-card {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 14px;
}
.coach-card:last-child { border-bottom: 0; margin-bottom: 0; }
.coach-card h4 {
  font-family: var(--condensed);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brick);
  font-weight: 700;
  margin: 0 0 4px;
}
.coach-card p {
  font-family: var(--body);
  font-size: 15px;
  margin: 0;
  color: var(--ink);
  line-height: 1.4;
}
.coach-card p strong { font-weight: 700; }

/* Address panel (the "Ground" card — same typographic feel) */
.address-card h4 {
  font-family: var(--condensed);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brick);
  font-weight: 700;
  margin: 0 0 6px;
}
.address-card p {
  font-family: var(--body);
  font-size: 17px;
  margin: 0;
  line-height: 1.55;
  color: var(--ink);
}

/* Map embed — used inside the contact info column */
.contact-map iframe {
  width: 100%;
  aspect-ratio: 16/10;
  border: 1px solid var(--rule);
  display: block;
  margin-top: 32px;
}

.contact-info dl { margin: 0; display: grid; grid-template-columns: 1fr; gap: 18px; }
.contact-info dt {
  font-family: var(--condensed);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brick);
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-info dd {
  font-family: var(--body);
  font-size: 17px;
  margin: 0;
  color: var(--ink);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}
.contact-form {
  background: var(--parchment);
  padding: 32px;
  border: 1px solid var(--gold);
  position: relative;
}
.contact-form::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.contact-form-inner { position: relative; z-index: 2; }
.contact-form h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 26px;
  margin: 0 0 18px;
  color: var(--navy);
}
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label {
  font-family: var(--condensed);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 600;
}
.field input, .field textarea, .field select {
  font-family: var(--body);
  font-size: 16px;
  padding: 10px 12px;
  border: 1px solid var(--rule);
  background: var(--paper);
  color: var(--ink);
  border-radius: 0;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 1px solid var(--navy);
  border-color: var(--navy);
}

/* ─── responsive ──────────────────────────────────────────────────── */

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-grid--three { grid-template-columns: 1fr 1fr; }
  .fixtures-grid { grid-template-columns: 1fr 1fr; }
  .pathway-grid { grid-template-columns: 1fr 1fr; }
  .creds { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sponsors-row { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .masthead-side { display: none; }
  .masthead-inner { grid-template-columns: 1fr; }
  .nav, .wp-block-navigation.stoke-nav { gap: 16px; flex-wrap: wrap; }
}
@media (max-width: 600px) {
  .news-grid, .news-grid--three { grid-template-columns: 1fr; }
  .fixtures-grid { grid-template-columns: 1fr; }
  .pathway-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .sponsors-row { grid-template-columns: repeat(2, 1fr); }
  .topbar-links { gap: 12px; font-size: 10px; }
  .container, .wp-block-group.stoke-container { padding: 0 20px; }
  .section { padding: 48px 0; }
}

/* ─── make WP core blocks fall in line ────────────────────────────── */

/* Reset rounded buttons + full-bleed group padding the editor injects. */
.wp-block-button .wp-block-button__link { border-radius: 0; }
.wp-block-group.alignfull { padding-left: 0; padding-right: 0; }

/* Drop cap support for the post content. */
.entry-content > p:first-of-type::first-letter,
.entry-content .has-drop-cap::first-letter {
  font-family: var(--display);
  font-weight: 700;
  font-size: 72px;
  float: left;
  line-height: 0.85;
  margin: 6px 14px 0 0;
  color: var(--brick);
}

/* News list (Query Loop) — base reset */
.wp-block-post-template { list-style: none; margin: 0; padding: 0; }

/* Pathway section (eyebrow + title on dark bg) */
.pathway-eyebrow { color: var(--gold); }
.pathway-title { color: var(--paper); }
.pathway-title em { color: var(--gold); font-style: italic; font-weight: 500; }

/* Sidebar list heading inside news section */
.news-list-heading {
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
  color: var(--navy);
}

/* Creds section vertical padding (was inline style) */
.creds-section { padding-top: 48px; padding-bottom: 48px; }
/* WP's is-layout-flow auto-injects margin-top on siblings 2+; that misaligns
   grid items. Force-zero it for our news grids so all cards top-align. */
.news-grid > li,
.news-grid > .wp-block-post,
.wp-block-post-template.news-grid > * {
  margin-top: 0 !important;
}
