/* ============================================================
   FULLERTON GO! — Game Boy × modern brutalism, logo edition
   Palette from the club badge: orange shell, navy outlines,
   cream paper, bolt yellow, pokeball magenta.
   ============================================================ */

:root {
  /* logo palette */
  --orange: #f0791f;
  --orange-dark: #d96812;
  --ink: #1b1f3d;          /* logo navy — replaces black everywhere */
  --paper: #fdf4e6;        /* warm cream */
  --screen: #f6e9cf;       /* console screen */
  --yellow: #ffd42e;       /* pikachu-tail bolt */
  --magenta: #b6509b;      /* pokeball button */

  /* teams */
  --valor: #e4342b;
  --mystic: #2e5fd0;

  --border: 3px solid var(--ink);
  --shadow: 8px 8px 0 var(--ink);
  --shadow-sm: 5px 5px 0 var(--ink);

  --chunky: "Luckiest Guy", "Arial Black", sans-serif;
  --pixel: "Press Start 2P", monospace;
  --mono: "Space Mono", monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--mono);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  /* faint dot-matrix grid over the whole page */
  background-image:
    linear-gradient(rgba(27, 31, 61, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 31, 61, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}

.container { width: min(1140px, 92%); margin-inline: auto; }
.container-narrow { width: min(780px, 92%); }

h1, h2, h3 { font-family: var(--chunky); font-weight: 400; line-height: 1.1; letter-spacing: 0.02em; text-wrap: balance; }

/* avoid single-word orphan lines in running copy */
p, li, blockquote, .section-sub { text-wrap: pretty; }

.section { padding: 5rem 0; }

.section-title {
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--ink);
  text-shadow: 4px 4px 0 var(--yellow);
}
.section-title span {
  font-family: var(--pixel);
  font-size: 0.85rem;
  background: var(--orange);
  color: #fff;
  border: var(--border);
  padding: 0.6em 0.65em;
  flex-shrink: 0;
  text-shadow: none;
}

.section-sub {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  margin-bottom: 2.4rem;
  border-left: 6px solid var(--orange);
  padding-left: 0.8rem;
}

.eyebrow {
  font-family: var(--pixel);
  font-size: 0.6rem;
  color: var(--orange-dark);
  margin-bottom: 1.2rem;
}

.lead { font-size: 1.02rem; }

/* ---------- logo badge usages ---------- */
.brand-badge { width: 44px; height: 44px; flex-shrink: 0; }

.console-sticker {
  position: absolute;
  top: -30px;
  right: -26px;
  width: 116px;
  height: 116px;
  transform: rotate(12deg);
  filter: drop-shadow(4px 4px 0 rgba(27, 31, 61, 0.85));
  z-index: 2;
}

.join-badge {
  width: 150px;
  height: 150px;
  margin-bottom: 1.6rem;
  filter: drop-shadow(6px 6px 0 rgba(27, 31, 61, 0.85));
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--chunky);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 0.85em 1.3em 0.6em; /* Luckiest Guy sits high — pad bottom less */
  border: var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.08s ease, box-shadow 0.08s ease;
  text-align: center;
}
.btn:hover { transform: translate(2px, 2px); box-shadow: 3px 3px 0 var(--ink); }
.btn:active { transform: translate(5px, 5px); box-shadow: 0 0 0 var(--ink); }
.btn-a { background: var(--orange); color: #fff; }
.btn-b { background: var(--paper); color: var(--ink); }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  position: relative;
}

.brand {
  font-family: var(--chunky);
  font-size: 1.35rem;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.brand em { font-style: normal; color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  list-style: none;
}
.nav-links a:not(.btn) {
  font-family: var(--chunky);
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--ink);
  text-decoration: none;
}
.nav-links a:not(.btn):hover {
  color: #fff;
  background: var(--orange);
  outline: 5px solid var(--orange);
}
.nav-links .btn { padding: 0.55em 0.9em 0.35em; box-shadow: 3px 3px 0 var(--ink); }

.nav-toggle {
  display: none;
  font-family: var(--chunky);
  font-size: 0.95rem;
  background: var(--ink);
  color: var(--paper);
  border: var(--border);
  padding: 0.55em 0.9em 0.35em;
  cursor: pointer;
}

