/* Champions Innovate case study.
   Palette from the programme's own artefacts (D-003): the graphic-recording blue,
   its neon-green arrows, and chalk white. Type: TeX Gyre Adventor, the free
   ITC Avant Garde clone standing in for Equip's brand face (D-004). */

@font-face { font-family: "Adventor"; src: url(assets/fonts/texgyreadventor-regular.otf) format("opentype"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Adventor"; src: url(assets/fonts/texgyreadventor-italic.otf) format("opentype"); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: "Adventor"; src: url(assets/fonts/texgyreadventor-bold.otf) format("opentype"); font-weight: 700; font-display: swap; }

:root {
  --night: #06128C;      /* workshop-art blue */
  --deep: #040B5E;       /* page ground */
  --royal: #1229C0;      /* art highlight blue */
  --chalk: #F5F4EF;      /* text on blue, paper for proof */
  --soft: #C3C9F2;       /* secondary text, 8.8:1 on night */
  --dim: #9AA3E0;        /* captions, 5.9:1 on night */
  --pitch: #3FD45A;      /* the one accent: the art's green arrow, 7.3:1 on night */
  --line: rgba(245, 244, 239, .18);
  --pad: clamp(16px, 5vw, 72px);
  --max: 1240px;
  --display: "Adventor", "Avant Garde", "Century Gothic", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { margin: 0; background: var(--deep); color: var(--chalk); font: 400 18px/1.6 var(--display); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
/* every content image grows slightly on hover (the full-bleed hero is exempt) */
main img:not(.hero-img) { position: relative; transition: transform .28s ease, box-shadow .28s ease; }
main img:not(.hero-img):hover { transform: scale(1.04); z-index: 5; box-shadow: 0 14px 40px rgba(0, 0, 0, .45); }
@media (prefers-reduced-motion: reduce) { main img:not(.hero-img) { transition: none; } }
a { color: inherit; }
a:focus-visible, [tabindex]:focus-visible { outline: 3px solid var(--pitch); outline-offset: 3px; }
h1, h2, h3, p, figure, blockquote, dl, dd, ol, ul { margin: 0; }
strong { font-weight: 700; color: var(--chalk); }

/* bar */
.bar { position: fixed; inset: 0 0 auto 0; z-index: 20; display: flex; justify-content: space-between; align-items: flex-start; padding: 14px var(--pad); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; background: linear-gradient(180deg, rgba(4,11,94,.85), rgba(4,11,94,0)); }
.bar-home { text-decoration: none; font-weight: 700; }
.bar-home:hover { color: var(--pitch); }
.bar-tag { color: var(--soft); }
.bar-id { display: flex; flex-direction: column; gap: 4px; transition: opacity .25s ease, visibility .25s; }
.bar.scrolled .bar-id { opacity: 0; visibility: hidden; }
@media (prefers-reduced-motion: reduce) { .bar-id { transition: none; } }
section[id], #contact { scroll-margin-top: 72px; }

/* three-line menu, top right, drops down the chapter list */
.menu-btn { width: 44px; height: 44px; margin: -8px -10px 0 0; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 6px; background: none; border: 0; cursor: pointer; color: var(--chalk); }
.menu-btn span { display: block; width: 26px; height: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-btn:hover { color: var(--pitch); }
.menu-btn:focus-visible { outline: 3px solid var(--pitch); outline-offset: 2px; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.menu { position: absolute; top: 58px; right: var(--pad); width: min(320px, calc(100vw - 2 * var(--pad))); background: var(--night); border-top: 3px solid var(--pitch); box-shadow: 0 18px 50px rgba(0, 0, 0, .45); }
.menu[hidden] { display: none; }
.menu ol { list-style: none; margin: 0; padding: 8px 0; }
.menu a { display: flex; gap: 14px; align-items: baseline; padding: 12px 20px; text-decoration: none; font-size: 15px; letter-spacing: .08em; font-weight: 700; }
.menu a span { color: var(--pitch); font-size: 12px; letter-spacing: .16em; }
.menu .menu-contact { margin: 4px 20px 20px; justify-content: center; background: var(--pitch); color: var(--deep); padding: 12px 20px; }
.menu .menu-contact:hover, .menu .menu-contact:focus-visible { background: var(--chalk); color: var(--deep); }
.menu a:hover, .menu a:focus-visible { background: var(--royal); outline: none; }
@media (prefers-reduced-motion: reduce) { .menu-btn span { transition: none; } }

/* hero */
.hero { position: relative; min-height: 100svh; display: grid; align-items: end; overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 66% 45%; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,11,94,.6) 0%, rgba(4,11,94,.12) 22%, rgba(4,11,94,.25) 50%, rgba(4,11,94,.97) 86%); }
.hero-inner { position: relative; padding: 120px var(--pad) 56px; max-width: var(--max); width: 100%; margin: 0 auto; }
.kicker { font-size: 14px; letter-spacing: .16em; text-transform: uppercase; color: var(--chalk); font-weight: 700; display: flex; align-items: center; gap: 12px; text-shadow: 0 1px 12px rgba(4,11,94,.6); }
.kicker::before { content: ""; width: 32px; height: 3px; background: var(--pitch); flex: none; }
.hero-title { font: 700 clamp(56px, 12vw, 176px)/.88 var(--display); letter-spacing: -.035em; text-transform: uppercase; margin-top: 18px; }
.hero-lede { max-width: 40ch; font-size: clamp(19px, 2.1vw, 24px); line-height: 1.45; margin-top: 24px; }
.hero-meta { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px 24px; margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); }
.hero-meta dt { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--dim); }
.hero-meta dd { font-size: 16px; font-weight: 700; margin-top: 4px; }

/* score cards: separate green blocks with gaps.
   Wide: five across. Mid: a 6-column grid, three cards over two. Phone: two across, the first full width. */
.score { max-width: var(--max); margin: 0 auto; padding: 28px var(--pad) 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.score-item { background: var(--pitch); color: var(--deep); padding: 22px 20px 20px; display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.score .n { font: 700 clamp(30px, 3.4vw, 48px)/1 var(--display); letter-spacing: -.03em; white-space: nowrap; }
.score .l { font-size: 14px; line-height: 1.3; font-weight: 700; }

/* chapters */
.chapter, .proof { max-width: var(--max); margin: 0 auto; padding: clamp(72px, 10vw, 140px) var(--pad) 0; }
.ch-num { font: 700 14px/1 var(--display); letter-spacing: .2em; color: var(--pitch); }
.ch-title { font: 700 clamp(40px, 7vw, 96px)/.92 var(--display); letter-spacing: -.03em; text-transform: uppercase; margin: 14px 0 36px; }
.big { font-size: clamp(22px, 2.6vw, 32px); line-height: 1.3; }
.big.wide { max-width: 30ch; margin-bottom: 32px; }
.big.wide.full { max-width: none; }
.cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); }
.cols > div > p + p, .cols > div > .big + p { margin-top: 20px; }
.cols p { color: var(--soft); }
.cols .big { color: var(--chalk); }
.sub { font: 700 14px/1 var(--display); letter-spacing: .16em; text-transform: uppercase; color: var(--pitch); margin: 64px 0 24px; }
.src { font-size: 13px; color: var(--dim); margin-top: 12px; letter-spacing: .02em; }

/* brief */
.brief-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-areas: "text q1" "art q2"; column-gap: clamp(28px, 5vw, 72px); row-gap: 16px; }
.b-text { grid-area: text; } .b-q1 { grid-area: q1; } .b-q2 { grid-area: q2; }
.b-text p + p { margin-top: 20px; color: var(--soft); }
/* the drawing shows whole and sets its row; the adidas card stretches to the same top and bottom edge */
.b-art { grid-area: art; }
.b-art img { width: 100%; }
.q-card { border: 1px solid var(--line); padding: 22px 24px; background: var(--night); }
.q-card figcaption { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--dim); margin-bottom: 10px; }
.q-card blockquote { font-size: 19px; line-height: 1.45; }
.q-card--accent { border-color: var(--pitch); }
.rules { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 6px; }
.rules li { font-size: 15px; line-height: 1.35; padding: 12px 14px; border-top: 2px solid var(--pitch); background: rgba(6,18,140,.6); }

