/* ==========================================================================
   Pride of Brisbane Town — Brisbane Lions tribute
   Shared design system
   Colours: maroon, royal blue, gold (the Lions' own)
   ========================================================================== */

:root {
  /* Brand palette */
  --maroon:        #6E0A2B;
  --maroon-deep:   #4E061E;
  --maroon-bright: #A4123F;
  --navy:          #041E42;
  --navy-deep:     #02132A;
  --blue:          #0B3D91;
  --gold:          #F2A900;
  --gold-bright:   #FDBB30;
  --cream:         #FBF6EC;
  --cream-dim:     #E9E0CE;
  --ink:           #1A1412;

  /* Semantic */
  --bg:            var(--navy-deep);
  --surface:       #0A2145;
  --surface-2:     #10182f;
  --text:          #F4ECDD;
  --text-dim:      #B9C4D6;
  --text-muted:    #8593ab;
  --accent:        var(--gold);
  --line:          rgba(242, 169, 0, 0.22);

  /* Type */
  --font-display: "Anton", "Oswald", Impact, "Arial Narrow Bold", sans-serif;
  --font-head:    "Oswald", "Franklin Gothic Medium", sans-serif;
  --font-body:    "Libre Franklin", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif:   "Playfair Display", Georgia, "Times New Roman", serif;

  --maxw: 1120px;
  --radius: 14px;
  --shadow: 0 20px 50px -20px rgba(0,0,0,0.65);
}

/* ------- reset ------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--gold-bright); text-decoration: none; transition: color .2s ease; }
a:hover { color: #fff; }

/* ------- layout ------- */
.wrap { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }
section { position: relative; }
.section-pad { padding: clamp(3rem, 7vw, 6rem) 0; }

/* ------- typography ------- */
h1, h2, h3 { line-height: 1.05; margin: 0 0 .5em; }
.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 1rem;
}
.display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: .92;
}
.serif-em { font-family: var(--font-serif); font-style: italic; font-weight: 500; }

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(2, 19, 42, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .7rem 0;
}
.brand { display: flex; align-items: center; gap: .6rem; font-family: var(--font-head); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--text); font-size: .98rem; }
.brand:hover { color: #fff; }
.brand__crest {
  width: 30px; height: 30px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--gold-bright), var(--gold) 45%, var(--maroon) 46%);
  display: grid; place-items: center; font-size: 1rem; box-shadow: 0 0 0 2px var(--maroon-bright);
}
.nav__links { display: flex; gap: .3rem; flex-wrap: wrap; align-items: center; }
.nav__links a {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .08em;
  font-size: .82rem; color: var(--text-dim); padding: .45rem .7rem; border-radius: 8px;
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: #fff; background: rgba(242,169,0,.12); }
.nav__toggle { display: none; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; isolation: isolate;
  padding: clamp(4rem, 12vw, 9rem) 0 clamp(3rem, 8vw, 6rem);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  filter: saturate(1.05);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(164,18,63,.55), transparent 55%),
    linear-gradient(180deg, rgba(2,19,42,.55) 0%, rgba(2,19,42,.86) 55%, var(--navy-deep) 100%);
}
.hero__inner { max-width: 820px; }
.hero h1 {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(2.6rem, 8vw, 6rem); letter-spacing: .005em;
  text-shadow: 0 4px 30px rgba(0,0,0,.5);
  margin-bottom: .3em;
}
.hero h1 .gold { color: var(--gold-bright); }
.hero .lede { font-size: clamp(1.05rem, 2.2vw, 1.4rem); color: var(--text-dim); max-width: 62ch; }

