/* ============================================================
   The Commons at Castleberry Hill
   Mobile-first. Wheatpaste poster, not a landing page.
   ============================================================ */

/* ---- Fonts ---------------------------------------------------
   PP Formula Extrabold  -> display / headlines (the roughed face)
   Swim Club Tall        -> caps-only labels. We use lowercase
                            source text on purpose: it maps to the
                            lighter-roughened glyphs Kacie prefers.
   Inter Tight Medium    -> body. TODO: self-host woff2 in /Fonts
                            and add an @font-face block; using a
                            mechanical fallback stack until then.
   ------------------------------------------------------------- */
@font-face {
  font-family: "PP Formula";
  src: url("../Fonts/PPFormula-Extrabold.woff2") format("woff2"),
       url("../Fonts/PPFormula-Extrabold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  /* Distressed display face. weight range 100-900 so any requested weight
     uses the font as-is (no faux-bold synthesis on a textured face). */
  font-family: "TAY Dumpling";
  src: url("../Fonts/TAYDumpling.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Swim Club Tall";
  src: url("../Fonts/SwimClub-Tall.woff2") format("woff2"),
       url("../Fonts/SwimClub-Tall.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---- Tokens -------------------------------------------------- */
:root {
  /* Palette */
  --ink:        #1a1a1a;  /* "black" — canonical scrim palette */
  --cream:      #dad2c5;  /* cream (text on ink) */
  --paper:      #dad2c5;  /* cream section background (same value) */
  --vermillion: #ef4a23;
  --yellow:     #deb725;
  --slate:      #618ea5;  /* "blue" */
  --sage:       #7e9b66;  /* "green" */

  /* Type families */
  --display: "TAY Dumpling", "PP Formula", "Arial Narrow", system-ui, sans-serif;
  --label:   "Swim Club Tall", "Arial Narrow", system-ui, sans-serif;
  --body:    "Inter Tight", ui-sans-serif, system-ui, sans-serif;

  /* Spacing rhythm */
  --pad-x: clamp(1.25rem, 6vw, 5rem);
  --pad-y: clamp(3rem, 12vw, 7rem);
}

/* ---- Reset --------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  position: relative;                  /* containing block for the paper-wall layer */
  padding: clamp(10px, 2.2vw, 26px);   /* paper "frame" around the whole site */
  background: var(--paper);            /* paper wall behind the torn blocks */
  color: var(--cream);
  font-family: var(--body);
  font-size: clamp(1rem, 4.2vw, 1.125rem); /* 16 -> 18px */
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* textured paper for the frame + gaps between blocks.
   absolute (not fixed) so it scrolls WITH the page — fixed caused the
   wall's creases to stay screen-locked (parallax) against scrolling content. */
body::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("../assets/textures/wheatpaste-web.jpg") center / cover;
  mix-blend-mode: multiply;
  opacity: 0.35;
  pointer-events: none;
}

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

h1, h2, p { margin: 0; }

/* ---- Shared: Swim Club labels -------------------------------
   Lowercase source text on purpose (see font note above).
   No text-transform: the font is caps by design.
   ------------------------------------------------------------- */
.label {
  font-family: var(--label);
  letter-spacing: 0.08em;
  font-weight: 400;
}

/* ---- Wheatpaste texture overlay -----------------------------
   Printed-paper feel on every surface. The texture sits BEHIND
   the content (z-index 0) so type stays crisp; `overlay` blend
   reads on both ink and cream. Designer note: ~40% opacity.
   ------------------------------------------------------------- */
.hero,
.section,
.site-footer,
.breather {
  position: relative;
  isolation: isolate;
}
/* Wheatpaste is the TOP layer (over type + color blocks), matching the
   fence-scrim build: paper/ink base -> art -> paste on top. Multiply keeps
   ink deep and paper warm; cream-on-ink stays legible (verified at AA). */
.hero::after,
.section::after,
.site-footer::after,
.breather::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;                 /* above content */
  background-image: url("../assets/textures/wheatpaste-web.jpg");
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
  opacity: 0.55;
  pointer-events: none;
}
/* Paper base is already warm; keep the paste light so it stays a breather */
.section--cream::after { opacity: 0.35; }



/* ============================================================
   NAV (fixed hamburger + full-screen overlay menu)
   ============================================================ */
.nav-toggle {
  position: fixed;
  top: clamp(0.75rem, 3vw, 1.25rem);
  right: clamp(0.75rem, 3vw, 1.25rem);
  z-index: 50;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  width: clamp(46px, 12vw, 58px);
  line-height: 0;
}
.nav-toggle img { width: 100%; height: auto; display: block; }
.nav-toggle:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

.nav-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nav-menu.is-open { opacity: 1; visibility: visible; }
.nav-menu ul { list-style: none; margin: 0; padding: 0; text-align: center; }
.nav-menu li + li { margin-top: clamp(0.6rem, 3vw, 1.2rem); }
.nav-menu a {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 7.5vw, 3.25rem);
  line-height: 1.1;
  color: var(--cream);
  text-decoration: none;
}
.nav-menu a:hover,
.nav-menu a:focus-visible { color: var(--vermillion); } /* 4.99:1 on ink */

/* anchor targets clear the fixed hamburger a touch */
:where(section, header)[id] { scroll-margin-top: 1.25rem; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

/* ============================================================
   1. HERO
   ============================================================ */
.hero {
  min-height: calc(100svh - 2 * clamp(10px, 2.2vw, 26px)); /* fit inside the frame */
  display: flex;
  flex-direction: column;
  padding: 0;
  position: relative;
  /* torn-edge black block sits on the paper wall */
  background: var(--ink) url("../assets/new/opt/block-black-background.svg") center / 100% 100% no-repeat;
}

/* gaps between blocks so each reads as a torn poster on the paper wall */
.section,
.breather { margin-bottom: clamp(10px, 2.2vw, 26px); }

/* Full lockup (THE COMMONS AT CASTLEBERRY HILL) as one textured image.
   Mobile: near-full-width stacked mark. Desktop: scales up with the
   viewport (it's vector, so crisp at any size) so it doesn't strand
   small in a sea of black. */
.hero__lockup { margin: 0; padding: clamp(6rem, 16vh, 8.5rem) var(--pad-x) 0; }
.hero__lockup img { display: block; width: min(100%, 680px); height: auto; }
@media (min-width: 640px) {
  .hero__lockup {
    flex: 1;                 /* fill the space above the tagline */
    display: flex;
    align-items: center;     /* center vertically in that space */
    justify-content: center; /* center horizontally */
    padding: clamp(5rem, 11vh, 7rem) var(--pad-x) clamp(2rem, 5vh, 3.5rem);
  }
  .hero__lockup img { width: clamp(460px, 66vw, 1360px); }
}

/* current-event announcement under the wordmark (swappable layer) */
.hero__event {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45em;
  margin: clamp(1.25rem, 3.5vh, 2.25rem) auto 0;
  padding: 0 var(--pad-x);
  text-align: center;
}
.hero__event-name {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
  font-size: clamp(1.5rem, 6vw, 2.6rem);
  color: var(--yellow);
}
.hero__event-meta {
  font-family: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.4;
  font-size: clamp(0.72rem, 3vw, 0.95rem);
  max-width: 36ch;
  color: var(--cream);
}
/* mobile: drop the date to its own line and keep it together ("Jun 13–Jul 19"
   was splitting after "Jun"). Hide the middot since it's no longer inline. */
.hero__event-dates { display: block; white-space: nowrap; }
.hero__event-sep { display: none; }
.hero__event-free { color: var(--yellow); }   /* "free" pops in the brand accent */
/* desktop: the meta fits on one line (no mid-date wrap) and the whole
   announcement gets breathing room above the tagline bar instead of
   sitting flush against it */
@media (min-width: 640px) {
  .hero__event {
    gap: 0.6em;
    margin-top: clamp(1.5rem, 4vh, 2.5rem);
    margin-bottom: clamp(2.75rem, 7vh, 5rem);
  }
  .hero__event-meta { max-width: none; }
  /* desktop: back to one inline line with the middot */
  .hero__event-dates { display: inline; }
  .hero__event-sep { display: inline; }
}

/* tagline bar + scroll cue pinned to the bottom */
.hero__bottom { margin-top: auto; }
.hero__tagline-bar { display: block; width: 89%; height: auto; margin: 0 auto; } /* mobile: ~11% smaller */
.hero__tagline-bar img { display: block; width: 100%; height: auto; }
/* desktop: contained, centered band (slimmer than a full-width slab) */
@media (min-width: 640px) {
  .hero__tagline-bar { width: min(76vw, 1050px); margin: 0 auto; }
}

.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.4rem, 2vw, 0.7rem);
  padding: clamp(1.5rem, 6vw, 2.5rem) 0;
  text-decoration: none;
}
.hero__scroll-label { width: clamp(58px, 16vw, 84px); height: auto; }
.hero__scroll-arrow { width: clamp(14px, 4vw, 20px); height: auto; }
@media (prefers-reduced-motion: no-preference) {
  .hero__scroll-arrow { animation: nudge 1.8s ease-in-out infinite; }
  @keyframes nudge {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(5px); }
  }
}

