:root {
  --ink: #f8f0de;
  --muted: #cdbfd2;
  --gold: #f6cf55;
  --gold-2: #c99121;
  --lime: #b9ea4d;
  --green: #173d1f;
  --green-2: #0b2413;
  --purple: #321045;
  --purple-2: #17051f;
  --night: #0c0311;
  --panel: rgba(29, 9, 38, .86);
  --panel-soft: rgba(48, 16, 60, .64);
  --line: rgba(246, 207, 85, .42);
  --danger: #ff9a88;
  --paper: #fff1c7;
  --paper-ink: #40270c;
  --max: 1180px;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(0, 0, 0, .42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: dark; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 8%, rgba(113, 42, 139, .22), transparent 31rem),
    radial-gradient(circle at 88% 18%, rgba(101, 143, 36, .18), transparent 34rem),
    linear-gradient(180deg, #110418 0%, var(--night) 45%, #0a100a 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}
body::before {
  opacity: .55;
  background-image:
    radial-gradient(circle, rgba(255, 225, 124, .9) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(191, 242, 91, .8) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(242, 188, 255, .7) 0 1px, transparent 1.4px);
  background-size: 71px 71px, 113px 113px, 149px 149px;
  background-position: 0 0, 21px 38px, 73px 14px;
}
body::after {
  background: linear-gradient(90deg, rgba(80, 17, 96, .16), transparent 38%, transparent 62%, rgba(53, 90, 25, .13));
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: .7rem 1rem;
  border-radius: 999px;
  color: #15051c;
  background: var(--gold);
  font-weight: 900;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(246, 207, 85, .2);
  background: rgba(13, 3, 18, .82);
  backdrop-filter: blur(18px);
}
.nav-shell {
  width: min(calc(100% - 28px), var(--max));
  min-height: 72px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  min-width: 0;
}
.brand img {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  box-shadow: 0 0 0 1px rgba(246, 207, 85, .55), 0 8px 25px rgba(0,0,0,.35);
}
.brand-copy { min-width: 0; }
.brand strong {
  display: block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.05;
  letter-spacing: .03em;
}
.brand small {
  display: block;
  margin-top: .14rem;
  color: var(--muted);
  font-size: .72rem;
  white-space: nowrap;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.site-nav a {
  padding: .64rem .78rem;
  border-radius: 999px;
  color: #f2e8f5;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 750;
}
.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: #17071d;
  background: var(--gold);
  outline: none;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: rgba(58, 19, 70, .76);
  cursor: pointer;
}

main { display: block; }
.shell { width: min(calc(100% - 28px), var(--max)); margin-inline: auto; }
.section { padding: clamp(4rem, 8vw, 7.5rem) 0; position: relative; }
.section.compact { padding-block: 3.5rem; }
.section-kicker {
  margin: 0 0 .65rem;
  color: var(--lime);
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.section-title,
.hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  line-height: .98;
  text-wrap: balance;
}
.section-title { font-size: clamp(2.2rem, 5vw, 4.6rem); }
.section-lead {
  max-width: 760px;
  margin: 1.15rem 0 0;
  color: #e6dce9;
  font-size: clamp(1.02rem, 2vw, 1.24rem);
}

.hero {
  min-height: min(890px, calc(100vh - 72px));
  display: grid;
  align-items: center;
  padding: clamp(3rem, 8vw, 7rem) 0 5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .95fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5.5rem);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1.15rem;
  padding: .45rem .8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--lime);
  background: rgba(33, 14, 43, .65);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px var(--gold);
}
.hero h1 { font-size: clamp(3.5rem, 9vw, 7.8rem); }
.hero h1 span {
  display: block;
  margin-top: .45rem;
  color: #fdf4d9;
  font-size: .35em;
  line-height: 1.12;
  letter-spacing: .02em;
}
.hero-copy > p {
  max-width: 690px;
  margin: 1.4rem 0 0;
  color: #e9deeb;
  font-size: clamp(1.05rem, 2.2vw, 1.34rem);
}
.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: .78rem;
  margin-top: 1.8rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .82rem 1.12rem;
  border: 1px solid transparent;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .015em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-2px); outline: none; }