/* gold rule */
.rule { height: 4px; width: 74px; background: linear-gradient(90deg, var(--gold-bright), var(--maroon-bright)); border: 0; border-radius: 4px; margin: 1.4rem 0; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .09em;
  font-weight: 600; font-size: .9rem;
  padding: .8rem 1.4rem; border-radius: 999px; cursor: pointer;
  border: 2px solid transparent; transition: transform .15s ease, background .2s ease, color .2s ease;
}
.btn--primary { background: var(--gold); color: #241000; }
.btn--primary:hover { background: var(--gold-bright); color: #241000; transform: translateY(-2px); }
.btn--ghost { border-color: var(--line); color: var(--text); }
.btn--ghost:hover { border-color: var(--gold); color: #fff; transform: translateY(-2px); }
.btn-row { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.8rem; }

/* ==========================================================================
   Era cards (hub)
   ========================================================================== */
.eras-grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.era-card {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 340px; padding: 1.6rem; border-radius: var(--radius);
  overflow: hidden; isolation: isolate; color: #fff;
  background: var(--surface); border: 1px solid rgba(255,255,255,.06);
  box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease;
}
.era-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -25px rgba(0,0,0,.8); }
.era-card__bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; transition: transform .5s ease; }
.era-card:hover .era-card__bg { transform: scale(1.06); }
.era-card::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, rgba(4,30,66,.15) 0%, rgba(4,19,42,.6) 45%, rgba(78,6,30,.92) 100%); }
.era-card__years { font-family: var(--font-display); font-size: 1.05rem; color: var(--gold-bright); letter-spacing: .05em; }
.era-card__title { font-family: var(--font-display); text-transform: uppercase; font-size: 1.9rem; line-height: .95; margin: .2rem 0 .5rem; }
.era-card__desc { color: var(--text-dim); font-size: .95rem; margin: 0 0 1rem; }
.era-card__cta { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; color: var(--gold-bright); }
.era-card__badge { position: absolute; top: 1rem; left: 1rem; z-index: 1; font-family: var(--font-head); text-transform: uppercase; letter-spacing:.1em; font-size:.7rem; background: var(--maroon-bright); color:#fff; padding:.3rem .6rem; border-radius: 6px; }

/* ==========================================================================
   Generic content blocks
   ========================================================================== */
.lead-block { max-width: 62ch; }
.lead-block p { color: var(--text-dim); font-size: 1.08rem; }
.section-title { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.8rem, 4vw, 2.8rem); }

.prose { max-width: 68ch; }
.prose p { color: var(--text-dim); margin: 0 0 1.1rem; }
.prose strong { color: var(--text); }

/* stat row */
.stats { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); margin: 2rem 0; }
.stat { background: linear-gradient(160deg, var(--surface), var(--surface-2)); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem; text-align: center; }
.stat__num { font-family: var(--font-display); font-size: 2.6rem; color: var(--gold-bright); line-height: 1; }
.stat__label { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; color: var(--text-muted); margin-top: .4rem; }

/* ==========================================================================
   Timeline (grand finals / seasons)
   ========================================================================== */
.timeline { position: relative; margin: 2.5rem 0; padding-left: 1.8rem; }
.timeline::before { content: ""; position: absolute; left: 5px; top: .4rem; bottom: .4rem; width: 3px; background: linear-gradient(var(--gold), var(--maroon-bright)); border-radius: 3px; }
.tl-item { position: relative; margin-bottom: 2.2rem; }
.tl-item::before { content:""; position:absolute; left: -1.8rem; top: .35rem; width: 13px; height: 13px; border-radius: 50%; background: var(--gold-bright); box-shadow: 0 0 0 4px rgba(242,169,0,.18); }
.tl-item.win::before { background: var(--gold-bright); }
.tl-item.loss::before { background: var(--maroon-bright); box-shadow: 0 0 0 4px rgba(164,18,63,.2); }
.tl-year { font-family: var(--font-display); color: var(--gold-bright); font-size: 1.5rem; }
.tl-head { font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; margin: .1rem 0 .3rem; }
.tl-score { display:inline-block; font-family: var(--font-head); letter-spacing:.04em; font-size:.82rem; text-transform:uppercase; padding:.22rem .6rem; border-radius:6px; margin-bottom:.5rem; }
.tl-score.win { background: rgba(242,169,0,.16); color: var(--gold-bright); }
.tl-score.loss { background: rgba(164,18,63,.2); color: #ff9db8; }
.tl-item p { color: var(--text-dim); margin: .3rem 0 0; max-width: 60ch; }

/* ==========================================================================
   Quote blocks
   ========================================================================== */
.quote { position: relative; border-left: 4px solid var(--gold); padding: .3rem 0 .3rem 1.4rem; margin: 2rem 0; max-width: 60ch; }
.quote blockquote { margin: 0; font-family: var(--font-serif); font-style: italic; font-size: clamp(1.25rem, 2.6vw, 1.7rem); color: var(--text); line-height: 1.35; }
.quote cite { display: block; font-style: normal; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; color: var(--gold-bright); margin-top: .9rem; }

.quote-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); margin: 2rem 0; }
.quote-card { background: linear-gradient(160deg, var(--surface), var(--surface-2)); border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius); padding: 1.6rem; }
.quote-card blockquote { margin: 0; font-family: var(--font-serif); font-style: italic; font-size: 1.15rem; color: var(--text); }
.quote-card cite { display:block; font-style: normal; font-family: var(--font-head); text-transform: uppercase; letter-spacing:.1em; font-size:.72rem; color: var(--gold-bright); margin-top: .8rem; }