/* art chapter: drawing full bleed, text card over it */
.chapter--art { max-width: none; padding: clamp(72px, 10vw, 140px) 0 0; position: relative; }
.art-bleed { width: 100%; }
.art-card { max-width: 720px; margin: 0 auto 0 var(--pad); position: relative; padding: 40px 0 0; }
.art-card p + p { margin-top: 18px; color: var(--soft); }
@media (min-width: 1400px) { .art-card { margin-left: calc((100vw - var(--max)) / 2 + var(--pad)); } }

/* role */
.cols--role { align-items: start; }
.role-photo figcaption, figure figcaption { font-size: 13px; color: var(--dim); margin-top: 10px; line-height: 1.4; }
.owned { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.own { background: var(--night); padding: 28px; border-top: 3px solid var(--pitch); }
.own h3 { font: 700 24px/1.15 var(--display); text-transform: uppercase; letter-spacing: -.01em; margin-bottom: 14px; }
.own p { color: var(--soft); }
/* What I managed: a dropdown on phones, a plain heading elsewhere */
.managed > summary { list-style: none; display: flex; align-items: center; gap: 10px; cursor: default; }
.managed > summary::-webkit-details-marker { display: none; }
.managed > summary .chev { display: none; transition: transform .2s ease; }
.m-only { display: none; }
/* green-dot bullets, shared by the role cards */
.dots { list-style: none; padding: 0; display: grid; gap: 10px; color: var(--soft); font-size: 17px; line-height: 1.45; }
.dots li { display: flex; gap: 12px; }
.role-sum { margin-top: 20px; }
.dots li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--pitch); flex: none; margin-top: .6em; }

