@layer reset, tokens, base, components, utilities, motion;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body, h1, h2, h3, p, figure { margin: 0; }
  img, svg { display: block; max-width: 100%; }
  button, input, textarea, select { font: inherit; }
  a { color: inherit; text-decoration: none; }
  button { border: 0; }
}

@layer tokens {
  :root {
    --red: #d71920;
    --red-dark: #a90e14;
    --red-bright: #f2212a;
    --ink: #101010;
    --ink-soft: #202020;
    --paper: #f3f1eb;
    --white: #ffffff;
    --line: rgba(16, 16, 16, 0.15);
    --line-light: rgba(255, 255, 255, 0.2);
    --muted: #6a6862;
    --shell: min(1460px, calc(100vw - 48px));
    --header-height: 88px;
    --radius-sm: 14px;
    --radius-md: 26px;
    --radius-lg: 42px;
    --ease: cubic-bezier(.2,.8,.2,1);
    --font-display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
    --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }
}

@layer base {
  html { background: var(--paper); }
  body {
    min-width: 320px;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  body.menu-open { overflow: hidden; }

  ::selection { color: var(--white); background: var(--red); }

  h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 0.92;
    text-wrap: balance;
  }

  .skip-link {
    position: fixed;
    left: 18px;
    top: 18px;
    z-index: 1000;
    transform: translateY(-180%);
    padding: 12px 16px;
    color: var(--white);
    background: var(--ink);
    border-radius: 8px;
    transition: transform .2s ease;
  }
  .skip-link:focus { transform: translateY(0); }
  :focus-visible { outline: 3px solid #ffbf47; outline-offset: 4px; }
}

@layer components {
  .page-progress {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1001;
    height: 3px;
    pointer-events: none;
  }
  .page-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--red-bright);
    transform: scaleX(0);
    transform-origin: left;
  }

  .site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    height: var(--header-height);
    color: var(--white);
    transition: background-color .35s ease, color .35s ease, box-shadow .35s ease, height .35s ease;
  }
  .site-header.is-scrolled {
    color: var(--ink);
    background: rgba(243, 241, 235, .91);
    box-shadow: 0 1px 0 rgba(16, 16, 16, .09);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
  }
  .header-shell {
    width: var(--shell);
    height: 100%;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 32px;
  }
  .brand {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  .brand-mark {
    width: 54px;
    aspect-ratio: 1;
    padding: 4px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .16);
  }
  .brand-mark img { width: 100%; border-radius: 50%; }
  .brand-copy { display: grid; line-height: 1; text-transform: uppercase; }
  .brand-copy strong { font-size: .85rem; letter-spacing: .06em; }
  .brand-copy small { margin-top: 5px; opacity: .68; font-size: .62rem; letter-spacing: .13em; }
  .desktop-nav { display: flex; align-items: center; gap: 34px; }
  .desktop-nav a {
    position: relative;
    font-weight: 700;
    font-size: .86rem;
    letter-spacing: .02em;
  }
  .desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -7px;
    height: 2px;
    background: currentColor;
    transition: right .35s var(--ease);
  }
  .desktop-nav a:hover::after { right: 0; }
  .header-actions { justify-self: end; display: flex; align-items: center; gap: 14px; }
  .header-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 17px;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    transition: color .25s ease, background .25s ease, transform .25s ease;
  }
  .header-cta:hover { color: var(--ink); background: var(--white); transform: translateY(-2px); }
  .is-scrolled .header-cta:hover { color: var(--white); background: var(--red); border-color: var(--red); }
  .menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: inherit;
    background: transparent;
    border: 1px solid currentColor;
    cursor: pointer;
    place-items: center;
    position: relative;
  }
  .menu-toggle span:not(.sr-only) {
    position: absolute;
    width: 18px;
    height: 2px;
    background: currentColor;
    transition: transform .3s var(--ease), top .3s var(--ease);
  }
  .menu-toggle span:nth-child(2) { top: 19px; }
  .menu-toggle span:nth-child(3) { top: 27px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { top: 23px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 23px; transform: rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: -1;
    padding-top: var(--header-height);
    color: var(--white);
    background: var(--red);
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu-inner {
    width: var(--shell);
    height: calc(100dvh - var(--header-height));
    margin-inline: auto;
    display: grid;
    align-content: center;
    gap: 50px;
  }
  .mobile-menu nav { display: grid; }
  .mobile-menu nav a {
    padding-block: 11px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.25);
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 12vw, 5.5rem);
    font-weight: 900;
    letter-spacing: -.05em;
    line-height: 1;
  }
  .mobile-menu nav a span { font-family: var(--font-body); font-size: .72rem; letter-spacing: .1em; }
  .mobile-menu-meta { display: flex; justify-content: space-between; gap: 20px; font-size: .82rem; }

  .hero {
    position: relative;
    min-height: 100svh;
    padding: calc(var(--header-height) + 60px) 0 78px;
    color: var(--white);
    background:
      radial-gradient(circle at 68% 24%, rgba(255, 255, 255, .13), transparent 25%),
      linear-gradient(135deg, #d31820 0%, #b60c13 56%, #81070d 100%);
    overflow: hidden;
    isolation: isolate;
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background-image:
      linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(to bottom, black, transparent 86%);
  }
  .hero-grain {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .16;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
  }
  .hero-number {
    position: absolute;
    right: -3vw;
    top: 2vh;
    z-index: -2;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,.14);
    font-family: var(--font-display);
    font-size: clamp(15rem, 38vw, 42rem);
    font-weight: 900;
    letter-spacing: -.08em;
    line-height: .8;
  }
  .hero-shell {
    width: var(--shell);
    min-height: calc(100svh - var(--header-height) - 140px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(440px, .82fr);
    align-items: center;
    gap: clamp(40px, 7vw, 120px);
  }
  .hero-copy { position: relative; z-index: 2; padding-top: 20px; }
  .eyebrow, .section-index {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
  }
  .eyebrow { margin-bottom: 30px; }
  .eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--white); box-shadow: 0 0 0 7px rgba(255,255,255,.12); }
  .hero h1 { max-width: 820px; font-size: clamp(4.4rem, 8.8vw, 9.5rem); text-transform: uppercase; }
  .hero h1 span { display: block; color: transparent; -webkit-text-stroke: 2px var(--white); }
  .hero-lead { max-width: 660px; margin-top: 28px; color: rgba(255,255,255,.8); font-size: clamp(1.05rem, 1.4vw, 1.3rem); line-height: 1.55; }
  .hero-actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 12px; }
  .button {
    min-height: 54px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border-radius: 999px;
    font-size: .83rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .055em;
    transition: transform .28s var(--ease), background-color .28s ease, color .28s ease, border-color .28s ease;
  }
  .button:hover { transform: translateY(-3px); }
  .button-primary { color: var(--red); background: var(--white); }
  .button-primary:hover { color: var(--white); background: var(--ink); }
  .button-ghost { border: 1px solid rgba(255,255,255,.45); }
  .button-ghost:hover { color: var(--ink); background: var(--white); border-color: var(--white); }
  .button-dark { color: var(--white); background: var(--ink); }
  .button-dark:hover { background: var(--red); }
  .button-white { color: var(--ink); background: var(--white); }
  .button-white:hover { color: var(--white); background: var(--red); }
  .button-outline-white { color: var(--white); border: 1px solid rgba(255,255,255,.45); }
  .button-outline-white:hover { color: var(--ink); background: var(--white); border-color: var(--white); }
  .button-icon { font-size: 1.15rem; }
  .hero-trust { margin-top: 54px; display: flex; flex-wrap: wrap; gap: clamp(26px, 5vw, 64px); }
  .hero-trust div { display: grid; gap: 4px; }
  .hero-trust strong { font-family: var(--font-display); font-size: 1.6rem; line-height: 1; }
  .hero-trust span { color: rgba(255,255,255,.64); font-size: .69rem; text-transform: uppercase; letter-spacing: .08em; }

  .hero-visual { position: relative; justify-self: end; width: min(100%, 620px); }
  .hero-image-wrap {
    position: relative;
    width: 88%;
    margin-left: auto;
    aspect-ratio: 4 / 5;
    border-radius: 46% 46% 24px 24px;
    overflow: hidden;
    box-shadow: 0 42px 90px rgba(60, 0, 0, .42);
  }
  .hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.03); transition: transform .8s var(--ease); }
  .hero-visual:hover .hero-image-wrap img { transform: scale(1.075); }
  .image-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,0,0,.75), transparent 55%); }
  .image-label { position: absolute; inset: auto 28px 27px; display: flex; gap: 16px; align-items: flex-start; }
  .image-label span { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; font-size: .65rem; }
  .image-label p { font-family: var(--font-display); font-weight: 900; font-size: clamp(1.15rem, 2vw, 1.6rem); text-transform: uppercase; line-height: 1; }
  .anniversary-card {
    position: absolute;
    left: -4%;
    bottom: 9%;
    width: 190px;
    min-height: 220px;
    padding: 22px;
    display: grid;
    align-content: space-between;
    color: var(--ink);
    background: var(--white);
    box-shadow: 0 30px 60px rgba(60,0,0,.28);
    transform: rotate(-4deg);
  }
  .anniversary-kicker { font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }
  .anniversary-card strong { color: var(--red); font-family: var(--font-display); font-size: 5.2rem; letter-spacing: -.08em; line-height: .8; }
  .anniversary-years { padding-top: 14px; border-top: 1px solid var(--line); font-size: .72rem; font-weight: 800; letter-spacing: .08em; }
  .hero-orbit {
    position: absolute;
    right: -48px;
    top: 13%;
    width: 126px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
  }
  .hero-orbit svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: orbit 18s linear infinite; }
  .hero-orbit text { fill: rgba(255,255,255,.72); font-size: 8px; letter-spacing: 1.7px; }
  .hero-orbit > span { width: 54px; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; font-family: var(--font-display); font-weight: 900; }
  .hero-ticker { position: absolute; inset: auto 0 0; border-top: 1px solid rgba(255,255,255,.2); overflow: hidden; }
  .ticker-track { width: max-content; padding: 18px 0; display: flex; align-items: center; gap: 30px; animation: ticker 30s linear infinite; }
  .ticker-track span { font-family: var(--font-display); font-size: 1rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
  .ticker-track i { color: rgba(255,255,255,.45); font-style: normal; font-size: .46rem; }

  .section { padding: clamp(90px, 10vw, 160px) 0; }
  .section-shell { width: var(--shell); margin-inline: auto; }
  .section-heading { margin-bottom: clamp(44px, 6vw, 86px); display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 410px); align-items: end; gap: 50px; }
  .section-index { margin-bottom: 23px; color: var(--red); }
  .section-index::before { content: ""; width: 30px; height: 1px; background: currentColor; }
  .section-heading h2, .heritage h2 { font-size: clamp(3.7rem, 7vw, 8rem); text-transform: uppercase; }
  .heading-side { display: grid; gap: 24px; color: var(--muted); }
  .heading-side p { font-size: 1.05rem; line-height: 1.65; }
  .text-link { width: fit-content; display: inline-flex; align-items: center; gap: 12px; color: var(--ink); font-size: .78rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; border-bottom: 1px solid var(--ink); padding-bottom: 5px; }

  .news-grid { display: grid; grid-template-columns: 1.25fr .9fr .74fr; gap: 18px; align-items: start; }
  .news-card { min-width: 0; }
  .news-card a { display: block; }
  .news-image { position: relative; aspect-ratio: 1 / 1.06; overflow: hidden; background: #ddd; }
  .news-card-featured .news-image { aspect-ratio: 1.15 / 1; }
  .news-card-poster .news-image { aspect-ratio: .83 / 1; }
  .news-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease), filter .65s var(--ease); }
  .news-card:hover .news-image img { transform: scale(1.055); filter: saturate(1.1); }
  .news-badge, .score-chip {
    position: absolute;
    left: 18px;
    top: 18px;
    padding: 9px 12px;
    color: var(--white);
    background: var(--red);
    border-radius: 999px;
    font-size: .63rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .08em;
  }
  .score-chip { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: -.03em; border-radius: 4px; }
  .news-content { position: relative; padding: 23px 52px 6px 0; border-top: 3px solid var(--ink); }
  .news-card:hover .news-content { border-color: var(--red); }
  .news-meta { margin-bottom: 12px; color: var(--red); font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
  .news-content h3 { font-size: clamp(1.8rem, 2.6vw, 3.2rem); line-height: .98; }
  .news-card:not(.news-card-featured) .news-content h3 { font-size: clamp(1.55rem, 2vw, 2.3rem); }
  .news-content > p:last-of-type { margin-top: 15px; color: var(--muted); font-size: .92rem; }
  .card-arrow { position: absolute; right: 3px; top: 20px; width: 37px; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: transform .3s var(--ease), color .3s ease, background .3s ease; }
  .news-card:hover .card-arrow { color: var(--white); background: var(--red); border-color: var(--red); transform: rotate(45deg); }

  .section-dark { position: relative; color: var(--white); background: var(--ink); overflow: hidden; }
  .section-heading-light .section-index, .section-index-light { color: rgba(255,255,255,.65); }
  .section-heading-light .heading-side { color: rgba(255,255,255,.63); }
  .teams-bg-word { position: absolute; left: -2vw; top: 6%; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.06); font-family: var(--font-display); font-size: 30vw; font-weight: 900; letter-spacing: -.08em; line-height: .8; pointer-events: none; }
  .team-panels { display: grid; grid-template-columns: 1.02fr 1.02fr .86fr; gap: 12px; }
  .team-panel { position: relative; min-height: 630px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; isolation: isolate; }
  .team-panel-image, .team-panel-overlay { position: absolute; inset: 0; z-index: -2; }
  .team-panel-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .75s var(--ease), filter .75s var(--ease); }
  .team-panel:hover .team-panel-image img { transform: scale(1.065); filter: saturate(1.1) contrast(1.04); }
  .team-panel-overlay { z-index: -1; background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.08) 62%); }
  .team-panel-top { display: flex; justify-content: space-between; gap: 20px; font-size: .67rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
  .team-panel-top span:first-child { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; }
  .team-panel-bottom { display: grid; gap: 16px; align-items: end; }
  .team-panel-bottom h3 { font-size: clamp(3.1rem, 5vw, 5.5rem); text-transform: uppercase; }
  .team-panel-bottom p { max-width: 310px; color: rgba(255,255,255,.72); }
  .panel-button { width: fit-content; margin-top: 8px; padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,.6); font-size: .72rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
  .team-panel-inclusion { color: var(--ink); background: var(--white); }
  .team-panel-inclusion .team-panel-top span:first-child { border-color: rgba(16,16,16,.3); }
  .team-panel-inclusion .team-panel-bottom p { color: var(--muted); }
  .team-panel-inclusion .panel-button { border-color: var(--ink); }
  .inclusion-art { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
  .inclusion-art::before { content: ""; position: absolute; inset: 40% -30% -45%; background: var(--red); transform: rotate(-12deg); }
  .inclusion-ring { position: absolute; border: 1px solid rgba(215,25,32,.28); border-radius: 50%; }
  .ring-one { width: 420px; height: 420px; right: -170px; top: 90px; }
  .ring-two { width: 250px; height: 250px; left: -100px; top: 200px; }
  .inclusion-rw { position: absolute; right: 18px; top: 90px; color: var(--red); font-family: var(--font-display); font-weight: 900; font-size: 10rem; letter-spacing: -.08em; transform: rotate(-90deg); opacity: .12; }

  .heritage { background: var(--white); }
  .heritage-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(440px, 1fr); gap: clamp(50px, 9vw, 150px); align-items: start; }
  .heritage-intro { position: sticky; top: 130px; }
  .heritage-intro > p:not(.section-index) { max-width: 600px; margin-top: 30px; color: var(--muted); font-size: 1.05rem; line-height: 1.75; }
  .heritage-intro .button { margin-top: 32px; }
  .history-list { display: grid; }
  .history-item { min-height: 190px; padding: 32px 0; display: grid; grid-template-columns: 150px 1fr; gap: 24px; align-items: start; border-top: 1px solid var(--line); }
  .history-item:last-child { border-bottom: 1px solid var(--line); }
  .history-year { font-family: var(--font-display); font-size: clamp(2.6rem, 4vw, 4.2rem); font-weight: 900; line-height: 1; letter-spacing: -.05em; }
  .history-item h3 { margin-bottom: 12px; font-size: clamp(1.6rem, 2.4vw, 2.6rem); line-height: 1; }
  .history-item p { color: var(--muted); }
  .history-item-red .history-year, .history-item-red h3 { color: var(--red); }

  .stadium { position: relative; min-height: 92svh; color: var(--white); overflow: hidden; }
  .stadium-media, .stadium-overlay { position: absolute; inset: 0; }
  .stadium-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.02); }
  .stadium-overlay { background: linear-gradient(90deg, rgba(8,8,8,.9) 0%, rgba(8,8,8,.55) 43%, rgba(8,8,8,.12) 78%); }
  .stadium-shell { position: relative; z-index: 2; width: var(--shell); min-height: 92svh; margin-inline: auto; padding-block: 120px; display: flex; flex-direction: column; justify-content: flex-end; }
  .stadium-copy { max-width: 760px; }
  .stadium-copy h2 { font-size: clamp(4.4rem, 8vw, 9rem); text-transform: uppercase; }
  .stadium-copy > p:not(.section-index) { max-width: 530px; margin-top: 24px; color: rgba(255,255,255,.75); font-size: 1.12rem; }
  .stadium-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 28px; align-items: center; }
  .stadium-actions > span { color: rgba(255,255,255,.62); font-size: .8rem; }
  .stadium-coordinates { position: absolute; right: 0; top: 120px; display: grid; gap: 5px; text-align: right; color: rgba(255,255,255,.55); font-size: .65rem; font-weight: 800; letter-spacing: .12em; }

  .join { background: var(--paper); }
  .join-card { position: relative; min-height: 570px; padding: clamp(40px, 6vw, 90px); display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 40px; color: var(--white); background: var(--red); overflow: hidden; }
  .join-card::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 8px; background: repeating-linear-gradient(90deg, var(--white) 0 80px, transparent 80px 160px); opacity: .85; }
  .join-watermark { position: absolute; right: -2vw; bottom: -9vw; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.16); font-family: var(--font-display); font-size: 38vw; font-weight: 900; letter-spacing: -.09em; line-height: .72; }
  .join-content { position: relative; z-index: 2; max-width: 840px; }
  .join-content h2 { font-size: clamp(4.2rem, 8vw, 9rem); text-transform: uppercase; }
  .join-content > p:not(.section-index) { max-width: 640px; margin-top: 22px; color: rgba(255,255,255,.77); font-size: 1.08rem; }
  .join-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
  .join-aside { position: relative; z-index: 2; align-self: center; width: 220px; display: grid; gap: 24px; justify-items: center; text-align: center; }
  .join-aside img { width: 130px; padding: 7px; border-radius: 50%; background: var(--white); box-shadow: 0 20px 50px rgba(90,0,0,.25); }
  .join-aside p { font-family: var(--font-display); font-size: 1.55rem; text-transform: uppercase; line-height: 1.05; }

  .site-footer { color: var(--white); background: var(--ink); }
  .footer-shell { width: var(--shell); margin-inline: auto; padding: 70px 0 28px; }
  .footer-top { padding-bottom: 52px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-bottom: 1px solid var(--line-light); }
  .footer-brand { display: inline-flex; align-items: center; gap: 15px; }
  .footer-brand img { width: 70px; padding: 5px; border-radius: 50%; background: var(--white); }
  .footer-brand span { display: grid; line-height: 1.1; }
  .footer-brand strong { text-transform: uppercase; }
  .footer-brand small { margin-top: 5px; color: rgba(255,255,255,.55); letter-spacing: .1em; }
  .footer-top > p { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 3rem); font-weight: 900; text-transform: uppercase; }
  .footer-grid { padding: 50px 0 65px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
  .footer-grid > div { display: grid; align-content: start; gap: 10px; }
  .footer-grid h3 { margin-bottom: 12px; color: rgba(255,255,255,.45); font-family: var(--font-body); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
  .footer-grid a, .footer-grid p { width: fit-content; color: rgba(255,255,255,.78); font-size: .88rem; }
  .footer-grid a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }
  .footer-bottom { padding-top: 25px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; border-top: 1px solid var(--line-light); color: rgba(255,255,255,.48); font-size: .72rem; }
  .footer-bottom > div { display: flex; gap: 24px; }
  .back-to-top { justify-self: end; padding: 0; color: rgba(255,255,255,.65); background: transparent; cursor: pointer; }
  .back-to-top:hover { color: var(--white); }
}

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