/* ---------- hero / console ---------- */
.hero { border-bottom: var(--border); overflow: hidden; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  padding: 4.5rem 0 4rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.4rem);
  margin-bottom: 1.4rem;
  color: #fff;
  -webkit-text-stroke: 2.5px var(--ink);
  text-shadow: 5px 5px 0 var(--orange);
}
.hero h1 .hl {
  color: var(--yellow);
}
.hero .lead { max-width: 32rem; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1.1rem; flex-wrap: wrap; }

/* the Game Boy — "Play It Loud" orange edition */
.console {
  background: var(--orange);
  border: var(--border);
  box-shadow: var(--shadow);
  padding: 1.4rem 1.4rem 2rem;
  max-width: 400px;
  justify-self: center;
  width: 100%;
  position: relative;
}

.console-screen-bezel {
  background: var(--ink);
  border: var(--border);
  padding: 1.6rem 1.4rem 1.4rem;
  position: relative;
}
.bezel-label {
  position: absolute;
  top: 0.4rem;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--pixel);
  font-size: 0.38rem;
  color: var(--paper);
  opacity: 0.7;
  letter-spacing: 0.08em;
}
.power-led {
  position: absolute;
  left: 0.35rem;
  top: 45%;
  font-family: var(--pixel);
  font-size: 0.34rem;
  color: var(--paper);
  opacity: 0.9;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.power-led span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 6px var(--yellow);
  animation: blink-led 3s steps(1) infinite;
}
@keyframes blink-led { 0%, 92% { opacity: 1; } 96% { opacity: 0.35; } }

.console-screen {
  background: var(--screen);
  border: var(--border);
  min-height: 200px;
  padding: 1.1rem;
  position: relative;
  /* scanlines */
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0 3px,
    rgba(27, 31, 61, 0.07) 3px 4px
  );
}
.screen-text {
  font-family: var(--pixel);
  font-size: 0.68rem;
  line-height: 2;
  color: var(--ink);
  white-space: pre-line;
  min-height: 9em;
}
.screen-cursor {
  position: absolute;
  right: 0.9rem;
  bottom: 0.5rem;
  font-size: 0.8rem;
  color: var(--ink);
  animation: bounce-cursor 0.7s steps(2) infinite;
}
@keyframes bounce-cursor { 50% { transform: translateY(3px); } }

.console-brand {
  font-family: var(--chunky);
  font-size: 0.95rem;
  margin: 1.1rem 0 1.2rem;
  color: #fff;
  -webkit-text-stroke: 1px var(--ink);
  letter-spacing: 0.06em;
}
.console-brand span { font-size: 0.5em; vertical-align: super; }

.console-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dpad { position: relative; width: 84px; height: 84px; }
.dpad-v, .dpad-h {
  position: absolute;
  background: var(--ink);
  border: 2px solid var(--ink);
}
.dpad-v { width: 28px; height: 84px; left: 28px; top: 0; }
.dpad-h { width: 84px; height: 28px; left: 0; top: 28px; }

.ab { display: flex; gap: 1rem; transform: rotate(-12deg); }
.ab-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--magenta);
  border: var(--border);
  color: #fff;
  font-family: var(--pixel);
  font-size: 0.7rem;
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow: 3px 3px 0 var(--ink);
}
.ab-btn:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }

.console-startselect {
  display: flex;
  gap: 1.4rem;
  justify-content: center;
  margin-top: 1.6rem;
}
.console-startselect span {
  font-family: var(--pixel);
  font-size: 0.42rem;
  color: var(--ink);
  padding-top: 0.9rem;
  position: relative;
}
.console-startselect span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(-25deg);
  width: 34px;
  height: 10px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 999px;
}

/* ---------- ticker ---------- */
.ticker {
  border-top: var(--border);
  background: var(--ink);
  color: var(--yellow);
  overflow: hidden;
  padding: 0.7rem 0;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  font-family: var(--pixel);
  font-size: 0.62rem;
  animation: ticker 28s linear infinite;
}
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ---------- stats (HP bars) ---------- */
.stats-section { padding: 3rem 0; border-bottom: var(--border); background: var(--paper); }