/* shared: img wordmark utility (used by footer mark) */
.wm { display: block; height: auto; }

/* Russell logo (footer) ships near-black; render it light on ink. */
.logo {
  width: clamp(34px, 9vw, 44px);
  height: auto;
  filter: invert(1);
  opacity: 0.92;
}

/* ============================================================
   SHARED SECTIONS
   ============================================================ */
.section {
  padding: var(--pad-y) var(--pad-x);
  position: relative;
}
.section--ink   { background: var(--ink);   color: var(--cream); }
.section--cream { background: var(--paper); color: var(--ink); }
/* Community in Motion + What's On — merged vermillion block.
   Ink on vermillion is ~6:1 (AA). */
.section--motion {
  color: var(--ink);
  /* vermillion field + torn distress edges along the top and bottom */
  background:
    url("../assets/new/opt/texture-distress-culture-mobile.svg") center top / 100% auto no-repeat,
    url("../assets/new/opt/texture-distress-culture-mobile.svg") center bottom / 100% auto no-repeat,
    var(--vermillion);
}
@media (min-width: 640px) {
  .section--motion {
    background:
      url("../assets/new/opt/texture-distress-culture.svg") center top / 100% auto no-repeat,
      url("../assets/new/opt/texture-distress-culture.svg") center bottom / 100% auto no-repeat,
      var(--vermillion);
  }
}
/* dates run full-width (like the pre-merge section); only the headline is capped */
.motion-inner { width: 100%; }
/* combined COMMUNITY IN MOTION + barcode lockup (one SVG) — capped so it
   stays poster-sized on wide screens while the dates below run full-width */
