/* ===========================================================
   AURELIUS FC — Design System
   Cream (bone) + Deep Forest Green + Antique Gold
   Cinzel display + Inter body • zero radius • hairline borders
   =========================================================== */

:root{
  --pitch:      #0a0a0a;
  --forest:     #06271b;
  --gold:       #bfa065;
  --gold-light: #e0c38f;
  --bone:       #f8f5f2;
  --pitch-txt:  #0d1117;

  --wrap-max: 1280px;
  --pad-x: 2rem;   /* 32px */
  --pad-x-lg: 4rem;/* 64px */
  --pad-y: 8rem;   /* 128px */

  --font-display: "Cinzel", ui-serif, Georgia, serif;
  --font-body:    "Inter", ui-sans-serif, system-ui, sans-serif;

  --tw-wider: 0.05em;
  --tw-widest: 0.1em;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust:100%; }
body{
  margin:0;
  background: var(--bone);
  color: var(--pitch-txt);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img{ display:block; max-width:100%; height:auto; }
a{ color:inherit; text-decoration:none; }
button{ font: inherit; cursor:pointer; border:none; background:none; color:inherit; }

.sr-only{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* -------- Utility: wrap / grid -------- */
.wrap{
  max-width: var(--wrap-max);
  margin: 0 auto;
  width: 100%;
}
.grid-12{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 4rem;
}
.col-4  { grid-column: span 4; }
.col-5  { grid-column: span 5; }
.col-7  { grid-column: span 7; }
.col-8  { grid-column: span 8; }

/* -------- Typography primitives -------- */
.h2{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin: 0;
}
.h2-bone  { color: var(--bone); }
.h2-pitch { color: var(--pitch-txt); }
.h2.bordered{
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(6,39,27,0.10);
  margin-bottom: 1.5rem;
}

.h3{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.25;
  margin: 0 0 .5rem;
  transition: color .3s ease;
}
.h3-pitch { color: var(--pitch-txt); }
.h3-bone  { color: var(--bone); font-size: 1.75rem; }

.body{
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.65;
  margin: 1.25rem 0;
}
.body-sm{
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: .5rem 0;
}
.body-muted        { color: rgba(13,17,23,0.60); }
.body-bone-muted   { color: rgba(248,245,242,0.60); }

.micro{
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.micro-gold        { color: var(--gold); font-weight: 700; }
.micro-muted       { color: rgba(13,17,23,0.40); font-weight: 400; }
.micro-bone-40     { color: rgba(248,245,242,0.40); font-weight: 400; }

.eyebrow{
  font-family: var(--font-display);
  font-size: 0.875rem;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.5rem;
}
.eyebrow-hero  { letter-spacing: 0.5em; padding-left: 0.5em; /* optical center for tracked caps */ }
.eyebrow-gold  { letter-spacing: 0.3em; font-size: 0.875rem; }
.eyebrow-gold-sm { letter-spacing: 0.3em; font-size: 0.75rem; margin-bottom: .75rem; }

.numeral{
  font-family: var(--font-display);
  font-weight: 400;
}
.numeral-sm  { font-size: 1.125rem; }
.numeral-md  { font-size: 1.25rem; }
.numeral-lg  { font-size: 1.75rem; }
.numeral-gold{ color: var(--gold); }

/* =========================================================
   TICKER MARQUEE
   ========================================================= */
.ticker{
  background: var(--pitch);
  border-bottom: 1px solid rgba(191,160,101,0.20);
  padding: 8px 0;
  overflow: hidden;
  position: relative;
  z-index: 40;
}
.ticker-track{
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 30s linear infinite;
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
}
@keyframes marquee{
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   NAV
   ========================================================= */
.nav{
  position: absolute;
  top: 3rem;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  gap: 2rem;
}
@media (min-width: 1024px){
  .nav{ padding: 0 var(--pad-x-lg); }
}
.nav-group{
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex: 1;
}
.nav-right{ justify-content: flex-end; }
.nav-group a{
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248,245,242,0.8);
  transition: color .2s ease;
}
.nav-group a:hover{ color: var(--bone); }

.crest-lockup{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.crest{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(6,39,27,0.80);
  outline: 1px solid rgba(191,160,101,0.50);
  outline-offset: -1px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.crest svg{ width: 32px; height: 38px; display:block; }
.wordmark{
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--bone);
  text-transform: uppercase;
}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position: relative;
  height: 100vh;
  min-height: 720px;
  background: var(--forest);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 6rem;
  overflow: hidden;
}
.hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: grayscale(0.2) saturate(0.9);
  z-index: 0;
}
.hero-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      var(--forest) 0%,
      rgba(6,39,27,0.35) 40%,
      transparent 65%,
      rgba(10,10,10,0.5) 100%);
  z-index: 1;
}
.hero-content{
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 64rem;
}
.hero-title{
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--bone);
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 0 0 2rem;
  text-transform: uppercase;
}
.italic-accent{
  font-weight: 300;
  font-style: italic;
  color: var(--gold-light);
}