.stat-rows {
  border: var(--border);
  box-shadow: var(--shadow);
  background: #fff;
  padding: 1.6rem;
  display: grid;
  gap: 1rem;
}
.stat-row {
  display: grid;
  grid-template-columns: 130px 1fr 70px;
  align-items: center;
  gap: 1rem;
}
.stat-name, .stat-val { font-family: var(--pixel); font-size: 0.62rem; }
.stat-val { text-align: right; }
.stat-bar {
  height: 16px;
  border: var(--border);
  background: var(--paper);
  display: block;
  position: relative;
}
.stat-bar span {
  position: absolute;
  inset: 2px auto 2px 2px;
  width: var(--fill, 50%);
  background: repeating-linear-gradient(
    90deg,
    var(--orange) 0 8px,
    var(--orange-dark) 8px 10px
  );
}

/* ---------- about ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.6rem;
  margin-bottom: 1.6rem;
}
.about-box {
  background: #fff;
  border: var(--border);
  box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 6px var(--ink), var(--shadow-sm);
  padding: 1.8rem;
}
.about-box p { font-size: 0.95rem; margin-bottom: 1rem; }
.about-box p:last-child { margin-bottom: 0; }
.about-box strong { background: var(--yellow); padding: 0 0.25em; font-weight: 700; }
.checklist h3 { font-size: 1.35rem; color: var(--orange-dark); margin-bottom: 1rem; }
.checklist ul { list-style: none; }
.checklist li {
  font-size: 0.85rem;
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: 0.8rem;
}
.checklist li:last-child { margin-bottom: 0; }
.checklist li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}
.mission-box {
  background: var(--ink);
  padding: 2rem 1.8rem;
  border: var(--border);
  box-shadow: var(--shadow-sm);
  display: grid;
  justify-items: center;
  gap: 1.2rem;
}
.mission-box p {
  color: var(--yellow);
  font-family: var(--pixel);
  font-size: 0.62rem;
  line-height: 2.2;
  text-align: center;
  max-width: 62rem;
}
.mission-label {
  font-family: var(--chunky);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  background: var(--orange);
  color: #fff;
  border: var(--border);
  padding: 0.65rem 1.2rem 0.4rem;
  box-shadow: 4px 4px 0 var(--yellow);
}

/* ---------- values ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
@media (max-width: 980px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .value-grid { grid-template-columns: 1fr; }
}
.value {
  background: #fff;
  border: var(--border);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
}
.value-head {
  font-family: var(--chunky);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  padding: 0.65rem 0.8rem 0.4rem;
  border: var(--border);
  margin-bottom: 1rem;
  color: #fff;
}
.value-1 .value-head { background: var(--orange); }
.value-2 .value-head { background: var(--mystic); }
.value-3 .value-head { background: var(--valor); }
.value-4 .value-head { background: var(--magenta); }
.value p { font-size: 0.85rem; }

/* ---------- partners ---------- */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 2.4rem;
}
.partner-card {
  background: var(--paper);
  border: var(--border);
  box-shadow: 8px 8px 0 var(--orange);
  padding: 1.8rem;
  color: var(--ink);
}
.partner-card h3 { font-size: 1.35rem; color: var(--orange-dark); margin-bottom: 0.9rem; }
.partner-card p { font-size: 0.9rem; margin-bottom: 1.1rem; }
.partner-card blockquote {
  border: 2px solid var(--ink);
  border-left: 8px solid var(--yellow);
  background: #fff;
  padding: 1rem 1.2rem;
  font-size: 0.85rem;
  font-style: italic;
}
.partner-cta {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 1.2rem;
}
.partner-cta p {
  font-family: var(--pixel);
  font-size: 0.6rem;
  line-height: 2;
  color: var(--paper);
}
.partner-dm a {
  color: var(--yellow);
  text-decoration: none;
}
.partner-dm a:hover { background: var(--yellow); color: var(--ink); }

