/* ==========================================================================
   Goodfruit Studios — stylesheet
   Full-width, big-text, editorial remix — neutral base, few big accents
   ========================================================================== */

:root {
  --green: #7C7C39;         /* olive */
  --green-light: #A8A85A;
  --green-dark: #55542A;
  --cream: #FBF1DD;
  --off-white: #FDF7EA;
  --orange: #F09360;        /* lightened accent */
  --orange-dark: #C0754C;
  --blue: #3F5E82;          /* denim */
  --pink: #B5735B;          /* dusty rose */
  --ink: #171717;           /* black */
  --coral: #F7C9AF;

  --font-head: 'Inter', system-ui, -apple-system, sans-serif;
  --font-logo: 'Baloo', 'Fredoka', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, -apple-system, sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --shadow-card: 0 10px 24px rgba(0, 0, 0, 0.10);
  --shadow-card-hover: 0 16px 32px rgba(0, 0, 0, 0.16);
  --container: 1180px;
  --container-wide: 1400px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--off-white);
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.wrap-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 40px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 16px;
}

.section-head { max-width: 720px; margin: 0 0 50px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2.4rem, 4.6vw, 3.8rem); color: var(--ink); }
.section-head p { color: #5c5140; font-size: 1.18rem; }

section { position: relative; }
.section-lg { padding: 110px 0; }
.section-lg.cream { background: var(--cream); }

/* ---------- scribble accent (one recurring motif) ---------- */
.scribble-underline {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.scribble-underline::after {
  content: "";
  position: absolute;
  left: -3%;
  right: -3%;
  bottom: -0.1em;
  height: 0.3em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 24' preserveAspectRatio='none'%3E%3Cpath d='M4 14 C 40 2, 70 24, 110 12 S 180 0, 220 14 S 280 22, 296 8' stroke='%23F09360' stroke-width='7' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.9s cubic-bezier(0.65, 0, 0.35, 1) 0.2s;
}
.reveal.in .scribble-underline::after {
  transform: scaleX(1);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 15px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 20px rgba(240, 147, 96, 0.4);
}
.btn-primary:hover { background: var(--orange-dark); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.8);
}
.btn-outline-light:hover { background: #fff; color: var(--ink); }
.btn-light { background: var(--cream); color: var(--ink); }

/* ---------- announcement ticker ---------- */
.ticker {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.ticker__track {
  display: inline-flex;
  gap: 48px;
  animation: ticker 26s linear infinite;
  padding-left: 48px;
}
.ticker__track span { display: inline-flex; align-items: center; gap: 10px; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- header ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 247, 234, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  max-width: var(--container-wide);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; }
.brand-mark { width: 50px; height: auto; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.08rem;
}
.nav-links > a { position: relative; padding: 4px 0; }
.nav-links > a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.2s ease;
}
.nav-links > a:hover::after { width: 100%; }

.nav-item { position: relative; }
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--ink);
  padding: 4px 0;
}
.dropdown-toggle svg { transition: transform 0.2s ease; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: -18px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card-hover);
  padding: 12px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.nav-item:hover .dropdown-menu,
.nav-item.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-item:hover .dropdown-toggle svg,
.nav-item.open .dropdown-toggle svg { transform: rotate(180deg); }
.dropdown-menu a {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--ink);
}
.dropdown-menu a:hover { background: var(--cream); color: var(--orange-dark); }

.nav-cta { display: flex; align-items: center; gap: 18px; }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
  margin: 5px 0;
}

