:root {
  --ink: #0b0b0d;
  --ink-soft: #17171a;
  --paper: #f1eee8;
  --paper-bright: #faf8f3;
  --line: rgba(11, 11, 13, .17);
  --line-light: rgba(255, 255, 255, .2);
  --muted: #77736d;
  --light-muted: #aaa7a1;
  --signal: #ff4f2e;
  --signal-dark: #c92f15;
  --font-display: "Bodoni Moda", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --font-sans: "Inter", "Noto Sans JP", sans-serif;
  --header-height: 82px;
  --shell: min(1480px, calc(100vw - 96px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.dialog-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { color: inherit; font: inherit; }
button { border: 0; }
img { display: block; max-width: 100%; }
::selection { color: white; background: var(--signal); }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 15px;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 48px;
  color: white;
  background: rgba(11, 11, 13, .92);
  border-bottom: 1px solid rgba(255, 255, 255, .11);
  backdrop-filter: blur(18px);
  transition: height .3s ease, background .3s ease;
}
.site-header.compact { --header-height: 68px; background: rgba(11, 11, 13, .97); }
.brand { display: inline-flex; align-items: center; gap: 15px; justify-self: start; }
.brand-mark {
  font-family: var(--font-sans);
  font-size: 1.38rem;
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: 1;
}
.brand-mark span { color: var(--signal); }
.brand-note {
  padding-left: 15px;
  color: #8e8e92;
  border-left: 1px solid #424247;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}
.primary-nav { display: flex; gap: clamp(24px, 3vw, 52px); }
.primary-nav a {
  position: relative;
  color: #aaa9ad;
  font-size: .69rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--signal);
  transition: right .25s ease;
}
.primary-nav a:hover { color: white; }
.primary-nav a:hover::after { right: 0; }
.search-toggle {
  display: flex;
  align-items: center;
  gap: 13px;
  justify-self: end;
  padding: 10px 0;
  color: #aaa9ad;
  background: none;
  cursor: pointer;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.search-toggle span:last-child { color: white; font-size: 1.35rem; line-height: 1; }
.search-toggle:hover { color: white; }

.search-panel {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: minmax(100px, 220px) 1fr;
  gap: 40px;
  align-items: end;
  padding: 38px max(48px, calc((100vw - 1480px) / 2));
  color: white;
  background: var(--ink-soft);
  border-bottom: 1px solid #333338;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px);
  transition: opacity .25s ease, transform .25s ease;
}
.search-panel.open { opacity: 1; pointer-events: auto; transform: none; }
.search-panel label { color: #8a898e; font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.search-row { display: flex; align-items: end; gap: 20px; }
.search-row input {
  min-width: 0;
  width: 100%;
  padding: 0 0 10px;
  color: white;
  background: none;
  border: 0;
  border-bottom: 1px solid #5e5d62;
  border-radius: 0;
  outline: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.7rem);
}
.search-row input:focus { border-bottom-color: var(--signal); }
.search-row input::placeholder { color: #57565b; }
.search-row button { padding: 10px 0; color: #a8a7ab; background: none; cursor: pointer; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(390px, .82fr) minmax(520px, 1.18fr);
  color: white;
  background: var(--ink);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  left: calc(41% - 1px);
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, .1);
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(64px, 7vw, 116px) clamp(44px, 5vw, 92px) 52px 6vw;
}
.hero-copy::before {
  content: "記録／001";
  position: absolute;
  left: 6vw;
  top: 38px;
  color: #5f5e63;
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .2em;
}
.eyebrow {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 clamp(32px, 5vh, 66px);
  color: #8d8c91;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow span:first-child::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 10px; background: var(--signal); border-radius: 50%; box-shadow: 0 0 16px rgba(255, 79, 46, .9); }
.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.75rem, 5.3vw, 6.8rem);
  font-weight: 500;
  letter-spacing: -.075em;
  line-height: 1.1;
}
.hero h1 em {
  display: inline-block;
  color: transparent;
  font-family: var(--font-display);
  font-size: 1.08em;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -.055em;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .75);
}
.hero-lead { max-width: 630px; margin: clamp(30px, 4vh, 52px) 0 0; color: #aaa9ad; font-size: clamp(.9rem, 1.05vw, 1.04rem); line-height: 2; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 35px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 190px;
  padding: 15px 18px;
  border: 1px solid transparent;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .09em;
  transition: color .22s ease, background .22s ease, border-color .22s ease, transform .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button-solid { color: white; background: var(--signal); }
.button-solid:hover { background: #ff6a4d; }
.button-ghost { color: #bbbabe; border-color: #46454a; }
.button-ghost:hover { color: white; border-color: #88868c; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 520px; margin: auto 0 0; padding-top: 44px; }
.hero-stats div { padding: 0 22px; border-left: 1px solid #333338; }
.hero-stats div:first-child { padding-left: 0; border-left: 0; }
.hero-stats dt { font-family: var(--font-display); font-size: clamp(1.75rem, 2.5vw, 2.6rem); line-height: 1; }
.hero-stats dd { margin: 8px 0 0; color: #69686d; font-size: .57rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }

.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 600px;
  padding: 0;
  background: #202024;
  cursor: pointer;
  overflow: hidden;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 30%, rgba(0,0,0,.83) 100%), linear-gradient(90deg, rgba(0,0,0,.12), transparent 45%);
}
.hero-visual::after {
  content: "記事を読む  ↗";
  position: absolute;
  right: 32px;
  top: 32px;
  z-index: 3;
  padding: 11px 14px;
  color: white;
  background: rgba(11,11,13,.65);
  border: 1px solid rgba(255,255,255,.26);
  backdrop-filter: blur(12px);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .25s ease, transform .25s ease;
}
.hero-visual:hover::after { opacity: 1; transform: none; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.8,.2,1), filter .5s ease; }
.hero-visual:hover img { transform: scale(1.025); filter: saturate(1.08); }
.hero-photo-index { position: absolute; right: 34px; bottom: 31px; z-index: 2; color: #bbbabe; font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; }
.hero-photo-index b { color: white; font-weight: 500; }
.hero-caption { position: absolute; left: clamp(28px, 4vw, 64px); right: 120px; bottom: clamp(34px, 5vw, 68px); z-index: 2; display: flex; flex-direction: column; align-items: flex-start; color: white; text-align: left; }
.hero-caption-meta { margin-bottom: 12px; color: #d0cfd2; font-size: .62rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.hero-caption strong { max-width: 760px; font-family: var(--font-display); font-size: clamp(2.4rem, 5.4vw, 6.5rem); font-weight: 500; letter-spacing: -.055em; line-height: .94; }
.hero-caption small { margin-top: 15px; color: #b4b3b7; font-size: .7rem; letter-spacing: .12em; }
.hero-rail { position: absolute; z-index: 4; right: 11px; top: 50%; margin: 0; color: rgba(255,255,255,.38); font-size: .55rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; writing-mode: vertical-rl; transform: translateY(-50%); }

.signal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 14px 48px;
  color: white;
  background: var(--signal);
  overflow: hidden;
  white-space: nowrap;
  font-size: .59rem;
  font-weight: 700;
  letter-spacing: .18em;
}
.signal-bar i { width: 4px; height: 4px; flex: none; background: white; border-radius: 50%; }

.section-shell { width: var(--shell); margin: 0 auto; }
.latest, .archive { padding-top: clamp(90px, 11vw, 170px); padding-bottom: clamp(100px, 12vw, 190px); }
.section-heading { display: grid; grid-template-columns: 1fr minmax(280px, 390px); gap: 60px; align-items: end; margin-bottom: clamp(48px, 6vw, 88px); }
.section-heading > p { margin: 0; padding-left: 30px; color: var(--muted); border-left: 1px solid var(--line); font-size: .83rem; line-height: 1.9; }
.section-kicker { margin: 0 0 16px; color: var(--signal-dark); font-size: .61rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.section-heading h2 { margin: 0; font-family: var(--font-display); font-size: clamp(3.3rem, 7vw, 8.8rem); font-weight: 500; letter-spacing: -.07em; line-height: .86; }

.editorial-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.story-card { position: relative; display: flex; min-width: 0; flex-direction: column; cursor: pointer; }
.story-card:nth-child(1) { grid-column: span 7; }
.story-card:nth-child(2) { grid-column: span 5; padding-top: clamp(70px, 9vw, 140px); }
.story-card:nth-child(3) { grid-column: 2 / span 4; margin-top: 60px; }
.story-card:nth-child(4) { grid-column: 6 / span 3; margin-top: 150px; }
.story-card:nth-child(5) { grid-column: 9 / span 4; margin-top: 65px; }
.story-media { position: relative; overflow: hidden; background: #d2cec6; }
.story-card:nth-child(1) .story-media { aspect-ratio: 1.38; }
.story-card:nth-child(2) .story-media { aspect-ratio: .94; }
.story-card:nth-child(n+3) .story-media { aspect-ratio: .9; }
.story-media::after { content: "読む ↗"; position: absolute; right: 14px; top: 14px; padding: 9px 10px; color: white; background: rgba(11,11,13,.73); font-size: .55rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; opacity: 0; transform: translateY(-8px); transition: .25s ease; }
.story-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.88); transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .35s ease; }
.story-card:hover .story-media img { transform: scale(1.035); filter: saturate(1.08); }
.story-card:hover .story-media::after { opacity: 1; transform: none; }
.story-info { display: grid; grid-template-columns: 1fr auto; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.story-index { color: #9a958d; font-size: .58rem; letter-spacing: .14em; }
.story-category { color: var(--signal-dark); font-size: .56rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; text-align: right; }
.story-title { grid-column: 1 / -1; margin: 0; font-family: var(--font-display); font-size: clamp(1.45rem, 2.4vw, 2.9rem); font-weight: 500; letter-spacing: -.04em; line-height: 1.05; }
.story-meta { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: .69rem; }

.worlds { padding: clamp(100px, 12vw, 190px) 0; color: white; background: var(--ink); }
.section-heading-light .section-kicker { color: var(--signal); }
.section-heading-light > p { color: #929196; border-color: #3a393e; }
.filter-bar { display: flex; align-items: center; justify-content: space-between; gap: 32px; margin-bottom: 35px; padding: 18px 0; border-top: 1px solid #333338; border-bottom: 1px solid #333338; }
.category-filters { display: flex; flex-wrap: wrap; gap: 7px; }
.category-filters button { padding: 9px 13px; color: #88878c; background: none; border: 1px solid transparent; cursor: pointer; font-size: .63rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; transition: .2s ease; }
.category-filters button:hover { color: white; }
.category-filters button.active { color: white; border-color: #4b4a4f; background: #202024; }
.filter-bar > p { margin: 0; color: #68676c; font-size: .62rem; letter-spacing: .08em; white-space: nowrap; }
.world-mosaic { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-flow: dense; gap: 10px; }
.world-card { position: relative; grid-column: span 4; aspect-ratio: 1.25; padding: 0; color: white; background: #232328; cursor: pointer; overflow: hidden; text-align: left; }
.world-card:nth-child(7n + 1), .world-card:nth-child(7n + 6) { grid-column: span 6; aspect-ratio: 1.6; }
.world-card:nth-child(7n + 3) { grid-column: span 3; aspect-ratio: .83; }
.world-card:nth-child(7n + 4) { grid-column: span 5; }
.world-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) brightness(.8); transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .35s ease; }
.world-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.82)); }
.world-card:hover img { transform: scale(1.045); filter: saturate(1.05) brightness(.94); }
.world-card-copy { position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: end; }
.world-card-copy strong { font-family: var(--font-display); font-size: clamp(1.18rem, 2vw, 2.05rem); font-weight: 500; letter-spacing: -.035em; line-height: 1; }
.world-card-copy small { color: #c0bec2; font-size: .55rem; letter-spacing: .1em; text-transform: uppercase; }
.text-button { display: flex; align-items: center; justify-content: space-between; width: 100%; margin-top: 26px; padding: 17px 0; background: none; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); cursor: pointer; font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.text-button.light { color: white; border-color: #333338; }
.text-button[hidden] { display: none; }

.game-feature { display: grid; grid-template-columns: 1.25fr .75fr; min-height: 700px; margin-top: clamp(90px, 12vw, 180px); margin-bottom: clamp(90px, 12vw, 180px); color: white; background: #17171a; }
.game-media { position: relative; min-height: 560px; overflow: hidden; }
.game-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, rgba(23,23,26,.5)), linear-gradient(180deg, transparent 60%, rgba(0,0,0,.5)); }
.game-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8) contrast(1.04); transition: transform 1s cubic-bezier(.2,.8,.2,1); }
.game-feature:hover .game-media img { transform: scale(1.025); }
.game-number { position: absolute; left: 25px; bottom: -35px; z-index: 2; color: transparent; font-family: var(--font-display); font-size: clamp(8rem, 18vw, 18rem); letter-spacing: -.09em; line-height: 1; -webkit-text-stroke: 1px rgba(255,255,255,.45); }
.game-copy { position: relative; display: flex; flex-direction: column; justify-content: center; padding: clamp(50px, 6vw, 100px); overflow: hidden; }
.game-copy::after { content: "777階"; position: absolute; right: -35px; top: 42px; color: #26262a; font-family: var(--font-display); font-size: clamp(6rem, 10vw, 11rem); line-height: 1; transform: rotate(90deg) translateX(100%); transform-origin: top right; }
.game-copy > * { position: relative; z-index: 1; }
.game-badge { align-self: flex-start; margin: 0 0 34px; padding: 7px 10px; color: var(--signal); border: 1px solid #4a302b; font-size: .58rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.game-copy h2 { margin: 0; font-family: var(--font-display); font-size: clamp(4rem, 8vw, 8.5rem); font-weight: 500; letter-spacing: -.075em; line-height: .78; }
.game-copy > p:not(.section-kicker):not(.game-badge) { max-width: 460px; margin: 38px 0; color: #a7a5aa; font-size: .87rem; line-height: 2; }
.button-game { max-width: 230px; color: var(--ink); background: white; }
.button-game:hover { background: var(--signal); color: white; }

.archive-list { border-top: 1px solid var(--line); }
.archive-row { display: grid; grid-template-columns: 70px 110px minmax(220px, 1fr) minmax(160px, .45fr) 52px; gap: 22px; align-items: center; min-height: 112px; padding: 18px 0; border-bottom: 1px solid var(--line); cursor: pointer; transition: padding .25s ease, color .25s ease; }
.archive-row:hover { padding-left: 12px; color: var(--signal-dark); }
.archive-no { color: #99958e; font-size: .58rem; letter-spacing: .12em; }
.archive-thumb { width: 110px; height: 74px; object-fit: cover; filter: saturate(.75); }
.archive-row:hover .archive-thumb { filter: saturate(1); }
.archive-title { margin: 0; font-family: var(--font-display); font-size: clamp(1.25rem, 2.1vw, 2rem); font-weight: 500; letter-spacing: -.035em; line-height: 1.1; }
.archive-meta { margin-top: 7px; color: var(--muted); font-size: .65rem; }
.archive-tags { display: flex; flex-wrap: wrap; gap: 5px; justify-content: flex-end; }
.archive-tags span { padding: 4px 7px; color: #7d7973; border: 1px solid var(--line); font-size: .52rem; letter-spacing: .07em; }
.archive-arrow { font-family: var(--font-display); font-size: 1.4rem; text-align: right; }
.archive-empty { padding: 80px 0; text-align: center; }
.archive-empty strong { font-family: var(--font-display); font-size: 3rem; font-weight: 500; }
.archive-empty p { color: var(--muted); }

.site-footer { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: end; padding: 80px 48px 32px; color: white; background: var(--ink); }
.footer-brand span { display: block; font-size: clamp(3.8rem, 10vw, 11rem); font-weight: 700; letter-spacing: -.085em; line-height: .74; }
.footer-brand p { margin: 30px 0 0; color: #6f6e73; font-size: .68rem; letter-spacing: .13em; }
.footer-links { display: grid; gap: 10px; justify-items: end; }
.footer-links a { color: #9e9da1; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-links a:hover { color: white; }
.footer-copy { grid-column: 1 / -1; margin: 42px 0 0; padding-top: 19px; color: #56555a; border-top: 1px solid #29292d; font-size: .56rem; letter-spacing: .12em; text-transform: uppercase; }

.article-dialog { width: min(1480px, 96vw); height: min(920px, 94svh); max-width: none; max-height: none; padding: 0; color: var(--ink); background: var(--paper-bright); border: 0; box-shadow: 0 30px 100px rgba(0,0,0,.6); overflow: hidden; }
.article-dialog::backdrop { background: rgba(5,5,7,.9); backdrop-filter: blur(12px); }
.dialog-close { position: fixed; top: max(3vh, 16px); right: max(2vw, 16px); z-index: 20; display: flex; gap: 12px; align-items: center; padding: 12px 14px; color: white; background: rgba(11,11,13,.78); border: 1px solid rgba(255,255,255,.25); cursor: pointer; font-size: .58rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; backdrop-filter: blur(10px); }
.dialog-close span { font-size: 1.2rem; line-height: 1; }
.dialog-layout { display: grid; grid-template-columns: minmax(330px, .72fr) minmax(520px, 1.28fr); height: 100%; }
.dialog-aside { position: sticky; top: 0; height: 100%; background: #1c1c20; overflow: hidden; }
.dialog-aside::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.02) 35%, rgba(0,0,0,.86)); }
.dialog-aside > img { width: 100%; height: 100%; object-fit: cover; }
.dialog-aside-copy { position: absolute; left: 34px; right: 34px; bottom: 34px; z-index: 2; color: white; }
.dialog-aside-copy p { margin: 0 0 12px; color: var(--signal); font-size: .59rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.dialog-aside-copy strong { display: block; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 4.2rem); font-weight: 500; letter-spacing: -.05em; line-height: .95; }
.dialog-aside-copy small { display: block; margin-top: 18px; color: #aaa9ad; font-size: .62rem; letter-spacing: .08em; }
.dialog-article { height: 100%; padding: clamp(50px, 6vw, 100px) clamp(38px, 7vw, 110px); overflow-y: auto; scroll-behavior: smooth; }
.dialog-header { padding-bottom: 50px; border-bottom: 1px solid var(--line); }
.dialog-header h2 { margin: 0; font-family: var(--font-display); font-size: clamp(3rem, 6vw, 6.4rem); font-weight: 500; letter-spacing: -.065em; line-height: .93; }
.dialog-header > p:last-child { max-width: 720px; margin: 27px 0 0; color: var(--muted); font-size: .88rem; line-height: 1.9; }
.dialog-body { padding-top: 50px; font-size: .95rem; line-height: 2.05; }
.dialog-body h1, .dialog-body h2, .dialog-body h3, .dialog-body h4 { margin: 2.5em 0 .8em; font-family: var(--font-display); font-weight: 500; letter-spacing: -.035em; line-height: 1.25; }
.dialog-body h2 { font-size: 2.5rem; }
.dialog-body h3 { padding-left: 18px; border-left: 3px solid var(--signal); font-size: 2rem; }
.dialog-body p { margin: 1.35em 0; }
.dialog-body ul, .dialog-body ol { padding-left: 1.3em; }
.dialog-body li { margin: .65em 0; }
.dialog-body img { width: 100%; height: auto; margin: 38px 0; }
.dialog-body a { color: var(--signal-dark); text-decoration: underline; text-underline-offset: 4px; }
.dialog-body iframe { width: 100%; aspect-ratio: 16/9; border: 0; }
.dialog-body blockquote { margin: 35px 0; padding: 25px 30px; background: #e9e5de; border-left: 2px solid var(--signal); }
.dialog-actions { margin-top: 60px; padding: 25px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.dialog-actions a { display: flex; justify-content: space-between; font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.related { margin-top: 70px; }
.related h3 { margin: 0 0 25px; font-family: var(--font-display); font-size: 2.1rem; font-weight: 500; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.related-card { padding: 0; background: none; cursor: pointer; text-align: left; }
.related-card img { width: 100%; aspect-ratio: 1.15; object-fit: cover; }
.related-card strong { display: block; margin-top: 10px; font-family: var(--font-display); font-size: 1rem; font-weight: 500; line-height: 1.15; }

.back-top { position: fixed; right: 22px; bottom: 22px; z-index: 50; width: 46px; height: 46px; color: white; background: rgba(11,11,13,.88); border: 1px solid rgba(255,255,255,.18); cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(10px); transition: .25s ease; backdrop-filter: blur(10px); }
.back-top.show { opacity: 1; pointer-events: auto; transform: none; }

@media (max-width: 1100px) {
  :root { --shell: min(100% - 48px, 1480px); }
  .site-header { padding: 0 24px; }
  .brand-note { display: none; }
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding-left: 34px; padding-right: 34px; }
  .hero-copy::before { left: 34px; }
  .hero h1 { font-size: clamp(2.8rem, 5.5vw, 4.6rem); }
  .story-card:nth-child(1), .story-card:nth-child(2) { grid-column: span 6; }
  .story-card:nth-child(3) { grid-column: 1 / span 4; }
  .story-card:nth-child(4) { grid-column: 5 / span 4; }
  .story-card:nth-child(5) { grid-column: 9 / span 4; }
  .game-feature { grid-template-columns: 1fr 1fr; }
  .archive-row { grid-template-columns: 50px 92px 1fr 42px; }
  .archive-tags { display: none; }
}

@media (max-width: 760px) {
  :root { --header-height: 68px; --shell: calc(100% - 32px); }
  .site-header { grid-template-columns: 1fr auto; height: 68px; padding: 0 16px; }
  .primary-nav { display: none; }
  .search-toggle { grid-column: 2; }
  .search-panel { top: 68px; grid-template-columns: 1fr; gap: 14px; padding: 25px 16px; }
  .search-row { gap: 12px; }
  .search-row input { font-size: 1.5rem; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero::after, .hero-rail { display: none; }
  .hero-copy { min-height: 600px; padding: 70px 22px 36px; }
  .hero-copy::before { left: 22px; top: 25px; }
  .eyebrow { margin-bottom: 40px; }
  .eyebrow span:last-child { display: none; }
  .hero h1 { font-size: clamp(2.7rem, 12.5vw, 4.4rem); }
  .hero-lead { margin-top: 30px; font-size: .86rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .button { min-width: 0; padding: 13px 14px; font-size: .65rem; }
  .hero-stats { margin-top: 55px; padding-top: 25px; }
  .hero-stats div { padding: 0 14px; }
  .hero-visual { min-height: 520px; }
  .hero-caption { left: 22px; right: 60px; bottom: 38px; }
  .hero-caption strong { font-size: clamp(2.8rem, 14vw, 5rem); }
  .hero-photo-index { right: 20px; bottom: 20px; }
  .signal-bar { gap: 22px; justify-content: flex-start; padding: 12px 16px; overflow: hidden; }
  .signal-bar span:nth-of-type(n+3), .signal-bar i:nth-of-type(n+2) { display: none; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .section-heading > p { padding-left: 18px; }
  .section-heading h2 { font-size: clamp(3.2rem, 16vw, 5.5rem); }
  .editorial-grid { gap: 34px 10px; }
  .story-card:nth-child(1), .story-card:nth-child(2) { grid-column: span 12; padding-top: 0; }
  .story-card:nth-child(3), .story-card:nth-child(4), .story-card:nth-child(5) { grid-column: span 6; margin-top: 0; }
  .story-card:nth-child(n+3) .story-media { aspect-ratio: .82; }
  .story-title { font-size: 1.5rem; }
  .filter-bar { align-items: flex-start; flex-direction: column; }
  .category-filters { flex-wrap: nowrap; width: calc(100vw - 32px); padding-bottom: 5px; overflow-x: auto; }
  .category-filters button { flex: none; }
  .world-card, .world-card:nth-child(7n + 1), .world-card:nth-child(7n + 6), .world-card:nth-child(7n + 3), .world-card:nth-child(7n + 4) { grid-column: span 6; aspect-ratio: .85; }
  .world-card:nth-child(3n + 1) { grid-column: span 12; aspect-ratio: 1.42; }
  .world-card-copy { left: 12px; right: 12px; bottom: 12px; }
  .game-feature { width: 100%; grid-template-columns: 1fr; margin-top: 90px; margin-bottom: 90px; }
  .game-media { min-height: 380px; }
  .game-copy { padding: 55px 24px 65px; }
  .game-copy h2 { font-size: 5.2rem; }
  .archive-row { grid-template-columns: 32px 76px 1fr 25px; gap: 11px; min-height: 92px; }
  .archive-thumb { width: 76px; height: 58px; }
  .archive-title { font-size: 1.12rem; }
  .archive-meta { font-size: .56rem; }
  .site-footer { grid-template-columns: 1fr; gap: 45px; padding: 65px 20px 25px; }
  .footer-brand span { font-size: 19vw; }
  .footer-links { justify-items: start; }
  .article-dialog { width: 100vw; height: 100svh; }
  .dialog-layout { grid-template-columns: 1fr; height: auto; }
  .dialog-aside { position: relative; height: 54svh; }
  .dialog-article { height: auto; padding: 50px 20px 80px; overflow: visible; }
  .dialog-close { top: 12px; right: 12px; }
  .dialog-header h2 { font-size: 3.4rem; }
  .dialog-body { font-size: .9rem; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}

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