/* ---------- countdown ---------- */
.countdown-card {
  background: var(--orange);
  border: var(--border);
  box-shadow: var(--shadow);
  padding: 1.2rem;
  margin-bottom: 2.4rem;
}
.countdown-screen {
  background: var(--screen);
  border: var(--border);
  padding: 1.4rem;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0 3px,
    rgba(27, 31, 61, 0.07) 3px 4px
  );
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.countdown-label {
  font-family: var(--pixel);
  font-size: 0.7rem;
  color: var(--ink);
  max-width: 11ch;
  line-height: 1.8;
}
.countdown { display: flex; gap: 0.8rem; }
.countdown > div {
  background: var(--ink);
  padding: 0.6rem 0.7rem;
  text-align: center;
  min-width: 66px;
}
.countdown strong {
  display: block;
  font-family: var(--pixel);
  font-size: 1.15rem;
  color: var(--yellow);
}
.countdown span {
  font-family: var(--pixel);
  font-size: 0.42rem;
  color: var(--paper);
  opacity: 0.8;
}
.countdown-where {
  font-family: var(--pixel);
  font-size: 0.55rem;
  color: var(--ink);
  line-height: 1.9;
  margin-left: auto;
  max-width: 24ch;
}

/* ---------- events ---------- */
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.6rem;
}

/* classic Pokémon dialog box: double border, hard corners */
.event-card {
  background: #fff;
  border: var(--border);
  box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 6px var(--ink), var(--shadow-sm);
  padding: 1.5rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.event-date {
  font-family: var(--pixel);
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: 0.6rem 0.7rem;
  min-width: 64px;
  flex-shrink: 0;
}
.event-date .month { display: block; font-size: 0.5rem; color: var(--yellow); }
.event-date .day { display: block; font-size: 1.15rem; margin-top: 0.3rem; }

.event-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--orange-dark); }
.event-meta {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 0.4rem;
  margin-bottom: 0.5rem;
}
.event-card p:not(.event-meta) { font-size: 0.85rem; }

.event-link {
  display: inline-block;
  margin-top: 0.8rem;
  font-family: var(--pixel);
  font-size: 0.55rem;
  color: var(--orange-dark);
  text-decoration: none;
}
.event-link:hover { background: var(--yellow); color: var(--ink); }

.event-past { opacity: 0.6; }
.event-past .event-date { background: #6b6f85; }
.event-past .event-date .month { color: var(--paper); }
.event-past h3 { color: var(--ink); }

.event-error {
  font-family: var(--pixel);
  font-size: 0.6rem;
  line-height: 2;
  background: #fff;
  border: var(--border);
  box-shadow: var(--shadow-sm);
  padding: 1.4rem;
  grid-column: 1 / -1;
}

/* ---------- gallery / photo dex ---------- */
.section-dark {
  background: var(--ink);
  color: var(--paper);
  border-block: var(--border);
}
.section-dark .section-title { color: #fff; text-shadow: 4px 4px 0 var(--orange); }
.section-dark .section-title span { background: var(--yellow); color: var(--ink); }
.section-dark .section-sub { border-left-color: var(--yellow); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense; /* backfill holes left by wide cards */
  gap: 1.8rem;
}
.photo-wide { grid-column: span 2; }
.photo-hidden { display: none; }
.gallery-more { display: flex; justify-content: center; margin-top: 2.2rem; }
.gallery-more .btn { cursor: pointer; font-family: var(--chunky); }
@media (max-width: 980px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

.photo-card {
  background: var(--paper);
  border: var(--border);
  box-shadow: 8px 8px 0 var(--orange);
  padding: 0.9rem;
}
.photo-card img,
.photo-card video {
  display: block;
  width: 100%;
  border: var(--border);
  background: var(--ink);
}
.photo-card img { height: 300px; object-fit: cover; }
.photo-wide img { height: 400px; }
.photo-video video { max-height: 560px; object-fit: contain; }

.photo-card figcaption {
  font-family: var(--pixel);
  font-size: 0.55rem;
  line-height: 2;
  color: var(--ink);
  padding: 0.9rem 0.2rem 0.2rem;
}
.dex-no {
  background: var(--orange);
  color: #fff;
  padding: 0.3em 0.6em;
  margin-right: 0.6em;
}

/* ---------- routes ---------- */
.route-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.6rem;
}
.route {
  background: #fff;
  border: var(--border);
  box-shadow: var(--shadow-sm);
  padding: 1.6rem;
  transition: transform 0.08s ease, box-shadow 0.08s ease;
}
.route:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); }
.route-sign {
  font-family: var(--pixel);
  font-size: 0.55rem;
  display: inline-block;
  background: var(--yellow);
  border: 2px solid var(--ink);
  padding: 0.5em 0.8em;
  margin-bottom: 1rem;
}
.route h3 { font-size: 1.25rem; margin-bottom: 0.7rem; }
.route p { font-size: 0.85rem; margin-bottom: 1rem; }
.tag {
  font-family: var(--pixel);
  font-size: 0.5rem;
  background: var(--ink);
  color: var(--paper);
  padding: 0.5em 0.8em;
  display: inline-block;
}

