:root {
  --paper: #f3eadc;
  --sheet: #fff8ee;
  --ink: #1b1714;
  --mute: #5c5349;
  --navy: #141c27;
  --navy-2: #1d2836;
  --coral: #d4482b;
  --coral-2: #f06a4c;
  --teal: #1f8a78;
  --amber: #e8c15a;
  --line: #d8cbb6;
  --shadow: 0 16px 36px rgba(20, 28, 39, 0.16);
  --max: 1120px;
  --display: "Bricolage Grotesque", sans-serif;
  --text: "Newsreader", "Times New Roman", serif;
  --ui: "Outfit", sans-serif;
  --mono: "Chivo Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(900px 380px at 8% -8%, rgba(212, 72, 43, 0.08), transparent 55%),
    radial-gradient(700px 360px at 100% 0%, rgba(31, 138, 120, 0.1), transparent 50%),
    var(--paper);
  font-family: var(--text);
  font-size: 18.5px;
  line-height: 1.72;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--coral); text-underline-offset: 3px; }
a:hover { color: var(--navy); }
.wrap { width: min(var(--max), calc(100% - 28px)); margin: 0 auto; }

.skip {
  position: absolute;
  left: 10px;
  top: -48px;
  background: var(--amber);
  color: var(--navy);
  padding: 8px 12px;
  z-index: 90;
}
.skip:focus { top: 10px; }

.dock {
  position: sticky;
  top: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px 12px;
  background: var(--navy);
  border-bottom: 3px solid var(--coral);
}
.dock a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  text-decoration: none;
  font-family: var(--ui);
  font-weight: 700;
  letter-spacing: .02em;
  border-radius: 8px;
}
.btn-in {
  background: var(--coral);
  color: #fff8ee;
  box-shadow: 0 0 0 0 rgba(212, 72, 43, 0.55);
  animation: pulse 2.4s ease-in-out infinite;
}
.btn-up {
  background: var(--amber);
  color: var(--navy);
}
.btn-in:hover, .btn-up:hover { filter: brightness(1.06); color: inherit; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 72, 43, 0.45); }
  50% { box-shadow: 0 0 0 8px rgba(212, 72, 43, 0); }
}

.mast {
  background: var(--navy);
  color: var(--sheet);
}
.mast-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}
.brand b {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: .04em;
  display: block;
  line-height: 1;
}
.brand small {
  display: block;
  font-family: var(--ui);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 4px;
}
.menu-btn {
  display: none;
  background: transparent;
  color: var(--sheet);
  border: 1px solid rgba(255,248,238,.28);
  min-height: 42px;
  padding: 0 12px;
  font-family: var(--ui);
  border-radius: 8px;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-family: var(--ui);
  font-size: .92rem;
}
.nav a {
  color: #efe4d2;
  text-decoration: none;
}
.nav a:hover, .nav a.is-now { color: var(--amber); }

.rail {
  overflow: hidden;
  background: var(--coral);
  color: #fff8ee;
  font-family: var(--ui);
  font-size: .86rem;
  letter-spacing: .04em;
  border-bottom: 1px solid #9e2f18;
}
.rail-track {
  display: flex;
  width: max-content;
  gap: 42px;
  padding: 9px 0;
  animation: drift 28s linear infinite;
}
.rail-track span { white-space: nowrap; }
.rail-track b { font-weight: 700; }

@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.desk {
  background:
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 70%, #223044 100%);
  color: var(--sheet);
  padding: 36px 0 48px;
}
.desk-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: start;
}
.kicker {
  font-family: var(--ui);
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 10px;
}
.desk h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -.03em;
  margin: 0 0 14px;
}
.lede {
  font-size: 1.12rem;
  color: #d9cfc0;
  margin: 0 0 20px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}
.hero-actions a, .ghost {
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--ui);
  font-weight: 700;
  border-radius: 8px;
}
.note {
  font-family: var(--ui);
  font-size: .8rem;
  color: #b7ad9e;
}