.motion-head {
  display: block;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto clamp(1.5rem, 5vw, 2.5rem);  /* centered on desktop, full-width on mobile */
}
@media (min-width: 1100px) {
  .motion-head {
    margin-top: clamp(1.5rem, 4vw, 3rem);    /* breathing room above the larger centered lockup */
    margin-bottom: clamp(3rem, 6vw, 5rem);   /* more space below, before WHAT'S ON */
  }
}
.motion-head img { display: block; width: 100%; height: auto; }
.motion-label {
  display: block;
  width: clamp(96px, 24vw, 150px);
  height: auto;
  margin: 0 0 clamp(1.25rem, 4vw, 1.75rem);
}

.section__label {
  font-size: clamp(0.8rem, 3.6vw, 1rem);
  margin-bottom: clamp(1.5rem, 6vw, 2.5rem);
  opacity: 0.85;
}

/* 2. What this is — large block, not hero-scale; vermillion accent word */
.statement {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.02;
  font-size: clamp(1.5rem, 6.2vw, 3rem);
  max-width: 20ch;
}
/* yellow subhead chip (torn highlight box behind a small-caps label) */
.subhead {
  display: inline-block;
  font-family: var(--label);
  letter-spacing: 0.08em;
  color: var(--ink);
  font-size: clamp(0.8rem, 3.4vw, 1rem);
  background: url("../assets/new/opt/bar-yellow-subhead.svg") center / 100% 100% no-repeat;
  padding: 0.6em 0.95em 0.5em;
  margin-bottom: clamp(1.25rem, 5vw, 2rem);
}