/* galleries */
.gallery { display: grid; gap: 12px; margin-top: 48px; }
.gallery img { width: 100%; height: 100%; object-fit: cover; }
.gallery figure { display: flex; flex-direction: column; min-height: 0; }
.gallery figure img { flex: 1; min-height: 0; }
.gallery figure picture { display: contents; }
.g-idea { grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 280px 280px; }
.g-idea .g-a { grid-column: 1; grid-row: 1 / 3; }
.g-idea .g-b { grid-column: 2 / 4; grid-row: 1; }
/* a light zoom toward the player on the left, so her smile reads */
.g-zoom { overflow: hidden; min-height: 0; }
.g-zoom img { object-position: 50% 55%; transform: scale(1.18); transform-origin: 40% 42%; }
/* the zoomed photo grows like every other image: its frame scales, the crop inside stays at 1.18
   (the general hover rule would otherwise replace 1.18 with 1.04 and shrink it) */
.g-zoom { position: relative; transition: transform .28s ease, box-shadow .28s ease; }
.g-zoom:hover { transform: scale(1.04); z-index: 5; box-shadow: 0 14px 40px rgba(0, 0, 0, .45); }
main .g-zoom img:not(.hero-img), main .g-zoom img:not(.hero-img):hover { transform: scale(1.18); box-shadow: none; }
@media (prefers-reduced-motion: reduce) { .g-zoom { transition: none; } }
.g-idea .g-c { grid-column: 2; grid-row: 2; }
.g-idea .g-d { grid-column: 3; grid-row: 2; }
.g-launch { grid-template-columns: repeat(6, minmax(0, 1fr)); grid-auto-rows: 300px; }
.g-launch .g-a { grid-column: 1 / 5; }
.g-launch .g-b { grid-column: 5 / 7; }
.g-launch .g-c { grid-column: 1 / 3; }
.g-launch .g-d { grid-column: 3 / 5; }
.g-launch .g-e { grid-column: 5 / 7; }
.g-trophy img { object-position: 50% 35%; }
/* the idea opens on its epigraph, the truth the concept started from */
.epigraph { border-left: 4px solid var(--pitch); padding: 4px 0 4px 28px; margin: 8px 0 0; max-width: 46ch; }
.epi-kicker { font: 700 13px/1.3 var(--display); letter-spacing: .16em; text-transform: uppercase; color: var(--pitch); margin-bottom: 14px; }
.epigraph blockquote { font: 400 italic clamp(22px, 2.4vw, 30px)/1.35 var(--display); }
.epi-by { font-size: 14px; color: var(--dim); margin-top: 16px; }
.epi-by strong { display: block; font-size: 16px; margin-bottom: 2px; }