.hero-cta{
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn{
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
  text-align: center;
  border: 1px solid transparent;
  line-height: 1;
}
.btn-gold{
  background: var(--gold);
  color: var(--forest);
}
.btn-gold:hover{ background: var(--gold-light); }

.btn-outline-bone{
  border-color: rgba(248,245,242,0.30);
  color: var(--bone);
}
.btn-outline-bone:hover{ background: rgba(248,245,242,0.10); }

.btn-outline-forest{
  border-color: rgba(6,39,27,0.15);
  color: var(--pitch-txt);
}
.btn-outline-forest:hover{ background: rgba(6,39,27,0.06); }

.btn-full{ display:block; width:100%; }
.btn-tight{ padding: 1rem 1.5rem; letter-spacing: 0.2em; font-size: 10px; }
.btn-sm{ padding: .75rem 1.25rem; font-size: 10px; letter-spacing: 0.2em; }

/* Card-hover swap on match-report button */
.group:hover .btn-invert-on-group-hover{
  background: var(--forest);
  color: var(--bone);
  border-color: var(--forest);
}
/* Fixture row hover -> tickets btn goes gold */
.fixture-row:hover .btn-fixture{
  border-color: var(--gold);
  color: var(--gold);
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section{
  padding: var(--pad-y) var(--pad-x);
  position: relative;
}
.section-bone   { background: var(--bone); color: var(--pitch-txt); }
.section-white  { background: #fff; color: var(--pitch-txt); border-top: 1px solid rgba(6,39,27,0.10); border-bottom: 1px solid rgba(6,39,27,0.10); }
.section-forest { background: var(--forest); color: var(--bone); }
.section-pitch  { background: var(--pitch); color: var(--bone); overflow: hidden; }

.section-head{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}
.section-head-bone{ border-bottom: 1px solid rgba(191,160,101,0.20); }
.section-head-pitch{ border-bottom: 1px solid rgba(6,39,27,0.10); }
.section-head-lead{ max-width: 24rem; margin: 0; }

.link-gold{
  color: var(--gold);
  font-weight: 700;
  transition: opacity .2s;
}
.link-gold:hover{ opacity: 0.75; }

/* =========================================================
   SEASON TRAJECTORY (matches section)
   ========================================================= */
.stat-list{ margin-top: 2rem; }
.stat-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(6,39,27,0.06);
}
.stat-row-dark{
  border-bottom-color: rgba(248,245,242,0.10);
  margin-bottom: 1.25rem;
}

.match-cards{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.card{
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  min-height: 380px;
}
.card-white{
  background: #fff;
  border: 1px solid rgba(6,39,27,0.06);
  box-shadow: 0 1px 2px rgba(6,39,27,0.05);
}
.card-forest{
  background: var(--forest);
  color: var(--bone);
}
.card-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.score-row{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  text-align: center;
  padding: 1rem 0;
}
.team-block{ display: flex; flex-direction: column; align-items: center; gap: .75rem; }
.team-avatar{
  width: 64px; height: 64px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
}
.avatar-home{ background: rgba(6,39,27,0.06); color: var(--forest); }
.avatar-away{ background: rgba(6,39,27,0.05); color: rgba(13,17,23,0.5); }
.team-name{
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.team-name.muted{ color: rgba(13,17,23,0.5); font-weight: 400; }
.score{
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1;
  color: var(--pitch-txt);
  white-space: nowrap;
}

/* =========================================================
   FIXTURES + LEAGUE TABLE
   ========================================================= */
.fixtures-grid{ gap: 4rem; }

.fixture-list{
  list-style: none;
  padding: 0; margin: 0;
}
.fixture-list li + li{ border-top: 1px solid rgba(248,245,242,0.10); }
.fixture-row{
  display: grid;
  grid-template-columns: 8rem 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
}
.fx-date{ display: flex; flex-direction: column; gap: .25rem; }
.fx-opponent{
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: .35rem;
}

.league-table-wrap .table-label{ margin: 0 0 1rem; }
.league-table{
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  color: rgba(248,245,242,0.70);
}
.league-table th{
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: .75rem .5rem;
  color: rgba(248,245,242,0.50);
  text-align: right;
  border-bottom: 1px solid rgba(248,245,242,0.15);
}
.league-table td{
  padding: 1rem .5rem;
  text-align: right;
  border-top: 1px solid rgba(248,245,242,0.08);
}
.league-table .ta-left{ text-align: left; }
.league-table .tr-highlight td{ color: var(--gold); }
.league-table .tr-highlight .numeral-sm{ color: var(--gold); }

/* =========================================================
   NEWS
   ========================================================= */
.news-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.news-card{ cursor: pointer; display: block; }
.news-img-wrap{
  overflow: hidden;
  margin-bottom: 1.5rem;
  aspect-ratio: 4/3;
}
.news-img-wrap img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.news-card:hover .news-img-wrap img{ transform: scale(1.05); }
.news-card:hover .h3-pitch{ color: var(--forest); }
.news-card .micro{ margin: 0; }
.news-card .h3{ margin: .75rem 0; }

/* =========================================================
   SQUAD
   ========================================================= */
.squad-grid{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(6,39,27,0.10);
  border: 1px solid rgba(6,39,27,0.10);
}
.squad-cell{
  background: #fff;
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  transition: background-color .3s ease;
  min-height: 190px;
}
.squad-num{
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: rgba(6,39,27,0.20);
  line-height: 1;
  transition: color .3s ease;
  margin-bottom: 1.5rem;
}
.squad-name{
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pitch-txt);
  transition: color .3s ease;
}
.squad-pos{
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(13,17,23,0.40);
  transition: color .3s ease;
}
.squad-cell:hover{ background: var(--forest); }
.squad-cell:hover .squad-num{ color: var(--gold); }
.squad-cell:hover .squad-name{ color: var(--bone); }
.squad-cell:hover .squad-pos{ color: rgba(248,245,242,0.50); }

/* =========================================================
   CAPTAIN'S LOG
   ========================================================= */
.captain-wrap{
  display: flex;
  gap: 5rem;
  align-items: center;
}
.captain-media{
  position: relative;
  flex: 1;
  max-width: 50%;
}
.captain-numeral{
  position: absolute;
  top: -2.5rem;
  left: -2.5rem;
  font-family: var(--font-display);
  font-size: 200px;
  line-height: 1;
  color: rgba(248,245,242,0.05);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.captain-media img{
  position: relative;
  z-index: 1;
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
.captain-frame{
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 10rem; height: 10rem;
  border: 1px solid rgba(191,160,101,0.35);
  z-index: 2;
  pointer-events: none;
}

.captain-text{ flex: 1; max-width: 50%; }
.captain-h2{
  font-size: clamp(2.25rem, 3.6vw, 3rem);
  line-height: 1.1;
  margin: 0 0 1.5rem;
}
.pullquote{
  font-size: 1.125rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: rgba(248,245,242,0.55);
  margin: 0 0 2rem;
}

.link-with-rule{
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.link-rule{
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  transition: width .5s ease;
}
.link-with-rule:hover .link-rule{ width: 64px; }

/* =========================================================
   HONOURS
   ========================================================= */
.honours-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(6,39,27,0.10);
  border: 1px solid rgba(6,39,27,0.10);
}
.honour-cell{
  background: var(--bone);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.honour-num{
  font-family: var(--font-display);
  font-size: 3.75rem;
  color: var(--forest);
  line-height: 1;
  margin-bottom: .75rem;
}
.honour-label{
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pitch-txt);
  margin-bottom: .35rem;
}

.timeline{
  list-style: none;
  padding: 0 0 0 2rem;
  margin: 5rem 0 0;
  border-left: 1px solid rgba(191,160,101,0.40);
  position: relative;
}
.timeline li{
  position: relative;
  padding: 1rem 0;
  margin-bottom: 2rem;
}
.timeline li:last-child{ margin-bottom: 0; }
.timeline-dot{
  position: absolute;
  left: calc(-2rem - 5px);
  top: 1.5rem;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
}
.timeline-year{
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .5rem;
}
.timeline-desc{
  font-weight: 300;
  line-height: 1.6;
  color: rgba(13,17,23,0.60);
  max-width: 36rem;
}

/* =========================================================
   MEMBERSHIP / STADIUM
   ========================================================= */
.section-stadium{
  position: relative;
  background: var(--pitch);
  color: var(--bone);
  overflow: hidden;
}
.stadium-bg{
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.stadium-scrim{
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.75) 50%, rgba(10,10,10,0.55) 100%);
  z-index: 1;
}
.stadium-content{
  position: relative;
  z-index: 2;
  max-width: 72rem;
}
.stadium-h2{
  font-size: clamp(2.25rem, 3.6vw, 3rem);
  line-height: 1.1;
  margin: 0 0 1.5rem;
  max-width: 30rem;
}
.stadium-lead{
  max-width: 30rem;
  color: rgba(248,245,242,0.60);
  margin: 0 0 2rem;
}

.stadium-tiles{
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(248,245,242,0.10);
  border-top: 1px solid rgba(248,245,242,0.10);
}
.stadium-tile{
  background: rgba(10,10,10,0.90);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  transition: background-color .3s ease;
}
.stadium-tile:hover{ background: var(--forest); }
.stadium-tile h4{
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bone);
  margin: 0;
}
.stadium-tile .tile-lead{
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(248,245,242,0.55);
  margin: .35rem 0 1rem;
}
.stadium-tile .link-rule{
  width: 32px;
  transition: width .5s ease;
}
.stadium-tile:hover .link-rule{ width: 64px; }

/* =========================================================
   NEWSLETTER
   ========================================================= */
.newsletter{ padding: 6rem var(--pad-x); }
.newsletter-wrap{
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
.newsletter-h2{
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin: 0;
}
.newsletter-lead{ margin: 0; max-width: 42rem; color: rgba(248,245,242,0.55); }

.newsletter-form{
  display: flex;
  gap: 1rem;
  width: 100%;
  max-width: 34rem;
  flex-wrap: wrap;
}
.newsletter-form input{
  flex: 1;
  min-width: 240px;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(248,245,242,0.20);
  background: transparent;
  color: var(--bone);
  font: inherit;
  font-size: 0.875rem;
  transition: border-color .2s ease;
  border-radius: 0;
}
.newsletter-form input::placeholder{ color: rgba(248,245,242,0.30); }
.newsletter-form input:focus{
  outline: none;
  border-color: var(--gold);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer{
  background: var(--bone);
  padding: 5rem var(--pad-x);
  border-top: 1px solid rgba(6,39,27,0.10);
}
.footer-top{
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.footer-brand{ max-width: 24rem; }
.footer-wordmark{
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.footer-links{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
.footer-links h5{
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pitch-txt);
  margin: 0 0 1.25rem;
}
.footer-links ul{
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.footer-links a{
  font-size: 0.875rem;
  color: rgba(13,17,23,0.50);
  transition: color .2s ease;
}
.footer-links a:hover{ color: var(--gold); }

.footer-bottom{
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(6,39,27,0.05);
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(13,17,23,0.30);
}
.footer-legal{ display: flex; gap: 1.5rem; }
.footer-legal a:hover{ color: var(--gold); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px){
  :root{ --pad-y: 5rem; }
  .grid-12{ gap: 2.5rem; }
  .col-4, .col-5, .col-7, .col-8{ grid-column: 1 / -1; }
  .match-cards{ grid-template-columns: 1fr; }
  .fixtures-grid{ gap: 3rem; }
  .news-grid{ grid-template-columns: repeat(2, 1fr); }
  .squad-grid{ grid-template-columns: repeat(4, 1fr); }
  .honours-grid{ grid-template-columns: repeat(2, 1fr); }
  .stadium-tiles{ grid-template-columns: repeat(2, 1fr); }
  .captain-wrap{ flex-direction: column; gap: 3rem; }
  .captain-media, .captain-text{ max-width: 100%; width: 100%; }
  .captain-frame{ display: none; }
  .captain-numeral{ font-size: 140px; }
}
@media (max-width: 640px){
  :root{ --pad-x: 1.25rem; --pad-y: 4rem; }
  .nav{ padding: 0 1.25rem; gap: 1rem; }
  .nav-group{ display: none; }
  .nav .crest-lockup{ margin: 0 auto; }
  .hero{ min-height: 640px; padding-bottom: 4rem; }
  .hero-title{ font-size: 3.25rem; }
  .section-head{ flex-direction: column; align-items: flex-start; }
  .fixture-row{ grid-template-columns: 1fr; gap: .75rem; padding: 1.25rem 0; }
  .news-grid{ grid-template-columns: 1fr; }
  .squad-grid{ grid-template-columns: repeat(2, 1fr); }
  .honours-grid{ grid-template-columns: 1fr; }
  .stadium-tiles{ grid-template-columns: 1fr; }
  .footer-top{ flex-direction: column; }
  .footer-links{ gap: 3rem; }
  .footer-bottom{ flex-direction: column; }
}