/* ---------- hero: full bleed ---------- */
.hero-full {
  position: relative;
  width: 100%;
  height: min(90vh, 820px);
  min-height: 520px;
  overflow: hidden;
}
.hero-full__img { width: 100%; height: 100%; object-fit: cover; }
.hero-full__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.32) 42%, rgba(0,0,0,0.02) 68%);
}
.hero-full__content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 60px 40px 64px;
  max-width: 900px;
  color: #fff;
}
.hero-full__eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
}
.hero-full h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
  margin-bottom: 0.35em;
}
.hero-logo-inline {
  height: 1.4em;
  width: auto;
  display: inline-block;
  vertical-align: -0.28em;
  border: none;
  background: none;
  box-shadow: none;
  border-radius: 0;
  animation: rough-logo-glow 3.6s ease-in-out infinite;
}
@keyframes rough-logo-glow {
  0%, 100% { filter: drop-shadow(0 0 5px rgba(240, 147, 96, 0.28)); }
  50% { filter: drop-shadow(0 0 15px rgba(240, 147, 96, 0.55)); }
}
.hero-full__content p {
  font-size: 1.28rem;
  max-width: 620px;
  color: rgba(255,255,255,0.92);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* ---------- decorative dot strip ---------- */
.pattern-strip {
  height: 46px;
  background-color: var(--cream);
  background-image:
    radial-gradient(var(--orange) 3px, transparent 3.5px),
    radial-gradient(var(--blue) 3px, transparent 3.5px),
    radial-gradient(var(--green) 3px, transparent 3.5px),
    radial-gradient(var(--pink) 3px, transparent 3.5px);
  background-size: 120px 46px, 120px 46px, 120px 46px, 120px 46px;
  background-position: 0 12px, 30px 30px, 60px 10px, 92px 26px;
  background-repeat: repeat-x;
}

/* ---------- big statement ---------- */
.statement {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 74px 32px 64px;
  text-align: center;
  background: #496b9b;
  overflow: hidden;
}
.statement__sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.statement__sparkle {
  position: absolute;
  will-change: transform;
}
.statement__sparkle img {
  display: block;
  width: 100%;
  height: auto;
  animation: sparkle-spin linear infinite;
}
.statement__sparkle--1 { top: 16%; left: 4%; width: clamp(56px, 6vw, 92px); }
.statement__sparkle--1 img { animation-duration: 22s; }
.statement__sparkle--2 { top: 68%; left: 9%; width: clamp(34px, 4vw, 54px); }
.statement__sparkle--2 img { animation-duration: 15s; animation-direction: reverse; }
.statement__sparkle--3 { top: 60%; right: 5%; width: clamp(56px, 6vw, 92px); }
.statement__sparkle--3 img { animation-duration: 19s; animation-direction: reverse; }
.statement__sparkle--4 { top: 12%; right: 10%; width: clamp(34px, 4vw, 54px); }
.statement__sparkle--4 img { animation-duration: 16s; }
@keyframes sparkle-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.statement .wrap-wide { position: relative; z-index: 2; }
.statement__text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.4rem, 6vw, 6rem);
  line-height: 1.08;
  max-width: none;
  white-space: nowrap;
  margin: 0 auto 30px;
  color: var(--cream);
}
.statement__tag {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--coral);
}