/* (Removed: old §2 orange-highlight + foot/dots CSS — superseded by the
   merged Culture in Common section below.) */

/* 3. What's Happening — poster-style stacked list of programming */
.happening { list-style: none; margin: 0; padding: 0; }
.happening__item {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.1rem, 11vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
}
/* gentle asymmetric stagger */
.happening__item:nth-child(even) { margin-left: clamp(0.5rem, 5vw, 2.5rem); }
/* color accents spread across the list (palette pops on ink) */
.happening__item:nth-child(2) { color: var(--vermillion); } /* Food Trucks */
.happening__item:nth-child(4) { color: var(--yellow); }     /* All Day Music */
.happening__item:nth-child(5) { color: var(--sage); }       /* Lawn Games with Kidz Korner */
/* "free to all" kicker under the activities (cream, smaller than the items) */
.happening__free {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-top: clamp(0.9rem, 3.5vw, 1.5rem);
  font-size: clamp(1.6rem, 6.5vw, 3rem);
}
/* a touch of life — a slow, gentle float (same vocabulary as the scroll cue).
   Smaller + slower so it reads as restrained. Off for reduced-motion users. */
@media (prefers-reduced-motion: no-preference) {
  .happening__free { animation: freeFloat 3.6s ease-in-out infinite; }
  @keyframes freeFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-4px); }
  }
}

/* ---- Merged "Culture in Common" section: intro + programming ----
   mobile: centered single column (chip, description, list, open-through) */
.commons { text-align: center; }
.commons .subhead { margin-bottom: clamp(1.5rem, 5vw, 2rem); }
.commons .statement {
  font-family: var(--label);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.55;
  font-size: clamp(0.95rem, 4vw, 1.2rem);
  max-width: 34ch;
  margin: 0 auto clamp(2.25rem, 8vw, 3.5rem);
  color: var(--cream);
}
.commons .happening { margin: 0 0 clamp(2.25rem, 8vw, 3.5rem); }
.commons .happening__item:nth-child(even) { margin-left: 0; }  /* drop the stagger when centered */
.commons__open { display: block; width: min(100%, 540px); height: auto; margin: 0 auto; }
/* desktop: two columns — intro (chip, description, open) left, programming right */
@media (min-width: 1000px) {
  .commons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto 1fr;   /* chip, description, open, spacer */
    column-gap: clamp(2.5rem, 6vw, 6rem);
    text-align: left;
    align-items: start;
    padding-bottom: clamp(3.5rem, 8vw, 7rem);  /* breathing room below the two columns */
  }
  .commons .subhead   { grid-area: 1 / 1; justify-self: start; }
  .commons .statement { grid-area: 2 / 1; max-width: 40ch; margin: 0 0 clamp(1.5rem, 3vw, 2.25rem); }
  .commons__open      { grid-area: 3 / 1; align-self: start; margin: 0; width: min(100%, 560px); }
  .commons .happening { grid-area: 1 / 2 / 5 / 3; margin: 0; }
  .commons .happening__item { font-size: clamp(2.2rem, 4.6vw, 5rem); }
}