/* ==========================================================================
   Stories
   ========================================================================== */
.stories { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.story { background: linear-gradient(165deg, var(--surface), var(--surface-2)); border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius); padding: 1.6rem; }
.story h3 { font-family: var(--font-head); font-size: 1.25rem; color: #fff; }
.story h3 .k { color: var(--gold-bright); font-family: var(--font-display); margin-right: .4rem; }
.story p { color: var(--text-dim); margin: .5rem 0 0; font-size: .97rem; }

/* players */
.players { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.player { background: rgba(255,255,255,.03); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem; }
.player h4 { margin: 0; font-family: var(--font-head); font-size: 1.1rem; color: #fff; }
.player .role { font-family: var(--font-head); text-transform: uppercase; letter-spacing:.08em; font-size:.7rem; color: var(--gold-bright); margin: .2rem 0 .5rem; }
.player p { margin: 0; color: var(--text-dim); font-size: .9rem; }

/* ==========================================================================
   Video grid
   ========================================================================== */
.video-hero { margin: 2rem 0; }
.video-frame {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow); background: #000;
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-cap { font-size: .82rem; color: var(--text-muted); margin-top: .6rem; }

/* featured video — links out to YouTube in a new tab (smaller than full-width) */
.video-feature {
  display: grid; place-items: center; position: relative;
  max-width: 560px; width: 100%; aspect-ratio: 16 / 9;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  background-color: #000; background-size: cover; background-position: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.video-feature::after { content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(4,19,42,.78), rgba(4,19,42,.12)); }
.video-feature:hover { transform: translateY(-3px); box-shadow: 0 26px 55px -22px rgba(0,0,0,.8); }
.video-feature .play { position: relative; z-index: 1; width: 68px; height: 68px; border-radius: 50%; background: rgba(242,169,0,.95); display: grid; place-items: center; transition: transform .2s ease; }
.video-feature:hover .play { transform: scale(1.1); }
.video-feature .play::before { content:""; border-style: solid; border-width: 12px 0 12px 20px; border-color: transparent transparent transparent #241000; margin-left: 5px; }
.video-feature__tag { position: absolute; z-index: 1; left: 14px; bottom: 12px; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .08em; font-size: .76rem; color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,.6); }

/* click-to-load facade */
.video-facade { position: absolute; inset: 0; cursor: pointer; background-size: cover; background-position: center; display: grid; place-items: center; }
.video-facade::after { content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(4,19,42,.5), rgba(4,19,42,.15)); }
.video-facade .play { position: relative; z-index: 1; width: 74px; height: 74px; border-radius: 50%; background: rgba(242,169,0,.95); display: grid; place-items: center; transition: transform .2s ease; }
.video-facade:hover .play { transform: scale(1.1); }
.video-facade .play::before { content:""; border-style: solid; border-width: 13px 0 13px 22px; border-color: transparent transparent transparent #241000; margin-left: 5px; }

.video-list { display: grid; gap: .8rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); margin-top: 1.4rem; }
.vlink { display: flex; gap: .9rem; align-items: center; background: rgba(255,255,255,.03); border: 1px solid var(--line); border-radius: 12px; padding: .7rem; transition: background .2s ease, transform .15s ease; }
.vlink:hover { background: rgba(242,169,0,.1); transform: translateY(-2px); }
.vlink .thumb { flex: 0 0 92px; aspect-ratio: 16/9; border-radius: 8px; background-size: cover; background-position: center; position: relative; }
.vlink .thumb::after { content:"▶"; position:absolute; inset:0; display:grid; place-items:center; color:#fff; font-size:.9rem; text-shadow:0 1px 4px #000; }
.vlink .meta strong { display:block; color: var(--text); font-size: .92rem; font-weight: 600; line-height: 1.25; }
.vlink .meta span { color: var(--text-muted); font-size: .78rem; }

/* ==========================================================================
   Versus / comparison
   ========================================================================== */
.compare-heads { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0 1.5rem; }
.compare-head { position: relative; border-radius: var(--radius); padding: 1.4rem 1.4rem 1.5rem; overflow: hidden; border: 1px solid var(--line); }
.compare-head.dyn { background: linear-gradient(160deg, #5a1230, var(--maroon-deep)); }
.compare-head.mod { background: linear-gradient(160deg, #0b3d91, var(--navy-deep)); }
.compare-head .yrs { font-family: var(--font-head); text-transform: uppercase; letter-spacing:.12em; font-size:.74rem; color: var(--gold-bright); }
.compare-head .nm { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.4rem, 3.2vw, 2.1rem); line-height: .95; color:#fff; margin:.2rem 0 .3rem; }
.compare-head .fl { color: var(--text-dim); font-size:.9rem; }
.vs-badge { display:grid; place-items:center; font-family: var(--font-display); color: var(--gold-bright); font-size:1.1rem; }

.vs-table { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.vs-row { display: grid; grid-template-columns: 1fr 150px 1fr; align-items: center; border-bottom: 1px solid rgba(255,255,255,.06); }
.vs-row:last-child { border-bottom: 0; }
.vs-row:nth-child(odd) { background: rgba(255,255,255,.02); }
.vs-a, .vs-b { padding: .9rem 1.1rem; font-size: .98rem; color: var(--text); }
.vs-b { text-align: right; }
.vs-a strong, .vs-b strong { color:#fff; }
.vs-label { padding: .6rem .5rem; text-align:center; font-family: var(--font-head); text-transform: uppercase; letter-spacing:.08em; font-size:.72rem; color: var(--gold-bright); background: rgba(242,169,0,.06); }

@media (max-width: 720px) {
  .vs-row { grid-template-columns: 1fr 1fr; grid-template-areas: "label label" "a b"; padding-top:.2rem; }
  .vs-label { grid-area: label; text-align:center; }
  .vs-a { grid-area: a; } .vs-b { grid-area: b; }
}

/* ==========================================================================
   Leaderboard tiles (era stat leaders)
   ========================================================================== */
.lead-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.lead-tile { background: linear-gradient(165deg, var(--surface), var(--surface-2)); border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius); padding: 1.2rem 1.3rem 1.3rem; }
.lead-tile.dyn { border-top: 3px solid var(--maroon-bright); }
.lead-tile.mod { border-top: 3px solid var(--blue); }
.lead-tile h4 { margin: 0 0 .1rem; font-family: var(--font-head); text-transform: uppercase; letter-spacing:.06em; font-size:.86rem; color: var(--gold-bright); }
.lead-tile .unit { font-size:.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing:.1em; margin-bottom:.8rem; display:block; }
.lead-one { display:flex; align-items:baseline; gap:.6rem; padding:.5rem 0 .7rem; border-bottom:1px dashed rgba(242,169,0,.25); margin-bottom:.6rem; }
.lead-one .rk { font-family: var(--font-display); color: var(--gold-bright); font-size:1.5rem; line-height:1; }
.lead-one .nm { font-family: var(--font-head); font-weight:600; color:#fff; font-size:1.08rem; flex:1; }
.lead-one .val { font-family: var(--font-display); color:#fff; font-size:1.35rem; }
.lead-list { list-style:none; margin:0; padding:0; }
.lead-list li { display:flex; align-items:baseline; gap:.6rem; padding:.28rem 0; font-size:.92rem; color: var(--text-dim); }
.lead-list li .rk { width:1.1rem; color: var(--text-muted); font-family: var(--font-head); font-size:.85rem; }
.lead-list li .nm { flex:1; }
.lead-list li .val { color: var(--text); font-variant-numeric: tabular-nums; }
.beh { font-family: var(--font-head); font-size: .58em; color: var(--text-muted); margin-left: .2rem; letter-spacing: .02em; }
.lead-tie { font-size:.72rem; color: var(--text-muted); margin:.6rem 0 0; font-style: italic; }
.lead-more { margin-top:.2rem; }
.lead-more[hidden] { display: none; }
.lead-toggle { margin-top:.8rem; background: transparent; border:1px solid var(--line); color: var(--gold-bright); font-family: var(--font-head); text-transform: uppercase; letter-spacing:.08em; font-size:.68rem; padding:.42rem .8rem; border-radius:999px; cursor:pointer; transition: background .2s ease, color .2s ease; }
.lead-toggle:hover { background: rgba(242,169,0,.12); color:#fff; }

/* Mantra / creed */
.creed { display:grid; gap:1rem; grid-template-columns: 1fr 1fr; margin: 1.8rem 0; }
.creed-card { position:relative; border-radius: var(--radius); padding: 1.8rem 1.6rem; overflow:hidden; border:1px solid rgba(242,169,0,.3); background: linear-gradient(155deg, var(--maroon), var(--maroon-deep)); }
.creed-card.ice { background: linear-gradient(155deg, #123a6b, var(--navy-deep)); }
.creed-yr { font-family: var(--font-head); text-transform: uppercase; letter-spacing:.14em; font-size:.72rem; color: var(--gold-bright); margin-bottom:.4rem; }
.creed-card .big { font-family: var(--font-display); text-transform:uppercase; font-size: clamp(1.5rem,3.4vw,2.2rem); color:#fff; line-height:.95; }
.creed-card p { color:#f0e6da; margin:.7rem 0 0; font-size:.98rem; }
@media (max-width: 640px) { .creed, .compare-heads { grid-template-columns: 1fr; } }

/* ==========================================================================
   Callout / personal note
   ========================================================================== */
.note {
  background: linear-gradient(160deg, var(--maroon), var(--maroon-deep));
  border: 1px solid rgba(242,169,0,.35); border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow); position: relative;
}
.note .eyebrow { color: var(--gold-bright); }
.note p { color: #f3e6d8; font-size: 1.12rem; }
.note .signoff { font-family: var(--font-serif); font-style: italic; font-size: 1.2rem; color: #fff; margin-top: 1rem; }

/* next-era link */
.jump { display:flex; flex-wrap:wrap; gap:1rem; justify-content: space-between; align-items:center; border-top: 1px solid var(--line); padding-top: 2rem; margin-top: 1rem; }
.jump a { font-family: var(--font-head); text-transform: uppercase; letter-spacing:.08em; }

/* ==========================================================================
   Footer / credits
   ========================================================================== */
.footer { background: var(--navy-deep); border-top: 3px solid var(--maroon-bright); padding: 3rem 0 2.5rem; margin-top: 2rem; }
.footer__top { display:flex; flex-wrap:wrap; gap:1.5rem; justify-content: space-between; align-items:flex-start; }
.footer__brand { max-width: 46ch; }
.footer__brand .display { font-size: 1.6rem; color: #fff; }
.footer__brand p { color: var(--text-muted); font-size: .92rem; }
.footer__links { display:flex; gap: 1.2rem; flex-wrap: wrap; }
.footer__links a { font-family: var(--font-head); text-transform: uppercase; letter-spacing:.08em; font-size:.82rem; color: var(--text-dim); }
.credits { margin-top: 2rem; border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.4rem; }
.credits h4 { font-family: var(--font-head); text-transform: uppercase; letter-spacing:.14em; font-size:.72rem; color: var(--gold); margin: 0 0 .6rem; }
.credits p, .credits li { color: var(--text-muted); font-size: .78rem; line-height: 1.6; }
.credits ul { margin:0; padding-left: 1.1rem; }
.disclaimer { color: var(--text-muted); font-size: .74rem; margin-top: 1.2rem; max-width: 90ch; }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
/* Only hide for animation when JS is present; without JS everything shows */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 760px) {
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--navy-deep); border-bottom: 1px solid var(--line);
    padding: .6rem 1.25rem 1rem; gap: .1rem;
    max-height: 0; overflow: hidden; transition: max-height .3s ease; visibility: hidden;
  }
  .nav__links.open { max-height: 420px; visibility: visible; }
  .nav__toggle { display: inline-grid; place-items:center; width: 42px; height: 38px; background: transparent; border: 1px solid var(--line); border-radius: 8px; cursor: pointer; }
  .nav__toggle span, .nav__toggle span::before, .nav__toggle span::after { content:""; display:block; width:20px; height:2px; background: var(--text); position: relative; }
  .nav__toggle span::before { position:absolute; top:-6px; } .nav__toggle span::after { position:absolute; top:6px; }
}