.button.primary {
  color: #251005;
  background: linear-gradient(180deg, #ffe58f, #efbb33);
  box-shadow: 0 13px 35px rgba(206, 142, 23, .24), inset 0 -4px 0 rgba(103, 61, 4, .22);
}
.button.secondary {
  border-color: var(--line);
  color: var(--ink);
  background: linear-gradient(180deg, rgba(106, 53, 127, .9), rgba(48, 16, 63, .9));
  box-shadow: inset 0 -3px 0 rgba(0,0,0,.22);
}
.button.ghost {
  border-color: rgba(246, 207, 85, .32);
  color: var(--gold);
  background: rgba(17, 7, 22, .52);
}
.button[aria-disabled="true"] { opacity: .62; pointer-events: none; }
.hero-note {
  margin-top: 1rem !important;
  color: var(--muted) !important;
  font-size: .89rem !important;
}
.hero-art {
  position: relative;
  justify-self: center;
  width: min(100%, 560px);
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: 7% 8%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 207, 85, .28), rgba(102, 38, 129, .14) 44%, transparent 70%);
  filter: blur(8px);
}
.hero-art img {
  width: 100%;
  border-radius: 14%;
  filter: drop-shadow(0 28px 45px rgba(0, 0, 0, .48));
}
.orbit-badge {
  position: absolute;
  right: -1rem;
  bottom: 8%;
  max-width: 190px;
  padding: .85rem 1rem;
  border: 1px solid rgba(246, 207, 85, .58);
  border-radius: 16px;
  color: #25140b;
  background: linear-gradient(145deg, #fff2bf, #e9b842);
  box-shadow: var(--shadow);
  transform: rotate(3deg);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.quote-ribbon {
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(56, 18, 72, .68), rgba(19, 52, 23, .68));
}
.quote-ribbon .shell {
  min-height: 94px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
}
.quote-ribbon img { width: 62px; height: 62px; }
.gary-quote { margin: 0; color: #fff6d7; font-family: Georgia, serif; font-size: clamp(1.05rem, 2.2vw, 1.4rem); }
.gary-quote-source { color: var(--gold); font-size: .8rem; font-weight: 900; white-space: nowrap; }

.grid { display: grid; gap: 1.25rem; }
.project-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 2.2rem; }
.project-card,
.info-card,
.character-card,
.policy-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(246, 207, 85, .28);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(50, 15, 63, .9), rgba(20, 7, 27, .92));
  box-shadow: 0 16px 48px rgba(0,0,0,.2);
}
.project-card { min-height: 440px; display: flex; flex-direction: column; }
.project-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% 20%;
  height: 70%;
  background: radial-gradient(circle, rgba(137, 204, 48, .13), transparent 65%);
  pointer-events: none;
}
.project-visual {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: #100517;
}
.project-visual img { width: 100%; height: 100%; object-fit: cover; }
.project-visual.contain img { object-fit: contain; padding: 1.4rem; }
.project-status {
  position: absolute;
  top: .85rem;
  left: .85rem;
  z-index: 2;
  padding: .38rem .62rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: #1a0a20;
  background: var(--gold);
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.project-status.dev { color: #eef9de; background: #4d7126; }
.project-copy { padding: 1.25rem; display: flex; flex: 1; flex-direction: column; }
.project-copy h3,
.character-copy h3,
.info-card h3,
.policy-card h2,
.policy-card h3 {
  margin: 0;
  color: var(--gold);
  font-family: Georgia, serif;
  line-height: 1.1;
}
.project-copy h3 { font-size: 1.65rem; }
.project-copy p { margin: .8rem 0 1rem; color: #ddd0e0; }
.project-copy .button-row { margin-top: auto; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .82fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}
.split.reverse { grid-template-columns: minmax(330px, .82fr) minmax(0, 1fr); }
.split.reverse .split-copy { order: 2; }
.split.reverse .split-media { order: 1; }
.split-copy p { color: #e2d7e5; font-size: 1.05rem; }
.split-media {
  position: relative;
  padding: 1rem;
  border: 1px solid rgba(246, 207, 85, .28);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(89, 39, 105, .35), rgba(25, 59, 29, .28));
  box-shadow: var(--shadow);
}
.split-media img { width: 100%; border-radius: 20px; }
.split-media.phone {
  width: min(100%, 390px);
  justify-self: center;
  padding: .6rem;
  border-radius: 34px;
}
.split-media.phone img { border-radius: 27px; }

.gary-feature {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  padding: clamp(1.4rem, 4vw, 3rem);
  border: 1px solid rgba(246, 207, 85, .42);
  border-radius: 34px;
  background:
    radial-gradient(circle at 15% 45%, rgba(232, 206, 67, .15), transparent 24rem),
    linear-gradient(115deg, rgba(20, 56, 25, .9), rgba(52, 15, 67, .93));
  box-shadow: var(--shadow);
}
.gary-feature img { width: 100%; filter: drop-shadow(0 20px 30px rgba(0,0,0,.38)); }
.gary-feature blockquote { margin: 1rem 0; color: #fff2bd; font-family: Georgia, serif; font-size: clamp(1.35rem, 3vw, 2.2rem); line-height: 1.18; }
.gary-feature p { color: #ece1ef; }

.character-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 2rem; }
.character-card { min-height: 440px; }
.character-card img { width: 100%; height: 255px; object-fit: contain; padding: 1.25rem 1.25rem 0; }
.character-card.frank img { object-fit: cover; object-position: top; padding: 0; }
.character-copy { padding: 1.2rem; }
.character-copy h3 { font-size: 1.55rem; }
.character-copy p { color: #ded2e1; }

.gallery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 2rem; }
.gallery-item {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(246, 207, 85, .26);
  border-radius: 22px;
  background: rgba(31, 10, 39, .8);
}
.gallery-item img { width: 100%; aspect-ratio: 530/742; object-fit: cover; }
.gallery-item figcaption { padding: .75rem .9rem; color: #eee3ef; font-size: .88rem; }

.news-strip {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
.info-card { padding: 1.35rem; }
.info-card h3 { font-size: 1.45rem; }
.info-card p { color: #dfd3e2; }
.status-list { display: grid; gap: .72rem; margin: 1rem 0 0; padding: 0; list-style: none; }
.status-list li { display: grid; grid-template-columns: 1fr auto; gap: 1rem; padding: .75rem 0; border-top: 1px solid rgba(246, 207, 85, .15); }
.status-list strong { color: var(--gold); }
.status-list span { color: var(--muted); text-align: right; }

.page-hero {
  padding: clamp(4rem, 9vw, 8rem) 0 3.5rem;
  text-align: center;
}
.page-hero h1 { font-size: clamp(3rem, 8vw, 6.7rem); }
.page-hero p { max-width: 760px; margin: 1.25rem auto 0; color: #e8ddec; font-size: 1.1rem; }
.breadcrumbs { display: flex; justify-content: center; gap: .5rem; margin-bottom: 1rem; color: var(--muted); font-size: .85rem; }
.breadcrumbs a { color: var(--gold); text-decoration: none; }

.game-detail-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.game-detail { padding: 1.35rem; border: 1px solid rgba(246, 207, 85, .25); border-radius: 22px; background: rgba(36, 11, 46, .78); }
.game-detail h3 { margin: 0; color: var(--gold); font-family: Georgia, serif; }
.game-detail p { color: #ddd1e0; }

.rules-banner {
  margin: 2.4rem auto 0;
  max-width: 980px;
  position: relative;
}
.rules-banner img { width: 100%; }
.rules-banner-copy {
  position: absolute;
  inset: 28% 17% 16%;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--paper-ink);
}
.rules-banner-copy strong { display: block; font-family: Georgia, serif; font-size: clamp(1.15rem, 3vw, 2rem); }
.rules-banner-copy span { display: block; margin-top: .15rem; font-size: clamp(.72rem, 1.7vw, 1rem); }

.book-grid {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 5rem);
}
.book-cover {
  position: sticky;
  top: 104px;
  padding: .8rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(40, 12, 51, .8);
  box-shadow: var(--shadow);
}
.book-cover img { border-radius: 20px; }
.book-copy h2 { margin: 0; color: var(--gold); font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1.05; }
.book-copy p { color: #e5dbe7; }
.meta-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; margin: 1.4rem 0; }
.meta-chip { padding: .85rem; border: 1px solid rgba(246,207,85,.22); border-radius: 15px; background: rgba(61,22,73,.55); }
.meta-chip span { display: block; color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .09em; }
.meta-chip strong { display: block; margin-top: .2rem; color: #fff0b0; }
.content-warning {
  margin-top: 1.5rem;
  padding: 1.2rem;
  border-left: 4px solid var(--danger);
  border-radius: 8px 18px 18px 8px;
  color: #fbe7e2;
  background: rgba(91, 24, 36, .36);
}
.content-warning strong { color: #ffb09e; }
.excerpt {
  margin: 1.8rem 0 0;
  padding: 1.4rem;
  border: 1px solid rgba(246,207,85,.38);
  border-radius: 20px;
  color: var(--paper-ink);
  background: linear-gradient(135deg, #fff4d0, #edcf83);
  box-shadow: 0 20px 45px rgba(0,0,0,.25);
}
.excerpt blockquote { margin: 0; font-family: Georgia, serif; font-size: 1.25rem; line-height: 1.4; }
.excerpt cite { display: block; margin-top: .8rem; font-style: normal; font-weight: 900; }

.policy-layout { display: grid; grid-template-columns: 240px minmax(0, 1fr); align-items: start; gap: 2rem; }
.policy-toc { position: sticky; top: 100px; padding: 1rem; border: 1px solid rgba(246,207,85,.22); border-radius: 18px; background: rgba(35,10,44,.78); }
.policy-toc strong { color: var(--gold); }
.policy-toc ul { margin: .7rem 0 0; padding-left: 1.1rem; }
.policy-toc a { color: #e8ddeb; text-decoration: none; font-size: .9rem; }
.policy-card { padding: clamp(1.2rem, 3vw, 2rem); }
.policy-card h2 { margin-top: 2rem; font-size: 1.8rem; scroll-margin-top: 100px; }
.policy-card h2:first-child { margin-top: 0; }
.policy-card h3 { margin-top: 1.25rem; }
.policy-card p,
.policy-card li { color: #e2d7e5; }
.policy-card a { color: var(--gold); }
.policy-card code { padding: .12rem .35rem; border-radius: 5px; color: #fff0b1; background: rgba(255,255,255,.08); }

.callout {
  padding: clamp(1.25rem, 4vw, 2.5rem);
  border: 1px solid rgba(246,207,85,.44);
  border-radius: 28px;
  background: linear-gradient(110deg, rgba(65,24,79,.94), rgba(20,55,25,.9));
  box-shadow: var(--shadow);
  text-align: center;
}
.callout h2 { margin: 0; color: var(--gold); font-family: Georgia, serif; font-size: clamp(2rem, 5vw, 4rem); }
.callout p { max-width: 720px; margin: 1rem auto 0; color: #eadfee; }
.callout .button-row { justify-content: center; }

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid rgba(246, 207, 85, .22);
  background: rgba(7, 2, 10, .72);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  gap: 2rem;
  padding: 3rem 0;
}
.footer-brand { display: flex; gap: 1rem; align-items: flex-start; }
.footer-brand img { width: 70px; border-radius: 18px; }
.footer-brand strong { color: var(--gold); font-family: Georgia, serif; font-size: 1.25rem; }
.footer-brand p { margin: .45rem 0 0; color: var(--muted); font-size: .9rem; }
.footer-column h2 { margin: 0 0 .65rem; color: var(--gold); font-family: Georgia, serif; font-size: 1rem; }
.footer-column a { display: block; width: fit-content; margin-top: .4rem; color: #e8ddea; text-decoration: none; font-size: .9rem; }
.footer-column a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 0 1.5rem; border-top: 1px solid rgba(246,207,85,.12); color: #a99bad; font-size: .8rem; }

.not-found { min-height: calc(100vh - 72px); display: grid; place-items: center; padding: 3rem 0; text-align: center; }
.not-found img { width: min(300px, 70vw); margin-inline: auto; }
.not-found h1 { margin: 1rem 0 0; color: var(--gold); font-family: Georgia, serif; font-size: clamp(3rem, 12vw, 7rem); }
.not-found p { color: #e2d7e4; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 960px) {
  .project-grid, .character-grid { grid-template-columns: 1fr 1fr; }
  .project-card:last-child, .character-card:last-child { grid-column: 1 / -1; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .game-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .nav-toggle { display: inline-grid; place-items: center; }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: .75rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(19, 5, 25, .98);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { text-align: center; }
  .hero { min-height: auto; }
  .hero-grid, .split, .split.reverse, .book-grid, .policy-layout, .news-strip { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-note { text-align: center; }
  .hero-art { width: min(100%, 480px); }
  .orbit-badge { right: 0; bottom: 3%; }
  .split.reverse .split-copy, .split.reverse .split-media { order: initial; }
  .gary-feature { grid-template-columns: 190px minmax(0,1fr); }
  .book-cover, .policy-toc { position: static; }
  .book-cover { width: min(100%, 480px); margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .section { padding-block: 4rem; }
  .brand small { display: none; }
  .hero h1 { font-size: clamp(3.2rem, 18vw, 5rem); }
  .hero-grid { gap: 2rem; }
  .hero-actions .button, .button-row .button { flex: 1 1 100%; }
  .orbit-badge { position: static; margin: -1rem auto 0; transform: rotate(1deg); }
  .quote-ribbon .shell { grid-template-columns: auto 1fr; padding-block: 1rem; }
  .gary-quote-source { grid-column: 2; }
  .project-grid, .character-grid, .gallery-grid, .meta-grid { grid-template-columns: 1fr; }
  .project-card:last-child, .character-card:last-child { grid-column: auto; }
  .gary-feature { grid-template-columns: 1fr; text-align: center; }
  .gary-feature img { width: 180px; margin-inline: auto; }
  .rules-banner-copy { inset: 28% 10% 12%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* 2026 lightweight showcase refresh */
.hero--landscape {
  min-height: auto;
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
}
.hero-copy--centred {
  max-width: 930px;
  margin-inline: auto;
  text-align: center;
}
.hero-copy--centred .hero-actions { justify-content: center; }
.hero-copy--centred > p { margin-inline: auto; }
.hero-landscape {
  position: relative;
  margin: clamp(2rem, 5vw, 4rem) auto 0;
  overflow: hidden;
  border: 1px solid rgba(246, 207, 85, .48);
  border-radius: clamp(18px, 3vw, 34px);
  background: #100517;
  box-shadow: var(--shadow);
}
.hero-landscape::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 55px rgba(0,0,0,.3);
}
.hero-landscape img { width: 100%; }
.hero-landscape figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  padding: .5rem .72rem;
  border: 1px solid rgba(246,207,85,.5);
  border-radius: 999px;
  color: #fff3c1;
  background: rgba(20,5,27,.82);
  font-size: .78rem;
  font-weight: 850;
}
.project-visual--phone img {
  object-fit: cover;
  object-position: center 14%;
}
.project-visual--logo {
  background: #f4f0e8;
}
.project-visual--logo img {
  object-fit: contain;
  padding: .35rem;
}
.portrait-stage {
  min-height: 520px;
  display: grid;
  place-items: end center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 78%, rgba(246,207,85,.23), transparent 40%),
    linear-gradient(145deg, rgba(58,21,70,.62), rgba(8,8,8,.88));
}
.portrait-stage img {
  max-height: 570px;
  object-fit: contain;
  filter: drop-shadow(0 26px 35px rgba(0,0,0,.5));
}
.character-card--transparent img {
  height: 270px;
  object-fit: contain;
  padding: .8rem .8rem 0;
  background:
    radial-gradient(circle at 50% 70%, rgba(246,207,85,.13), transparent 52%),
    #09030d;
}
.cinematic-frame {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(246,207,85,.44);
  border-radius: 32px;
  background: #120715;
  box-shadow: var(--shadow);
}
.cinematic-frame > img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.cinematic-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12,3,17,.92) 0%, rgba(12,3,17,.55) 42%, rgba(12,3,17,.08) 78%);
}
.cinematic-copy {
  position: absolute;
  left: clamp(1.2rem, 5vw, 4rem);
  top: 50%;
  z-index: 2;
  width: min(560px, calc(100% - 2.4rem));
  transform: translateY(-50%);
}
.cinematic-copy h2 {
  margin: 0;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: .96;
}
.cinematic-copy p:not(.section-kicker) {
  color: #f0e5f1;
  font-size: 1.08rem;
}
.survivor-identity {
  display: grid;
  grid-template-columns: minmax(180px, 330px) minmax(0,1fr);
  align-items: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  padding: clamp(1.2rem, 4vw, 2.5rem);
  border: 1px solid rgba(246,207,85,.35);
  border-radius: 30px;
  background: linear-gradient(125deg, rgba(54,16,68,.92), rgba(48,49,13,.72));
}
.survivor-identity img {
  width: 100%;
  max-height: 330px;
  object-fit: contain;
  border-radius: 24px;
}
.survivor-identity p { color: #e7dce9; }
.tactical-gallery {
  grid-template-columns: repeat(4, minmax(0,1fr));
  margin-top: 2rem;
}
.tactical-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(246,207,85,.26);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 72%, rgba(246,207,85,.13), transparent 45%),
    #070209;
}
.tactical-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: contain;
  padding: .35rem;
}
.tactical-card figcaption {
  padding: .8rem 1rem;
  border-top: 1px solid rgba(246,207,85,.16);
  color: #fff0b7;
  font-family: Georgia, serif;
  text-align: center;
}

@media (max-width: 960px) {
  .tactical-gallery { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 820px) {
  .survivor-identity { grid-template-columns: 1fr; text-align: center; }
  .survivor-identity img { width: min(100%, 330px); margin-inline: auto; }
  .cinematic-frame,
  .cinematic-frame > img { min-height: 500px; }
  .cinematic-frame > img { object-position: 64% center; }
  .cinematic-frame::after { background: linear-gradient(0deg, rgba(12,3,17,.96) 0%, rgba(12,3,17,.62) 55%, rgba(12,3,17,.08) 100%); }
  .cinematic-copy { top: auto; bottom: 1.4rem; transform: none; }
}

@media (max-width: 620px) {
  .hero-landscape figcaption { position: static; border: 0; border-radius: 0; text-align: center; background: rgba(20,5,27,.95); }
  .portrait-stage { min-height: 390px; }
  .portrait-stage img { max-height: 430px; }
  .tactical-gallery { grid-template-columns: 1fr 1fr; gap: .8rem; }
  .tactical-card figcaption { min-height: 3.6rem; display: grid; place-items: center; padding: .65rem .45rem; font-size: .88rem; }
  .cinematic-frame,
  .cinematic-frame > img { min-height: 470px; }
  .cinematic-copy h2 { font-size: clamp(2.25rem, 13vw, 3.5rem); }
}

/* Keep the marketing site fully readable even when JavaScript or observers are delayed. */
.js .reveal,
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}
