:root {
  --ink: #102126;
  --ink-2: #17343c;
  --paper: #f4efe4;
  --paper-2: #fffaf1;
  --line: #ddcfb8;
  --amber: #e4a322;
  --coral: #e85d34;
  --sea: #1f7f79;
  --muted: #5d6c71;
  --serif: "Newsreader", "Iowan Old Style", Georgia, serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --shadow: 0 18px 40px rgba(8, 18, 22, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(1200px 500px at 90% -10%, rgba(228, 163, 34, 0.16), transparent 55%),
    linear-gradient(180deg, #0d1c21 0%, var(--ink) 280px);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input { font: inherit; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; letter-spacing: -0.03em; line-height: 1.12; margin: 0 0 0.6em; }

.gd-skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--amber);
  color: var(--ink);
  padding: 8px 12px;
  z-index: 50;
}
.gd-skip:focus { top: 12px; }

.gd-ribbon {
  overflow: hidden;
  background: var(--amber);
  color: var(--ink);
  border-bottom: 3px solid var(--coral);
}
.gd-ribbon-track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  padding: 0.55rem 0;
  animation: gd-slip 32s linear infinite;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.gd-ribbon-sea { background: var(--sea); color: #f4fffd; border-bottom: 0; border-top: 0; }
.gd-ribbon-sea .gd-ribbon-track { animation-duration: 46s; animation-direction: reverse; font-family: var(--sans); letter-spacing: 0.14em; font-weight: 600; }
@keyframes gd-slip { to { transform: translateX(-50%); } }

.gd-top {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  padding: 12px 18px;
  background: rgba(16, 33, 38, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(244, 239, 228, 0.12);
}
.gd-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: auto;
}
.gd-mark {
  width: 42px;
  height: 42px;
  border: 2px solid var(--amber);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -0.04em;
}
.gd-brand small { display: block; color: var(--amber); letter-spacing: 0.16em; font-size: 0.68rem; text-transform: uppercase; }
.gd-brand strong { font-size: 1.05rem; font-weight: 650; }
.gd-nav { display: flex; gap: 16px; align-items: center; }
.gd-nav a { text-decoration: none; font-size: 0.95rem; color: #efe7d8; }
.gd-nav a:hover { color: var(--amber); }
.gd-actions { display: flex; gap: 8px; }
.gd-menu { display: none; }
.gd-menu summary {
  list-style: none;
  cursor: pointer;
  padding: 8px 0;
  font-weight: 600;
}
.gd-menu summary::-webkit-details-marker { display: none; }
.gd-menu a { display: block; padding: 8px 0; text-decoration: none; border-top: 1px solid rgba(244, 239, 228, 0.12); }

.gd-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 650;
  letter-spacing: 0.01em;
  border: 0;
  cursor: pointer;
}
.gd-cta-in { background: var(--paper); color: var(--ink); }
.gd-cta-up { background: var(--coral); color: white; animation: gd-glow 2.6s ease-in-out infinite; }
.gd-cta-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
@keyframes gd-glow {
  50% { box-shadow: 0 0 0 6px rgba(232, 93, 52, 0.28); }
}
.gd-cta:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

.gd-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  margin: 28px auto 10px;
}
.gd-kicker {
  font-family: var(--mono);
  color: var(--amber);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin: 0 0 12px;
}
.gd-hero h1 { font-size: clamp(2.35rem, 5.2vw, 4.4rem); color: var(--paper); max-width: 9em; }
.gd-hero h1 em { font-style: italic; color: var(--amber); font-weight: 500; }
.gd-lead { font-family: var(--serif); font-size: 1.25rem; line-height: 1.55; max-width: 38ch; color: #efe6d4; }
.gd-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.gd-hero-actions .gd-cta { min-height: 54px; padding: 0 22px; font-size: 1.05rem; }

.gd-ticket {
  background: var(--paper-2);
  color: var(--ink);
  border-radius: 22px;
  padding: 22px 22px 18px;
  box-shadow: var(--shadow);
  position: relative;
  transform: rotate(-1.1deg);
}
.gd-ticket::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: -7px;
  height: 14px;
  background: radial-gradient(circle, #0d1c21 5px, transparent 6px);
  background-size: 20px 14px;
  background-repeat: repeat-x;
}
.gd-ticket p { margin: 0 0 8px; }
.gd-ticket .gd-url {
  font-family: var(--mono);
  font-size: clamp(1rem, 2vw, 1.25rem);
  background: #102126;
  color: var(--paper);
  padding: 14px 12px;
  border-radius: 12px;
  word-break: break-all;
  margin: 12px 0;
}
.gd-ticket-row { display: flex; flex-wrap: wrap; gap: 8px; }
.gd-fine { color: var(--muted); font-size: 0.86rem; margin-top: 10px; }

.gd-stage { width: min(1120px, calc(100% - 32px)); margin: 22px auto 8px; }
.gd-stage-head { display: flex; justify-content: space-between; gap: 12px; align-items: end; margin-bottom: 12px; }
.gd-stage-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 0; }
.gd-arrows { display: flex; gap: 8px; }
.gd-arrows button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(244, 239, 228, 0.3);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}
.gd-reel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.gd-reel::-webkit-scrollbar { display: none; }
.gd-card {
  scroll-snap-align: start;
  flex: 0 0 min(320px, 82vw);
  background: var(--ink-2);
  border: 1px solid rgba(244, 239, 228, 0.12);
  border-radius: 20px;
  padding: 18px 18px 20px;
  min-height: 220px;
}
.gd-card span {
  font-family: var(--mono);
  color: var(--amber);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
.gd-card h3 { font-size: 1.7rem; margin: 10px 0; }
.gd-card p { margin: 0; color: #e7decd; font-family: var(--serif); font-size: 1.08rem; line-height: 1.5; }

.gd-sheet {
  width: min(1080px, calc(100% - 32px));
  margin: 22px auto;
  background: var(--paper);
  color: var(--ink);
  border-radius: 28px;
  padding: clamp(20px, 4vw, 56px);
  box-shadow: var(--shadow);
}
.gd-crumbs ol { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0 0 22px; font-size: 0.92rem; }
.gd-crumbs li:not(:last-child)::after { content: "/"; margin-left: 8px; color: var(--muted); }
.gd-crumbs a { color: var(--sea); }
.gd-toc { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0 28px; }
.gd-toc a {
  text-decoration: none;
  background: #efe6d4;
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.92rem;
}
.gd-cover { width: 100%; border-radius: 18px; margin: 8px 0 22px; }
.gd-prose { font-family: var(--serif); font-size: 1.14rem; line-height: 1.72; }
.gd-prose h2 { font-size: clamp(1.8rem, 3vw, 2.55rem); margin-top: 1.4em; }
.gd-prose h3 { font-size: 1.45rem; margin-top: 1.2em; }
.gd-prose p { max-width: 68ch; }
.gd-prose ol, .gd-prose ul { max-width: 68ch; padding-left: 1.2em; }
.gd-prose li { margin: 0.35em 0; }
.gd-drop::first-letter {
  font-family: var(--serif);
  float: left;
  font-size: 3.4rem;
  line-height: 0.8;
  padding-right: 8px;
  color: var(--coral);
  font-weight: 600;
}
.gd-pull {
  margin: 22px 0;
  padding: 8px 0 8px 16px;
  border-left: 4px solid var(--coral);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.45rem;
  line-height: 1.35;
  max-width: 28ch;
}
.gd-table-wrap { overflow-x: auto; margin: 16px 0 24px; }
table { width: 100%; border-collapse: collapse; font-family: var(--sans); font-size: 0.98rem; min-width: 520px; }
th, td { text-align: left; padding: 12px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.gd-by { font-family: var(--sans); color: var(--muted); font-size: 0.92rem; }

.gd-score {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  align-items: center;
  background: #efe6d4;
  border-radius: 20px;
  padding: 16px;
  margin: 12px 0 18px;
}
.gd-score b { display: block; font-family: var(--serif); font-size: 4rem; line-height: 0.9; letter-spacing: -0.04em; }
.gd-score b span { font-size: 1.2rem; color: var(--muted); }
.gd-bars { list-style: none; padding: 0; margin: 0; }
.gd-bars li { display: grid; grid-template-columns: 140px 1fr 36px; gap: 8px; align-items: center; margin: 6px 0; font-family: var(--sans); font-size: 0.92rem; }
.gd-bars i { display: block; height: 8px; background: #e4d8c2; border-radius: 99px; }
.gd-bars i span { display: block; height: 100%; background: var(--sea); border-radius: 99px; }

.gd-event {
  border: 1.5px dashed var(--ink);
  border-radius: 18px;
  padding: 16px 18px;
  margin-top: 8px;
}
.gd-event dl { display: grid; grid-template-columns: 120px 1fr; gap: 6px 10px; margin: 10px 0 0; }
.gd-event dt { font-family: var(--sans); color: var(--muted); font-size: 0.85rem; }
.gd-event dd { margin: 0; font-family: var(--serif); }

.gd-faq details {
  border-top: 1px solid var(--line);
  padding: 12px 0;
}
.gd-faq summary { cursor: pointer; font-family: var(--serif); font-size: 1.25rem; font-weight: 600; }
.gd-faq details p { max-width: 68ch; }

.gd-foot {
  width: min(1080px, calc(100% - 32px));
  margin: 10px auto 40px;
  padding: 8px 8px 20px;
  color: #d9d0c0;
  font-size: 0.92rem;
}
.gd-langs { display: flex; flex-wrap: wrap; gap: 12px; margin: 8px 0 14px; }
.gd-langs a { color: var(--amber); }
.gd-age {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--coral);
  border-radius: 50%;
  color: var(--coral);
  font-weight: 700;
  margin-right: 8px;
}

.gd-dock {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  gap: 8px;
  padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
  background: rgba(16, 33, 38, 0.96);
  border-top: 1px solid rgba(244, 239, 228, 0.16);
}
.gd-dock .gd-cta { flex: 1; }

@media (max-width: 860px) {
  .gd-nav { display: none; }
  .gd-menu { display: block; width: 100%; order: 5; }
  .gd-hero { grid-template-columns: 1fr; }
  .gd-ticket { transform: none; }
  .gd-score { grid-template-columns: 1fr; }
  .gd-bars li { grid-template-columns: 1fr; }
  .gd-event dl { grid-template-columns: 1fr; }
  .gd-dock { display: flex; }
  body { padding-bottom: 84px; }
  .gd-foot { margin-bottom: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .gd-ribbon-track, .gd-cta-up { animation: none; }
  html { scroll-behavior: auto; }
}

@media print {
  .gd-dock, .gd-ribbon, .gd-actions, .gd-arrows { display: none !important; }
  body { background: white; color: black; }
  .gd-sheet { box-shadow: none; }
}