/* ---------- section tint ---------- */
.section-tint { background: #fbe3c8; border-block: var(--border); }

/* ---------- FAQ ---------- */
details {
  border: var(--border);
  background: #fff;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.1rem;
}
summary {
  font-family: var(--pixel);
  font-size: 0.62rem;
  line-height: 1.8;
  padding: 1.1rem 1.2rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-family: var(--mono); font-size: 1.2rem; font-weight: 700; }
details[open] summary { border-bottom: var(--border); background: var(--yellow); }
details[open] summary::after { content: "–"; }
details p { padding: 1rem 1.2rem; font-size: 0.9rem; }

/* ---------- join ---------- */
.join-section {
  background: var(--orange);
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0 3px,
    rgba(27, 31, 61, 0.06) 3px 4px
  );
  border-top: var(--border);
}
.join-inner { display: grid; justify-items: center; }
.join-dialog {
  background: var(--paper);
  border: var(--border);
  box-shadow: inset 0 0 0 3px var(--paper), inset 0 0 0 6px var(--ink), 10px 10px 0 var(--ink);
  padding: 1.9rem 2rem;
  max-width: 620px;
  text-align: left;
}
.join-line {
  font-family: var(--pixel);
  font-size: 0.68rem;
  line-height: 2;
  color: var(--ink);
  margin-bottom: 0.7rem;
}
.join-q {
  font-family: var(--pixel);
  font-size: 0.8rem;
  color: var(--orange-dark);
  margin: 1rem 0;
  animation: blink-q 1.2s steps(1) infinite;
}
@keyframes blink-q { 50% { opacity: 0.35; } }
.join-note {
  font-family: var(--pixel);
  font-size: 0.48rem;
  line-height: 2.2;
  color: var(--ink);
  opacity: 0.65;
  margin-top: 1.2rem;
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 2.4rem 0;
  text-align: center;
}
.site-footer p:first-child { font-family: var(--pixel); font-size: 0.6rem; line-height: 2; }

.socials {
  display: flex;
  justify-content: center;
  gap: 1.1rem;
  margin-top: 1.5rem;
}
.social-btn {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--paper);
  border: var(--border);
  box-shadow: 4px 4px 0 var(--orange);
  transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.08s ease;
}
.social-btn svg { width: 22px; height: 22px; fill: var(--ink); }
.social-btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--orange);
  background: var(--yellow);
}
.fine-print {
  margin-top: 1rem;
  font-size: 0.72rem;
  opacity: 0.6;
  max-width: 52rem;
  margin-inline: auto;
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 3rem; }
  .console { max-width: 360px; }
  .console-sticker { width: 96px; height: 96px; top: -24px; right: -16px; }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1080px) {
  .nav-links { gap: 1rem; }
  .brand { font-size: 1.15rem; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: -4.5%;
    right: -4.5%;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    background: var(--paper);
    border-bottom: var(--border);
    padding: 1.4rem;
    gap: 1.2rem;
  }
  .nav-links.open { display: flex; }

  .gallery-grid { grid-template-columns: 1fr; }
  .photo-wide { grid-column: span 1; }
  .photo-card img, .photo-wide img { height: 320px; }

  .stat-row { grid-template-columns: 92px 1fr 58px; }
  .countdown-where { margin-left: 0; }
  .countdown { flex-wrap: wrap; }
}