@layer motion {
  [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s var(--ease), transform .75s var(--ease);
  }
  [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
  @keyframes orbit { to { transform: rotate(360deg); } }
  @keyframes ticker { to { transform: translateX(-50%); } }
}

@media (max-width: 1180px) {
  :root { --shell: min(100% - 36px, 1100px); }
  .desktop-nav { gap: 22px; }
  .hero-shell { grid-template-columns: minmax(0, 1fr) minmax(380px, .75fr); gap: 50px; }
  .hero h1 { font-size: clamp(4.2rem, 8.8vw, 7.6rem); }
  .anniversary-card { width: 160px; min-height: 190px; }
  .anniversary-card strong { font-size: 4.4rem; }
  .hero-orbit { right: -20px; }
  .news-grid { grid-template-columns: 1.15fr .85fr; }
  .news-card-poster { grid-column: 1 / -1; }
  .news-card-poster a { display: grid; grid-template-columns: .72fr 1.28fr; align-items: stretch; }
  .news-card-poster .news-image { aspect-ratio: 1.3 / 1; }
  .news-card-poster .news-content { padding: 40px 64px 40px 32px; border-top: 0; border-left: 3px solid var(--ink); }
  .team-panels { grid-template-columns: 1fr 1fr; }
  .team-panel-inclusion { grid-column: 1 / -1; min-height: 440px; }
  .heritage-grid { grid-template-columns: .85fr 1fr; gap: 70px; }
}

@media (max-width: 900px) {
  :root { --header-height: 76px; --shell: calc(100vw - 30px); }
  .header-shell { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: grid; }
  .brand-mark { width: 48px; }
  .hero { padding-top: calc(var(--header-height) + 36px); }
  .hero-shell { min-height: auto; grid-template-columns: 1fr; gap: 66px; }
  .hero-copy { padding-top: 38px; }
  .hero h1 { font-size: clamp(4rem, 15vw, 7.6rem); }
  .hero-visual { justify-self: center; width: min(88vw, 620px); margin-bottom: 80px; }
  .hero-image-wrap { width: 82%; }
  .anniversary-card { left: 0; }
  .hero-orbit { right: 0; }
  .section-heading { grid-template-columns: 1fr; align-items: start; gap: 25px; }
  .heading-side { max-width: 600px; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card-featured { grid-column: 1 / -1; }
  .news-card-featured a { display: grid; grid-template-columns: 1.05fr .95fr; }
  .news-card-featured .news-image { aspect-ratio: 1 / .88; }
  .news-card-featured .news-content { padding: 35px 60px 35px 30px; border-top: 0; border-left: 3px solid var(--ink); }
  .news-card-poster { grid-column: auto; }
  .news-card-poster a { display: block; }
  .news-card-poster .news-image { aspect-ratio: .83 / 1; }
  .news-card-poster .news-content { padding: 23px 52px 6px 0; border-left: 0; border-top: 3px solid var(--ink); }
  .team-panels { grid-template-columns: 1fr; }
  .team-panel, .team-panel-inclusion { grid-column: auto; min-height: 560px; }
  .heritage-grid { grid-template-columns: 1fr; }
  .heritage-intro { position: static; }
  .history-list { margin-top: 30px; }
  .join-card { grid-template-columns: 1fr; }
  .join-aside { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { grid-template-columns: 1fr auto; }
  .back-to-top { display: none; }
}

@media (max-width: 640px) {
  .brand-copy { display: none; }
  .hero { min-height: auto; padding-bottom: 70px; }
  .hero h1 { font-size: clamp(3.65rem, 17vw, 6rem); }
  .hero h1 span { -webkit-text-stroke-width: 1.3px; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .hero-trust strong { font-size: 1.35rem; }
  .hero-trust span { font-size: .55rem; }
  .hero-visual { width: 100%; margin-bottom: 70px; }
  .hero-image-wrap { width: 88%; border-radius: 42% 42% 18px 18px; }
  .anniversary-card { width: 132px; min-height: 158px; padding: 15px; bottom: 4%; }
  .anniversary-card strong { font-size: 3.6rem; }
  .hero-orbit { width: 94px; right: -6px; top: 6%; }
  .section { padding: 86px 0; }
  .section-heading h2, .heritage h2 { font-size: clamp(3.35rem, 15vw, 5.2rem); }
  .news-grid { grid-template-columns: 1fr; gap: 50px; }
  .news-card-featured { grid-column: auto; }
  .news-card-featured a { display: block; }
  .news-card-featured .news-image { aspect-ratio: 1.05 / 1; }
  .news-card-featured .news-content { padding: 23px 52px 6px 0; border-left: 0; border-top: 3px solid var(--ink); }
  .news-card-poster { grid-column: auto; }
  .news-card-poster .news-image { aspect-ratio: 1.05 / 1; }
  .team-panel, .team-panel-inclusion { min-height: 500px; padding: 20px; }
  .team-panel-bottom h3 { font-size: 3.5rem; }
  .history-item { min-height: 150px; grid-template-columns: 94px 1fr; gap: 18px; padding: 25px 0; }
  .history-year { font-size: 2.5rem; }
  .stadium { min-height: 82svh; }
  .stadium-shell { min-height: 82svh; padding-block: 90px 60px; }
  .stadium-copy h2 { font-size: clamp(3.7rem, 16vw, 6rem); }
  .stadium-overlay { background: linear-gradient(to top, rgba(8,8,8,.92) 0%, rgba(8,8,8,.5) 56%, rgba(8,8,8,.15) 100%); }
  .stadium-coordinates { top: 90px; }
  .join-card { min-height: 570px; padding: 42px 24px; }
  .join-content h2 { font-size: clamp(3.8rem, 16vw, 6rem); }
  .join-actions { display: grid; }
  .footer-top { align-items: flex-start; flex-direction: column; }
  .footer-brand img { width: 58px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-bottom > div { justify-content: flex-start; }
  .mobile-menu-meta { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