/* 4. What's On — poster-style stacked schedule, rendered from JSON */
.schedule { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }

.entry {
  display: flex;
  flex-direction: column;       /* stacked list, mobile-first and on-brand */
  padding: clamp(1.1rem, 5vw, 1.7rem) 0;
  /* dense bar-pattern rule above each entry (original dates-section style) */
  background-image: repeating-linear-gradient(
    90deg, currentColor 0, currentColor 2px, transparent 2px, transparent 7px
  );
  background-size: 100% 3px;
  background-repeat: no-repeat;
  background-position: top left;
}

.entry__date {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.4rem, 12vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
}

.entry__name {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.1rem, 5vw, 1.9rem);
  line-height: 1;
  margin-top: 0.12em;        /* matchup tucks under the date */
  color: var(--ink);
}

.entry__detail {
  font-family: var(--label);
  letter-spacing: 0.08em;
  font-size: clamp(0.8rem, 3.6vw, 1rem);
  margin-top: 0.4em;         /* time sits under the matchup */
  line-height: 1.1;
  color: var(--cream);
}
/* venue marker (e.g. matches played in Atlanta) */
.entry__venue {
  align-self: flex-start;
  display: inline-block;
  font-family: var(--label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(0.62rem, 2.6vw, 0.72rem);
  background: var(--cream);
  color: var(--ink);
  padding: 0.22em 0.5em 0.12em;
  margin-top: 0.55em;
}

/* Next upcoming entry: vermillion panel. Text is ink for AA — cream on the
   (brighter) canonical vermillion is only ~2.45:1, so all text goes dark.
   The 'up next' tag stays an ink chip with cream text (high contrast). */
.entry--next {
  border-top: 0;
  /* Solid ink block. (A torn-edge SVG was used here, but its jagged left/bottom
     edges cut into the left-aligned content so text caught the orange behind.
     The torn/wheatpaste texture still lives in the barcode stripe + paper bg.) */
  background: var(--ink);
  color: var(--cream);
  padding: clamp(1.5rem, 6.5vw, 2.1rem) clamp(1.4rem, 6vw, 2rem);
  margin: 0 0 clamp(0.5rem, 2.5vw, 0.9rem);
}
.entry--next .entry__name,
.entry--next .entry__detail { color: var(--cream); opacity: 1; }
/* watch-party legend — only shown on desktop, where it fills the wide
   UP NEXT banner's empty right side. Hidden on mobile (no empty space). */
.entry__legend {
  display: none;
  font-family: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.25;
  font-size: clamp(0.85rem, 1.3vw, 1.15rem);
  color: var(--cream);
  max-width: 20ch;
}

.entry__tag {
  align-self: flex-start;
  font-family: var(--label);
  letter-spacing: 0.08em;
  font-size: clamp(0.72rem, 3.2vw, 0.85rem);
  background: var(--yellow);   /* yellow chip on the black box */
  color: var(--ink);
  padding: 0.18em 0.55em 0.1em;
  margin-bottom: 0.5em;
}

.schedule__note {
  font-style: italic;
  font-size: clamp(0.85rem, 3.4vw, 0.95rem);
  margin-top: clamp(1.5rem, 5vw, 2rem);
  opacity: 0.8;
}
/* desktop: dates flow into two columns (chronological down each column);
   the UP NEXT black box hugs its content instead of stretching full-width */
@media (min-width: 1100px) {
  .schedule {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: column;                              /* fill down each column */
    grid-template-rows: repeat(var(--grid-rows, 8), auto); /* row count set by whats-on.js */
    column-gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;                                  /* rows line up across columns */
  }
  /* UP NEXT spans the top row so both date columns start aligned beneath it */
  /* UP NEXT is a full-width banner spanning both columns; lay its content out
     as date/matchup (left) + watch-party legend (right) to use the width */
  .entry--next {
    grid-column: 1 / -1;
    grid-row: 1;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-areas:
      "tag    legend"
      "date   legend"
      "name   legend"
      "detail legend";
    align-content: center;
    column-gap: clamp(2rem, 4vw, 4.5rem);
  }
  .entry--next .entry__tag    { grid-area: tag; justify-self: start; }
  .entry--next .entry__date   { grid-area: date; }
  .entry--next .entry__name   { grid-area: name; }
  .entry--next .entry__detail { grid-area: detail; }
  .entry--next .entry__legend {
    display: block;
    grid-area: legend;
    align-self: center;
    justify-self: end;
    text-align: right;
    margin-top: 0;
    max-width: 20ch;
  }
  .entry:not(.entry--next) .entry__date { font-size: clamp(2.5rem, 3.4vw, 4rem); }
}

/* ============================================================
   KNOW BEFORE YOU GO  (swappable event layer)
   Two poster panels pasted side by side on the wall: a warm sage
   WELCOME and a serious ink GROUND RULES. Stack on mobile.
   ============================================================ */
.section--know { background: transparent; padding: 0; }
.section--know::after { display: none; }   /* each panel carries its own paste */

.know { display: grid; grid-template-columns: 1fr; gap: clamp(10px, 2.2vw, 26px); }

/* each panel is its own torn poster (own color + wheatpaste overlay) */
.know__panel {
  position: relative;
  isolation: isolate;
  padding: clamp(2rem, 6vw, 3.25rem) clamp(1.5rem, 5vw, 2.75rem);
}
.know__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: url("../assets/textures/wheatpaste-web.jpg") center / cover;
  mix-blend-mode: multiply;
  opacity: 0.5;
  pointer-events: none;
}
.know__panel--welcome { background: var(--sage); color: var(--ink); }
.know__panel--welcome::after { opacity: 0.4; }   /* lighter paste on light sage */
.know__panel--rules { background: var(--slate); color: var(--ink); }
.know__panel--rules::after { opacity: 0.32; }   /* keep paste light so ink stays legible on slate */