/* ---------- games: full-width alternating rows ---------- */
.game-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 0 70px;
  margin: 0 0 130px;
}
.game-row--reverse { grid-template-columns: 0.85fr 1.15fr; }
.game-row--reverse .game-row__media { order: 2; }
.game-row--reverse .game-row__text { order: 1; }
.game-row__media img {
  width: 80%;
  margin: 0 auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-hover);
}
.game-row__media--art img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  background: none;
}
.game-row__text { padding: 0 40px; }
.game-row__status {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.status-dev { color: var(--blue); }
.status-proto { color: var(--orange-dark); }
.status-draft { color: var(--pink); }
.status-soon { color: #6b6152; }
.game-row__text h3 { font-size: clamp(2rem, 3.4vw, 2.8rem); margin-bottom: 14px; }
.game-row__text p { font-size: 1.12rem; color: #5c5140; max-width: 460px; }

/* ---------- crew ---------- */
.crew-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}
.crew-copy h2 { font-size: clamp(2.4rem, 4.4vw, 3.6rem); }
.crew-copy p { color: #55493a; font-size: 1.18rem; }
.crew-names { font-size: 1.08rem; line-height: 1.8; margin: 22px 0 30px; }
.crew-visual img { border-radius: var(--radius-md); box-shadow: var(--shadow-card); }
.expr-caption { text-align: center; font-size: 0.95rem; color: #7a6f5e; margin-top: 12px; }

/* ---------- world building ---------- */
.world-row { margin: 50px 0 40px; }
.world-row.bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.world-row img { width: 100%; }
.world-captions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
  text-align: center;
}
.world-captions h4 { font-size: 1.3rem; margin-bottom: 8px; }
.world-captions p { font-size: 1rem; color: #766c5c; margin: 0; }

/* ---------- studio ---------- */
.studio-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}
.studio-layout > img { border-radius: var(--radius-lg); box-shadow: var(--shadow-card-hover); }
.studio-copy h2 { font-size: clamp(2.2rem, 3.8vw, 3.2rem); }
.studio-copy p { color: #55493a; font-size: 1.18rem; }
.feature-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.feature-list li {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.15rem;
}
.feature-list li::before {
  content: "";
  width: 10px; height: 10px; border-radius: 2px;
  background: var(--coral);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ---------- merch ---------- */
.merch-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: center;
}
.merch-wrap > img { border-radius: var(--radius-lg); box-shadow: var(--shadow-card-hover); }
.merch-copy h2 { font-size: clamp(2.2rem, 3.8vw, 3.2rem); }
.merch-copy p { color: #55493a; font-size: 1.18rem; }

/* ---------- about / founder card ---------- */
.founder-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-card);
}
.founder-row img { border-radius: var(--radius-md); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.founder-row h2 { font-size: clamp(1.9rem, 2.8vw, 2.4rem); margin-bottom: 14px; }
.founder-row p { color: #55493a; font-size: 1.1rem; }
.est-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green-dark);
  margin-bottom: 16px;
}
.pillar-word {
  font-family: var(--font-head);
  font-weight: 700;
}

/* ---------- newsletter ---------- */
.newsletter {
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-top: 6px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.newsletter h2 { font-size: clamp(2rem, 3.4vw, 2.6rem); }
.newsletter p { color: #55493a; max-width: 460px; font-size: 1.12rem; }
.nl-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  padding: 16px;
  border-radius: 22px;
  box-shadow: var(--shadow-card);
}
.nl-form__row {
  display: flex;
  gap: 10px;
}
.nl-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 13px 20px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  border-radius: 14px;
  min-width: 0;
  background: var(--off-white);
}
.nl-form .btn { width: 100%; }
.nl-note { font-size: 0.9rem; color: #8a7f6c; margin-top: 12px; }
.nl-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(240, 147, 96, 0.15);
  color: var(--orange-dark);
  padding: 14px 20px;
  border-radius: 14px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
}
.nl-error {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(180, 60, 40, 0.1);
  color: #a3402c;
  padding: 12px 18px;
  border-radius: 14px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 10px;
}
.newsletter-icon {
  position: absolute;
  opacity: 0.06;
  right: -30px;
  bottom: -30px;
  width: 260px;
}

/* ---------- footer ---------- */
footer.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(251,241,221,0.16);
}
.footer-brand { display: flex; align-items: center; margin-bottom: 16px; }
.footer-brand .brand-mark { width: 56px; }
.footer-grid p { color: rgba(251,241,221,0.72); font-size: 1rem; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-col a { color: rgba(251,241,221,0.84); font-size: 1.02rem; }
.footer-col a:hover { color: #fff; }
.social-row { display: flex; gap: 12px; margin-top: 4px; }
.social-row a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(251,241,221,0.12);
  transition: background 0.2s ease;
}
.social-row a:hover { background: var(--orange); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 0.92rem;
  color: rgba(251,241,221,0.55);
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- knight sticker (draggable easter egg) ---------- */
.knight-sticker {
  position: fixed;
  top: 16px;
  right: 210px;
  width: 88px;
  height: 88px;
  z-index: 90;
  border-radius: 50%;
  cursor: grab;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 26%, rgba(255,255,255,0.95), rgba(255,255,255,0) 42%),
    conic-gradient(from 210deg, #bfe9ff, #d8c9ff, #b6f0e6, #9fdcf5, #cfe8ff, #bfe9ff);
  box-shadow: 0 10px 22px rgba(0,0,0,0.28), inset 0 0 0 3px rgba(255,255,255,0.7);
  border: 2px solid rgba(255,255,255,0.85);
  overflow: hidden;
  transform: rotate(-6deg);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.knight-sticker:hover { transform: rotate(-2deg) scale(1.04); box-shadow: 0 14px 26px rgba(0,0,0,0.32), inset 0 0 0 3px rgba(255,255,255,0.7); }
.knight-sticker.dragging {
  cursor: grabbing;
  transition: none;
  box-shadow: 0 18px 30px rgba(0,0,0,0.35), inset 0 0 0 3px rgba(255,255,255,0.7);
}
.knight-sticker::before {
  content: "";
  position: absolute;
  inset: -60%;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,0.65) 50%, transparent 65%);
  animation: holo-shine 4.5s linear infinite;
  pointer-events: none;
}
@keyframes holo-shine {
  0% { transform: translateX(-55%) rotate(20deg); }
  100% { transform: translateX(55%) rotate(20deg); }
}
.knight-sticker img {
  width: 66%;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.3));
  pointer-events: none;
}

.knight-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.knight-modal.open { display: flex; }
.knight-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.knight-modal__box {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 44px 40px 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-card-hover);
}
.knight-modal__img { width: 110px; margin: 0 auto 18px; }
.knight-modal__box h3 { font-size: 1.5rem; margin-bottom: 12px; }
.knight-modal__box p { color: #55493a; font-size: 1.02rem; margin-bottom: 22px; }
.knight-modal__close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
  padding: 4px 8px;
}

@media (max-width: 720px) {
  .knight-sticker { top: auto; bottom: 90px; right: 18px; width: 72px; height: 72px; }
}

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-full { height: min(80vh, 640px); }
  .hero-full__content { padding: 40px 24px 44px; }
  .game-row, .game-row--reverse {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 80px;
  }
  .game-row--reverse .game-row__media, .game-row--reverse .game-row__text { order: initial; }
  .game-row__text { padding: 0; }
  .crew-layout, .studio-layout, .merch-wrap, .founder-row { grid-template-columns: 1fr; }
  .crew-visual { order: -1; }
  .studio-layout > img { order: -1; }
  .world-captions { grid-template-columns: 1fr; }
  .newsletter { grid-template-columns: 1fr; padding: 40px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16.5px; }
  .wrap-wide { padding: 0 22px; }
  .nav { padding: 14px 22px; }
  .nav-links, .nav-cta .btn-outline { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--off-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 22px 26px;
    gap: 18px;
    box-shadow: var(--shadow-card);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .nav-links.open .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 6px 0 0 12px;
    display: none;
  }
  .nav-item.open .dropdown-menu { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .nl-form { border-radius: 20px; }
  .nl-form__row { flex-direction: column; }
  .nl-form input { border-radius: 14px; padding: 12px 16px; }
}