/* the idea: the lead spans the full width of the photo grid below */
.idea-lead.big.wide { max-width: none; margin-bottom: 36px; }

/* map and the three app screens share one height: flex-grow in proportion to each image's aspect ratio */
.map-row { display: flex; gap: 12px; margin-top: 12px; align-items: flex-start; }
.map-row figure { min-width: 0; }
.mr-map { flex: 1415 1 0; }
.mr-phone { flex: 461 1 0; }
.mr-phone img { border-radius: 14px; border: 1px solid var(--line); }
.map-row figcaption { font-size: 12px; }

/* the work: workshop drawings, two across so every one is visible */
.sub a { color: inherit; text-underline-offset: 4px; }
.sub a:hover { color: var(--chalk); }
/* bricks: laid like a brick wall; top and bottom rows share a height, the middle is shorter. A 100-column grid so each tile takes an exact share of the width;
   rows get different heights; joints never sit under the joint above (row 1 splits at 45 and 77,
   row 2 at 62, row 3 at 38). Tiles crop their drawing a little; the viewer shows it whole. */
.bricks { display: grid; grid-template-columns: repeat(100, minmax(0, 1fr)); grid-template-rows: 25fr 20fr 25fr; row-gap: 12px; aspect-ratio: 100 / 72; margin: 0 -6px; }
.brick { padding: 0 6px; min-width: 0; min-height: 0; }
.brick img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 0; } /* crop from the bottom: the drawings carry their titles at the top */
.brick--a { grid-column: 1 / 46; grid-row: 1; }
/* the narrow Storytelling tile keeps its title and the 5 T's (left third of the drawing) in frame */
.brick--storytelling img { object-position: 27% 0; }
.brick--b { grid-column: 46 / 78; grid-row: 1; }
.brick--c { grid-column: 78 / 101; grid-row: 1; }
.brick--d { grid-column: 1 / 63; grid-row: 2; }
.brick--e { grid-column: 63 / 101; grid-row: 2; }
.brick--f { grid-column: 1 / 39; grid-row: 3; }
.brick--g { grid-column: 39 / 101; grid-row: 3; }
@media (max-width: 680px) {
  /* phones: the anchor on its own, then pairs whose joints alternate (40, 60, 45) */
  .bricks { grid-template-rows: 56fr 26fr 22fr 24fr; row-gap: 8px; aspect-ratio: 100 / 134; margin: 0 -4px; }
  .brick { padding: 0 4px; }
  .brick--a { grid-column: 1 / 101; grid-row: 1; }
  .brick--b { grid-column: 1 / 41; grid-row: 2; }
  .brick--c { grid-column: 41 / 101; grid-row: 2; }
  .brick--d { grid-column: 1 / 61; grid-row: 3; }
  .brick--e { grid-column: 61 / 101; grid-row: 3; }
  .brick--f { grid-column: 1 / 46; grid-row: 4; }
  .brick--g { grid-column: 46 / 101; grid-row: 4; }
  .brick--storytelling img { object-position: 16% 30%; }
}

