/* Base defaults from the original site's CSS reset. No CSS build is needed. */
*, ::before, ::after, ::backdrop {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 solid;
}
html { line-height: 1.5; -webkit-text-size-adjust: 100%; tab-size: 4; -webkit-tap-highlight-color: transparent; }
body { line-height: inherit; }
h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: inherit; }
a { color: inherit; text-decoration: inherit; }
b, strong { font-weight: bolder; }
ol, ul, menu { list-style: none; }
img, svg, video, canvas, audio, iframe, embed, object { display: block; vertical-align: middle; }
img, video { max-width: 100%; height: auto; }
button, input, select, optgroup, textarea, ::file-selector-button {
  font: inherit; font-feature-settings: inherit; font-variation-settings: inherit;
  letter-spacing: inherit; color: inherit; border-radius: 0; background-color: transparent; opacity: 1;
}
button, input:where([type="button"], [type="reset"], [type="submit"]) { appearance: button; }
[hidden] { display: none !important; }
.javascript-notice { position: fixed; z-index: 200; bottom: 0; width: 100%; padding: 16px; background: #17120e; color: #f2e4c9; text-align: center; }
.javascript-notice a { text-decoration: underline; }


:root {
  --ink: #17120e;
  --paper: #e8d7b8;
  --paper-deep: #c3a77a;
  --red: #8f1d18;
  --red-bright: #b83227;
  --cream: #f2e4c9;
  --muted: #8f8069;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: "Courier New", Courier, monospace;
}
button, a { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-shell { min-height: 100vh; overflow-x: clip; }

/* Entrance */
.archive-entrance {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #110d0a;
}
.entrance-backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,7,5,.44), rgba(18,10,7,.14) 48%, rgba(10,7,5,.44)),
              url("assets/mecilla-world.png") center / cover no-repeat;
  filter: saturate(.8) contrast(1.08);
}
.door {
  position: absolute;
  top: 0;
  bottom: 0;
  width: calc(50% + 1px);
  overflow: hidden;
  background:
    linear-gradient(rgba(18,12,8,.28), rgba(18,12,8,.55)),
    repeating-linear-gradient(90deg, transparent 0 88px, rgba(232,215,184,.04) 89px 90px),
    linear-gradient(135deg, #531815, #24110d 64%, #120c09);
  box-shadow: inset 0 0 0 1px rgba(232,215,184,.12), inset 0 0 90px #0b0705;
  transition: transform 1.1s cubic-bezier(.76,0,.24,1);
}
.door::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(232,215,184,.22);
  box-shadow: inset 0 0 0 9px rgba(0,0,0,.13);
}
.door-left { left: 0; border-right: 1px solid #020201; }
.door-right { right: 0; border-left: 1px solid rgba(232,215,184,.18); }
.door-line {
  position: absolute;
  top: 50%;
  width: 24%;
  height: 1px;
  background: rgba(232,215,184,.32);
}
.door-left .door-line { left: 9%; }
.door-right .door-line { right: 9%; }
.archive-entrance.is-open .door-left { transform: translateX(-102%); }
.archive-entrance.is-open .door-right { transform: translateX(102%); }

.studio-seal {
  position: relative;
  z-index: 3;
  width: clamp(320px, 38vw, 520px);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform .35s ease, opacity .45s ease;
}
.studio-seal:hover { transform: scale(1.025); }
.studio-seal:focus-visible { outline: 2px solid var(--cream); outline-offset: 8px; }
.seal-mark {
  width: clamp(250px, 27vw, 360px);
  aspect-ratio: 1;
  transition: filter .35s ease;
  filter: drop-shadow(0 22px 45px rgba(0,0,0,.55));
}
.seal-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.studio-seal:hover .seal-mark {
  filter: drop-shadow(0 22px 45px rgba(0,0,0,.55)) drop-shadow(0 0 22px rgba(184,50,39,.34));
}
.seal-name {
  margin-right: -.28em;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.7vw, 3.25rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: .28em;
  text-shadow: 0 8px 28px rgba(0,0,0,.7);
}
.seal-instruction {
  margin-top: 8px;
  white-space: nowrap;
  color: var(--paper);
  font-size: 12px;
  letter-spacing: .22em;
  opacity: .78;
}
.archive-entrance.is-open .studio-seal { transform: scale(.82); opacity: 0; pointer-events: none; }

/* Archive */
.archive-page {
  position: relative;
  min-height: 100vh;
  background: #17120e;
}
.page-enter { animation: pageIn .55s ease both; }
@keyframes pageIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
#projects, #studio, #contact, [id^="red-reel-"] { scroll-margin-top: 76px; }
.studio-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 10px clamp(22px, 5vw, 76px);
  border-bottom: 1px solid rgba(232,215,184,.15);
  background: rgba(23,18,14,.88);
  backdrop-filter: blur(16px);
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 0;
  background: none;
  cursor: pointer;
  font: 700 17px/1 Georgia, serif;
  letter-spacing: .18em;
}
.wordmark img { width: 52px; height: 52px; object-fit: contain; }
.studio-nav nav { display: flex; gap: clamp(18px, 3vw, 44px); }
.studio-nav nav a { color: var(--paper-deep); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.studio-nav nav a:hover { color: var(--cream); }

.archive-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 9vh clamp(24px, 8vw, 130px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(23,18,14,.97) 0%, rgba(23,18,14,.84) 44%, rgba(23,18,14,.2) 100%),
    linear-gradient(0deg, #17120e 0%, transparent 22%),
    url("assets/mecilla-world.png") center right / cover no-repeat;
}
.hero-radiance {
  position: absolute;
  width: 44vw;
  height: 44vw;
  right: -7vw;
  top: -15vw;
  border-radius: 50%;
  border: 1px solid rgba(184,50,39,.18);
  box-shadow: 0 0 0 8vw rgba(184,50,39,.025), 0 0 0 16vw rgba(184,50,39,.018);
}
.archive-heading { position: relative; max-width: 760px; }
.archive-heading h1,
.section-heading h2,
.studio-statement h2,
.contact-strip h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.035em;
}
.archive-heading h1 { font-size: clamp(3.5rem, 7.4vw, 7.8rem); line-height: .92; }
.hero-lede { max-width: 610px; margin: 35px 0 28px; color: #c9b99f; font: 1.05rem/1.8 Georgia, serif; }
.text-link { display: inline-flex; gap: 16px; align-items: center; padding-bottom: 8px; border-bottom: 1px solid var(--red-bright); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.text-link span { color: var(--red-bright); }

.projects-section,
.studio-section,
.contact-strip { padding: clamp(82px, 10vw, 150px) clamp(24px, 7vw, 110px); }
.projects-section { background: var(--paper); color: var(--ink); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 55px; }
.section-heading h2 { font-size: clamp(3rem, 5vw, 5.6rem); }
.section-heading > p { max-width: 450px; margin: 0; color: #655845; font: 1rem/1.7 Georgia, serif; }
.project-grid { display: grid; grid-template-columns: minmax(0, 1.8fr) minmax(280px, .7fr); gap: clamp(22px, 3vw, 45px); }
.project-card { text-align: left; }
.red-reel-card { border: 0; padding: 0; background: transparent; cursor: pointer; }
.project-art { position: relative; aspect-ratio: 2.1 / 1; overflow: hidden; background: #3a1915; }
.project-art img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .7s ease; }
.red-reel-card:hover .project-art img { transform: scale(1.035); filter: saturate(1.1) contrast(1.04); }
.project-art::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.15), inset 0 -80px 90px rgba(15,8,6,.42); }
.project-scan { position: absolute; z-index: 1; inset: 0; opacity: .15; background: repeating-linear-gradient(0deg, transparent 0 3px, #0a0504 4px); mix-blend-mode: multiply; }
.project-status { position: absolute; z-index: 2; top: 20px; padding: 10px 13px; background: var(--paper); color: var(--red); font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.project-status { left: 20px; }
.project-meta { display: flex; justify-content: space-between; align-items: end; padding: 23px 0 14px; border-bottom: 1px solid rgba(23,18,14,.28); }
.project-meta p { margin: 0 0 7px; color: #7d6448; font-size: 12px; letter-spacing: .1em; }
.project-meta h3,
.future-card h3 { margin: 0; font: 400 clamp(2rem, 3vw, 3.7rem)/1 Georgia, serif; }
.project-arrow { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid rgba(23,18,14,.32); border-radius: 50%; font-size: 19px; transition: background .25s ease, color .25s ease; }
.red-reel-card:hover .project-arrow { background: var(--red); color: var(--cream); border-color: var(--red); }
.project-summary { max-width: 710px; margin: 17px 0 0; color: #5f513f; font: .96rem/1.65 Georgia, serif; }
.future-card { min-height: 100%; display: flex; flex-direction: column; justify-content: end; padding: clamp(28px, 4vw, 52px); border: 1px dashed rgba(23,18,14,.38); background: rgba(255,255,255,.13); color: #75634d; }
.future-mark { display: grid; place-items: center; width: 76px; height: 76px; margin-bottom: auto; border: 1px solid rgba(23,18,14,.25); border-radius: 50%; }
.future-mark span { font: 200 32px/1 sans-serif; }
.future-card > p { margin: 50px 0 10px; font-size: 11px; letter-spacing: .12em; }
.future-card > span { margin-top: 14px; font: italic .95rem/1.5 Georgia, serif; }

.studio-section { background: #201711; }
.studio-statement { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 10vw, 160px); align-items: start; }
.studio-statement h2 { font-size: clamp(3.3rem, 6vw, 6.5rem); line-height: .96; }
.studio-statement > div { border-top: 1px solid rgba(232,215,184,.28); padding-top: 28px; }
.studio-statement p { margin: 0 0 24px; color: #c8b79b; font: 1.05rem/1.75 Georgia, serif; }
.studio-statement em { color: var(--cream); }

.contact-strip { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; background: var(--red); }
.contact-strip h2 { font-size: clamp(3.3rem, 6vw, 6.4rem); line-height: .95; }
.contact-actions { display: flex; flex-direction: column; justify-content: center; align-items: stretch; gap: 13px; }
.primary-button,
.secondary-button { display: flex; align-items: center; justify-content: space-between; padding: 19px 22px; border: 1px solid var(--cream); font-size: 12px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.primary-button { background: var(--cream); color: var(--red); }
.secondary-button:hover { background: rgba(255,255,255,.08); }
.contact-actions p { margin: 12px 0 0; color: #e7c9aa; font: .9rem/1.6 Georgia, serif; }
.site-footer { display: flex; justify-content: space-between; gap: 20px; padding: 25px clamp(24px, 5vw, 76px); background: #0f0b08; color: #8f8069; font-size: 10px; letter-spacing: .12em; }
.site-footer button { border: 0; padding: 0; background: none; cursor: pointer; }
.site-footer button:hover { color: var(--cream); }

/* Red Reel game file */
.game-page { min-height: 100vh; background: var(--paper); color: var(--ink); }
.game-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 68px;
  padding: 8px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(232,215,184,.14);
  background: rgba(18,13,10,.93);
  color: var(--cream);
  backdrop-filter: blur(18px);
}
.game-wordmark { display: flex; align-items: center; gap: 10px; justify-self: start; border: 0; background: none; cursor: pointer; font: 700 14px/1 Georgia, serif; letter-spacing: .16em; }
.game-wordmark img { width: 44px; height: 44px; object-fit: contain; }
.game-nav nav { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 38px); }
.game-nav nav a { color: #b9aa91; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.game-nav nav a:hover { color: var(--cream); }
.nav-support { justify-self: end; padding: 11px 15px; border: 1px solid rgba(232,215,184,.38); color: var(--paper); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }

.game-hero { position: relative; min-height: calc(100svh - 68px); display: flex; align-items: center; overflow: hidden; background: #170906; color: var(--cream); }
.game-hero > video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.7) contrast(1.08) brightness(.68); }
.game-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,7,5,.97) 0%, rgba(15,8,6,.77) 48%, rgba(15,8,6,.16) 100%), linear-gradient(0deg, rgba(12,7,5,.7), transparent 42%); }
.surveillance-line { position: absolute; inset: 0; opacity: .12; background: repeating-linear-gradient(0deg, transparent 0 4px, #000 5px); pointer-events: none; }
.game-hero-content { position: relative; z-index: 2; width: min(940px, 90vw); padding: 7vh 0 9vh clamp(24px, 8vw, 130px); }
.game-kicker { display: flex; gap: 10px; margin-bottom: 22px; }
.game-kicker span { padding: 9px 12px; border: 1px solid rgba(184,50,39,.7); color: #f1a69c; background: rgba(143,29,24,.22); font-size: 11px; letter-spacing: .12em; }
.red-reel-mark { width: clamp(220px, 20vw, 310px); height: auto; margin-bottom: 28px; object-fit: contain; object-position: center; mix-blend-mode: screen; filter: contrast(1.08); }
.game-hero h1 { margin: 0; font: 400 clamp(3.4rem, 6.35vw, 6.8rem)/.9 Georgia, serif; letter-spacing: -.045em; text-transform: uppercase; }
.game-hero h1 em { color: #d84135; font-style: normal; }
.game-hero-content > p { max-width: 625px; margin: 28px 0; color: #d4c5ac; font: 1rem/1.7 Georgia, serif; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 29px; }
.game-primary, .game-secondary { padding: 17px 20px; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.game-primary { background: var(--red); color: var(--cream); }
.game-secondary { border: 1px solid rgba(232,215,184,.4); }
.case-overview { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: clamp(50px, 8vw, 130px); align-items: center; padding: clamp(90px, 11vw, 170px) clamp(24px, 7vw, 110px); background: var(--paper); }
.case-image { position: relative; padding: 18px; background: #c4a97f; box-shadow: 0 24px 55px rgba(72,46,26,.18); transform: rotate(-1.2deg); }
.case-image img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; filter: sepia(.12) contrast(1.03); }
.case-copy h2,
.dark-heading h2,
.gameplay-copy h2,
.feature-heading h2,
.gallery-heading h2,
.development-intro h2,
.support-section h2 { margin: 0; font: 400 clamp(3.25rem, 5.8vw, 6.4rem)/.94 Georgia, serif; letter-spacing: -.04em; }
.case-copy > p { margin: 22px 0; color: #544637; font: 1rem/1.75 Georgia, serif; }
.case-copy blockquote { margin: 32px 0 0; padding: 17px 0 17px 24px; border-left: 3px solid var(--red); color: var(--red); font: italic 1.15rem/1.5 Georgia, serif; }

.choice-section { padding: clamp(90px, 11vw, 165px) clamp(24px, 7vw, 110px); background: #17120e; color: var(--cream); }
.dark-heading { display: grid; grid-template-columns: 1fr .72fr; gap: 70px; align-items: end; margin-bottom: 58px; }
.dark-heading > p { max-width: 470px; margin: 0 0 8px; color: #bdaa8c; font: 1rem/1.7 Georgia, serif; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 42px); }
.choice-card { display: flex; flex-direction: column; min-height: 0; border: 1px solid rgba(232,215,184,.18); background: #211813; }
.choice-art { position: relative; min-height: 0; aspect-ratio: 16 / 9; overflow: hidden; }
.choice-art img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75) contrast(1.08); transition: transform .6s ease; }
.choice-card:hover .choice-art img { transform: scale(1.025); }
.choice-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(16,9,6,.65), transparent 46%); }
.choice-art > span { position: absolute; z-index: 2; bottom: 18px; left: 18px; padding: 10px 12px; background: var(--paper); color: var(--ink); font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.illegal-choice .choice-art > span { background: var(--red); color: var(--cream); }
.choice-body { display: grid; grid-template-columns: minmax(0, .8fr) minmax(240px, 1.2fr); column-gap: clamp(24px, 3vw, 48px); align-items: start; padding: clamp(28px, 3vw, 44px); }
.risk-level { grid-column: 1 / -1; color: #a9967a; font-size: 11px; letter-spacing: .12em; }
.illegal-choice .risk-level { color: #e05e52; }
.choice-body h3 { margin: 16px 0 0; font: 400 clamp(2rem, 3vw, 2.8rem)/1.05 Georgia, serif; }
.choice-body ul { grid-column: 2; display: grid; gap: 12px; margin: 16px 0 0; padding: 0; list-style: none; color: #c1b095; font: 1rem/1.5 Georgia, serif; }
.choice-body li::before { content: "—"; margin-right: 8px; color: var(--red-bright); }

.gameplay-section { display: grid; grid-template-columns: .8fr 1.2fr; min-height: 780px; background: #78201b; color: var(--cream); }
.gameplay-copy { padding: clamp(80px, 9vw, 140px) clamp(24px, 6vw, 95px); }
.gameplay-copy > p { margin: 28px 0 34px; color: #ebd2ba; font: 1rem/1.72 Georgia, serif; }
.procedure-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(232,215,184,.24); }
.procedure-list li { display: flex; align-items: center; gap: 15px; padding: 15px 0; border-bottom: 1px solid rgba(232,215,184,.18); color: #f0ddc2; font-size: 11px; letter-spacing: .07em; text-transform: uppercase; }
.procedure-list span { color: #dfa79f; }
.gameplay-screen { position: relative; min-height: 520px; overflow: hidden; background: #281611; }
.gameplay-screen video { width: 100%; height: 100%; object-fit: cover; }
.gameplay-screen::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 100px rgba(0,0,0,.5); pointer-events: none; }
.screen-label { position: absolute; z-index: 2; left: 18px; right: 18px; bottom: 18px; display: flex; justify-content: space-between; padding: 11px 13px; background: rgba(15,9,6,.82); color: #e6d2b7; font-size: 10px; letter-spacing: .11em; }
.screen-label span:last-child { color: #ed665a; }

.features-section { padding: clamp(95px, 11vw, 165px) clamp(24px, 7vw, 110px); background: var(--paper); }
.feature-heading { display: grid; grid-template-columns: 1fr .72fr; gap: 70px; align-items: end; margin-bottom: 65px; }
.feature-heading > p { margin: 0 0 5px; color: #655744; font: 1rem/1.7 Georgia, serif; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(23,18,14,.28); border-left: 1px solid rgba(23,18,14,.28); }
.feature-grid article { min-height: 240px; padding: 28px; border-right: 1px solid rgba(23,18,14,.28); border-bottom: 1px solid rgba(23,18,14,.28); }
.feature-grid article > span { color: var(--red); font-size: 11px; letter-spacing: .12em; }
.feature-grid h3 { margin: 47px 0 13px; font: 400 1.5rem/1.1 Georgia, serif; }
.feature-grid p { margin: 0; color: #655744; font: .88rem/1.55 Georgia, serif; }

.gallery-section { padding: clamp(90px, 10vw, 150px) clamp(24px, 5vw, 80px); background: #17120e; color: var(--cream); }
.gallery-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin: 0 auto 55px; max-width: 1420px; }
.gallery-heading > p { max-width: 440px; margin: 0 0 6px; color: #aa997e; font: 1rem/1.6 Georgia, serif; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; max-width: 1420px; margin: auto; }
.gallery-grid figure { position: relative; margin: 0; overflow: hidden; background: #0d0907; }
.gallery-grid .gallery-wide { grid-column: 1 / -1; }
.gallery-grid figure img,
.gallery-grid figure video { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; filter: saturate(.82); transition: transform .65s ease, filter .65s ease; }
.gallery-grid figure:hover img,
.gallery-grid figure:hover video { transform: scale(1.018); filter: saturate(1); }
.gallery-grid figcaption { position: absolute; left: 16px; bottom: 16px; padding: 10px 12px; background: rgba(15,9,6,.88); color: #ead8bc; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.gallery-ui { box-shadow: inset 0 0 0 1px rgba(184,50,39,.42); }

.development-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(55px, 8vw, 130px); padding: clamp(95px, 11vw, 165px) clamp(24px, 7vw, 110px); background: #d1ba93; }
.development-intro { position: sticky; top: 115px; align-self: start; }
.development-intro > p { max-width: 500px; margin: 28px 0 0; color: #584938; font: 1rem/1.75 Georgia, serif; }
.roadmap-list { border-top: 1px solid rgba(23,18,14,.36); }
.roadmap-list article { display: grid; grid-template-columns: 60px 1fr auto; gap: 24px; align-items: center; padding: 28px 0; border-bottom: 1px solid rgba(23,18,14,.3); }
.roman-number { display: grid; place-items: center; width: 43px; height: 43px; border: 1px solid rgba(23,18,14,.36); border-radius: 50%; color: var(--red); font: 700 13px/1 Georgia, serif; }
.roadmap-list h3 { margin: 0 0 6px; font: 400 1.65rem/1 Georgia, serif; }
.roadmap-list p { margin: 0; color: #63513e; font: .9rem/1.5 Georgia, serif; }
.road-status { padding: 9px 10px; border: 1px solid rgba(23,18,14,.3); font-size: 10px; letter-spacing: .1em; }
.road-status.active { border-color: var(--red); background: var(--red); color: var(--cream); }

.support-section { position: relative; overflow: hidden; padding: clamp(100px, 12vw, 180px) 24px; background: var(--red); color: var(--cream); text-align: center; }
.support-section > p { max-width: 720px; margin: 30px auto; color: #ebd1b9; font: 1.05rem/1.7 Georgia, serif; }
.support-reel { position: absolute; right: -8vw; top: -13vw; display: grid; place-items: center; width: 37vw; height: 37vw; border: 1px solid rgba(232,215,184,.2); border-radius: 50%; color: rgba(232,215,184,.22); font: 9vw/1 Georgia, serif; box-shadow: 0 0 0 4vw rgba(232,215,184,.025), 0 0 0 8vw rgba(232,215,184,.02); }
.support-actions { position: relative; display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.support-actions a { min-width: 230px; display: flex; justify-content: space-between; padding: 18px 20px; border: 1px solid var(--cream); font-size: 11px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.support-actions a:first-child { background: var(--cream); color: var(--red); }
.game-footer { display: flex; justify-content: space-between; gap: 20px; padding: 25px clamp(24px, 5vw, 75px); background: #0d0907; color: #8f8069; font-size: 10px; letter-spacing: .11em; }
.game-footer button { border: 0; padding: 0; background: none; color: var(--paper); cursor: pointer; }

@media (max-width: 820px) {
  .studio-nav { min-height: 66px; }
  .studio-nav nav { gap: 15px; }
  .studio-nav nav a { font-size: 11px; }
  .archive-hero { min-height: 72vh; background-position: 64% center; }
  .archive-heading h1 { font-size: clamp(3.15rem, 13vw, 6rem); }
  .section-heading { align-items: start; flex-direction: column; }
  .project-grid { grid-template-columns: 1fr; }
  .future-card { min-height: 330px; }
  .studio-statement,
  .contact-strip { grid-template-columns: 1fr; }
  .site-footer { flex-wrap: wrap; }
  .game-nav { grid-template-columns: 1fr auto; }
  .game-nav nav { display: none; }
  .game-wordmark span { display: none; }
  .game-hero-content { padding-left: 7vw; }
  .case-overview { grid-template-columns: 1fr; }
  .case-copy { max-width: 680px; }
  .dark-heading,
  .feature-heading { grid-template-columns: 1fr; gap: 24px; }
  .choice-grid { grid-template-columns: 1fr; }
  .choice-card { min-height: 0; }
  .gameplay-section { grid-template-columns: 1fr; }
  .gameplay-screen { min-height: 62vw; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .development-section { grid-template-columns: 1fr; }
  .development-intro { position: static; }
  .game-footer { flex-wrap: wrap; }
}

@media (max-width: 560px) {
  .studio-seal { width: min(88vw, 380px); gap: 10px; }
  .seal-mark { width: min(64vw, 270px); }
  .seal-name { font-size: clamp(1.8rem, 10vw, 2.6rem); }
  .seal-instruction { margin-top: 6px; font-size: 11px; }
  .wordmark span { display: none; }
  .studio-nav nav { gap: 13px; }
  .archive-hero { padding-top: 70px; }
  .hero-lede { font-size: .97rem; }
  .project-status { top: 10px; padding: 8px 10px; font-size: 10px; }
  .project-status { left: 10px; }
  .project-art { aspect-ratio: 1.45 / 1; }
  .studio-statement h2,
  .contact-strip h2 { font-size: 3rem; }
  .game-hero { min-height: calc(100svh - 68px); }
  .game-hero-content { width: 92vw; padding-left: 6vw; }
  .game-hero h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .game-kicker { flex-direction: column; align-items: flex-start; }
  .red-reel-mark { width: 185px; height: auto; }
  .choice-body { grid-template-columns: 1fr; }
  .choice-body ul { grid-column: 1; }
  .choice-art { min-height: 260px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid article { min-height: 200px; }
  .gallery-heading { align-items: start; flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gallery-wide { grid-column: auto; }
  .roadmap-list article { grid-template-columns: 48px 1fr; }
  .road-status { grid-column: 2; justify-self: start; }
  .game-footer { 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; }
}