/* welcome — the friendly hook (drinks + restrooms), set in body type */
.know__lead {
  font-family: var(--body);
  font-weight: 500;
  line-height: 1.3;
  font-size: clamp(1.2rem, 4.8vw, 1.6rem);
  max-width: 30ch;
  margin: 0;
}
.know__lead strong { font-weight: 700; }
/* welcome perks list under the LED-wall headline */
.know__perks {
  list-style: none;
  margin: clamp(1.1rem, 3.5vw, 1.5rem) 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.85rem, 2.8vw, 1.15rem);
  max-width: 38ch;
}
.know__perks li {
  font-family: var(--body);
  font-size: clamp(0.95rem, 3.4vw, 1.08rem);
  line-height: 1.35;
}
.know__perks strong { font-weight: 700; }

/* ground rules — poster-style display heads, brief body notes */
.know__rules {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.95rem, 3.8vw, 1.35rem);
}
.know__rule { display: flex; flex-direction: column; }
.know__rule-head {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
  font-size: clamp(1.45rem, 5.5vw, 2rem);
}

/* desktop: the two posters sit side by side, equal height */
@media (min-width: 900px) {
  .know { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .know__lead { font-size: clamp(1.4rem, 2.4vw, 1.9rem); max-width: 24ch; }
}

/* 5. Find Us */
.address {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  font-size: clamp(1.9rem, 8.5vw, 3.75rem);
}
.address__context {
  max-width: 30ch;
  margin-top: clamp(1rem, 4vw, 1.5rem);
  opacity: 0.9;
}
.address__link {
  display: inline-block;
  margin-top: clamp(1.3rem, 5vw, 2rem);
  font-size: clamp(0.85rem, 3.6vw, 1rem);
  color: var(--vermillion);          /* ~4.9:1 on ink, AA */
  text-decoration: none;
}
.address__link:hover { text-decoration: underline; }

/* Find Us — yellow block: black "find us" + body, cream headline, black CTA chip */
.section--findus { background: var(--yellow); color: var(--ink); }
.section--findus::after { opacity: 0.4; }          /* lighter paste on the light yellow */
.section--findus .address { color: var(--ink); }
.section--findus .address__link {
  background: var(--ink);
  color: var(--cream);
  padding: 0.55em 0.9em 0.45em;
}
/* location map — below the text on mobile, beside it on desktop */
.findus__map { margin-top: clamp(1.75rem, 6vw, 2.5rem); }
.findus__map img {
  display: block;
  width: 100%;
  height: auto;
  border: 2px solid var(--ink);   /* crisp frame against the yellow */
}
@media (min-width: 1000px) {
  .section--findus {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    column-gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
  }
  .findus__info { align-self: center; }
  .findus__map { margin-top: 0; }
}

/* 6. Footer — compact */
.site-footer {
  padding: clamp(2.5rem, 9vw, 4rem) var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 6vw, 2.5rem);
}
.wm--commons-footer { width: clamp(170px, 58vw, 300px); height: auto; }