.board {
  background: #0f1620;
  border: 1px solid rgba(232, 193, 90, .28);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.board h2 {
  font-family: var(--display);
  font-size: 1.15rem;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.live {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3ee0a0;
  box-shadow: 0 0 0 0 rgba(62, 224, 160, .6);
  animation: blink 1.6s infinite;
}
@keyframes blink {
  0%, 100% { box-shadow: 0 0 0 0 rgba(62, 224, 160, .55); }
  50% { box-shadow: 0 0 0 7px rgba(62, 224, 160, 0); }
}
.board p { color: #cfc4b4; margin: 0 0 12px; font-size: .98rem; }
.flap {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0 0 14px;
}
.flap-cell {
  min-width: 18px;
  height: 28px;
  padding: 0 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(#2a3648, #151c27);
  border-radius: 3px;
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--amber);
  animation: flip .45s ease both;
}
@keyframes flip {
  from { transform: rotateX(-80deg); opacity: 0; }
  to { transform: rotateX(0); opacity: 1; }
}
.board-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.board-actions a {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--ui);
  font-weight: 700;
  border-radius: 8px;
}
.lane {
  margin-top: 16px;
  position: relative;
  min-height: 128px;
}
.lane [data-slide] {
  display: none;
  background: #182230;
  border-left: 4px solid var(--coral);
  padding: 12px 14px;
  border-radius: 0 10px 10px 0;
}
.lane [data-slide].is-on { display: block; }
.lane strong {
  font-family: var(--display);
  display: block;
  margin-bottom: 6px;
}
.lane p { margin: 0; color: #d5cbbd; }
.lane-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.lane-nav button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #4a5563;
  padding: 0;
}
.lane-nav button.is-on { background: var(--amber); }
.arrow {
  width: auto;
  height: 32px;
  padding: 0 10px;
  border-radius: 6px;
  background: #243142;
  color: var(--sheet);
  font-family: var(--ui);
  border: 0;
}

.sheet {
  padding: 42px 0;
}
.crumb {
  font-family: var(--ui);
  font-size: .86rem;
  color: var(--mute);
  margin-bottom: 18px;
}
.crumb a { color: var(--teal); text-decoration: none; }
.prose h1, .prose h2, .prose h3 {
  font-family: var(--display);
  letter-spacing: -.02em;
  line-height: 1.2;
}
.prose h1 { font-size: clamp(1.7rem, 3.4vw, 2.45rem); margin: 0 0 .55em; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 1.4em 0 .5em; }
.prose h3 { font-size: 1.25rem; margin: 1.2em 0 .4em; }
.prose p { margin: 0 0 1em; }
.prose .drop::first-letter {
  font-family: var(--display);
  font-size: 3.1rem;
  float: left;
  line-height: .82;
  padding: 8px 8px 0 0;
  color: var(--coral);
}
.card {
  background: var(--sheet);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.ticket {
  position: relative;
  background: var(--sheet);
  border: 1.5px dashed #c9b79a;
  border-radius: 14px;
  padding: 18px 18px 18px 22px;
}
.ticket::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 6px;
  background: var(--coral);
  border-radius: 0 4px 4px 0;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cover {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}
.cover img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.list-plain { padding-left: 1.1em; }
.list-plain li { margin-bottom: .45em; }

.review {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  align-items: center;
}
.score {
  background: var(--navy);
  color: var(--sheet);
  border-radius: 14px;
  text-align: center;
  padding: 18px 10px;
}
.score b {
  font-family: var(--display);
  font-size: 2.4rem;
  display: block;
  color: var(--amber);
}
.stars { color: var(--coral); letter-spacing: 2px; }

.ask-item {
  border-bottom: 1px solid var(--line);
}
.ask-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 14px 0;
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--ink);
  cursor: pointer;
}
.ask-item .ans {
  display: none;
  padding: 0 0 14px;
  color: var(--mute);
}
.ask-item.is-open .ans { display: block; }

.event {
  background: var(--navy);
  color: var(--sheet);
  border-radius: 16px;
  padding: 22px;
}
.event span {
  font-family: var(--ui);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
}

.foot {
  background: var(--navy);
  color: #d8cfc2;
  padding: 28px 0 96px;
  font-family: var(--ui);
  font-size: .92rem;
}
.foot a { color: var(--amber); text-decoration: none; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
}
.foot h2 {
  font-family: var(--display);
  color: var(--sheet);
  font-size: 1.05rem;
}

@media (max-width: 900px) {
  .desk-grid, .grid-2, .grid-3, .review, .foot-grid {
    grid-template-columns: 1fr;
  }
  .menu-btn { display: inline-flex; align-items: center; }
  .mast { position: relative; }
  .mast-row { flex-wrap: wrap; }
  .nav {
    display: none;
    width: 100%;
    background: var(--navy-2);
    padding: 12px;
    border-radius: 12px;
    flex-direction: column;
    margin-bottom: 10px;
  }
  .nav.is-open { display: flex; }
  .desk { padding-top: 24px; }
  body { font-size: 17px; }
  .board-actions { grid-template-columns: 1fr; }
  .flap-cell { min-width: 14px; height: 24px; font-size: .62rem; }
}

@media (min-width: 901px) {
  .foot { padding-bottom: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  .rail-track, .btn-in, .live, .flap-cell { animation: none; }
}