/* results */
.results { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); margin-bottom: 56px; }
.r-big { padding: 28px 24px 0 0; display: flex; flex-direction: column; gap: 10px; }
.r-big + .r-big { padding-left: 24px; border-left: 1px solid var(--line); }
.r-big .n { font: 700 clamp(56px, 8vw, 120px)/.9 var(--display); letter-spacing: -.045em; color: var(--pitch); }
.r-big .l { font-size: 17px; line-height: 1.35; max-width: 22ch; }
.signal { background: var(--night); padding: 26px; }
.signal--main { padding: clamp(28px, 4vw, 48px); border-left: 4px solid var(--pitch); }
.signal--main p:not(.src) { font-size: clamp(20px, 2.2vw, 28px); line-height: 1.4; }
.signal h3 { font: 700 13px/1.3 var(--display); letter-spacing: .16em; text-transform: uppercase; color: var(--pitch); margin-bottom: 12px; }

/* quotes */
.legacy-half .sub + .quotes { margin-top: 0; }
.quotes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.quote { background: var(--night); padding: 30px; display: flex; flex-direction: column; justify-content: space-between; gap: 24px; }
.quote blockquote { font-size: 20px; line-height: 1.45; }
.quote--lead { grid-column: 1 / -1; background: transparent; border-left: 4px solid var(--pitch); padding: 8px 0 8px 28px; }
.quote--lead blockquote { font-size: clamp(24px, 3vw, 38px); line-height: 1.25; }
.quote figcaption { font-size: 14px; color: var(--dim); }
.quote figcaption strong { display: block; font-size: 16px; margin-bottom: 2px; }
.players { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.players figure { border-top: 2px solid var(--pitch); padding-top: 16px; }
.players blockquote { font-style: italic; font-size: 18px; line-height: 1.45; }
.players figcaption { font-size: 14px; color: var(--dim); margin-top: 10px; }

/* outcome */
.leg-equip { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(28px, 5vw, 72px); align-items: stretch; }
.legacy-half + .legacy-half { margin-top: clamp(64px, 8vw, 112px); padding-top: 8px; border-top: 1px solid var(--line); }
.results--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.results--boxes { border-top: 0; gap: 12px; }
.results--boxes .r-big, .results--boxes .r-big + .r-big { background: var(--pitch); padding: 26px 24px; border: 0; margin: 0; }
.results--boxes .n { color: var(--deep); font-size: clamp(34px, 7.5vw, 110px); }
.results--boxes .r-big { min-width: 0; }
.results--boxes .l { color: var(--deep); font-weight: 700; }
.r-solo { padding: 24px 0 0; margin: 28px 0 24px; border-top: 1px solid var(--line); }
.win-text .r-solo .l { color: var(--chalk); }
.win-img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; object-position: 50% 50%; }
.win-text { display: flex; flex-direction: column; justify-content: center; }
.win-text p + p { margin-top: 20px; color: var(--soft); }
.win-text .big { color: var(--chalk); }