/* contact — yellow key + cream value rows (Insta / Email) */
.footer__contact { margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.footer__row {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  align-items: center;
  gap: 0.6rem;
}
.footer__key {
  margin: 0;
  color: var(--yellow);
  font-size: clamp(0.6rem, 2.5vw, 0.7rem);
  letter-spacing: 0.12em;
  line-height: 1.1;
}
.footer__val { margin: 0; }
.footer__val a {
  font-family: var(--label);
  letter-spacing: 0.06em;
  color: var(--cream);
  font-size: clamp(0.8rem, 3.2vw, 0.95rem);
  line-height: 1.1;
  text-decoration: none;
  word-break: break-word;
}
.footer__val a:hover,
.footer__val a:focus-visible { text-decoration: underline; }

/* legal — disclaimer + copyright */
.footer__legal { display: flex; flex-direction: column; gap: clamp(0.9rem, 3vw, 1.25rem); }
.footer__copy { font-size: clamp(0.78rem, 3.2vw, 0.9rem); opacity: 0.7; }
/* FIFA editorial-use disclaimer — legal fine print (event layer) */
.footer__disclaimer {
  margin: 0;
  max-width: 60ch;
  font-size: clamp(0.66rem, 2.7vw, 0.76rem);
  line-height: 1.5;
  opacity: 0.55;
}

/* russell attribution */
.footer__russell { display: flex; flex-direction: column; gap: 0.7rem; }
.site-footer .logo { align-self: flex-start; }
.footer__attribution {
  font-size: clamp(0.72rem, 3vw, 0.82rem);
  line-height: 1.45;
  opacity: 0.75;
}

/* desktop: brand / contact / legal down the left, Russell anchored bottom-right */
@media (min-width: 768px) {
  .site-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand   russell"
      "contact russell"
      "legal   russell";
    grid-template-rows: auto auto 1fr;
    column-gap: clamp(2rem, 6vw, 5rem);
    row-gap: clamp(1.75rem, 4vw, 2.75rem);
    min-height: clamp(380px, 34vw, 520px);
    align-items: start;
  }
  .wm--commons-footer { grid-area: brand; }
  .footer__contact { grid-area: contact; }
  .footer__legal { grid-area: legal; align-self: end; }
  .footer__russell {
    grid-area: russell;
    align-self: end;
    justify-self: end;
    align-items: flex-end;
    text-align: right;
    gap: 0.85rem;
  }
  .site-footer .footer__russell .logo { align-self: flex-end; }
}

/* ============================================================
   MOTION  (restrained; respects reduced-motion)
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .js .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   BREAKPOINTS  640 / 1024 / 1440
   ============================================================ */
@media (min-width: 640px)  { }
@media (min-width: 1024px) { }
@media (min-width: 1440px) { }