/* proof: the one paper section, like a press cuttings file */
.proof { max-width: none; background: var(--chalk); color: var(--deep); margin-top: clamp(72px, 10vw, 140px); padding-bottom: clamp(56px, 8vw, 100px); }
.proof > * { max-width: calc(var(--max) - 2 * var(--pad)); margin-left: auto; margin-right: auto; }
.proof .ch-num { color: #1E8C34; }
.proof-lede { font-size: 19px; margin-top: -12px; margin-bottom: 28px; }
.press { list-style: none; padding: 0; border-top: 2px solid var(--deep); }
.press a { display: grid; grid-template-columns: 130px 210px 1fr auto; gap: 16px; align-items: baseline; padding: 16px 0; border-bottom: 1px solid rgba(4,11,94,.2); text-decoration: none; }
.press a::after { content: "↗"; font-weight: 700; }
.press a:hover .p-title { text-decoration: underline; text-underline-offset: 3px; }
.press a:focus-visible { outline-color: var(--deep); }
.p-date { font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: #3A4290; }
.p-pub { font-weight: 700; font-size: 15px; }
.p-title { font-size: 17px; line-height: 1.35; }

/* featured press: the three strongest pieces as cards; the rest sit behind "Read more" */
.press-feat { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.feat { height: 100%; display: flex; flex-direction: column; gap: 14px; padding: 24px 24px 22px; background: #fff; border-top: 4px solid var(--deep); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.feat:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(4, 11, 94, .15); }
.feat:focus-visible { outline: 3px solid var(--deep); outline-offset: 3px; }
.f-pub { font-weight: 700; font-size: 14px; letter-spacing: .12em; text-transform: uppercase; }
.f-title { font-size: 21px; line-height: 1.3; flex: 1; }
.f-date { font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: #3A4290; display: flex; justify-content: space-between; }
.f-date::after { content: "↗"; font-weight: 700; color: var(--deep); }
.more { margin-top: 20px; }
.more summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px; border: 2px solid var(--deep); font-weight: 700; font-size: 15px; letter-spacing: .1em; text-transform: uppercase; }
.more summary::-webkit-details-marker { display: none; }
.more summary:hover { background: var(--deep); color: var(--chalk); }
.more summary:focus-visible { outline: 3px solid var(--deep); outline-offset: 3px; }
.more .chev { transition: transform .2s ease; }
.more[open] .chev { transform: rotate(180deg); }
.more-n { font-weight: 400; letter-spacing: .04em; text-transform: none; font-size: 14px; opacity: .75; }
.more .press { margin-top: 20px; }
@media (max-width: 960px) { .press-feat { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .feat, .more .chev { transition: none; } }

/* footer */
.foot { max-width: var(--max); margin: 0 auto; padding: 64px var(--pad) 48px; }
.foot-ask { font: 700 clamp(26px, 3.4vw, 44px)/1.1 var(--display); text-transform: uppercase; letter-spacing: -.02em; max-width: 22ch; }
.foot-links { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 0; font-size: 18px; }
.foot-links a { color: var(--pitch); text-underline-offset: 4px; }
.foot-fine { font-size: 11px; line-height: 1.5; color: var(--dim); margin-top: 32px; max-width: 80ch; }

@media (max-width: 1100px) {
  .score { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .score-item { grid-column: span 2; }
  .score-item:nth-child(n+4) { grid-column: span 3; }
}
@media (max-width: 680px) {
  .score { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; padding-top: 20px; }
  .results--boxes .r-big, .results--boxes .r-big + .r-big { padding: 20px 16px; }
  .results--boxes .l { font-size: 15px; }
  .score-item, .score-item:nth-child(n+4) { grid-column: auto; padding: 18px 16px; }
  .score-item:first-child { grid-column: 1 / -1; }
}

/* tablet */
@media (max-width: 960px) {
  .quotes { grid-template-columns: 1fr 1fr; }
  .quote:last-child { grid-column: 1 / -1; }
  .hero-meta { grid-template-columns: 1fr 1fr; }
  .results { grid-template-columns: 1fr; }
  .results--boxes { grid-template-columns: 1fr 1fr; }
  .r-big + .r-big { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); margin-top: 24px; }
  .press a { grid-template-columns: 110px 1fr auto; }
  .p-title { grid-column: 1 / 3; }
}

/* phone */
@media (max-width: 680px) {
  body { font-size: 17px; }
  .brief-grid { grid-template-columns: 1fr; grid-template-areas: "text" "art" "q1" "q2"; }
  .cols, .owned, .quotes, .players, .leg-equip, .rules { grid-template-columns: 1fr; }
  .t-date { margin-top: 0; }
  .art-card { margin: 0 var(--pad); padding: 24px 0 0; }
  .quote:last-child { grid-column: auto; }
  .g-idea { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 200px 200px; }
  .g-idea .g-a { grid-column: 1 / 3; grid-row: 1; }
  .g-idea .g-b { grid-column: 1 / 3; grid-row: 2; }
  .g-idea .g-c { grid-column: 1; grid-row: 3; }
  .g-idea .g-d { grid-column: 2; grid-row: 3; }
  .map-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
  .mr-map { grid-column: 1 / -1; }
  .g-launch { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .g-launch .g-a { grid-column: 1 / 3; }
  .g-launch .g-b, .g-launch .g-c, .g-launch .g-d, .g-launch .g-e { grid-column: auto; }
  .g-launch .g-e { grid-column: 1 / 3; }
  .press a { grid-template-columns: 1fr auto; gap: 4px 12px; }
  .p-date { grid-column: 1; }
  .p-pub { grid-column: 1; }
  .p-title { grid-column: 1; }
  .press a::after { grid-column: 2; grid-row: 1 / 4; align-self: center; }
  .quote { padding: 22px; }
  .epigraph { padding-left: 18px; }
  .quote--lead { padding: 4px 0 4px 18px; }
}

/* phone-only edits (owner, 2026-09-27) */
@media (max-width: 680px) {
  .managed > summary { cursor: pointer; padding: 14px 16px; border: 2px solid var(--pitch); justify-content: space-between; margin-bottom: 12px; }
  .managed > summary .chev { display: block; }
  .managed[open] > summary .chev { transform: rotate(180deg); }
  .g-launch { grid-auto-rows: auto; }
  .g-launch figure img { height: auto; aspect-ratio: 3 / 2; }
  .g-launch .g-d, .g-launch .g-e { grid-column: auto; }
  .g-launch .g-d img, .g-launch .g-e img { aspect-ratio: 1 / 1; }
  .g-pitch img { object-position: 50% 50%; } /* phones load festival-pitch-sq.jpg: a square cut from the lower part, on the pitch and people */
  .equip-sub, .leg-equip > .win-img { display: none; }
  .legacy-half .leg-equip { display: block; }
  .press-feat:not(.m-only) li:nth-child(n+2) { display: none; }
  .m-only { display: grid; }
  span.m-only { display: inline; }
  .d-only { display: none; }
  .more .press-feat.m-only { margin-top: 20px; }
  .g-idea { grid-template-rows: auto; }
  .g-idea .g-b, .g-idea .g-c, .g-idea .g-d { display: none; }
  .g-idea .g-a { grid-column: 1 / -1; grid-row: 1; aspect-ratio: 4 / 3; }
  .hero-shade { background: linear-gradient(180deg, rgba(4,11,94,.75) 0%, rgba(4,11,94,.45) 25%, rgba(4,11,94,.72) 50%, rgba(4,11,94,.97) 82%); }
}
@media (prefers-reduced-motion: reduce) { .managed > summary .chev { transition: none; } }

/* image viewer */
main img:not(.hero-img) { cursor: zoom-in; }
main img:not(.hero-img):focus-visible { outline: 3px solid var(--pitch); outline-offset: 3px; }
.lb-open, .lb-open body { overflow: hidden; }
.lb { position: fixed; inset: 0; z-index: 100; background: rgba(2, 6, 50, .96); }
.lb[hidden] { display: none; }
.lb-stage { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; touch-action: none; cursor: zoom-in; padding: 64px 16px 72px; }
.lb-stage.zoomed { cursor: grab; }
.lb-stage.zoomed:active { cursor: grabbing; }
.lb-img { max-width: 100%; max-height: 100%; object-fit: contain; transform-origin: center; transition: transform .18s ease; user-select: none; -webkit-user-drag: none; pointer-events: none; }
.lb-img.dragging { transition: none; }
.lb-tools { position: absolute; top: 12px; right: 12px; display: flex; gap: 8px; }
.lb-btn, .lb-nav { width: 44px; height: 44px; display: grid; place-items: center; border: 0; background: rgba(6, 18, 140, .85); color: var(--chalk); cursor: pointer; }
.lb-btn:hover, .lb-nav:hover { background: var(--pitch); color: var(--deep); }
.lb-btn:focus-visible, .lb-nav:focus-visible { outline: 3px solid var(--pitch); outline-offset: 2px; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 64px; }
.lb-prev { left: 12px; } .lb-next { right: 12px; }
.lb-cap { position: absolute; left: 16px; right: 16px; bottom: 18px; text-align: center; font-size: 14px; color: var(--soft); pointer-events: none; }
@media (max-width: 680px) { .lb-nav { width: 40px; height: 52px; background: rgba(6, 18, 140, .6); } .lb-prev { left: 6px; } .lb-next { right: 6px; } }
@media (prefers-reduced-motion: reduce) { .lb-img { transition: none; } }
