@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Jost:wght@300;400;500;600&family=Libre+Baskerville:wght@400;700&family=Noto+Sans+JP:wght@400;500;600;700&family=Noto+Serif+JP:wght@400;500;600;700&family=Shippori+Mincho:wght@400;500;600;700&display=swap");

:root {
  --ink: #0b0a09;
  --ink-2: #171310;
  --paper: #f7f3ea;
  --paper-2: #ebe3d5;
  --line: rgba(20, 16, 12, 0.14);
  --line-dark: rgba(255, 255, 255, 0.16);
  --gold: #c5963f;
  --gold-2: #f2d27c;
  --red: #b43b32;
  --green: #2e6a5f;
  --muted: #786e62;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html.lenis,
html.lenis body {
  height: auto;
}

html.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

html.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  --cursor-x: 76%;
  --cursor-y: 28%;
  --story-bg: #f7f3ea;
  --story-glow-a: rgba(180, 59, 50, 0.16);
  --story-glow-b: rgba(197, 150, 63, 0.12);
  margin: 0;
  background:
    radial-gradient(circle at var(--cursor-x) var(--cursor-y), var(--story-glow-a), transparent min(42rem, 70vw)),
    radial-gradient(circle at 8% 88%, var(--story-glow-b), transparent min(34rem, 64vw)),
    var(--story-bg);
  color: var(--ink);
  font-family: "Inter", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.6;
  transition:
    background-color 900ms ease,
    color 400ms ease;
  overflow-x: hidden;
}

.story-paint-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.58;
  mix-blend-mode: multiply;
}

.story-paint-canvas canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.topbar,
main,
.footer {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(11, 10, 9, 0.92);
  color: var(--white);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  display: block;
  width: auto;
  height: 44px;
  max-width: min(220px, 42vw);
  object-fit: contain;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(242, 210, 124, 0.7);
  border-radius: 50%;
  color: var(--gold-2);
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0;
}

.brand strong {
  font-size: 0.95rem;
}

.brand small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  flex: 1;
  font-size: 0.9rem;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.78);
}

.main-nav a:hover {
  color: var(--white);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1.2;
}

.nav-cta {
  background: var(--gold);
  color: #120d08;
  font-size: 0.88rem;
}

.button.primary {
  background: var(--gold);
  color: #120d08;
}

.button.secondary {
  border-color: rgba(11, 10, 9, 0.24);
  color: var(--ink);
}

.hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button.secondary-light {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100svh - 190px);
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
}

.hero-contact {
  min-height: 440px;
  background:
    linear-gradient(90deg, rgba(11, 10, 9, 0.88), rgba(11, 10, 9, 0.42)),
    url("bg-results.jpg") center / cover;
}

.contact-hero-content {
  max-width: 900px;
}

.story-scene {
  position: relative;
  isolation: isolate;
}

.story-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 40%),
    radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(242, 210, 124, 0.08), transparent 36rem);
  opacity: var(--scene-light, 0.4);
  transition: opacity 700ms ease;
}

.hero.story-scene::after {
  z-index: 0;
  background:
    radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(242, 210, 124, 0.16), transparent 34rem),
    linear-gradient(180deg, transparent 62%, rgba(11, 10, 9, 0.34));
}

.hero-content {
  position: relative;
  z-index: 1;
}

body.motion-enhanced .story-item {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(10px);
  transition:
    opacity 780ms ease,
    transform 780ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 780ms ease;
}

body.motion-enhanced .story-item.is-in-view {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

body.motion-enhanced .hero-media,
body.motion-enhanced .hero-video-stage,
body.motion-enhanced [class*="hero-image-"] .hero-media {
  transform: scale(calc(1.03 + var(--scene-shift, 0) * 0.025));
  transition: transform 600ms ease-out;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(11, 10, 9, 0.9) 0%, rgba(11, 10, 9, 0.72) 38%, rgba(11, 10, 9, 0.36) 100%),
    linear-gradient(0deg, rgba(11, 10, 9, 0.84) 0%, rgba(11, 10, 9, 0) 44%),
    url("bg-series-clean.jpg");
  background-size: cover;
  background-position: center;
}

.hero-event-nagano .hero-media {
  background-image:
    linear-gradient(90deg, rgba(11, 10, 9, 0.9) 0%, rgba(11, 10, 9, 0.66) 42%, rgba(11, 10, 9, 0.28) 100%),
    linear-gradient(0deg, rgba(11, 10, 9, 0.86) 0%, rgba(11, 10, 9, 0) 46%),
    var(--hero-photo, url("hero-go-nagano-champion.jpg"));
  background-position: var(--hero-position, center 46%);
}

.hero-event-toyama .hero-media {
  background-image:
    linear-gradient(90deg, rgba(11, 10, 9, 0.9) 0%, rgba(11, 10, 9, 0.64) 42%, rgba(11, 10, 9, 0.24) 100%),
    linear-gradient(0deg, rgba(11, 10, 9, 0.86) 0%, rgba(11, 10, 9, 0) 46%),
    var(--hero-photo, url("hero-go-toyama-champion.jpg"));
  background-position: var(--hero-position, center 48%);
}

.hero-event-tokyo .hero-media {
  background-image:
    linear-gradient(90deg, rgba(11, 10, 9, 0.9) 0%, rgba(11, 10, 9, 0.66) 42%, rgba(11, 10, 9, 0.26) 100%),
    linear-gradient(0deg, rgba(11, 10, 9, 0.86) 0%, rgba(11, 10, 9, 0) 46%),
    var(--hero-photo, url("hero-tokyo-champion.jpg"));
  background-position: var(--hero-position, center 44%);
}

.hero-event-nara .hero-media {
  background-image:
    linear-gradient(90deg, rgba(11, 10, 9, 0.9) 0%, rgba(11, 10, 9, 0.64) 44%, rgba(11, 10, 9, 0.22) 100%),
    linear-gradient(0deg, rgba(11, 10, 9, 0.86) 0%, rgba(11, 10, 9, 0) 48%),
    var(--hero-photo, url("bg-series-clean.jpg"));
  background-position: var(--hero-position, center 54%);
}

.hero-event-photo-nagano-2026 {
  --hero-photo: url("hero-event-nagano-2026.jpg");
  --hero-position: center 48%;
}

.hero-event-photo-toyama-2026 {
  --hero-photo: url("hero-event-toyama-2026.jpg");
  --hero-position: center 48%;
}

.hero-event-photo-kagoshima-2026 {
  --hero-photo: url("hero-event-kagoshima-2026.jpg");
  --hero-position: center 48%;
}

.hero-event-photo-tokyo-2026 {
  --hero-photo: url("hero-event-tokyo-2026.jpg");
  --hero-position: center 50%;
}

.hero-event-photo-grand-final-osaka-2025-26 {
  --hero-photo: url("hero-event-grand-final-osaka-2025-26.jpg");
  --hero-position: center 48%;
}

.hero-event-photo-osaka-2025 {
  --hero-photo: url("hero-event-osaka-2025.jpg");
  --hero-position: center 46%;
}

.hero-event-photo-toyama-2025 {
  --hero-photo: url("hero-event-toyama-2025.jpg");
  --hero-position: center 44%;
}

.hero-event-photo-fukuoka-2025 {
  --hero-photo: url("hero-event-fukuoka-2025.jpg");
  --hero-position: center 48%;
}

.hero-event-photo-tokyo-2025 {
  --hero-photo: url("hero-event-tokyo-2025.jpg");
  --hero-position: center 42%;
}

.hero-event-photo-kanazawa-2025 {
  --hero-photo: url("hero-event-kanazawa-2025.jpg");
  --hero-position: center 48%;
}

.hero-event-photo-nagoya-2024 {
  --hero-photo: url("hero-event-nagoya-2024.jpg");
  --hero-position: center 48%;
}

.hero-event-photo-kagawa-2024 {
  --hero-photo: url("hero-event-kagawa-2024.jpg");
  --hero-position: center 48%;
}

.hero-event-photo-tokyo-2024 {
  --hero-photo: url("hero-event-tokyo-2024.jpg");
  --hero-position: center 47%;
}

.hero-event-photo-fukuoka-2024 {
  --hero-photo: url("hero-event-fukuoka-2024.jpg");
  --hero-position: center 50%;
}

.hero-event-photo-osaka-2024 {
  --hero-photo: url("hero-event-osaka-2024.jpg");
  --hero-position: center 48%;
}

.hero-event-photo-osaka-2023 {
  --hero-photo: url("hero-event-osaka-2023.jpg");
  --hero-position: center 50%;
}

.hero-image-tournament-go-nara-01 {
  --hero-photo: url("hero-go-nara-01-winner-photo.jpg");
  --hero-position: center 44%;
}

.hero-image-tournament-go-nara-02 {
  --hero-photo: url("hero-go-nara-02-winner-photo.jpg");
  --hero-position: center 44%;
}

.hero-image-tournament-go-nara-03 {
  --hero-photo: url("hero-go-nara-03-winner-photo.jpg");
  --hero-position: center 44%;
}

.hero-image-tournament-go-nara-04 {
  --hero-photo: url("hero-go-nara-04-winner-photo.jpg");
  --hero-position: center 44%;
}

.hero-image-tournament-go-nara-05 {
  --hero-photo: url("hero-go-nara-05-winner-photo.jpg");
  --hero-position: center 44%;
}

.hero-image-tournament-go-nara-07 {
  --hero-photo: url("hero-go-nara-07-winner-photo.jpg");
  --hero-position: center 44%;
}

.hero-image-tournament-go-nara-08 {
  --hero-photo: url("hero-go-nara-08-winner-photo.jpg");
  --hero-position: center 44%;
}

.hero-image-tournament-go-nara-09 {
  --hero-photo: url("hero-go-nara-09-winner-photo.jpg");
  --hero-position: center 44%;
}

.hero-image-tournament-go-nara-10 {
  --hero-photo: url("hero-go-nara-10-winner-photo.jpg");
  --hero-position: center 44%;
}

.hero-image-tournament-go-nara-11 {
  --hero-photo: url("hero-go-nara-11-winner-photo.jpg");
  --hero-position: center 44%;
}

.hero-image-tournament-go-nara-12 {
  --hero-photo: url("hero-go-nara-12-winner-photo.jpg");
  --hero-position: center 44%;
}

.hero-image-tournament-go-nagano-01 {
  --hero-photo: url("hero-go-nagano-01.jpg");
  --hero-position: center 44%;
}

.hero-image-tournament-go-nagano-02 {
  --hero-photo: url("hero-go-nagano-02.jpg");
  --hero-position: center 50%;
}

.hero-image-tournament-go-nagano-03 {
  --hero-photo: url("hero-go-nagano-03.jpg");
  --hero-position: center 46%;
}

.hero-image-tournament-go-nagano-04 {
  --hero-photo: url("hero-go-nagano-04.jpg");
  --hero-position: center 48%;
}

.hero-image-tournament-go-nagano-05 {
  --hero-photo: url("hero-go-nagano-05.jpg");
  --hero-position: center 44%;
}

.hero-image-tournament-go-nagano-06 {
  --hero-photo: url("hero-go-nagano-06.jpg");
  --hero-position: center 46%;
}

.hero-image-tournament-go-nagano-07 {
  --hero-photo: url("hero-go-nagano-07.jpg");
  --hero-position: center 50%;
}

.hero-image-tournament-go-nagano-08 {
  --hero-photo: url("hero-go-nagano-08.jpg");
  --hero-position: center 50%;
}

.hero-image-tournament-go-nagano-09 {
  --hero-photo: url("hero-go-nagano-09.jpg");
  --hero-position: center 48%;
}

.hero-image-tournament-go-nagano-10 {
  --hero-photo: url("hero-go-nagano-10.jpg");
  --hero-position: center 45%;
}

.hero-image-tournament-go-nagano-11 {
  --hero-photo: url("hero-go-nagano-11.jpg");
  --hero-position: center 45%;
}

.hero-image-tournament-go-nagano-12 {
  --hero-photo: url("hero-go-nagano-12.jpg");
  --hero-position: center 48%;
}

.hero-image-tournament-go-nagano-13 {
  --hero-photo: url("hero-go-nagano-13.jpg");
  --hero-position: center 48%;
}

.hero-image-tournament-go-nagano-14 {
  --hero-photo: url("hero-go-nagano-14.jpg");
  --hero-position: center 52%;
}

.hero-image-tournament-go-nagano-15 {
  --hero-photo: url("hero-go-nagano-15.jpg");
  --hero-position: center 44%;
}

.hero-video-stage {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.hero-video-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 10, 9, 0.92) 0%, rgba(11, 10, 9, 0.72) 42%, rgba(11, 10, 9, 0.42) 100%),
    linear-gradient(0deg, rgba(11, 10, 9, 0.86) 0%, rgba(11, 10, 9, 0) 48%);
}

.hero-video-bg,
.hero-video-card {
  position: absolute;
  display: block;
  object-fit: cover;
}

.hero-video-bg {
  inset: -8%;
  width: 116%;
  height: 116%;
  filter: blur(28px) saturate(0.9) brightness(0.54);
  transform: scale(1.08);
}

.hero-video-card {
  top: clamp(34px, 6vw, 72px);
  right: clamp(26px, 7vw, 110px);
  height: min(66svh, 680px);
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(242, 210, 124, 0.34);
  border-radius: 8px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42);
  opacity: 0.92;
}

.hero-content {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(44px, 7vw, 90px) 0 24px;
  color: var(--white);
}

.hero-home .hero-content {
  padding-right: min(34vw, 430px);
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3.2rem, 8.2vw, 7.7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-event h1 {
  max-width: 760px;
  font-size: clamp(2.45rem, 5.8vw, 5.2rem);
}

.hero-lead {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.featured-event {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  width: min(880px, 100%);
  margin-top: clamp(24px, 4vw, 42px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(11, 10, 9, 0.62);
  box-shadow: var(--shadow);
}

.hero-home .featured-event {
  margin-top: clamp(58px, 8.5vw, 128px);
}

.featured-event h2 {
  margin: 12px 0 4px;
  font-size: clamp(1.35rem, 3vw, 2.4rem);
  line-height: 1.1;
}

.featured-event p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.featured-event-title {
  display: flex;
  align-items: center;
  gap: 16px;
}

.go-mini-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.38));
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status.upcoming {
  background: rgba(197, 150, 63, 0.16);
  color: var(--gold-2);
  border: 1px solid rgba(242, 210, 124, 0.36);
}

.section-light .status.upcoming,
.event-card .status.upcoming,
.schedule-item .status.upcoming {
  color: #8a5d10;
}

.status.live {
  background: rgba(180, 59, 50, 0.16);
  color: #ffb0a9;
  border: 1px solid rgba(180, 59, 50, 0.42);
}

.event-card .status.live {
  color: #9f2a22;
}

.status.finished {
  background: rgba(46, 106, 95, 0.14);
  color: var(--green);
  border: 1px solid rgba(46, 106, 95, 0.24);
}

.status.standby,
.status.planning {
  background: rgba(11, 10, 9, 0.08);
  color: rgba(11, 10, 9, 0.72);
  border: 1px solid rgba(11, 10, 9, 0.18);
}

.section-dark .status.standby,
.section-dark .status.planning,
.hero .status.standby,
.hero .status.planning {
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: clamp(58px, 9vw, 112px) clamp(18px, 4vw, 54px);
}

.section > * {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.section-light {
  background: var(--paper);
}

.section-muted {
  background: var(--paper-2);
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

#brand-lines,
#series,
#live,
#results {
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  color: var(--white);
}

#brand-lines {
  background-image:
    linear-gradient(90deg, rgba(11, 10, 9, 0.8), rgba(11, 10, 9, 0.5)),
    linear-gradient(0deg, rgba(11, 10, 9, 0.84), rgba(11, 10, 9, 0.08) 54%, rgba(11, 10, 9, 0.68)),
    url("bg-brands-clean.jpg");
  background-position: center 42%;
}

#series {
  background-image:
    linear-gradient(90deg, rgba(11, 10, 9, 0.78), rgba(11, 10, 9, 0.42)),
    linear-gradient(0deg, rgba(11, 10, 9, 0.82), rgba(11, 10, 9, 0.12) 56%, rgba(11, 10, 9, 0.72)),
    url("bg-series-clean.jpg");
  background-position: center 42%;
}

#live {
  background-image:
    linear-gradient(90deg, rgba(11, 10, 9, 0.88), rgba(11, 10, 9, 0.48)),
    linear-gradient(0deg, rgba(11, 10, 9, 0.86), rgba(11, 10, 9, 0.12) 56%, rgba(11, 10, 9, 0.7)),
    url("bg-live-clean.jpg");
  background-position: center 48%;
}

#results {
  background-image:
    linear-gradient(90deg, rgba(11, 10, 9, 0.78), rgba(11, 10, 9, 0.4)),
    linear-gradient(0deg, rgba(11, 10, 9, 0.84), rgba(11, 10, 9, 0.1) 56%, rgba(11, 10, 9, 0.64)),
    url("bg-results.jpg");
  background-position: center 45%;
}

#brand-lines .section-head,
#series .section-head,
#results .section-head {
  color: var(--white);
}

#brand-lines .text-link,
#series .text-link,
#results .text-link {
  color: var(--gold-2);
}

#brand-lines,
#series,
#live,
#results {
  position: relative;
  overflow: clip;
  padding-top: 0;
  background: var(--ink);
}

#brand-lines,
#series {
  padding-bottom: clamp(38px, 5vw, 64px);
}

#brand-lines::before,
#series::before,
#live::before,
#results::before {
  content: "";
  display: block;
  height: clamp(320px, 46svh, 520px);
  margin-left: calc(clamp(18px, 4vw, 54px) * -1);
  margin-right: calc(clamp(18px, 4vw, 54px) * -1);
  position: sticky;
  top: 74px;
  z-index: 0;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 999px rgba(0, 0, 0, 0.18);
}

#brand-lines::before {
  height: clamp(260px, 34svh, 390px);
}

#series::before {
  height: clamp(300px, 40svh, 460px);
}

#brand-lines::before {
  background-image:
    linear-gradient(90deg, rgba(11, 10, 9, 0.2), rgba(11, 10, 9, 0.02)),
    linear-gradient(0deg, rgba(11, 10, 9, 0.82), rgba(11, 10, 9, 0.08) 48%, rgba(11, 10, 9, 0.18)),
    url("bg-brands-clean.jpg");
  background-position: center 42%;
}

#series::before {
  background-image:
    linear-gradient(90deg, rgba(11, 10, 9, 0.24), rgba(11, 10, 9, 0.04)),
    linear-gradient(0deg, rgba(11, 10, 9, 0.82), rgba(11, 10, 9, 0.08) 50%, rgba(11, 10, 9, 0.16)),
    url("bg-series-clean.jpg");
  background-position: center 45%;
}

#live::before {
  background-image:
    linear-gradient(90deg, rgba(11, 10, 9, 0.28), rgba(11, 10, 9, 0.04)),
    linear-gradient(0deg, rgba(11, 10, 9, 0.84), rgba(11, 10, 9, 0.08) 50%, rgba(11, 10, 9, 0.18)),
    url("bg-live-clean.jpg");
  background-position: center 48%;
}

#results::before {
  background-image:
    linear-gradient(90deg, rgba(11, 10, 9, 0.2), rgba(11, 10, 9, 0.02)),
    linear-gradient(0deg, rgba(11, 10, 9, 0.82), rgba(11, 10, 9, 0.08) 50%, rgba(11, 10, 9, 0.18)),
    url("bg-results.jpg");
  background-position: center 45%;
}

#brand-lines > *,
#series > *,
#live > *,
#results > * {
  position: relative;
  z-index: 1;
}

#brand-lines .section-head,
#series .section-head,
#results .section-head,
#live > div:first-of-type {
  position: relative;
  margin-top: clamp(-84px, -6vw, -48px);
  padding: clamp(8px, 1.4vw, 16px) 0;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(5, 4, 3, 0.08), rgba(5, 4, 3, 0.22) 18%, rgba(5, 4, 3, 0.16) 72%, rgba(5, 4, 3, 0.08));
  box-shadow: none;
  backdrop-filter: blur(5px);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.64);
}

#brand-lines .section-head h2,
#series .section-head h2,
#results .section-head h2,
#live > div:first-of-type h2 {
  color: var(--white);
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.72),
    0 10px 34px rgba(0, 0, 0, 0.62);
}

#brand-lines .section-head .eyebrow,
#series .section-head .eyebrow,
#results .section-head .eyebrow,
#live > div:first-of-type .eyebrow {
  color: var(--gold-2);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
}

#brand-lines .section-head .text-link,
#series .section-head .text-link,
#results .section-head .text-link,
#live > div:first-of-type .text-link {
  color: var(--gold-2);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.78);
}

#brand-lines .section-head,
#series .section-head,
#results .section-head {
  margin-bottom: 18px;
}

#live.split-band {
  display: block;
}

#live .live-panel {
  margin-top: 18px;
  margin-right: auto;
  margin-left: auto;
  width: min(620px, 100%);
}

#brand-lines .brand-line-grid,
#series .series-grid,
#results .results-row {
  margin-top: 18px;
}

.brand-lines {
  border-top: 1px solid rgba(20, 16, 12, 0.08);
}

.hero + .section {
  padding-top: 42px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.section-head h2,
.section h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.text-link {
  color: var(--gold);
  font-weight: 800;
}

.series-grid,
.results-row,
.sponsor-grid,
.related-grid,
.brand-line-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.brand-line-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.event-card,
.results-row article,
.live-panel,
.sponsor-logo,
.info-grid article,
.live-feed article,
.brand-line-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
}

.event-card {
  position: relative;
  min-height: 260px;
  padding: 22px;
}

#series .event-card:not(.event-card-feature),
#results .results-row article,
#brand-lines .brand-line-card {
  color: var(--ink);
}

.event-card-logo {
  position: absolute;
  top: 18px;
  right: 18px;
  object-fit: contain;
}

.go-card-logo {
  width: 56px;
  height: 56px;
}

.ns-card-logo {
  width: 88px;
  height: auto;
}

.event-card-feature {
  background: var(--ink);
  color: var(--white);
  border-color: rgba(197, 150, 63, 0.48);
}

.event-card h3,
.results-row h3,
.live-panel h3 {
  margin: 12px 0 8px;
  font-size: 1.45rem;
  line-height: 1.18;
}

.series-type {
  margin: 12px 0 0;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-line-card {
  min-height: 320px;
  padding: 28px;
}

.brand-line-logo-wrap {
  display: flex;
  align-items: center;
  min-height: 110px;
  margin-bottom: 18px;
}

.brand-line-logo {
  display: block;
  object-fit: contain;
}

.ns-line-logo {
  width: min(250px, 76%);
}

.go-line-logo {
  width: 132px;
  height: 132px;
}

.brand-line-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-line-card h3 {
  margin: 10px 0 12px;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.08;
}

.brand-line-card p {
  margin: 0;
  color: var(--muted);
}

.go-line {
  border-color: rgba(210, 35, 28, 0.28);
  background: rgba(255, 255, 255, 0.84);
}

.event-card p,
.results-row p,
.section-dark p,
.copy-block p,
.live-feed p,
.access-layout p {
  color: var(--muted);
}

.event-card-feature p,
.section-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.event-card a {
  display: inline-flex;
  margin-top: 26px;
  color: var(--gold);
  font-weight: 800;
}

.event-date {
  margin: 18px 0 0;
  color: var(--gold);
  font-weight: 800;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  align-items: center;
  gap: clamp(24px, 5vw, 74px);
}

.split-band > * {
  width: 100%;
}

.live-panel {
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line-dark);
}

.metric {
  margin: 18px 0 26px;
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
}

.results-row article {
  min-height: 260px;
  padding: 22px;
}

.news-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.news-list a {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.42);
}

.news-list time {
  color: var(--muted);
  font-weight: 800;
}

.sponsors h2 {
  margin-bottom: 30px;
}

.sponsor-logo {
  display: grid;
  place-items: center;
  min-height: 92px;
  padding: 18px;
  color: rgba(11, 10, 9, 0.58);
  font-weight: 900;
  letter-spacing: 0;
  position: relative;
}

.sponsor-logo img {
  display: block;
  max-width: 100%;
  max-height: 92px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.sponsor-logo.is-logo-loading::before {
  content: "";
  position: absolute;
  inset: 18px;
  background:
    linear-gradient(90deg, transparent, rgba(158, 133, 89, 0.08), transparent),
    rgba(20, 16, 12, 0.035);
  background-size: 220% 100%, auto;
  animation: sponsorLogoPulse 1.8s ease-in-out infinite;
}

.sponsor-logo.is-logo-loaded::before {
  display: none;
}

body.defer-sponsor-media .sponsor-logo.is-logo-loading::before {
  animation: none;
  background: rgba(20, 16, 12, 0.035);
}

@keyframes sponsorLogoPulse {
  0% {
    background-position: 120% 0, 0 0;
  }

  100% {
    background-position: -120% 0, 0 0;
  }
}

.sponsor-board {
  overflow: hidden;
  border: 1px solid rgba(11, 10, 9, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(11, 10, 9, 0.08);
}

.sponsors .sponsor-logo {
  min-height: 118px;
  padding: clamp(16px, 2.4vw, 28px);
  border: 0;
  border-radius: 0;
  outline: 1px solid rgba(11, 10, 9, 0.1);
  outline-offset: -0.5px;
  background: #fff;
  backdrop-filter: none;
}

.sponsor-feature-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sponsor-feature-row .sponsor-logo {
  min-height: 158px;
}

.sponsor-feature img {
  max-height: 92px;
}

.sponsor-center img {
  max-height: 116px;
}

.sponsor-grid-secondary {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: 112px;
  gap: 0;
  margin-top: 0;
}

.sponsors .partner-logo {
  box-sizing: border-box;
  min-height: 112px;
  height: 112px;
  padding: 14px;
}

.partner-logo img {
  max-width: 90%;
  max-height: 64px;
}

.partner-logo.logo-large {
  padding: 8px;
}

.partner-logo.logo-large img {
  max-width: 98%;
  max-height: 86px;
}

.partner-logo.logo-enlarge {
  padding: 8px;
}

.partner-logo.logo-enlarge img {
  max-width: 98%;
  max-height: 86px;
}

.partner-logo.logo-bpbp {
  padding: 10px 12px;
  background: #fff;
}

.partner-logo.logo-bpbp img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 92px;
  object-fit: contain;
  object-position: center center;
  filter: none;
}

.partner-logo.logo-wide {
  padding: 8px;
}

.partner-logo.logo-wide img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.partner-logo.logo-musashi {
  padding: 12px 18px;
}

.partner-logo.logo-musashi img {
  width: 92%;
  height: auto;
  max-width: 92%;
  max-height: 78px;
  object-fit: contain;
  object-position: center center;
  margin: auto;
}

.partner-logo.logo-pokerquest-card {
  overflow: hidden;
  padding: 12px;
  background: #120705;
}

.partner-logo.logo-pokerquest-card img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 78px;
  object-fit: contain;
  filter: none;
}

.partner-logo.logo-mark-only,
.partner-logo.logo-gaora {
  overflow: hidden;
  padding: 0;
}

.partner-logo.logo-mark-only img,
.partner-logo.logo-gaora img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  filter: none;
}

.partner-logo.logo-shimozono img {
  object-position: center center;
  transform: scale(1.16);
}

.partner-logo.logo-pokerquest img {
  object-position: center center;
  transform: scale(1.18);
}

.partner-logo.logo-gaora img {
  height: 300%;
  object-fit: cover;
  object-position: center top;
}

.partner-logo.logo-on-dark,
.partner-logo.logo-ledtokyo {
  background: #16110d;
}

.partner-logo.logo-on-dark img,
.partner-logo.logo-ledtokyo img {
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.35));
}

.partner-logo.logo-bg-fill {
  overflow: hidden;
  padding: 10px;
  background: #fff;
}

.partner-logo.logo-bg-fill img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  filter: none;
}

.partner-logo.logo-mice {
  padding: 12px;
}

.partner-logo.logo-mice img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  object-position: center center;
}

.partner-logo.partner-text-logo {
  background: #f7f4ef;
}

.partner-logo.partner-text-logo span {
  color: rgba(11, 10, 9, 0.76);
  font-size: clamp(0.9rem, 1.4vw, 1.15rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
}

.partner-logo.is-missing-logo {
  background: #f7f4ef;
}

.partner-logo.is-missing-logo img {
  display: none;
}

.partner-logo.is-missing-logo::after {
  content: attr(data-label);
  max-width: 100%;
  color: rgba(11, 10, 9, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  overflow-wrap: anywhere;
}

.about-band {
  text-align: left;
}

#about.about-band {
  padding-top: clamp(42px, 5vw, 70px);
}

.contact-section {
  padding-top: clamp(54px, 7vw, 96px);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.contact-aside {
  position: sticky;
  top: 104px;
}

.contact-aside h2 {
  max-width: 520px;
  margin: 0 0 18px;
  font-size: clamp(1.9rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.contact-aside p {
  max-width: 520px;
  color: rgba(11, 10, 9, 0.68);
}

.contact-note {
  display: grid;
  gap: 4px;
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.72);
}

.contact-note span {
  color: rgba(11, 10, 9, 0.56);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-note strong {
  font-size: 1.05rem;
}

.contact-entity {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(11, 10, 9, 0.1);
  background: rgba(255, 255, 255, 0.54);
}

.contact-entity span {
  color: rgba(11, 10, 9, 0.56);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-entity strong {
  font-size: 1rem;
}

.contact-entity p {
  margin: 0;
  color: rgba(11, 10, 9, 0.66);
  font-size: 0.92rem;
  line-height: 1.7;
}

.contact-form {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(11, 10, 9, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 70px rgba(11, 10, 9, 0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: rgba(11, 10, 9, 0.7);
  font-size: 0.82rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(11, 10, 9, 0.18);
  border-radius: 6px;
  background: rgba(247, 243, 234, 0.72);
  color: var(--ink);
  font: inherit;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
  padding: 10px 12px;
}

.contact-form textarea {
  min-height: 190px;
  resize: vertical;
  padding: 14px 12px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(197, 150, 63, 0.72);
  outline: 3px solid rgba(197, 150, 63, 0.18);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.contact-status {
  margin: 0;
  color: rgba(11, 10, 9, 0.62);
  font-size: 0.88rem;
}

.about-band p:not(.eyebrow) {
  max-width: 760px;
}

.about-statement {
  display: grid;
  gap: 20px;
  max-width: 760px;
  margin-top: 26px;
  margin-left: 0;
  margin-right: 0;
}

.about-statement p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 54px);
  background: #050403;
  color: var(--white);
}

.footer .brand-logo {
  height: 38px;
}

.footer-legal {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.78rem;
  line-height: 1.65;
}

.footer-legal strong {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.footer-legal span {
  display: block;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.04);
}

.social-links a:hover {
  color: var(--white);
  border-color: rgba(242, 210, 124, 0.52);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.event-meta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(920px, 100%);
  margin-top: clamp(24px, 4vw, 42px);
}

.event-hero-logo {
  display: block;
  width: clamp(76px, 11vw, 130px);
  height: auto;
  margin-bottom: 18px;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.42));
}

.event-meta-grid div {
  min-height: 0;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(11, 10, 9, 0.48);
  backdrop-filter: blur(10px);
}

.event-meta-grid span,
.info-grid span {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.event-meta-grid strong,
.info-grid strong {
  display: block;
  margin-top: 4px;
  line-height: 1.25;
}

.event-tabs {
  position: sticky;
  top: 74px;
  z-index: 10;
  display: flex;
  gap: 8px;
  padding: 12px clamp(18px, 4vw, 54px);
  overflow-x: auto;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.event-tabs button,
.date-filter button {
  min-width: max-content;
  min-height: 40px;
  padding: 8px 15px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.event-tabs button.active,
.date-filter button.active {
  background: var(--ink);
  color: var(--white);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.event-section {
  min-height: 560px;
}

.date-filter {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  overflow-x: auto;
}

.schedule-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: -8px 0 16px;
}

.schedule-search {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(520px, 100%);
  min-height: 48px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.schedule-search span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.schedule-search input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

.schedule-search-count {
  min-width: max-content;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.schedule-list {
  display: grid;
  gap: 10px;
}

.schedule-item {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 98px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
}

.schedule-item[hidden] {
  display: none;
}

.schedule-item time {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 900;
}

.schedule-item h3 {
  margin: 2px 0;
  font-size: 1.18rem;
  line-height: 1.2;
}

.schedule-item p {
  margin: 0;
  color: var(--muted);
}

.schedule-actions {
  margin-top: 10px;
}

.result-link,
.result-table-link {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
}

.result-link::after,
.result-table-link::after {
  content: " ->";
}

.event-number {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.flight-detail-card,
.overview-flight-block {
  display: grid;
  gap: 16px;
}

.overview-flight-block {
  margin-top: 12px;
}

.overview-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.flight-tab-list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.flight-button {
  min-width: max-content;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.flight-button.active {
  background: var(--ink);
  color: var(--white);
}

.flight-panel {
  display: none;
}

.flight-panel.active {
  display: grid;
  gap: 14px;
}

.flight-meta-grid,
.flight-content-grid {
  display: grid;
  gap: 10px;
}

.flight-meta-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.flight-content-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.flight-meta-grid > div,
.flight-content-grid > div {
  padding: 16px;
  border: 1px solid rgba(20, 16, 12, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.flight-meta-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.flight-meta-grid strong {
  display: block;
  margin-top: 4px;
  line-height: 1.25;
}

.flight-content-grid h3 {
  margin: 0 0 8px;
}

.flight-content-grid p {
  margin: 0 0 10px;
  color: var(--muted);
}

.flight-update-list {
  display: grid;
  gap: 10px;
}

.flight-update-item {
  padding: 12px 0 0;
  border-top: 1px solid rgba(20, 16, 12, 0.1);
}

.flight-update-item:target {
  scroll-margin-top: 104px;
}

.flight-update-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.flight-update-item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
  background: rgba(20, 16, 12, 0.08);
}

.flight-update-item time {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.flight-update-item strong {
  display: block;
  margin-bottom: 5px;
  line-height: 1.3;
}

.flight-update-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 8px;
}

.flight-update-meta span {
  border: 1px solid rgba(190, 31, 45, 0.22);
  border-radius: 999px;
  padding: 5px 8px;
  color: var(--red);
  background: rgba(190, 31, 45, 0.06);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0;
}

.flight-update-item p {
  margin: 0;
}

.article-anchor {
  display: inline-flex;
  margin-top: 10px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 950;
  text-decoration: none;
}

.article-anchor::after {
  content: " ->";
}

.article-anchor:hover {
  text-decoration: underline;
}

.article-source {
  display: inline-flex;
  margin-top: 10px;
  margin-left: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
}

.article-source::after {
  content: " ->";
}

.article-source:hover {
  color: var(--red);
  text-decoration: underline;
}

.flight-empty {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.flight-note {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.tournament-hero {
  min-height: auto;
}

.tournament-hero .hero-content {
  padding-top: clamp(64px, 8vw, 118px);
  padding-bottom: clamp(58px, 8vw, 104px);
}

.tournament-hero h1 {
  max-width: 820px;
  font-size: clamp(2.25rem, 4.7vw, 4.35rem);
  overflow-wrap: break-word;
  text-wrap: balance;
}

#structure,
#photos,
#in-the-money {
  scroll-margin-top: 98px;
}

.detail-kicker {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-bottom: 16px;
  padding: 7px 10px;
  border: 1px solid rgba(242, 210, 124, 0.28);
  border-radius: 999px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 0.36fr);
  gap: 24px;
  align-items: start;
}

.detail-stack {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.detail-layout > .detail-stack:only-child {
  grid-column: 1 / -1;
}

.detail-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  overflow-wrap: anywhere;
}

.detail-card h2,
.detail-card h3 {
  margin: 0 0 14px;
}

.detail-card p {
  color: var(--muted);
}

.detail-card-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.detail-card-head h2 {
  margin-bottom: 0;
}

.photo-gallery-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(247, 241, 229, 0.74)),
    rgba(255, 255, 255, 0.68);
}

.photo-strip {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-auto-rows: minmax(156px, 18vw);
  gap: 10px;
}

.photo-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #14100c;
}

.photo-thumb:first-child {
  grid-row: span 2;
}

.photo-thumb:nth-child(4) {
  grid-column: 1 / -1;
}

.photo-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 240ms ease, filter 240ms ease;
}

.photo-thumb:hover img {
  filter: brightness(1.06);
  transform: scale(1.035);
}

.detail-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.detail-summary-grid div {
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.48);
}

.detail-summary-grid span,
.structure-table .table-head,
.prize-table .table-head {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-summary-grid strong {
  display: block;
  margin-top: 7px;
  line-height: 1.35;
}

.structure-table,
.prize-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
}

.structure-table [role="row"],
.prize-table [role="row"] {
  display: grid;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  border-top: 1px solid rgba(20, 16, 12, 0.1);
}

.structure-table [role="row"] {
  grid-template-columns: 86px minmax(220px, 1fr) 104px;
}

.prize-table [role="row"] {
  grid-template-columns: 72px minmax(0, 1fr) 68px;
}

.structure-table [role="row"]:first-child,
.prize-table [role="row"]:first-child {
  border-top: 0;
}

.structure-table .table-head,
.prize-table .table-head {
  background: var(--ink);
  color: var(--white);
}

.structure-table strong,
.structure-table span:last-child,
.prize-table strong,
.prize-table span:last-child {
  font-variant-numeric: tabular-nums;
}

.structure-table span:last-child,
.prize-table span:last-child {
  text-align: right;
}

.structure-table span:last-child {
  white-space: nowrap;
}

.tournament-timer-card {
  overflow: hidden;
  border-color: rgba(37, 44, 68, 0.18);
  background: rgba(255, 255, 255, 0.9);
}

.waitinglist-clock-shell {
  container-type: inline-size;
}

.waitinglist-clock {
  overflow: hidden;
  border-radius: 18px;
  background: #1c2235;
  padding: clamp(10px, 2vw, 18px);
  color: #fff;
  box-shadow: 0 22px 58px rgba(23, 27, 43, 0.18);
}

.wl-board {
  position: relative;
  display: grid;
  grid-template-columns: 25% 46% 29%;
  overflow: hidden;
  aspect-ratio: 16 / 8.05;
  border: 4px solid #b73032;
  border-radius: 12px;
  background: #761718;
  font-family: Arial, "Helvetica Neue", sans-serif;
}

.wl-banner {
  grid-column: 1 / -1;
  padding: clamp(6px, 1.2cqw, 10px) 14px;
  background: #a32426;
  color: #fff;
  text-align: center;
  font-size: clamp(0.9rem, 2.45cqw, 1.35rem);
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.wl-left-pane,
.wl-main-pane,
.wl-side-pane {
  border-top: 4px solid #c13234;
}

.wl-left-pane {
  min-height: 100%;
  border-right: 4px solid #c13234;
  background: linear-gradient(135deg, #8e2022, #571112);
}

.wl-main-pane {
  display: grid;
  align-content: center;
  border-right: 4px solid #c13234;
  background: #8d2021;
}

.wl-level {
  color: #f3c7c8;
  text-align: center;
  font-size: clamp(1.2rem, 3.6cqw, 2rem);
  font-weight: 900;
  white-space: nowrap;
}

.wl-time {
  color: #fff;
  text-align: center;
  font-size: clamp(3.1rem, 12cqw, 8rem);
  font-weight: 900;
  line-height: 0.95;
  white-space: nowrap;
}

.wl-progress {
  position: relative;
  overflow: hidden;
  height: clamp(9px, 2.1cqw, 20px);
  width: calc(100% - 32px);
  margin: clamp(6px, 1.25cqw, 10px) auto clamp(6px, 1.4cqw, 12px);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.wl-progress::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--timer-progress, 100%);
  border-radius: inherit;
  background: #fff;
}

.wl-stats {
  display: grid;
  grid-template-columns: minmax(100px, 0.9fr) minmax(0, 1.9fr);
  background: #4a0d0d;
}

.wl-stats span,
.wl-side-pane span {
  display: grid;
  place-items: center;
  color: #f1c0c0;
  font-weight: 900;
  line-height: 1.05;
}

.wl-stats span {
  justify-content: start;
  padding: clamp(5px, 1.2cqw, 8px) clamp(7px, 1.4cqw, 12px);
  background: #6c1718;
  font-size: clamp(0.72rem, 2.45cqw, 1.45rem);
  white-space: nowrap;
}

.wl-stats strong {
  display: grid;
  place-items: center;
  min-width: 0;
  padding: clamp(4px, 0.9cqw, 6px) 6px;
  color: #fff;
  font-size: clamp(1.1rem, 4.35cqw, 2.75rem);
  line-height: 1;
  white-space: nowrap;
}

.wl-side-pane {
  display: grid;
  grid-template-rows: repeat(4, 1fr) 0.74fr;
  background: #490c0c;
}

.wl-side-pane > div {
  display: grid;
  grid-template-rows: minmax(22px, 0.75fr) 1fr;
  border-bottom: 2px solid rgba(117, 23, 24, 0.78);
}

.wl-side-pane span {
  background: #711718;
  font-size: clamp(0.62rem, 1.85cqw, 1.08rem);
  text-align: center;
  white-space: nowrap;
}

.wl-side-pane strong {
  display: grid;
  place-items: center;
  color: #fff;
  font-size: clamp(1rem, 3.1cqw, 2rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.wl-mini {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 1fr !important;
}

.wl-mini span {
  background: #4a0d0d;
  font-size: clamp(0.55rem, 1.35cqw, 0.9rem);
}

.wl-mini span + span {
  border-left: 2px solid rgba(117, 23, 24, 0.78);
}

.wl-mark {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 5px 9px;
  background: #f6f6f6;
  color: #2a2b33;
  font-size: 0.68rem;
  font-weight: 900;
  border-radius: 7px 0 0 0;
}

.structure-table [role="row"].is-break {
  background: rgba(209, 25, 42, 0.08);
  color: var(--red);
  font-weight: 900;
}

.structure-table [role="row"].is-break * {
  color: inherit;
}

.structure-table [role="row"].is-section {
  background: rgba(11, 10, 9, 0.88);
  color: var(--gold-2);
  font-weight: 900;
}

.structure-table [role="row"].is-section * {
  color: inherit;
}

.structure-note,
.note-list {
  margin: 14px 0 0;
  color: var(--muted);
}

.note-list {
  display: grid;
  gap: 8px;
  padding-left: 18px;
}

.tournament-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.tournament-nav-bottom {
  width: min(1180px, 100%);
  margin: 22px auto 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.info-grid article {
  min-height: 126px;
  padding: 20px;
}

.copy-block {
  margin-top: 28px;
  padding: 26px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.45);
}

.copy-block h3 {
  margin: 0 0 8px;
}

.live-feed {
  display: grid;
  gap: 12px;
}

.live-feed article {
  padding: 22px;
}

.live-feed time {
  color: var(--gold);
  font-weight: 900;
}

.live-feed h3 {
  margin: 8px 0;
}

.live-update-section {
  color: var(--white);
}

.live-update-section .section-copy {
  max-width: 760px;
  margin: -10px 0 28px;
  color: rgba(255, 255, 255, 0.72);
}

.live-update-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.42fr);
  gap: 18px;
  align-items: start;
}

.live-update-list,
.live-article-stack {
  display: grid;
  gap: 12px;
}

.live-update-card,
.live-article,
.live-update-empty {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(14px);
}

.live-update-card {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.live-update-card span {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(197, 150, 63, 0.18);
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.live-update-card time,
.live-article time {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 800;
}

.live-update-card strong {
  color: var(--white);
  font-size: 1.02rem;
  line-height: 1.35;
}

.live-article {
  padding: clamp(20px, 3vw, 34px);
}

.live-article > div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.live-article h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(1.35rem, 2.8vw, 2.1rem);
  line-height: 1.15;
}

.live-article p,
.live-update-empty p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.live-update-empty {
  padding: clamp(24px, 4vw, 44px);
}

.live-update-empty strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(1.3rem, 3vw, 2.4rem);
  line-height: 1.1;
}

.results-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--ink);
}

.results-table [role="row"] {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.7fr 0.8fr;
  gap: 12px;
  padding: 16px 18px;
  border-top: 1px solid var(--line);
}

.results-table [role="row"]:first-child {
  border-top: 0;
}

.results-table .table-head {
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.result-detail-head {
  margin: 28px 0 14px;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
}

.tournament-result-list {
  display: grid;
  gap: 12px;
}

.tournament-result {
  overflow: hidden;
  scroll-margin-top: 150px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.tournament-result summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
}

.tournament-result summary::-webkit-details-marker {
  display: none;
}

.tournament-result summary > span:first-child {
  display: grid;
  gap: 4px;
}

.tournament-result summary small {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tournament-result summary strong {
  font-size: 1.02rem;
  line-height: 1.25;
}

.tournament-result summary > span:last-child {
  color: var(--red);
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
}

.payout-table {
  border-top: 1px solid var(--line);
}

.result-card-summary {
  margin: -4px 0 14px;
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 900;
}

.payout-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 150px;
  gap: 12px;
  align-items: center;
  padding: 13px 20px;
  border-top: 1px solid rgba(16, 14, 12, 0.08);
}

.payout-row:first-child {
  border-top: 0;
}

.payout-head {
  background: rgba(16, 14, 12, 0.05);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.payout-row strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.payout-row span:last-child {
  font-weight: 900;
  text-align: right;
}

.payout-empty {
  padding: 18px 20px;
  color: var(--muted);
}

.access-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.map-placeholder {
  display: grid;
  place-items: center;
  min-height: 320px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(197, 150, 63, 0.24), rgba(46, 106, 95, 0.2)),
    var(--ink);
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(2.3rem, 7vw, 5.8rem);
  font-weight: 900;
}

.related-band {
  text-align: center;
}

.related-grid a {
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 18px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 920px) {
  .topbar {
    align-items: stretch;
    flex-wrap: wrap;
    gap: 12px;
  }

  .main-nav {
    order: 3;
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nav-cta {
    margin-left: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-home .hero-content {
    padding-right: 0;
  }

  .hero-video-card {
    right: 24px;
    height: min(58svh, 520px);
    opacity: 0.34;
  }

  .featured-event,
  .schedule-tools,
  .section-head,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .series-grid,
  .results-row,
  .sponsor-grid,
  .related-grid,
  .brand-line-grid,
  .event-meta-grid,
  .info-grid,
  .access-layout,
  .detail-layout,
  .flight-meta-grid,
  .flight-content-grid,
  .live-update-layout,
  .contact-layout,
  .form-grid,
  .split-band {
    grid-template-columns: 1fr;
  }

  .event-tabs {
    top: 126px;
  }

  .contact-aside {
    position: static;
  }

  .contact-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .sponsor-feature-row {
    grid-template-columns: 1fr;
  }

  .sponsor-grid-secondary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 82px;
  }

  .sponsor-feature-row .sponsor-logo {
    min-height: 112px;
  }

  .sponsor-feature img,
  .sponsor-center img {
    max-height: 72px;
  }

  .sponsors .partner-logo {
    min-height: 82px;
    height: 82px;
    padding: 12px;
  }

  .partner-logo img {
    max-height: 52px;
  }

  .partner-logo.logo-enlarge img,
  .partner-logo.logo-large img {
    max-height: 66px;
  }

  .partner-logo.logo-bpbp img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 66px;
  }

  .partner-logo.logo-mice img {
    width: 86%;
    height: 86%;
  }

  .partner-logo.logo-musashi {
    padding: 10px;
  }

  .partner-logo.logo-musashi img {
    max-height: 62px;
  }

  .partner-logo.logo-gaora img {
    height: 300%;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .social-links {
    justify-content: flex-start;
  }

  #brand-lines::before,
  #series::before,
  #live::before,
  #results::before {
    height: 38svh;
    min-height: 270px;
    position: relative;
    top: auto;
  }

  #brand-lines::before,
  #series::before {
    height: 34svh;
    min-height: 250px;
  }

  #brand-lines .section-head,
  #series .section-head,
  #results .section-head,
  #live > div:first-of-type {
    margin-top: -44px;
  }
}

@media (max-width: 620px) {
  .topbar {
    flex-wrap: nowrap;
    align-items: center;
    min-height: 72px;
  }

  .main-nav {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-logo {
    height: 38px;
    max-width: 170px;
  }

  .hero-content {
    width: min(100% - 28px, 1180px);
    padding-top: 62px;
  }

  .hero {
    min-height: calc(100svh - 216px);
  }

  .hero-video-bg {
    inset: 0;
    width: 100%;
    height: 100%;
    filter: brightness(0.6) saturate(0.95);
    transform: none;
  }

  .hero-video-card {
    display: none;
  }

  .hero-video-stage::after {
    background:
      linear-gradient(90deg, rgba(11, 10, 9, 0.86) 0%, rgba(11, 10, 9, 0.56) 100%),
      linear-gradient(0deg, rgba(11, 10, 9, 0.88) 0%, rgba(11, 10, 9, 0.08) 62%);
  }

  .featured-event {
    padding: 18px;
  }

  .featured-event-title {
    align-items: flex-start;
  }

  .go-mini-logo {
    width: 54px;
    height: 54px;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .nav-cta {
    width: auto;
    min-height: 42px;
    padding: 9px 14px;
  }

  .news-list a,
  .schedule-item,
  .results-table [role="row"] {
    grid-template-columns: 1fr;
  }

  .schedule-item {
    align-items: start;
  }

  .schedule-item .status {
    width: max-content;
  }

  .live-article > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .tournament-result summary {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px;
  }

  .tournament-result {
    scroll-margin-top: 190px;
  }

  .detail-summary-grid {
    grid-template-columns: 1fr;
  }

  .detail-card-head {
    flex-direction: column;
  }

  .detail-card {
    padding: 18px;
  }

  .photo-strip {
    grid-template-columns: 1fr;
    grid-auto-rows: 190px;
  }

  .photo-thumb:first-child {
    grid-row: auto;
  }

  .photo-thumb:nth-child(4) {
    grid-column: auto;
  }

  .structure-table [role="row"] {
    grid-template-columns: 54px minmax(0, 1fr) 78px;
    gap: 9px;
    padding: 11px 12px;
  }

  .tournament-hero h1 {
    font-size: clamp(1.85rem, 8.4vw, 2.4rem);
    line-height: 1.02;
  }

  .structure-table [role="row"].is-break {
    grid-template-columns: minmax(0, 1fr) 78px;
  }

  .structure-table [role="row"].is-break span:first-child {
    display: none;
  }

  .structure-table [role="row"].is-break strong::before {
    content: "Break";
    margin-right: 8px;
  }

  .prize-table [role="row"] {
    grid-template-columns: 50px minmax(0, 1fr) 46px;
    gap: 9px;
    padding: 11px 12px;
  }

  .tournament-result summary > span:last-child {
    white-space: normal;
  }

  .payout-row {
    grid-template-columns: 42px minmax(0, 1fr) 136px;
    padding: 12px 16px;
  }

  .waitinglist-clock {
    overflow-x: auto;
    padding: 8px;
  }

  .wl-board {
    min-width: 620px;
    grid-template-columns: 25% 46% 29%;
  }

  .wl-banner {
    font-size: 0.95rem;
  }

  .payout-head {
    font-size: 0.7rem;
  }

  .event-tabs {
    top: 153px;
  }

  #brand-lines::before,
  #series::before,
  #live::before,
  #results::before {
    height: 36svh;
    min-height: 250px;
    box-shadow: inset 0 0 0 999px rgba(0, 0, 0, 0.08);
  }

  #brand-lines::before,
  #series::before {
    height: 32svh;
    min-height: 230px;
  }

  #brand-lines .section-head,
  #series .section-head,
  #results .section-head,
  #live > div:first-of-type {
    margin-top: -38px;
    padding: 12px 0;
  }
}

/* Luxury residence / hotel refinement layer */
:root {
  --ink: #11100d;
  --ink-2: #1d1a16;
  --paper: #f6f2ea;
  --paper-2: #ebe5dc;
  --line: rgba(38, 33, 27, 0.16);
  --line-dark: rgba(246, 242, 234, 0.18);
  --gold: #9e8559;
  --gold-2: #c7ae78;
  --muted: #686056;
  --shadow: 0 28px 90px rgba(18, 16, 13, 0.16);
}

body {
  --story-bg: #f6f2ea;
  --story-glow-a: rgba(158, 133, 89, 0.1);
  --story-glow-b: rgba(35, 31, 26, 0.05);
  background:
    radial-gradient(circle at var(--cursor-x) var(--cursor-y), var(--story-glow-a), transparent min(38rem, 64vw)),
    radial-gradient(circle at 8% 88%, var(--story-glow-b), transparent min(32rem, 60vw)),
    var(--story-bg);
  color: var(--ink);
  font-family: "Jost", "Noto Sans JP", "Helvetica Neue", Arial, "Yu Gothic", Meiryo, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.78;
  text-rendering: geometricPrecision;
}

.story-paint-canvas {
  opacity: 0.22;
  mix-blend-mode: multiply;
}

.topbar {
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(248, 245, 239, 0.88);
  border-bottom: 1px solid rgba(35, 31, 26, 0.1);
  box-shadow: none;
  backdrop-filter: blur(22px);
}

.brand-lockup {
  gap: 16px;
}

.brand-mark {
  box-shadow: none;
}

.brand-logo {
  filter: none;
}

.main-nav {
  gap: clamp(16px, 2.7vw, 34px);
}

.main-nav a {
  color: rgba(17, 16, 13, 0.72);
  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-nav a:hover {
  color: var(--ink);
}

.nav-cta,
.button {
  min-height: 42px;
  border-radius: 0;
  border: 1px solid rgba(158, 133, 89, 0.62);
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-cta:hover,
.button:hover {
  background: rgba(158, 133, 89, 0.08);
  transform: none;
}

.button.primary {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.button.ghost {
  color: var(--ink);
}

.hero {
  min-height: calc(100svh - 76px);
  background: #080705;
  color: var(--white);
}

.hero-home {
  min-height: calc(100svh - 76px);
}

.hero-content {
  width: min(100% - clamp(36px, 8vw, 120px), 1240px);
  min-height: calc(100svh - 76px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(96px, 13vw, 180px) 0 clamp(56px, 8vw, 104px);
}

.hero-media {
  background-image:
    linear-gradient(90deg, rgba(8, 7, 5, 0.86) 0%, rgba(8, 7, 5, 0.5) 48%, rgba(8, 7, 5, 0.16) 100%),
    linear-gradient(0deg, rgba(8, 7, 5, 0.84) 0%, rgba(8, 7, 5, 0.08) 54%),
    url("bg-series-clean.jpg");
  filter: saturate(0.78) contrast(1.02);
}

.hero-video-stage {
  inset: 0;
  display: block;
  z-index: -1;
  overflow: hidden;
}

.hero-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  filter: grayscale(0.12) saturate(0.72) contrast(1.05) brightness(0.72);
}

.hero-video-card {
  display: none;
}

.hero-video-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 7, 5, 0.88) 0%, rgba(8, 7, 5, 0.5) 50%, rgba(8, 7, 5, 0.22) 100%),
    linear-gradient(0deg, rgba(8, 7, 5, 0.94) 0%, rgba(8, 7, 5, 0.42) 46%, rgba(8, 7, 5, 0.18) 100%);
}

.hero-home .hero-media {
  opacity: 0.28;
}

.hero .eyebrow,
.section .eyebrow,
.series-type,
.brand-line-card span {
  color: var(--gold);
  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 11ch;
  margin-top: 18px;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: clamp(4.6rem, 12vw, 12rem);
  font-weight: 500;
  line-height: 0.83;
  letter-spacing: 0.065em;
}

.hero-lead {
  max-width: 720px;
  margin-top: clamp(22px, 4vw, 42px);
  color: rgba(255, 255, 255, 0.86);
  font-family: "Noto Serif JP", "Shippori Mincho", serif;
  font-size: clamp(1.05rem, 1.7vw, 1.42rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2.08;
}

.hero-actions {
  margin-top: clamp(28px, 5vw, 56px);
}

.hero-actions .button {
  color: var(--paper);
  border-color: rgba(246, 242, 234, 0.55);
}

.hero-actions .button.primary {
  background: rgba(246, 242, 234, 0.92);
  color: var(--ink);
  border-color: rgba(246, 242, 234, 0.92);
}

.featured-event {
  width: min(920px, 100%);
  margin-top: clamp(34px, 6vw, 74px);
  padding: 24px 0 0;
  border: 0;
  border-top: 1px solid rgba(246, 242, 234, 0.36);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.featured-event > div:first-child {
  min-width: 0;
  flex: 1 1 auto;
}

.featured-event .hero-actions {
  flex: 0 0 auto;
}

.featured-event h2,
.featured-event h3 {
  font-family: "Noto Serif JP", "Shippori Mincho", serif;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.featured-event p,
.featured-event li {
  color: rgba(255, 255, 255, 0.72);
  word-break: keep-all;
  line-break: strict;
}

.featured-event-meta,
.featured-event-list {
  border-color: rgba(246, 242, 234, 0.18);
}

.go-mini-logo {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(246, 242, 234, 0.28);
  box-shadow: none;
}

.section {
  padding: clamp(92px, 12vw, 172px) clamp(22px, 5vw, 72px);
}

.hero + .section {
  padding-top: clamp(92px, 11vw, 150px);
}

.section-light {
  background: var(--paper);
}

.section-muted,
.brand-lines {
  background: var(--paper-2);
}

.section-dark {
  background: var(--ink);
}

.section-head {
  align-items: flex-start;
  gap: clamp(24px, 6vw, 72px);
  margin-bottom: clamp(42px, 7vw, 88px);
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.section-head h2,
.section h2,
.brand-line-card h3,
.event-card h3,
.results-row h3,
.live-panel h3,
.detail-card h2,
.detail-card h3,
.contact-form h2,
.about-statement h2 {
  font-family: "Noto Serif JP", "Shippori Mincho", "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 0.035em;
}

.section-head h2,
.section h2 {
  font-size: clamp(2.25rem, 5.2vw, 5rem);
  line-height: 1.02;
}

.section-head p,
.copy-block p,
.about-statement p {
  max-width: 680px;
  color: var(--muted);
  font-family: "Noto Serif JP", "Shippori Mincho", serif;
  line-height: 2.05;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  border-bottom: 1px solid rgba(158, 133, 89, 0.42);
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.event-card,
.results-row article,
.live-panel,
.info-grid article,
.live-feed article,
.brand-line-card,
.detail-card,
.contact-form,
.contact-card,
.tournament-result,
.tournament-result-card,
.live-update-card,
.flight-detail-card {
  border-radius: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: none;
  backdrop-filter: none;
}

.event-card,
.results-row article,
.brand-line-card {
  padding: clamp(28px, 3.6vw, 48px);
}

.event-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.event-card-feature,
.section-dark .live-panel,
.section-dark .detail-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(246, 242, 234, 0.2);
}

.event-card-feature {
  color: var(--paper);
}

.event-card h3,
.results-row h3,
.live-panel h3 {
  margin-top: 18px;
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  line-height: 1.18;
}

.event-card p,
.results-row p,
.live-feed p,
.access-layout p,
.detail-card p {
  color: var(--muted);
  line-height: 1.86;
}

.event-card-feature p,
.section-dark p,
.section-dark .detail-card p {
  color: rgba(246, 242, 234, 0.72);
}

.event-card a,
.results-row article a {
  margin-top: auto;
  color: var(--gold);
  border-bottom: 1px solid rgba(158, 133, 89, 0.44);
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-date,
.metric {
  color: var(--gold);
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.metric {
  color: var(--paper);
}

.status {
  width: max-content;
  padding: 0 0 5px;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--gold);
  font-family: "Jost", sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.status.live,
.status.upcoming,
.status.archived,
.event-card .status.live,
.event-card .status.upcoming {
  background: transparent;
  color: var(--gold);
}

.event-card-logo {
  top: 26px;
  right: 26px;
  opacity: 0.86;
}

.brand-line-card {
  min-height: 390px;
  background: rgba(255, 255, 255, 0.42);
}

.brand-line-logo-wrap {
  min-height: 126px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}

.go-line {
  border-color: rgba(158, 133, 89, 0.28);
  background: rgba(255, 255, 255, 0.38);
}

.split-band {
  gap: clamp(44px, 7vw, 104px);
}

.live-panel {
  padding: clamp(32px, 4vw, 54px);
}

.news-list {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.news-list a {
  background: transparent;
  border-bottom: 1px solid var(--line);
}

.news-list a:hover {
  background: rgba(158, 133, 89, 0.06);
  transform: none;
}

.sponsor-board {
  border-radius: 0;
  border: 1px solid rgba(38, 33, 27, 0.14);
  background: #fbfaf7;
  box-shadow: none;
}

.sponsor-logo {
  border-radius: 0;
}

.sponsor-logo img {
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), filter 1.2s ease;
}

.sponsor-logo:hover img {
  transform: scale(1.025);
}

.footer {
  background: #0f0e0c;
  color: rgba(246, 242, 234, 0.72);
  border-top: 1px solid rgba(246, 242, 234, 0.12);
}

.footer a {
  color: rgba(246, 242, 234, 0.82);
}

.footer-legal {
  color: rgba(246, 242, 234, 0.64);
}

.event-tabs {
  border-radius: 0;
  background: rgba(248, 245, 239, 0.92);
  border-top: 1px solid rgba(38, 33, 27, 0.12);
  border-bottom: 1px solid rgba(38, 33, 27, 0.12);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.tab-button,
.date-button,
.flight-button {
  border-radius: 0;
  font-family: "Jost", "Noto Sans JP", sans-serif;
  letter-spacing: 0.12em;
}

.tab-button.active,
.date-button.active,
.flight-button.active {
  background: var(--ink);
  color: var(--paper);
}

.schedule-item,
.results-table [role="row"],
.structure-table [role="row"],
.prize-table [role="row"],
.payout-row {
  border-radius: 0;
}

.tournament-hero h1 {
  font-family: "Noto Serif JP", "Shippori Mincho", "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 0.035em;
}

.waitinglist-clock {
  border-radius: 0;
  box-shadow: none;
}

body.motion-enhanced .story-item {
  transform: translateY(34px);
  filter: blur(8px);
  transition:
    opacity 1200ms ease,
    transform 1200ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 1200ms ease;
}

body.motion-enhanced .story-item.is-in-view {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

body.motion-enhanced .story-scene:target .story-item {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

body.motion-enhanced .hero-media,
body.motion-enhanced .hero-video-stage,
body.motion-enhanced [class*="hero-image-"] .hero-media {
  transform: scale(calc(1.018 + var(--scene-shift, 0) * 0.018));
  transition: transform 1200ms ease-out;
}

.story-scene::after {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 42%),
    radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(158, 133, 89, 0.065), transparent 36rem);
  opacity: 0.34;
}

.hero.story-scene::after {
  background:
    radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(199, 174, 120, 0.12), transparent 34rem),
    linear-gradient(180deg, transparent 58%, rgba(8, 7, 5, 0.42));
}

@media (max-width: 900px) {
  .section-head {
    display: block;
  }

  .section-head p,
  .section-head .text-link {
    margin-top: 18px;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 16vw, 6.8rem);
  }

  .hero-content {
    width: min(100% - 36px, 1240px);
  }
}

@media (max-width: 620px) {
  .topbar {
    min-height: 70px;
    background: rgba(248, 245, 239, 0.94);
  }

  .topbar .nav-cta {
    display: none;
  }

  .hero,
  .hero-home,
  .hero-content {
    min-height: calc(100svh - 70px);
  }

  .hero-content {
    padding-top: 96px;
    padding-bottom: 52px;
  }

  .featured-event {
    display: block;
    width: 100%;
    padding-top: 20px;
  }

  .featured-event .hero-actions {
    margin-top: 22px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .event-card,
  .results-row article,
  .brand-line-card,
  .detail-card {
    padding: 24px;
  }
}

@media (max-width: 620px) {
  .hero-video-stage {
    display: block;
  }

  .hero-video-bg {
    inset: auto;
    width: 100%;
    height: 100%;
    transform: none;
    object-fit: cover;
    opacity: 0.72;
  }

  .hero-video-stage::after {
    background:
      linear-gradient(90deg, rgba(8, 7, 5, 0.84) 0%, rgba(8, 7, 5, 0.5) 100%),
      linear-gradient(0deg, rgba(8, 7, 5, 0.94) 0%, rgba(8, 7, 5, 0.42) 58%, rgba(8, 7, 5, 0.18) 100%);
  }
}

/* Readability and clean brand-section adjustments */
:root {
  --muted: #50483e;
  --soft-text: rgba(17, 16, 13, 0.76);
  --soft-text-strong: rgba(17, 16, 13, 0.88);
}

#about.about-band {
  background: #fbfaf7;
  color: var(--ink);
}

#about.about-band::after {
  opacity: 0.18;
}

#about .eyebrow {
  color: var(--gold);
}

#about h2 {
  color: var(--ink);
}

#about .about-statement,
#about.about-band p:not(.eyebrow) {
  max-width: 840px;
}

#about .about-statement p {
  color: var(--soft-text-strong);
}

body.motion-enhanced #about .story-item,
body.motion-enhanced .footer.story-item,
body.motion-enhanced .footer .story-item {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

.section-head p,
.copy-block p,
.about-statement p,
.event-card p,
.results-row p,
.live-feed p,
.access-layout p,
.detail-card p,
.brand-line-card p,
.contact-aside p,
.contact-entity p,
.contact-status {
  color: var(--soft-text);
}

.section-dark p,
.event-card-feature p,
.section-dark .detail-card p,
.section-dark .live-panel p {
  color: rgba(246, 242, 234, 0.82);
}

#about.section-dark p {
  color: var(--soft-text-strong);
}

.hero-lead,
.featured-event p,
.featured-event li {
  color: rgba(255, 255, 255, 0.9);
}

.main-nav a,
.footer-links,
.footer-links a {
  color: rgba(17, 16, 13, 0.74);
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--ink);
}

.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 74px;
  min-height: 28px;
  padding: 6px 10px 5px;
  border: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  line-height: 1;
  text-align: center;
}

.status.live,
.status.upcoming,
.status.archived,
.status.finished,
.status.standby,
.status.planning,
.event-card .status.live,
.event-card .status.upcoming,
.event-card .status.finished,
.schedule-item .status.upcoming {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  background: transparent;
  line-height: 1;
}

.button,
.nav-cta,
.tab-button,
.date-button,
.flight-button {
  text-align: center;
  line-height: 1;
}

.go-mini-logo,
.event-card-logo,
.event-hero-logo,
.brand-line-logo,
.ns-line-logo,
.go-line-logo {
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
}

.brand-line-logo-wrap {
  border-bottom-color: rgba(38, 33, 27, 0.12);
}

.footer {
  background: rgba(248, 245, 239, 0.94);
  color: var(--ink);
  border-top: 1px solid rgba(38, 33, 27, 0.12);
  box-shadow: none;
}

.footer a {
  color: rgba(17, 16, 13, 0.76);
}

.footer .brand-logo {
  filter: none;
}

.footer-legal {
  color: rgba(17, 16, 13, 0.62);
}

.footer-legal strong {
  color: rgba(17, 16, 13, 0.84);
}

.social-links a {
  border-color: rgba(38, 33, 27, 0.18);
  background: transparent;
  color: rgba(17, 16, 13, 0.72);
}

.social-links a:hover {
  border-color: rgba(158, 133, 89, 0.58);
  color: var(--ink);
}

.news-list time,
.event-date,
.contact-note span,
.contact-entity span,
.payout-head,
.results-table [role="row"]:first-child,
.structure-table [role="row"]:first-child,
.prize-table [role="row"]:first-child {
  color: rgba(17, 16, 13, 0.72);
}

.partner-logo.is-missing-logo::after {
  color: rgba(17, 16, 13, 0.76);
}

.section-dark .news-list time,
.section-dark .payout-head,
.section-dark .results-table [role="row"]:first-child,
.section-dark .structure-table [role="row"]:first-child,
.section-dark .prize-table [role="row"]:first-child {
  color: rgba(246, 242, 234, 0.78);
}

/* Logo collision fixes and cleaner white translucent surfaces */
.event-card,
.results-row article,
.brand-line-card,
.live-panel,
.info-grid article,
.live-feed article,
.detail-card,
.contact-form,
.contact-card,
.tournament-result,
.tournament-result-card,
.live-update-card,
.flight-detail-card {
  background: rgba(255, 255, 255, 0.9);
}

.brand-line-card,
.go-line {
  background: rgba(255, 255, 255, 0.92);
}

.section-dark .event-card,
.section-dark .results-row article,
.section-dark .live-panel,
.section-dark .detail-card,
#results .results-row article {
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
}

.event-card-feature {
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
}

.event-card {
  overflow: hidden;
}

.event-card-logo {
  position: static;
  order: 0;
  align-self: flex-end;
  flex: 0 0 auto;
  margin: 0 0 18px auto;
  opacity: 1;
  object-fit: contain;
}

.event-card .status {
  order: 1;
  margin: 0 0 18px;
}

.event-card h3,
.event-card .series-type,
.event-card p,
.event-card .event-date,
.event-card a {
  order: 2;
}

.event-card-feature p,
.section-dark .event-card p,
.section-dark .results-row p,
#results .results-row p {
  color: var(--soft-text);
}

.event-card-feature .button,
.section-dark .button {
  color: var(--ink);
  border-color: rgba(17, 16, 13, 0.3);
}

.event-card-feature .button.primary,
.section-dark .button.primary {
  background: var(--ink);
  color: var(--paper);
}

/* Consistent vertical rhythm for series/result cards */
.event-card-logo {
  width: 118px;
  height: 72px;
  max-width: 118px;
  max-height: 72px;
  object-fit: contain;
  object-position: center center;
  margin: 0 0 20px auto;
}

.go-card-logo,
.ns-card-logo {
  width: 118px;
  height: 72px;
  max-width: 118px;
  max-height: 72px;
}

.event-card .status {
  width: 100%;
  min-height: 32px;
  margin-bottom: 28px;
}

.event-card .series-type {
  min-height: 1.55em;
  margin-top: 0;
  margin-bottom: 18px;
}

.event-card .event-date {
  min-height: 1.55em;
  margin-top: 0;
  margin-bottom: 18px;
}

.event-card h3 {
  min-height: 2.42em;
  margin-top: 0;
}

.event-card > p:not(.series-type):not(.event-date) {
  min-height: 3.7em;
}

#live .live-panel,
#live .live-panel h3,
#live .live-panel p,
#live .live-panel .metric {
  color: var(--ink);
}

#live .live-panel .metric {
  font-weight: 500;
}

#live .live-panel .button {
  color: var(--ink);
  border-color: rgba(17, 16, 13, 0.32);
}

.brand-line-logo-wrap {
  height: 150px;
  min-height: 150px;
  padding-bottom: 0;
  align-items: center;
  border-bottom: 1px solid rgba(38, 33, 27, 0.12);
}

.ns-line-logo,
.go-line-logo {
  max-height: 118px;
  object-fit: contain;
}

.ns-line-logo {
  width: min(300px, 84%);
}

.go-line-logo {
  width: 118px;
  height: 118px;
}

.brand-line-card span {
  display: block;
  min-height: 1.6em;
  margin-top: 0;
}

.brand-line-card h3 {
  min-height: 2.2em;
}

.event-card-logo {
  align-self: center;
  margin-right: auto;
  margin-left: auto;
}

.brand-line-logo-wrap {
  justify-content: center;
}

@media (max-width: 620px) {
  .event-card h3,
  .event-card > p:not(.series-type):not(.event-date) {
    min-height: 0;
  }
}

/* Event detail pages: keep the luxury tone without oversized gaps or title collisions */
.hero-event {
  min-height: auto;
}

.hero-event .hero-content,
.hero-event .event-hero-content {
  display: block;
  min-height: auto;
  padding-top: clamp(92px, 10vw, 148px);
  padding-bottom: clamp(54px, 7vw, 92px);
}

.hero-event h1 {
  max-width: min(940px, 100%);
  margin-top: clamp(18px, 3vw, 30px);
  font-size: clamp(3.2rem, 7vw, 6.6rem);
  line-height: 1.02;
  letter-spacing: 0.04em;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: balance;
}

.hero-event .hero-lead {
  margin-top: clamp(18px, 3vw, 28px);
}

.event-tabs + .tab-panel.section,
main > .event-section,
.event-section {
  min-height: 0;
  padding-top: 36px;
}

.event-section .section-head {
  margin-bottom: clamp(24px, 3vw, 40px);
  padding-top: 18px;
}

.event-section .section-head h2 {
  font-size: clamp(2.45rem, 5.4vw, 4.9rem);
  line-height: 1.02;
}

.event-section .schedule-tools {
  margin-top: 0;
}

body.motion-enhanced .event-section .story-item {
  opacity: 1;
  transform: none;
  filter: none;
  transition-delay: 0ms !important;
}

@media (max-width: 720px) {
  .hero-event .hero-content,
  .hero-event .event-hero-content {
    padding-top: 88px;
    padding-bottom: 48px;
  }

  .hero-event h1 {
    font-size: clamp(2.5rem, 12vw, 4.25rem);
    line-height: 1.04;
    letter-spacing: 0.025em;
  }

  .event-tabs + .tab-panel.section,
  main > .event-section,
  .event-section {
    padding-top: 26px;
  }

  .event-section .section-head {
    margin-bottom: 26px;
    padding-top: 18px;
  }
}

/* Typography refinement: fewer voices, more luxury-residence calm */
:root {
  --type-jp-serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --type-ui: "Jost", "Noto Serif JP", "Yu Mincho", serif;
  --type-display: "Cormorant Garamond", "Noto Serif JP", serif;
}

body {
  font-family: var(--type-jp-serif);
  font-weight: 400;
  letter-spacing: 0.018em;
  line-height: 1.78;
}

.hero h1,
.event-card h3,
.results-row h3,
.brand-line-card h3 {
  font-family: var(--type-display);
  font-weight: 500;
}

.section-head h2,
.section h2,
.about-statement h2,
.copy-block h2,
.detail-card h2,
.detail-card h3,
.contact-form h2,
.news-list h3,
.schedule-item h3,
.live-panel h3,
.featured-event h2 {
  font-family: var(--type-jp-serif);
  font-weight: 500;
  letter-spacing: 0.035em;
}

.hero-lead,
.copy-block p,
.about-statement p,
.section-head p,
.brand-line-card p,
.event-card p,
.results-row p,
.live-panel p,
.detail-card p,
.news-list p,
.schedule-item p,
.contact-form p,
.event-meta-grid strong,
.info-grid strong,
.footer p,
.footer address {
  font-family: var(--type-jp-serif);
  font-weight: 400;
  letter-spacing: 0.018em;
  line-height: 1.95;
}

.main-nav,
.nav-cta,
.button,
.status,
.eyebrow,
.text-link,
.series-type,
.event-date,
.event-tabs button,
.date-filter button,
.schedule-search span,
.schedule-search-count,
.sponsor-logo span,
.flight-button,
.live-meta,
.tag,
.event-meta-grid span,
.info-grid span,
.structure-table [role="row"]:first-child,
.prize-table [role="row"]:first-child,
.results-table [role="row"]:first-child,
.payout-head,
.footer a {
  font-family: var(--type-ui);
  font-weight: 500;
}

.main-nav,
.nav-cta,
.status,
.eyebrow,
.text-link,
.series-type,
.event-date,
.event-tabs button,
.date-filter button,
.schedule-search span,
.flight-button,
.tag,
.event-meta-grid span,
.info-grid span,
.payout-head {
  letter-spacing: 0.14em;
}

.button {
  letter-spacing: 0.08em;
}

.series-type,
.event-date,
.event-meta-grid span,
.info-grid span {
  font-weight: 500;
}

/* Keep the home hero movie cropped from the true center */
.hero-video-bg,
.hero-video-card {
  object-position: center center;
}

.hero-home .hero-video-bg {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.hero-home .hero-video-stage {
  z-index: 0;
  display: block;
  opacity: 1;
}

.hero-home .hero-media {
  z-index: -1;
}

.hero-home .hero-content {
  position: relative;
  z-index: 2;
}

@media (max-width: 620px) {
  .hero-home .hero-video-bg {
    object-position: 50% 50%;
  }
}

/* Mobile polish pass */
.menu-toggle {
  display: none;
}

@media (max-width: 760px) {
  .topbar {
    min-height: 62px;
    align-items: center;
    flex-wrap: nowrap;
    gap: 14px;
    padding: 10px 18px;
  }

  .brand-logo {
    height: 36px;
    max-width: 152px;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    margin-left: auto;
    border: 1px solid rgba(38, 33, 27, 0.24);
    background: rgba(248, 245, 239, 0.92);
    color: var(--ink);
    cursor: pointer;
    appearance: none;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin-inline: auto;
    background: #0b0a09;
    transition: transform 240ms ease, opacity 240ms ease;
  }

  .topbar.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(42deg);
  }

  .topbar.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .topbar.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-42deg);
  }

  .topbar .nav-cta {
    display: none !important;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    width: 100%;
    max-height: calc(100svh - 62px);
    padding: 10px 18px 18px;
    overflow: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(248, 245, 239, 0.98);
    border-bottom: 1px solid rgba(38, 33, 27, 0.12);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.16);
  }

  .topbar.is-menu-open .main-nav {
    display: flex;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    border-bottom: 1px solid rgba(38, 33, 27, 0.09);
    color: var(--ink);
    font-size: 0.74rem;
  }

  .hero-home,
  .hero-home .hero-content {
    min-height: calc(100svh - 62px);
  }

  .hero-home .hero-content {
    justify-content: flex-start;
    padding-top: clamp(46px, 8svh, 66px);
    padding-bottom: 18px;
  }

  .hero-home h1 {
    max-width: 100%;
    margin-top: 0;
    font-size: clamp(3.05rem, 14vw, 4.6rem);
    line-height: 0.84;
  }

  .hero-home .hero-lead {
    margin-top: 14px;
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .featured-event {
    margin-top: 22px;
    padding-top: 18px;
  }

  .featured-event-title {
    align-items: center;
    gap: 12px;
  }

  .go-mini-logo {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
  }

  .featured-event h2,
  .featured-event h3 {
    font-size: clamp(1.5rem, 7vw, 2.15rem);
    line-height: 1.08;
  }

  .featured-event p,
  .featured-event li {
    margin-top: 8px;
    font-size: 0.9rem;
    line-height: 1.7;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .featured-event .hero-actions {
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
  }

  .hero-actions .button,
  .button {
    width: auto;
    min-width: 132px;
    max-width: 168px;
    min-height: 38px;
    padding: 9px 12px;
    text-align: center;
  }

  .status,
  .event-card .status,
  .featured-event .status {
    width: auto;
    min-width: 96px;
    max-width: 148px;
    min-height: 30px;
    margin-inline: auto;
    padding: 7px 10px;
    text-align: center;
  }

  .featured-event .status {
    margin-left: 0;
    margin-right: 0;
  }

  .event-card-logo {
    margin-bottom: 26px;
  }

  #brand-lines .section-head h2 {
    max-width: 9.8em;
  }

  #brand-lines .brand-line-grid,
  #series .series-grid,
  #results .results-row {
    display: flex;
    width: calc(100vw - 36px);
    max-width: none;
    margin-left: calc(50% - 50vw + 18px);
    margin-right: calc(50% - 50vw + 18px);
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 0 18px 12px 0;
  }

  #brand-lines .brand-line-grid::-webkit-scrollbar,
  #series .series-grid::-webkit-scrollbar,
  #results .results-row::-webkit-scrollbar {
    display: none;
  }

  #brand-lines .brand-line-card,
  #series .event-card,
  #results .event-card,
  #results .results-row article {
    flex: 0 0 min(82vw, 340px);
    scroll-snap-align: start;
  }

  body.motion-enhanced .hero .story-item,
  body.motion-enhanced #news .story-item,
  body.motion-enhanced #sponsors .story-item,
  body.motion-enhanced .sponsor-board,
  body.motion-enhanced .sponsor-logo {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition-delay: 0ms !important;
  }

  body.motion-enhanced .story-item {
    transform: translateY(14px);
    filter: blur(3px);
    transition-duration: 680ms;
  }
}

.hero-home .hero-video-bg {
  opacity: 0.92;
  filter: grayscale(0.04) saturate(0.9) contrast(1.02) brightness(0.88);
}

.hero-home .hero-video-stage::after {
  background:
    linear-gradient(90deg, rgba(8, 7, 5, 0.62) 0%, rgba(8, 7, 5, 0.34) 50%, rgba(8, 7, 5, 0.12) 100%),
    linear-gradient(0deg, rgba(8, 7, 5, 0.68) 0%, rgba(8, 7, 5, 0.22) 46%, rgba(8, 7, 5, 0.08) 100%);
}

@media (max-width: 760px) {
  .topbar {
    padding-right: 74px;
  }

  header.topbar > button.menu-toggle {
    position: fixed;
    top: 12px;
    right: 18px;
    z-index: 9999;
    display: grid !important;
    place-items: center;
    gap: 0;
    width: 46px !important;
    height: 38px !important;
    min-width: 46px !important;
    min-height: 38px !important;
    padding: 0 !important;
    border: 1px solid rgba(38, 33, 27, 0.22) !important;
    border-radius: 0 !important;
    background: rgba(248, 245, 239, 0.86) !important;
    color: #0b0a09 !important;
    opacity: 1 !important;
    visibility: visible !important;
    flex: 0 0 42px;
    box-shadow: none;
    pointer-events: auto !important;
    -webkit-tap-highlight-color: transparent;
  }

  header.topbar > button.menu-toggle span {
    grid-area: 1 / 1;
    display: block !important;
    width: 20px !important;
    height: 1px !important;
    margin: 0 !important;
    background: #0b0a09 !important;
    opacity: 1 !important;
    transform-origin: center;
  }

  header.topbar > button.menu-toggle span:nth-child(1) {
    transform: translateY(-5px);
  }

  header.topbar > button.menu-toggle span:nth-child(2) {
    transform: translateY(0);
  }

  header.topbar > button.menu-toggle span:nth-child(3) {
    transform: translateY(5px);
  }

  header.topbar.is-menu-open > button.menu-toggle span:nth-child(1) {
    transform: rotate(36deg);
  }

  header.topbar.is-menu-open > button.menu-toggle span:nth-child(2) {
    opacity: 0 !important;
  }

  header.topbar.is-menu-open > button.menu-toggle span:nth-child(3) {
    transform: rotate(-36deg);
  }

  .hero-home .hero-video-bg {
    opacity: 0.9;
    filter: grayscale(0.02) saturate(0.94) contrast(1.02) brightness(0.92);
  }

  .hero-home .hero-video-stage::after {
    background:
      linear-gradient(90deg, rgba(8, 7, 5, 0.62) 0%, rgba(8, 7, 5, 0.34) 100%),
      linear-gradient(0deg, rgba(8, 7, 5, 0.68) 0%, rgba(8, 7, 5, 0.22) 58%, rgba(8, 7, 5, 0.08) 100%);
  }
}

@media (max-width: 760px) {
  .hero-home h1 {
    font-size: clamp(3.45rem, 16.5vw, 5.35rem);
    line-height: 0.82;
  }

  .featured-event {
    margin-top: 18px;
  }

  .featured-event .status,
  .status,
  .event-card .status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .featured-event .status {
    display: flex;
  }

  #series .event-card,
  #results .event-card,
  #results .results-row article,
  #brand-lines .brand-line-card {
    padding: 20px 20px 22px;
  }

  #series .event-card,
  #results .event-card,
  #results .results-row article {
    flex-basis: min(78vw, 318px);
  }

  #brand-lines .brand-line-card {
    flex-basis: min(80vw, 326px);
  }

  .event-card-logo,
  .go-card-logo,
  .ns-card-logo {
    width: 136px;
    height: 82px;
    max-width: 136px;
    max-height: 82px;
    margin-bottom: 18px;
  }

  .event-card .status {
    min-height: 28px;
    margin-bottom: 20px;
  }

  .event-card .series-type,
  .event-card .event-date {
    min-height: 0;
    margin-bottom: 10px;
    line-height: 1.55;
  }

  .event-card h3 {
    min-height: 0;
    margin-bottom: 12px;
    line-height: 1.08;
  }

  .event-card p,
  .event-card > p:not(.series-type):not(.event-date),
  .results-row p,
  .brand-line-card p {
    min-height: 0;
    line-height: 1.7;
  }

  .event-card a {
    margin-top: 14px;
  }

  #news.section,
  #sponsors.section {
    padding-top: 48px;
  }

  #news .section-head,
  #sponsors .section-head {
    margin-bottom: 28px;
    padding-top: 18px;
  }
}

/* Final mobile/header polish */
.status,
.event-card .status,
.featured-event .status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

.event-card .status {
  width: 100%;
}

#news.section,
#sponsors.section {
  padding-top: clamp(52px, 6vw, 86px);
}

#news .section-head,
#sponsors .section-head {
  margin-bottom: clamp(28px, 4vw, 46px);
  padding-top: 20px;
}

#sponsors h2 {
  white-space: nowrap;
  font-size: clamp(1.9rem, 4.7vw, 5rem);
}

.event-card,
.results-row article {
  min-height: 288px;
  padding: clamp(24px, 3vw, 38px);
}

.event-card-logo,
.go-card-logo,
.ns-card-logo {
  width: 132px;
  height: 82px;
  max-width: 132px;
  max-height: 82px;
  margin: 0 auto 20px;
  object-fit: contain;
  object-position: center;
}

.event-card .status {
  min-height: 31px;
  margin: 0 auto 22px;
  padding: 7px 12px;
}

.event-card .series-type,
.event-card .event-date {
  margin-bottom: 12px;
  line-height: 1.45;
}

.event-card h3 {
  margin-bottom: 12px;
  line-height: 1.08;
}

.event-card p,
.event-card > p:not(.series-type):not(.event-date),
.results-row p {
  line-height: 1.66;
}

@media (max-width: 760px) {
  #sponsors h2 {
    width: 100%;
    font-size: clamp(1.28rem, 7vw, 1.9rem);
    letter-spacing: 0.015em;
  }

  .partner-logo.logo-pokerquest-card {
    padding: 10px;
  }

  .partner-logo.logo-pokerquest-card img {
    max-height: 58px;
  }

  .topbar {
    min-height: 58px;
    padding: 9px 16px;
    background: rgba(248, 245, 239, 0.94);
    border-bottom: 1px solid rgba(35, 31, 26, 0.1);
    color: var(--ink);
  }

  .brand-logo {
    height: 32px;
    max-width: 142px;
  }

  header.topbar > button.menu-toggle {
    position: relative !important;
    top: auto;
    right: auto;
    z-index: 5;
    display: inline-grid !important;
    place-items: center;
    width: 44px !important;
    height: 38px !important;
    min-width: 44px !important;
    min-height: 38px !important;
    margin-left: auto;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: var(--ink) !important;
    box-shadow: none !important;
    backdrop-filter: none;
  }

  header.topbar > button.menu-toggle span {
    width: 22px !important;
    height: 1px !important;
    background: rgba(17, 16, 13, 0.92) !important;
  }

  .topbar.is-menu-open .main-nav,
  body.menu-open .main-nav,
  html.menu-open .main-nav {
    display: flex !important;
  }

  .main-nav {
    top: 100%;
    background: rgba(248, 245, 239, 0.98);
    border-top: 1px solid rgba(158, 133, 89, 0.18);
  }

  .hero-home .hero-content {
    padding-top: clamp(34px, 6svh, 56px);
  }

  .hero-home h1 {
    font-size: clamp(3.75rem, 18vw, 5.85rem);
    line-height: 0.82;
  }

  .hero-home .hero-video-bg {
    opacity: 0.94;
    filter: grayscale(0.01) saturate(0.98) contrast(1.02) brightness(0.96);
  }

  .hero-home .hero-video-stage::after {
    background:
      linear-gradient(90deg, rgba(8, 7, 5, 0.52) 0%, rgba(8, 7, 5, 0.24) 100%),
      linear-gradient(0deg, rgba(8, 7, 5, 0.58) 0%, rgba(8, 7, 5, 0.18) 58%, rgba(8, 7, 5, 0.06) 100%);
  }

  #series .event-card,
  #results .event-card,
  #results .results-row article {
    flex-basis: min(76vw, 304px);
    min-height: 0;
    padding: 18px 18px 20px;
  }

  .event-card-logo,
  .go-card-logo,
  .ns-card-logo {
    width: 140px;
    height: 82px;
    max-width: 140px;
    max-height: 82px;
    margin-bottom: 16px;
  }

  .event-card .status {
    min-height: 28px;
    margin-bottom: 16px;
    padding-block: 6px;
  }

  .event-card .series-type,
  .event-card .event-date {
    margin-bottom: 8px;
    line-height: 1.38;
  }

  .event-card h3 {
    margin-bottom: 10px;
    line-height: 1.06;
  }

  .event-card p,
  .event-card > p:not(.series-type):not(.event-date),
  .results-row p {
    line-height: 1.58;
  }

  #news.section,
  #sponsors.section {
    padding-top: 34px;
  }

  #news .section-head,
  #sponsors .section-head {
    margin-bottom: 22px;
    padding-top: 14px;
  }
}

/* Hero spacing adjustment */
.hero-home .featured-event {
  margin-top: clamp(78px, 11vw, 168px);
}

@media (max-width: 760px) {
  .hero-home {
    --hero-upper-shift: clamp(48px, 6.5svh, 58px);
  }

  .hero-home h1 {
    margin-top: var(--hero-upper-shift);
  }

  .hero-home .featured-event {
    margin-top: calc(clamp(132px, 18svh, 190px) - var(--hero-upper-shift));
  }
}

/* Layout cleanup: prevent edge overflow and keep logo tiles disciplined. */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

main,
.section,
.topbar,
.footer {
  max-width: 100%;
}

.partner-logo.logo-pokerquest-card {
  padding: 14px 18px;
  background: #100806;
}

.partner-logo.logo-pokerquest-card img {
  width: auto;
  height: auto;
  max-width: 92%;
  max-height: 66px;
  object-fit: contain;
  object-position: center;
}

#about.section.about-band {
  padding-top: clamp(34px, 4.6vw, 62px);
}

@media (max-width: 760px) {
  #brand-lines .brand-line-grid,
  #series .series-grid,
  #results .results-row {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-right: 0;
  }

  #brand-lines .brand-line-card,
  #series .event-card,
  #results .event-card,
  #results .results-row article {
    flex-basis: min(78vw, 304px);
  }

  #sponsors .section-head {
    overflow: hidden;
  }

  #sponsors h2 {
    max-width: 100%;
    white-space: nowrap;
    font-size: clamp(1.16rem, 6.2vw, 1.72rem);
  }

  .partner-logo.logo-pokerquest-card {
    padding: 12px 14px;
  }

  .partner-logo.logo-pokerquest-card img {
    max-width: 90%;
    max-height: 48px;
  }

  #about.section.about-band {
    padding-top: 34px;
  }
}

/* Live update card should feel like a concise notice, not a giant panel. */
#live .live-panel {
  max-width: 620px;
  padding: clamp(22px, 3vw, 34px);
}

#live .live-panel .status {
  margin-bottom: 16px;
}

#live .live-panel h3 {
  margin: 0 0 12px;
  font-size: clamp(1.28rem, 2.1vw, 1.72rem);
  line-height: 1.18;
}

#live .live-panel .metric {
  margin: 10px 0 14px;
  font-size: clamp(1.5rem, 2.7vw, 2.25rem);
  line-height: 1.08;
}

#live .live-panel p:not(.metric) {
  margin-bottom: 18px;
  line-height: 1.62;
}

#live .live-panel .button {
  min-height: 38px;
  padding: 9px 16px;
}

@media (max-width: 760px) {
  #live .live-panel {
    max-width: 100%;
    padding: 20px;
  }

  #live .live-panel .metric {
    font-size: 1.5rem;
  }
}

/* Brand cards: match the tighter event-card scale. */
#brand-lines .brand-line-grid {
  grid-template-columns: repeat(2, minmax(0, 376px));
  justify-content: center;
  align-items: stretch;
}

#brand-lines .brand-line-card {
  min-height: 0;
  padding: 24px 24px 26px;
}

#brand-lines .brand-line-logo-wrap {
  height: 104px;
  min-height: 104px;
  margin-bottom: 20px;
  padding-bottom: 0;
}

#brand-lines .ns-line-logo {
  width: min(218px, 78%);
  max-height: 88px;
}

#brand-lines .go-line-logo {
  width: 92px;
  height: 92px;
  max-height: 92px;
}

#brand-lines .brand-line-card span,
#brand-lines .brand-line-card h3 {
  min-height: 0;
}

#brand-lines .brand-line-card h3 {
  margin: 8px 0 10px;
  font-size: clamp(1.34rem, 2vw, 1.72rem);
  line-height: 1.08;
}

#brand-lines .brand-line-card p {
  line-height: 1.62;
}

/* One consistent reveal style across sections. */
body.motion-enhanced .story-item {
  opacity: 0 !important;
  transform: translateY(24px) !important;
  filter: blur(5px) !important;
  transition:
    opacity 920ms ease,
    transform 920ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 920ms ease !important;
}

body.motion-enhanced .story-item.is-in-view,
body.motion-enhanced .story-scene:target .story-item {
  opacity: 1 !important;
  transform: translateY(0) !important;
  filter: blur(0) !important;
}

@media (max-width: 760px) {
  #brand-lines .brand-line-grid {
    justify-content: flex-start;
  }

  #brand-lines .brand-line-card {
    flex-basis: min(78vw, 304px);
    padding: 20px 20px 22px;
  }

  #brand-lines .brand-line-logo-wrap {
    height: 88px;
    min-height: 88px;
    margin-bottom: 16px;
  }

  #brand-lines .ns-line-logo {
    width: min(190px, 78%);
    max-height: 72px;
  }

  #brand-lines .go-line-logo {
    width: 74px;
    height: 74px;
    max-height: 74px;
  }

  #brand-lines .brand-line-card h3 {
    font-size: 1.28rem;
  }
}

/* Downstream event pages: align with the fixed top-page tone. */
.hero-event {
  min-height: clamp(520px, 68svh, 760px);
  background: var(--ink);
}

.hero-event .hero-media {
  opacity: 0.92;
  filter: grayscale(0.06) saturate(0.9) contrast(1.02) brightness(0.84);
}

.hero-event::after {
  background:
    linear-gradient(90deg, rgba(8, 7, 5, 0.74) 0%, rgba(8, 7, 5, 0.34) 54%, rgba(8, 7, 5, 0.12) 100%),
    linear-gradient(0deg, rgba(8, 7, 5, 0.82) 0%, rgba(8, 7, 5, 0.24) 62%, rgba(8, 7, 5, 0.08) 100%);
}

.hero-event .event-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(1180px, calc(100% - clamp(36px, 8vw, 120px)));
  min-height: clamp(520px, 68svh, 760px);
  padding-top: clamp(96px, 10vw, 150px);
  padding-bottom: clamp(48px, 7vw, 84px);
}

.hero-event .eyebrow {
  margin-bottom: 18px;
}

.hero-event .event-hero-logo {
  width: clamp(70px, 7vw, 104px);
  margin: 0 0 clamp(22px, 3vw, 34px);
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.34));
}

.hero-event h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  line-height: 0.98;
  letter-spacing: 0.035em;
}

.hero-event .hero-lead {
  max-width: 680px;
  margin-top: clamp(20px, 3vw, 32px);
  color: rgba(255, 255, 255, 0.84);
}

.hero-event .hero-actions {
  margin-top: clamp(20px, 3vw, 34px);
}

.hero-event .button.primary {
  min-width: 188px;
  min-height: 46px;
  padding: 12px 22px;
  background: rgba(246, 242, 234, 0.92);
  color: var(--ink);
  border-color: rgba(246, 242, 234, 0.78);
  font-size: 0.86rem;
}

.event-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(900px, 100%);
  margin-top: clamp(28px, 4vw, 44px);
  border-top: 1px solid rgba(246, 242, 234, 0.22);
  border-left: 1px solid rgba(246, 242, 234, 0.22);
}

.event-meta-grid div {
  min-height: 84px;
  padding: 14px 16px;
  border: 0;
  border-right: 1px solid rgba(246, 242, 234, 0.22);
  border-bottom: 1px solid rgba(246, 242, 234, 0.22);
  border-radius: 0;
  background: rgba(246, 242, 234, 0.08);
  backdrop-filter: blur(8px);
}

.event-meta-grid span {
  color: rgba(242, 210, 124, 0.92);
  font-family: var(--type-ui);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
}

.event-meta-grid strong {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  line-height: 1.34;
}

.event-tabs {
  top: 70px;
  justify-content: center;
  gap: 0;
  padding: 0 clamp(18px, 4vw, 54px);
  background: rgba(248, 245, 239, 0.96);
  border-top: 1px solid rgba(38, 33, 27, 0.08);
  border-bottom: 1px solid rgba(38, 33, 27, 0.14);
  backdrop-filter: blur(12px);
}

.event-tabs button,
.tab-button {
  min-width: 148px;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-left: 1px solid rgba(38, 33, 27, 0.12);
  border-radius: 0;
  background: transparent;
  color: rgba(17, 16, 13, 0.72);
  font-family: var(--type-ui);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
}

.event-tabs button:last-child,
.tab-button:last-child {
  border-right: 1px solid rgba(38, 33, 27, 0.12);
}

.event-tabs button.active,
.tab-button.active {
  background: var(--ink);
  color: var(--white);
}

.event-tabs + .tab-panel.section,
main > .event-section,
.event-section {
  padding-top: clamp(52px, 7vw, 86px);
  padding-bottom: clamp(70px, 9vw, 118px);
}

.event-section .section-head {
  margin-bottom: clamp(28px, 4vw, 52px);
  padding-top: 0;
}

.event-section .section-head h2 {
  font-size: clamp(2.2rem, 4.8vw, 4.3rem);
}

.schedule-tools {
  margin: 0 0 22px;
}

.schedule-search {
  width: min(560px, 100%);
  min-height: 52px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.86);
}

.date-filter {
  gap: 0;
  margin-bottom: 24px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.date-filter button {
  min-width: 98px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.48);
}

.schedule-list {
  gap: 0;
  border-top: 1px solid var(--line);
}

.schedule-item {
  grid-template-columns: 92px minmax(0, 1fr) 112px;
  gap: clamp(16px, 3vw, 30px);
  min-height: 104px;
  padding: 18px clamp(18px, 3vw, 30px);
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.68);
}

.schedule-item:nth-child(even) {
  background: rgba(255, 255, 255, 0.42);
}

.schedule-item time {
  font-family: var(--type-display);
  font-size: 1.28rem;
  font-weight: 500;
  color: var(--ink);
}

.schedule-item h3 {
  margin: 2px 0 4px;
  font-size: clamp(1.04rem, 1.7vw, 1.28rem);
  line-height: 1.28;
}

.schedule-item p {
  color: rgba(17, 16, 13, 0.66);
  line-height: 1.54;
}

.schedule-item .status {
  justify-self: end;
  min-width: 92px;
  min-height: 30px;
}

.schedule-actions {
  margin-top: 8px;
}

.result-link,
.result-table-link {
  color: #8f6d34;
  font-family: var(--type-ui);
  letter-spacing: 0.08em;
}

.tab-panel#live-updates .live-feed,
.tab-panel#live-updates .live-update-layout {
  gap: 0;
}

.tab-panel#live-updates .live-panel,
.tab-panel#access .detail-card,
.tab-panel#access .info-grid article {
  border-radius: 0;
  background: rgba(255, 255, 255, 0.7);
}

.access-layout {
  align-items: stretch;
  gap: clamp(24px, 4vw, 46px);
}

.map-placeholder {
  min-height: 260px;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(17, 16, 13, 0.82), rgba(17, 16, 13, 0.54)),
    var(--paper-2);
  font-family: var(--type-display);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.related-band {
  background: var(--ink);
}

.related-grid a {
  border-radius: 0;
}

@media (max-width: 920px) {
  .hero-event .event-hero-content {
    width: min(100% - 36px, 1180px);
  }

  .event-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-tabs {
    top: 58px;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .hero-event,
  .hero-event .event-hero-content {
    min-height: 560px;
  }

  .hero-event h1 {
    font-size: clamp(2.72rem, 13vw, 4.3rem);
    letter-spacing: 0.02em;
  }

  .event-meta-grid {
    grid-template-columns: 1fr;
  }

  .event-tabs button,
  .tab-button {
    min-width: 122px;
    min-height: 50px;
    padding: 0 18px;
  }

  .schedule-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .schedule-item .status {
    justify-self: start;
  }
}

/* Event page density pass: keep key info above the fold and make lists lighter. */
.event-section .section-head {
  margin-bottom: 18px;
}

.event-section .schedule-tools {
  margin: 0 0 14px;
}

.schedule-item {
  grid-template-columns: 82px minmax(0, 1fr);
  min-height: 82px;
  padding: 12px clamp(14px, 2.4vw, 22px);
  gap: clamp(12px, 2vw, 22px);
}

.schedule-item > .status {
  display: none;
}

.schedule-item time {
  font-size: 1.1rem;
}

.schedule-item h3 {
  margin: 0 0 2px;
  font-size: clamp(0.98rem, 1.45vw, 1.14rem);
  line-height: 1.22;
}

.schedule-item p {
  font-size: 0.86rem;
  line-height: 1.42;
}

.schedule-actions {
  margin-top: 5px;
}

.result-link,
.result-table-link {
  font-size: 0.76rem;
}

@media (max-width: 640px) {
  .hero-event,
  .hero-event .event-hero-content {
    min-height: calc(100svh - 58px);
  }

  .hero-event .event-hero-content {
    width: calc(100% - 28px);
    padding-top: 70px;
    padding-bottom: 16px;
  }

  .hero-event .eyebrow {
    margin-bottom: 7px;
    font-size: 0.64rem;
  }

  .hero-event .event-hero-logo {
    width: 52px;
    margin-bottom: 10px;
  }

  .hero-event h1 {
    font-size: clamp(2.05rem, 10.5vw, 3.08rem);
    line-height: 0.98;
  }

  .hero-event .hero-lead {
    margin-top: 10px;
    font-size: 0.84rem;
    line-height: 1.48;
  }

  .event-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 13px;
  }

  .event-meta-grid div {
    min-height: 54px;
    padding: 7px 8px;
  }

  .event-meta-grid span {
    font-size: 0.56rem;
    letter-spacing: 0.13em;
  }

  .event-meta-grid strong {
    display: -webkit-box;
    margin-top: 3px;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.76rem;
    line-height: 1.22;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .hero-event .hero-actions {
    margin-top: 12px;
  }

  .hero-event .button.primary {
    min-width: 176px;
    min-height: 42px;
    padding: 10px 18px;
    font-size: 0.8rem;
  }

  .event-tabs + .tab-panel.section,
  main > .event-section,
  .event-section {
    padding-top: 28px;
    padding-bottom: 44px;
  }

  .event-section .section-head {
    margin-bottom: 14px;
  }

  .event-section .section-head h2 {
    font-size: clamp(1.9rem, 10vw, 2.72rem);
  }

  .schedule-search {
    min-height: 44px;
  }

  .date-filter {
    margin-bottom: 14px;
  }

  .date-filter button {
    min-height: 36px;
  }

  .schedule-item {
    grid-template-columns: 60px minmax(0, 1fr);
    min-height: 72px;
    padding: 10px 12px;
    gap: 10px;
  }

  .schedule-item time {
    font-size: 0.98rem;
  }

  .schedule-item h3 {
    font-size: 0.96rem;
  }

  .schedule-item p {
    font-size: 0.78rem;
    line-height: 1.38;
  }

  .tab-panel#access.event-section {
    padding-top: 22px;
    padding-bottom: 28px;
  }

  #access .section-head {
    margin-bottom: 12px;
  }

  .access-layout {
    gap: 12px;
  }

  .map-placeholder {
    min-height: 96px;
    font-size: clamp(1.8rem, 12vw, 3rem);
  }

  .access-layout h3 {
    margin: 0 0 8px;
    font-size: 1.08rem;
    line-height: 1.34;
  }

  .access-layout p {
    margin: 0 0 12px;
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .access-layout .button {
    min-height: 36px;
    padding: 8px 14px;
  }
}

@media (max-width: 640px) and (max-height: 700px) {
  .hero-event .event-hero-content {
    padding-top: 62px;
    padding-bottom: 12px;
  }

  .hero-event .event-hero-logo {
    width: 44px;
    margin-bottom: 8px;
  }

  .hero-event h1 {
    font-size: clamp(1.86rem, 9.4vw, 2.72rem);
  }

  .hero-event .hero-lead {
    margin-top: 8px;
    font-size: 0.78rem;
    line-height: 1.38;
  }

  .event-meta-grid {
    margin-top: 10px;
  }

  .event-meta-grid div {
    min-height: 46px;
    padding: 6px 7px;
  }

  .event-meta-grid strong {
    font-size: 0.7rem;
  }

  .hero-event .hero-actions {
    margin-top: 9px;
  }

  .hero-event .button.primary {
    min-height: 38px;
    padding: 8px 16px;
  }
}

/* Event page fine-tuning after mobile review. */
.schedule-item > .status,
.schedule-item .status {
  display: none !important;
}

.live-update-section .section-head > .status {
  display: none !important;
}

.event-tabs + .tab-panel.section,
main > .event-section,
.event-section {
  padding-top: clamp(34px, 4.8vw, 58px);
}

.event-section .section-head {
  margin-bottom: 12px;
}

.event-section .schedule-tools {
  margin-top: 0;
  margin-bottom: 12px;
}

.related-band {
  padding-top: clamp(54px, 7vw, 86px);
}

.related-band .eyebrow {
  margin-bottom: 12px;
}

.related-band h2 {
  margin: 0 0 clamp(28px, 4vw, 48px);
  line-height: 1.08;
}

@media (max-width: 640px) {
  .hero-event .event-hero-content {
    justify-content: center;
    padding-top: 58px;
    padding-bottom: 30px;
  }

  .hero-event .eyebrow {
    margin-bottom: 9px;
  }

  .hero-event .event-hero-logo {
    width: 58px;
    margin-bottom: 12px;
  }

  .hero-event h1 {
    font-size: clamp(2.18rem, 10.8vw, 3.18rem);
  }

  .hero-event .hero-lead {
    margin-top: 12px;
  }

  .event-meta-grid {
    margin-top: 15px;
  }

  .hero-event .hero-actions {
    margin-top: 14px;
  }

  .event-tabs + .tab-panel.section,
  main > .event-section,
  .event-section {
    padding-top: 16px;
  }

  .event-section .section-head {
    margin-bottom: 8px;
  }

  .event-section .schedule-tools {
    margin-bottom: 10px;
  }

  .related-band {
    padding-top: 46px;
  }

  .related-band h2 {
    margin-bottom: 24px;
  }
}

@media (max-width: 640px) and (max-height: 700px) {
  .hero-event .event-hero-content {
    justify-content: center;
    padding-top: 54px;
    padding-bottom: 22px;
  }

  .hero-event .event-hero-logo {
    width: 50px;
    margin-bottom: 9px;
  }

  .hero-event h1 {
    font-size: clamp(1.96rem, 9.8vw, 2.78rem);
  }
}

/* Event hero and live-placeholder balance pass. */
@media (max-width: 640px) {
  .hero-event .event-hero-content {
    justify-content: flex-start;
    padding-top: clamp(90px, 15svh, 126px);
    padding-bottom: 22px;
  }

  .hero-event .eyebrow,
  .hero-event .event-hero-logo,
  .hero-event h1,
  .hero-event .hero-lead,
  .hero-event .event-meta-grid,
  .hero-event .hero-actions {
    max-width: 94%;
  }

  .hero-event .event-meta-grid {
    width: 100%;
  }

  .live-update-section .section-head {
    margin-bottom: 18px;
  }

  .live-update-section .section-copy {
    margin: 0 0 22px;
    line-height: 1.7;
  }

  .live-update-empty {
    padding-top: 18px;
  }
}

@media (max-width: 640px) and (max-height: 700px) {
  .hero-event .event-hero-content {
    padding-top: clamp(72px, 12svh, 92px);
  }
}

/* Event hero title split and tighter handoff to the tab buttons. */
.hero-event .event-title-main,
.hero-event .event-title-by {
  display: block;
}

.hero-event .event-title-by {
  margin-top: 0.04em;
  font-size: 0.78em;
}

.hero-event,
.hero-event .event-hero-content {
  min-height: clamp(500px, 62svh, 700px);
}

.hero-event .event-hero-content {
  padding-bottom: clamp(34px, 5vw, 62px);
}

@media (max-width: 640px) {
  .hero-event,
  .hero-event .event-hero-content {
    min-height: calc(82svh - 36px);
  }

  .hero-event .event-title-by {
    margin-top: 0.02em;
    font-size: 0.74em;
  }

  .hero-event .event-hero-content {
    padding-bottom: 10px;
  }
}

@media (max-width: 640px) and (max-height: 700px) {
  .hero-event,
  .hero-event .event-hero-content {
    min-height: calc(80svh - 34px);
  }
}

/* Mobile performance pass: keep the quiet fade, drop expensive blur/zoom work. */
@media (max-width: 720px), (pointer: coarse) {
  .story-paint-canvas {
    display: none;
  }

  body.motion-enhanced .story-item {
    transform: translateY(18px);
    filter: none;
    transition:
      opacity 620ms ease,
      transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  body.motion-enhanced .story-item.is-in-view {
    filter: none;
  }

  body.motion-enhanced .hero-media,
  body.motion-enhanced .hero-video-stage,
  body.motion-enhanced [class*="hero-image-"] .hero-media {
    transform: none;
    transition: none;
  }
}

/* Tournament detail pages: downstream layout refinement. */
body.page-tournament {
  --tournament-surface: rgba(255, 255, 255, 0.92);
  --tournament-surface-soft: rgba(255, 255, 255, 0.72);
}

body.page-tournament.motion-enhanced .story-item,
body.page-tournament.motion-enhanced .story-scene:target .story-item {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
}

body.page-tournament .tournament-hero,
body.page-tournament .tournament-hero .event-hero-content {
  min-height: clamp(350px, 43svh, 500px);
}

body.page-tournament .tournament-hero .event-hero-content {
  justify-content: flex-end;
  padding-top: clamp(82px, 9vw, 118px);
  padding-bottom: clamp(16px, 2.6vw, 30px);
}

body.page-tournament .tournament-hero::after {
  background:
    linear-gradient(90deg, rgba(8, 7, 5, 0.82) 0%, rgba(8, 7, 5, 0.48) 56%, rgba(8, 7, 5, 0.22) 100%),
    linear-gradient(0deg, rgba(8, 7, 5, 0.86) 0%, rgba(8, 7, 5, 0.2) 58%, rgba(8, 7, 5, 0.34) 100%);
}

body.page-tournament .tournament-hero h1 {
  max-width: 940px;
  margin-top: 0;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: 0.03em;
}

body.page-tournament .tournament-title-main,
body.page-tournament .tournament-title-sponsor {
  display: block;
}

body.page-tournament .tournament-title-sponsor {
  margin-top: 0.08em;
  font-size: 0.56em;
  line-height: 1.12;
  letter-spacing: 0.055em;
}

body.page-tournament .tournament-hero .hero-lead {
  max-width: 720px;
  margin-top: clamp(12px, 1.5vw, 18px);
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.92rem, 1.4vw, 1.04rem);
  line-height: 1.75;
}

body.page-tournament .detail-kicker {
  align-items: center;
  min-height: 34px;
  margin-bottom: clamp(18px, 2vw, 28px);
  padding: 7px 13px;
  border-color: rgba(242, 210, 124, 0.42);
  border-radius: 0;
  background: rgba(8, 7, 5, 0.28);
  color: var(--gold-2);
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

body.page-tournament main > .section.section-light {
  padding-top: clamp(12px, 2.2vw, 24px);
  background: #fbfaf7;
}

body.page-tournament main > .section.section-light > .section-head {
  display: block;
  margin-bottom: clamp(10px, 1.6vw, 16px);
  padding-bottom: 0;
  border-bottom: 0;
}

body.page-tournament main > .section.section-light > .section-head > div {
  display: none;
}

body.page-tournament main > .section.section-light > .section-head h2 {
  display: none;
}

body.page-tournament main > .section.section-light > .section-head .text-link {
  display: inline-flex;
  margin-top: 0;
}

body.page-tournament .detail-layout {
  width: min(1180px, 100%);
  margin-inline: auto;
  grid-template-columns: 1fr;
}

body.page-tournament .detail-stack {
  gap: clamp(16px, 2vw, 24px);
}

body.page-tournament .detail-card {
  padding: clamp(18px, 2.4vw, 28px);
  border-color: rgba(20, 16, 12, 0.14);
  border-radius: 0;
  background: var(--tournament-surface);
  box-shadow: none;
}

body.page-tournament .detail-card h2,
body.page-tournament .detail-card h3 {
  margin-bottom: clamp(12px, 1.6vw, 18px);
  color: var(--ink);
  font-family: "Cormorant Garamond", "Noto Serif JP", "Shippori Mincho", serif;
  font-weight: 500;
  letter-spacing: 0.04em;
}

body.page-tournament .detail-card h2 {
  font-size: clamp(1.65rem, 2.4vw, 2.3rem);
}

body.page-tournament .detail-card h3 {
  font-size: clamp(1.32rem, 2vw, 1.85rem);
}

body.page-tournament .detail-summary-grid {
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(20, 16, 12, 0.14);
  border-left: 1px solid rgba(20, 16, 12, 0.14);
}

body.page-tournament .detail-summary-grid div {
  min-height: 62px;
  padding: 9px 12px;
  border: 0;
  border-right: 1px solid rgba(20, 16, 12, 0.14);
  border-bottom: 1px solid rgba(20, 16, 12, 0.14);
  border-radius: 0;
  background: transparent;
}

body.page-tournament .detail-summary-grid span {
  color: rgba(17, 16, 13, 0.54);
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
}

body.page-tournament .detail-summary-grid strong {
  margin-top: 5px;
  color: rgba(17, 16, 13, 0.9);
  font-family: "Noto Sans JP", "Jost", sans-serif;
  font-size: clamp(0.86rem, 1.2vw, 0.96rem);
  font-weight: 500;
  line-height: 1.34;
}

body.page-tournament .tournament-timer-card {
  padding: clamp(14px, 2vw, 22px);
  border-color: rgba(20, 16, 12, 0.16);
  background: #f2eee5;
}

body.page-tournament .tournament-timer-card::before {
  content: "Live Clock";
  display: block;
  margin-bottom: 10px;
  color: rgba(17, 16, 13, 0.62);
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

body.page-tournament .waitinglist-clock {
  border: 1px solid rgba(20, 16, 12, 0.16);
  border-radius: 0;
  background: #171b29;
  padding: clamp(8px, 1.4vw, 14px);
}

body.page-tournament .wl-board {
  border-radius: 0;
}

body.page-tournament .structure-table,
body.page-tournament .prize-table {
  border-color: rgba(20, 16, 12, 0.14);
  border-radius: 0;
  background: var(--tournament-surface-soft);
}

body.page-tournament .structure-table [role="row"],
body.page-tournament .prize-table [role="row"] {
  min-height: 48px;
  gap: clamp(10px, 2vw, 22px);
  padding: 11px clamp(14px, 2vw, 22px);
  border-top-color: rgba(20, 16, 12, 0.1);
}

body.page-tournament .structure-table .table-head,
body.page-tournament .prize-table .table-head {
  min-height: 42px;
  background: #15120f;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
}

body.page-tournament .structure-table strong,
body.page-tournament .prize-table strong {
  color: rgba(17, 16, 13, 0.9);
  font-weight: 500;
}

body.page-tournament .structure-table [role="row"].is-break {
  background: rgba(180, 59, 50, 0.07);
}

body.page-tournament .structure-table [role="row"].is-break * {
  color: var(--red);
}

body.page-tournament .structure-table [role="row"][hidden],
body.page-tournament .prize-table [role="row"][hidden] {
  display: none !important;
}

body.page-tournament .detail-expand-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(240px, 100%);
  min-height: 42px;
  margin-top: 12px;
  padding: 10px 18px;
  border: 1px solid rgba(20, 16, 12, 0.22);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.58);
  color: rgba(17, 16, 13, 0.86);
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

body.page-tournament .detail-expand-button::after {
  content: "+";
  margin-left: 12px;
  font-size: 1rem;
  line-height: 1;
}

body.page-tournament .detail-expand-button[aria-expanded="true"]::after {
  content: "-";
}

body.page-tournament .detail-expand-button:hover {
  border-color: rgba(197, 150, 63, 0.48);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
}

body.page-tournament .note-list {
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid rgba(20, 16, 12, 0.14);
}

body.page-tournament .note-list li {
  line-height: 1.75;
}

body.page-tournament .photo-gallery-card {
  background: rgba(255, 255, 255, 0.9);
}

body.page-tournament .photo-gallery-card .detail-card-head {
  margin-bottom: 14px;
}

body.page-tournament .photo-gallery-placeholder .photo-note {
  max-width: 760px;
  margin: 0;
  color: rgba(17, 16, 13, 0.68);
  line-height: 1.7;
}

body.page-tournament .tournament-nav-bottom {
  width: min(1180px, 100%);
  margin: clamp(28px, 4vw, 48px) auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(20, 16, 12, 0.14);
  justify-content: space-between;
}

body.page-tournament .tournament-nav .button {
  min-width: min(210px, 100%);
  min-height: 42px;
  border-radius: 0;
}

@media (max-width: 900px) {
  body.page-tournament .detail-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body.page-tournament .tournament-hero,
  body.page-tournament .tournament-hero .event-hero-content {
    min-height: clamp(318px, 52svh, 390px);
  }

  body.page-tournament .tournament-hero .event-hero-content {
    justify-content: flex-end;
    padding-top: 76px;
    padding-bottom: 12px;
  }

  body.page-tournament .tournament-hero h1 {
    font-size: clamp(1.86rem, 9.4vw, 2.78rem);
    line-height: 1.06;
  }

  body.page-tournament .tournament-title-sponsor {
    font-size: 0.58em;
    line-height: 1.18;
  }

  body.page-tournament .tournament-hero .hero-lead {
    font-size: 0.82rem;
    line-height: 1.58;
  }

  body.page-tournament main > .section.section-light {
    padding-top: 8px;
  }

  body.page-tournament main > .section.section-light > .section-head {
    margin-bottom: 8px;
    padding-bottom: 0;
  }

  body.page-tournament main > .section.section-light > .section-head h2 {
    display: none;
  }

  body.page-tournament .detail-card {
    padding: 14px;
  }

  body.page-tournament .detail-card h2,
  body.page-tournament .detail-card h3 {
    margin-bottom: 16px;
  }

  body.page-tournament .detail-summary-grid div {
    min-height: 54px;
    padding: 8px 9px;
  }

  body.page-tournament .detail-summary-grid span {
    font-size: 0.62rem;
    letter-spacing: 0.13em;
  }

  body.page-tournament .detail-summary-grid strong {
    font-size: 0.76rem;
  }

  body.page-tournament .tournament-timer-card {
    padding: 10px;
  }

  body.page-tournament .waitinglist-clock {
    overflow: hidden;
    padding: 5px;
  }

  body.page-tournament .wl-board {
    min-width: 0;
    width: 100%;
    grid-template-columns: 0 minmax(0, 61%) minmax(104px, 39%);
    aspect-ratio: 16 / 11;
    border-width: 2px;
  }

  body.page-tournament .wl-left-pane {
    display: none;
  }

  body.page-tournament .wl-main-pane {
    grid-column: 2;
    border-left: 0;
    border-right-width: 2px;
  }

  body.page-tournament .wl-side-pane {
    grid-column: 3;
    grid-template-rows: repeat(4, minmax(0, 1fr)) minmax(22px, 0.7fr);
  }

  body.page-tournament .wl-banner {
    grid-column: 1 / -1;
    padding: 4px 6px;
    font-size: clamp(0.52rem, 2.55vw, 0.72rem);
    white-space: normal;
  }

  body.page-tournament .wl-level {
    font-size: clamp(0.82rem, 3.6vw, 1.08rem);
  }

  body.page-tournament .wl-time {
    font-size: clamp(2rem, 15vw, 4.2rem);
  }

  body.page-tournament .wl-progress {
    height: 8px;
    width: calc(100% - 16px);
    margin-block: 5px;
  }

  body.page-tournament .wl-stats {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  body.page-tournament .wl-stats span {
    padding: 3px 4px;
    font-size: clamp(0.44rem, 2.05vw, 0.6rem);
    white-space: normal;
  }

  body.page-tournament .wl-stats strong {
    padding: 3px 4px;
    font-size: clamp(0.72rem, 4.15vw, 1.18rem);
  }

  body.page-tournament .wl-side-pane > div {
    grid-template-rows: minmax(15px, 0.68fr) minmax(18px, 1fr);
    border-bottom-width: 1px;
  }

  body.page-tournament .wl-side-pane span {
    display: grid;
    place-items: center;
    padding: 2px 2px;
    font-size: clamp(0.4rem, 1.72vw, 0.54rem);
    line-height: 1.05;
    white-space: normal;
  }

  body.page-tournament .wl-side-pane strong {
    font-size: clamp(0.72rem, 3.55vw, 1.04rem);
  }

  body.page-tournament .wl-mini {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    font-size: 0.42rem;
  }

  body.page-tournament .wl-mark {
    right: 0;
    bottom: 0;
    padding: 2px 5px;
    font-size: 0.5rem;
  }

  body.page-tournament .structure-table [role="row"],
  body.page-tournament .prize-table [role="row"] {
    padding: 10px 12px;
  }

  body.page-tournament .detail-expand-button {
    width: 100%;
    min-height: 40px;
    margin-top: 10px;
    font-size: 0.7rem;
  }

  body.page-tournament .tournament-nav-bottom {
    display: grid;
    gap: 10px;
    margin-top: 28px;
  }

  body.page-tournament .tournament-nav .button {
    width: 100%;
  }
}

/* Results archive page overrides */
body.page-results {
  background: #f7f4ed;
  color: #17130f;
  overflow-x: hidden;
}

.archive-hero {
  position: relative;
  min-height: min(54vh, 560px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(7, 6, 5, 0.08) 0%, rgba(7, 6, 5, 0.12) 44%, rgba(7, 6, 5, 0.78) 100%),
    linear-gradient(90deg, rgba(7, 6, 5, 0.38), rgba(7, 6, 5, 0.08) 52%, rgba(7, 6, 5, 0.24)),
    url("bg-results-clean.jpg") center 46% / cover no-repeat;
  background-position: center 46%;
}

.archive-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(7, 6, 5, 0), #f7f4ed);
  pointer-events: none;
}

.archive-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(140px, 20vh, 210px) 0 clamp(46px, 7vh, 78px);
}

.archive-hero h1 {
  max-width: none;
  margin: 0;
  font-family: "Noto Serif JP", "Shippori Mincho", "Cormorant Garamond", serif;
  font-size: clamp(3.3rem, 8.2vw, 8.8rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0.02em;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}

.archive-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.96rem, 1.7vw, 1.12rem);
  line-height: 2;
}

.archive-section {
  padding-top: clamp(38px, 4vw, 58px);
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.archive-card {
  min-height: 420px;
}

body.page-results .archive-card {
  display: flex;
  flex-direction: column;
  padding-top: 32px;
}

body.page-results .archive-card .event-card-logo {
  display: block;
  position: static !important;
  order: 0;
  flex: 0 0 92px;
  align-self: center;
  width: 132px;
  height: 92px;
  max-width: 132px;
  max-height: 92px;
  object-fit: contain;
  object-position: center center;
  margin: 0 auto 18px !important;
  opacity: 1;
}

body.page-results .archive-card .ns-card-logo {
  width: 138px;
  max-width: 138px;
}

body.page-results .archive-card .go-card-logo {
  width: 92px;
  max-width: 92px;
}

body.page-results .archive-card .status {
  order: 1;
  align-self: stretch;
  justify-content: center;
  width: 100%;
  min-height: 32px;
  margin-top: 0;
  margin-bottom: 28px;
  text-align: center;
}

body.page-results .archive-card .series-type,
body.page-results .archive-card .event-date,
body.page-results .archive-card h3,
body.page-results .archive-card > p:not(.series-type):not(.event-date),
body.page-results .archive-card a,
body.page-results .archive-card .archive-card-disabled {
  order: 2;
}

.archive-section-head {
  align-items: end;
}

.archive-season-title {
  margin: 0;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0.035em;
}

.archive-season-break {
  margin: clamp(52px, 7vw, 96px) 0 22px;
  padding-top: clamp(34px, 4vw, 54px);
  border-top: 1px solid rgba(20, 16, 12, 0.14);
}

.archive-card-disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid rgba(20, 16, 12, 0.2);
  color: #8b6b38;
  font-family: "Jost", "Noto Serif JP", serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
}

.page-results .archive-grid + .archive-season-break {
  margin-top: clamp(52px, 7vw, 96px);
}

body.page-results .footer {
  margin-top: 0;
}

body.page-results .story-item,
body.page-results .story-scene,
body.page-results .archive-hero,
body.page-results .archive-card,
body.page-results .section-head {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
  animation: none !important;
}

body.page-contact #contact-title {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .archive-hero {
    min-height: 48vh;
    background-position: center 48%;
  }

  .archive-hero-inner {
    width: min(100% - 36px, 680px);
    padding: 128px 0 44px;
  }

  .archive-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 0 18px 12px;
    margin-inline: -18px;
    scroll-snap-type: x mandatory;
  }

  .archive-card {
    flex: 0 0 min(78vw, 330px);
    min-height: 390px;
    scroll-snap-align: start;
  }

  .archive-season-title {
    font-size: clamp(3.2rem, 13vw, 5.5rem);
  }
}

@media (max-width: 560px) {
  .archive-hero-inner {
    padding-top: 132px;
  }

  .archive-hero h1 {
    font-size: clamp(2.25rem, 11.2vw, 4.1rem);
  }

  .archive-hero p:not(.eyebrow) {
    font-size: 0.88rem;
    line-height: 1.9;
  }

  .archive-section {
    padding-top: 36px;
  }

  body.page-contact #contact-title {
    font-size: clamp(3rem, 17vw, 4.8rem);
    letter-spacing: 0.01em;
  }
}

/* Home news and sponsor heading refinement */
body:not(.page-results) #news.section {
  padding-top: clamp(34px, 4.4vw, 60px);
  padding-bottom: clamp(40px, 5.2vw, 70px);
}

body:not(.page-results) #news .section-head {
  margin-bottom: clamp(16px, 2.2vw, 24px);
  padding-top: 0;
}

body:not(.page-results) #news .section-head h2 {
  font-size: clamp(2.2rem, 4.6vw, 4.2rem);
}

body:not(.page-results) .news-list {
  max-width: min(960px, 100%);
}

body:not(.page-results) .news-list a {
  grid-template-columns: 132px 1fr;
  gap: 18px;
  padding: clamp(15px, 1.8vw, 20px) clamp(18px, 3vw, 34px);
}

body:not(.page-results) #sponsors.section {
  padding-top: clamp(42px, 5vw, 72px);
}

body:not(.page-results) #sponsors > .eyebrow {
  display: block;
  margin-bottom: clamp(22px, 3vw, 34px);
  color: var(--ink);
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: clamp(2.1rem, 5vw, 4.7rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-transform: uppercase;
}

@media (max-width: 620px) {
  body:not(.page-results) .news-list a {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-inline: 18px;
  }

  body:not(.page-results) #sponsors > .eyebrow {
    font-size: clamp(1.62rem, 7.4vw, 2.4rem);
    white-space: nowrap;
  }
}

/* Emergency mobile fallback: keep the hero movie visible while removing reveal dependency. */
@media (max-width: 720px), (pointer: coarse) {
  body.mobile-light-mode .hero-video-stage,
  body.mobile-light-mode .hero-video-bg {
    display: block !important;
  }

  body.mobile-light-mode .hero-media {
    opacity: 1 !important;
    transform: none !important;
  }

  body.mobile-light-mode .hero-content,
  body.mobile-light-mode .featured-event,
  body.mobile-light-mode .story-item,
  body.mobile-light-mode main > section,
  body.mobile-light-mode .section-head,
  body.mobile-light-mode .event-card,
  body.mobile-light-mode .brand-line-card,
  body.mobile-light-mode .live-panel,
  body.mobile-light-mode .sponsor-board {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    animation: none !important;
  }

  body.mobile-light-mode .hero-home {
    background: #0b0a09;
  }
}

/* Mobile hard fallback: keep the first view visible and preserve video framing. */
@media (max-width: 720px), (pointer: coarse) {
  .hero-home {
    background: #0b0a09 !important;
    isolation: isolate;
  }

  .hero-home .hero-video-stage {
    display: block !important;
    z-index: 1 !important;
    opacity: 1 !important;
  }

  .hero-home .hero-video-bg {
    display: block !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    opacity: 1 !important;
    filter: grayscale(0.01) saturate(1.02) contrast(1.02) brightness(1.02) !important;
  }

  .hero-home .hero-media {
    z-index: 0 !important;
    opacity: 1 !important;
    transform: none !important;
    filter: saturate(0.86) contrast(1.03) brightness(0.92) !important;
    background-image:
      linear-gradient(90deg, rgba(8, 7, 5, 0.62) 0%, rgba(8, 7, 5, 0.28) 100%),
      linear-gradient(0deg, rgba(8, 7, 5, 0.68) 0%, rgba(8, 7, 5, 0.24) 58%, rgba(8, 7, 5, 0.08) 100%),
      url("bg-series-clean.jpg") !important;
    background-size: cover !important;
    background-position: center center !important;
  }

  .hero-home .hero-content {
    position: relative;
    z-index: 2 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    filter: none !important;
  }

  body.motion-enhanced .hero-home .story-item,
  body.motion-enhanced .hero-home .hero-content,
  body.motion-enhanced .hero-home .featured-event {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    filter: none !important;
  }
}

/* Hero movie must stay visible for mobile framing checks. */
.hero-home .hero-video-stage {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  overflow: hidden !important;
  transform: none !important;
}

.hero-home .hero-video-bg {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  visibility: visible !important;
  opacity: 1 !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: none !important;
  filter: grayscale(0.01) saturate(1.02) contrast(1.02) brightness(1.02) !important;
}

.hero-home .hero-video-stage::after {
  z-index: 1 !important;
}

.hero-home .hero-media {
  z-index: -1 !important;
  opacity: 0 !important;
}

.hero-home .hero-content {
  position: relative !important;
  z-index: 2 !important;
}

/* Contact title should stay on one line without overflowing. */
body.page-contact #contact-title {
  max-width: 100%;
  font-size: clamp(3.2rem, 9vw, 6.4rem);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

@media (max-width: 560px) {
  body.page-contact #contact-title {
    font-size: clamp(2.05rem, 10.2vw, 3rem);
  }
}

/* Font preview modes. Use ?font=base|mincho|editorial|sans|label. */
html[data-font="base"],
html:not([data-font]) {
  --type-jp-serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --type-ui: "Jost", "Noto Serif JP", "Yu Mincho", serif;
  --type-display: "Cormorant Garamond", "Noto Serif JP", serif;
}

html[data-font="mincho"] {
  --type-jp-serif: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --type-ui: "Jost", "Shippori Mincho", "Noto Serif JP", serif;
  --type-display: "Cormorant Garamond", "Shippori Mincho", "Noto Serif JP", serif;
}

html[data-font="editorial"] {
  --type-jp-serif: "Noto Serif JP", "Shippori Mincho", "Yu Mincho", serif;
  --type-ui: "Jost", "Noto Serif JP", serif;
  --type-display: "Libre Baskerville", "Noto Serif JP", serif;
}

html[data-font="sans"] {
  --type-jp-serif: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --type-ui: "Jost", "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  --type-display: "Cormorant Garamond", "Noto Sans JP", serif;
}

html[data-font="label"] {
  --type-jp-serif: "Jost", "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --type-ui: "Jost", "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --type-display: "Jost", "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
}

html[data-font] body {
  font-family: var(--type-jp-serif);
}

html[data-font] .hero h1,
html[data-font] .event-card h3,
html[data-font] .results-row h3,
html[data-font] .brand-line-card h3,
html[data-font] .event-hero h1,
html[data-font] body.page-tournament .detail-card h2,
html[data-font] body.page-tournament .detail-card h3,
html[data-font] #contact-title {
  font-family: var(--type-display);
}

html[data-font] .section-head h2,
html[data-font] .section h2,
html[data-font] .about-statement h2,
html[data-font] .copy-block h2,
html[data-font] .detail-card h2,
html[data-font] .detail-card h3,
html[data-font] .contact-form h2,
html[data-font] .news-list h3,
html[data-font] .schedule-item h3,
html[data-font] .live-panel h3,
html[data-font] .featured-event h2,
html[data-font] .hero-lead,
html[data-font] .copy-block p,
html[data-font] .about-statement p,
html[data-font] .section-head p,
html[data-font] .brand-line-card p,
html[data-font] .event-card p,
html[data-font] .results-row p,
html[data-font] .live-panel p,
html[data-font] .detail-card p,
html[data-font] .news-list p,
html[data-font] .schedule-item p,
html[data-font] .contact-form p,
html[data-font] .event-meta-grid strong,
html[data-font] .info-grid strong,
html[data-font] .footer p,
html[data-font] .footer address,
html[data-font] body.page-tournament .detail-summary-grid strong {
  font-family: var(--type-jp-serif);
}

html[data-font] .main-nav,
html[data-font] .nav-cta,
html[data-font] .button,
html[data-font] .status,
html[data-font] .eyebrow,
html[data-font] .text-link,
html[data-font] .series-type,
html[data-font] .event-date,
html[data-font] .event-tabs button,
html[data-font] .date-filter button,
html[data-font] .schedule-search span,
html[data-font] .schedule-search-count,
html[data-font] .sponsor-logo span,
html[data-font] .flight-button,
html[data-font] .live-meta,
html[data-font] .tag,
html[data-font] .event-meta-grid span,
html[data-font] .info-grid span,
html[data-font] .structure-table [role="row"]:first-child,
html[data-font] .prize-table [role="row"]:first-child,
html[data-font] .results-table [role="row"]:first-child,
html[data-font] .payout-head,
html[data-font] .footer a,
html[data-font] body.page-tournament .detail-kicker,
html[data-font] body.page-tournament .detail-summary-grid span,
html[data-font] body.page-tournament .tournament-timer-card::before {
  font-family: var(--type-ui);
}

html[data-font="mincho"] body {
  letter-spacing: 0.024em;
  line-height: 1.84;
}

html[data-font="mincho"] .hero h1,
html[data-font="mincho"] .event-card h3,
html[data-font="mincho"] .brand-line-card h3 {
  letter-spacing: 0.045em;
}

html[data-font="editorial"] .hero h1,
html[data-font="editorial"] .event-card h3,
html[data-font="editorial"] .brand-line-card h3,
html[data-font="editorial"] .event-hero h1 {
  letter-spacing: 0.018em;
}

html[data-font="sans"] body {
  letter-spacing: 0.01em;
  line-height: 1.72;
}

html[data-font="sans"] .hero h1,
html[data-font="sans"] .event-card h3,
html[data-font="sans"] .brand-line-card h3,
html[data-font="sans"] .event-hero h1 {
  letter-spacing: 0.035em;
}

html[data-font="label"] body,
html[data-font="label"] button,
html[data-font="label"] input,
html[data-font="label"] textarea,
html[data-font="label"] select,
html[data-font="label"] body * {
  font-family: "Jost", "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif !important;
}

/* Tokyo 2026: keep the champion's face clear of the hero copy. */
.hero-event-photo-tokyo-2026 {
  --hero-position: 42% 48%;
}

.hero-event-photo-tokyo-2026::after {
  background:
    linear-gradient(90deg, rgba(8, 7, 5, 0.86) 0%, rgba(8, 7, 5, 0.54) 32%, rgba(8, 7, 5, 0.14) 58%, rgba(8, 7, 5, 0.08) 100%),
    linear-gradient(0deg, rgba(8, 7, 5, 0.88) 0%, rgba(8, 7, 5, 0.36) 54%, rgba(8, 7, 5, 0.08) 100%);
}

.hero-event-photo-tokyo-2026 .event-hero-content {
  max-width: min(500px, calc(100% - 44px));
  padding-bottom: clamp(34px, 5.6vw, 64px);
}

.hero-event-photo-tokyo-2026 h1 {
  max-width: 8.4em;
  font-size: clamp(2.95rem, 5.8vw, 5.35rem);
  line-height: 0.98;
}

.hero-event-photo-tokyo-2026 .hero-lead {
  margin-top: 16px;
}

.hero-event-photo-tokyo-2026 .hero-actions {
  margin-top: 18px;
}

.hero-event-photo-tokyo-2026 .event-meta-grid {
  margin-top: 20px;
}

.hero-event-photo-tokyo-2026 .event-meta-grid div {
  min-height: 70px;
  padding: 12px 14px;
}

@media (max-width: 900px) {
  .hero-event-photo-tokyo-2026 {
    --hero-position: 38% 45%;
  }

  .hero-event-photo-tokyo-2026 .event-hero-content {
    max-width: min(420px, calc(100% - 36px));
  }

  .hero-event-photo-tokyo-2026 .event-hero-logo {
    width: clamp(58px, 8vw, 84px);
    margin-bottom: 16px;
  }

  .hero-event-photo-tokyo-2026 h1 {
    max-width: 7.2em;
    font-size: clamp(2.55rem, 6.8vw, 4.1rem);
  }
}

@media (max-width: 640px) {
  .hero-event-photo-tokyo-2026 {
    --hero-position: 48% 25%;
  }

  .hero-event-photo-tokyo-2026::after {
    background:
      linear-gradient(180deg, rgba(8, 7, 5, 0.08) 0%, rgba(8, 7, 5, 0.18) 40%, rgba(8, 7, 5, 0.74) 68%, rgba(8, 7, 5, 0.94) 100%);
  }

  .hero-event-photo-tokyo-2026 .event-hero-content {
    justify-content: flex-end;
    width: calc(100% - 32px);
    max-width: none;
    padding-top: 42svh;
    padding-bottom: 18px;
  }

  .hero-event-photo-tokyo-2026 h1 {
    max-width: 8em;
    font-size: clamp(2.18rem, 9vw, 3.1rem);
  }

  .hero-event-photo-tokyo-2026 .hero-lead {
    margin-top: 10px;
    font-size: 0.88rem;
    line-height: 1.48;
  }

  .hero-event-photo-tokyo-2026 .event-meta-grid {
    margin-top: 13px;
  }
}

/* Past event hero safety pass: keep champion faces clear of the copy. */
.hero-event-photo-kagoshima-2026,
.hero-event-photo-grand-final-osaka-2025-26,
.hero-event-photo-fukuoka-2025,
.hero-event-photo-toyama-2025,
.hero-event-photo-kanazawa-2025,
.hero-event-photo-kagawa-2024,
.hero-event-photo-tokyo-2024,
.hero-event-photo-osaka-2023 {
  --event-hero-copy-width: min(500px, calc(100% - 44px));
}

.hero-event-photo-kagoshima-2026::after,
.hero-event-photo-grand-final-osaka-2025-26::after,
.hero-event-photo-fukuoka-2025::after,
.hero-event-photo-toyama-2025::after,
.hero-event-photo-kanazawa-2025::after,
.hero-event-photo-kagawa-2024::after,
.hero-event-photo-tokyo-2024::after,
.hero-event-photo-osaka-2023::after {
  background:
    linear-gradient(90deg, rgba(8, 7, 5, 0.82) 0%, rgba(8, 7, 5, 0.52) 26%, rgba(8, 7, 5, 0.12) 55%, rgba(8, 7, 5, 0.06) 100%),
    linear-gradient(0deg, rgba(8, 7, 5, 0.92) 0%, rgba(8, 7, 5, 0.62) 22%, rgba(8, 7, 5, 0.12) 58%, rgba(8, 7, 5, 0.04) 100%);
}

.hero-event-photo-kagoshima-2026 .event-hero-content,
.hero-event-photo-grand-final-osaka-2025-26 .event-hero-content,
.hero-event-photo-fukuoka-2025 .event-hero-content,
.hero-event-photo-toyama-2025 .event-hero-content,
.hero-event-photo-kanazawa-2025 .event-hero-content,
.hero-event-photo-kagawa-2024 .event-hero-content,
.hero-event-photo-tokyo-2024 .event-hero-content,
.hero-event-photo-osaka-2023 .event-hero-content {
  width: var(--event-hero-copy-width);
  margin-left: clamp(24px, 5vw, 76px);
  margin-right: auto;
  padding-bottom: clamp(24px, 4vw, 48px);
}

.hero-event-photo-kagoshima-2026 .event-hero-logo,
.hero-event-photo-grand-final-osaka-2025-26 .event-hero-logo,
.hero-event-photo-fukuoka-2025 .event-hero-logo,
.hero-event-photo-toyama-2025 .event-hero-logo,
.hero-event-photo-kanazawa-2025 .event-hero-logo,
.hero-event-photo-kagawa-2024 .event-hero-logo,
.hero-event-photo-tokyo-2024 .event-hero-logo,
.hero-event-photo-osaka-2023 .event-hero-logo {
  width: clamp(54px, 5vw, 78px);
  margin-bottom: clamp(12px, 1.8vw, 18px);
}

.hero-event-photo-kagoshima-2026 h1,
.hero-event-photo-grand-final-osaka-2025-26 h1,
.hero-event-photo-fukuoka-2025 h1,
.hero-event-photo-toyama-2025 h1,
.hero-event-photo-kanazawa-2025 h1,
.hero-event-photo-kagawa-2024 h1,
.hero-event-photo-tokyo-2024 h1,
.hero-event-photo-osaka-2023 h1 {
  max-width: 8.7em;
  font-size: clamp(2.45rem, 4.9vw, 4.8rem);
  line-height: 1;
}

.hero-event-photo-kagoshima-2026 .hero-lead,
.hero-event-photo-grand-final-osaka-2025-26 .hero-lead,
.hero-event-photo-fukuoka-2025 .hero-lead,
.hero-event-photo-toyama-2025 .hero-lead,
.hero-event-photo-kanazawa-2025 .hero-lead,
.hero-event-photo-kagawa-2024 .hero-lead,
.hero-event-photo-tokyo-2024 .hero-lead,
.hero-event-photo-osaka-2023 .hero-lead {
  margin-top: 14px;
}

.hero-event-photo-kagoshima-2026 .event-meta-grid,
.hero-event-photo-grand-final-osaka-2025-26 .event-meta-grid,
.hero-event-photo-fukuoka-2025 .event-meta-grid,
.hero-event-photo-toyama-2025 .event-meta-grid,
.hero-event-photo-kanazawa-2025 .event-meta-grid,
.hero-event-photo-kagawa-2024 .event-meta-grid,
.hero-event-photo-tokyo-2024 .event-meta-grid,
.hero-event-photo-osaka-2023 .event-meta-grid {
  width: min(500px, 100%);
  margin-top: 16px;
}

.hero-event-photo-kagoshima-2026 .event-meta-grid div,
.hero-event-photo-grand-final-osaka-2025-26 .event-meta-grid div,
.hero-event-photo-fukuoka-2025 .event-meta-grid div,
.hero-event-photo-toyama-2025 .event-meta-grid div,
.hero-event-photo-kanazawa-2025 .event-meta-grid div,
.hero-event-photo-kagawa-2024 .event-meta-grid div,
.hero-event-photo-tokyo-2024 .event-meta-grid div,
.hero-event-photo-osaka-2023 .event-meta-grid div {
  min-height: 68px;
  padding: 10px 12px;
}

.hero-event-photo-kagoshima-2026 .hero-actions,
.hero-event-photo-grand-final-osaka-2025-26 .hero-actions,
.hero-event-photo-fukuoka-2025 .hero-actions,
.hero-event-photo-toyama-2025 .hero-actions,
.hero-event-photo-kanazawa-2025 .hero-actions,
.hero-event-photo-kagawa-2024 .hero-actions,
.hero-event-photo-tokyo-2024 .hero-actions,
.hero-event-photo-osaka-2023 .hero-actions {
  margin-top: 14px;
}

.hero-event-photo-tokyo-2025 {
  --hero-position: center 0%;
}

.hero-event-photo-tokyo-2025 .hero-media {
  background-size: cover, cover, cover;
  background-position: center, center, center top;
}

.hero-event-photo-tokyo-2025::after {
  background:
    linear-gradient(90deg, rgba(8, 7, 5, 0.86) 0%, rgba(8, 7, 5, 0.54) 28%, rgba(8, 7, 5, 0.16) 60%, rgba(8, 7, 5, 0.08) 100%),
    linear-gradient(0deg, rgba(8, 7, 5, 0.9) 0%, rgba(8, 7, 5, 0.58) 24%, rgba(8, 7, 5, 0.08) 62%, rgba(8, 7, 5, 0.02) 100%);
}

.hero-event-photo-tokyo-2025 .event-hero-content {
  width: min(500px, calc(100% - 44px));
  margin-left: clamp(24px, 5vw, 76px);
  margin-right: auto;
  padding-bottom: clamp(24px, 4vw, 48px);
}

.hero-event-photo-tokyo-2025 .event-hero-logo {
  width: clamp(54px, 5vw, 78px);
  margin-bottom: clamp(12px, 1.8vw, 18px);
}

.hero-event-photo-tokyo-2025 h1 {
  max-width: 8.7em;
  font-size: clamp(2.45rem, 4.9vw, 4.8rem);
  line-height: 1;
}

.hero-event-photo-tokyo-2025 .hero-lead,
.hero-event-photo-tokyo-2025 .hero-actions {
  margin-top: 14px;
}

.hero-event-photo-tokyo-2025 .event-meta-grid {
  width: min(500px, 100%);
  margin-top: 16px;
}

.hero-event-photo-tokyo-2025 .event-meta-grid div {
  min-height: 68px;
  padding: 10px 12px;
}

@media (max-width: 900px) {
  .hero-event-photo-kagoshima-2026 .event-hero-content,
  .hero-event-photo-grand-final-osaka-2025-26 .event-hero-content,
  .hero-event-photo-fukuoka-2025 .event-hero-content,
  .hero-event-photo-toyama-2025 .event-hero-content,
  .hero-event-photo-kanazawa-2025 .event-hero-content,
  .hero-event-photo-kagawa-2024 .event-hero-content,
  .hero-event-photo-tokyo-2024 .event-hero-content,
  .hero-event-photo-osaka-2023 .event-hero-content,
  .hero-event-photo-tokyo-2025 .event-hero-content {
    width: min(440px, calc(100% - 36px));
    margin-left: 18px;
  }
}

@media (max-width: 640px) {
  .hero-event-photo-kagoshima-2026::after,
  .hero-event-photo-grand-final-osaka-2025-26::after,
  .hero-event-photo-fukuoka-2025::after,
  .hero-event-photo-toyama-2025::after,
  .hero-event-photo-kanazawa-2025::after,
  .hero-event-photo-kagawa-2024::after,
  .hero-event-photo-tokyo-2024::after,
  .hero-event-photo-osaka-2023::after,
  .hero-event-photo-tokyo-2025::after {
    background:
      linear-gradient(180deg, rgba(8, 7, 5, 0.02) 0%, rgba(8, 7, 5, 0.16) 38%, rgba(8, 7, 5, 0.78) 68%, rgba(8, 7, 5, 0.95) 100%);
  }

  .hero-event-photo-kagoshima-2026 .event-hero-content,
  .hero-event-photo-grand-final-osaka-2025-26 .event-hero-content,
  .hero-event-photo-fukuoka-2025 .event-hero-content,
  .hero-event-photo-toyama-2025 .event-hero-content,
  .hero-event-photo-kanazawa-2025 .event-hero-content,
  .hero-event-photo-kagawa-2024 .event-hero-content,
  .hero-event-photo-tokyo-2024 .event-hero-content,
  .hero-event-photo-osaka-2023 .event-hero-content,
  .hero-event-photo-tokyo-2025 .event-hero-content {
    justify-content: flex-end;
    width: calc(100% - 28px);
    margin-left: auto;
    margin-right: auto;
    padding-top: 40svh;
    padding-bottom: 14px;
  }

  .hero-event-photo-kagoshima-2026 h1,
  .hero-event-photo-grand-final-osaka-2025-26 h1,
  .hero-event-photo-fukuoka-2025 h1,
  .hero-event-photo-toyama-2025 h1,
  .hero-event-photo-kanazawa-2025 h1,
  .hero-event-photo-kagawa-2024 h1,
  .hero-event-photo-tokyo-2024 h1,
  .hero-event-photo-osaka-2023 h1,
  .hero-event-photo-tokyo-2025 h1 {
    max-width: 8.4em;
    font-size: clamp(2rem, 8.5vw, 2.85rem);
  }

  .hero-event-photo-tokyo-2025 .hero-media {
    background-size: cover, cover, auto 260%;
    background-position: center, center, center top;
  }
}

/* Final title typography: Hiragino Kaku Gothic direction for brand/event names. */
:root {
  --type-kaku: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", YuGothic, "Noto Sans JP", Meiryo, sans-serif;
}

#home-title,
.featured-event h2,
.event-card h3,
.results-row h3,
.hero-event h1,
body.page-tournament .tournament-hero h1,
.schedule-item h3 {
  font-family: var(--type-kaku) !important;
  font-weight: 700;
}

#home-title {
  display: flex;
  flex-direction: column;
  gap: 0.02em;
  width: min(70vw, 760px);
  max-width: min(70vw, 760px);
  line-height: 0.92;
  letter-spacing: 0;
}

#home-title .home-title-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  white-space: nowrap;
}

#home-title .home-title-row > span {
  display: inline-block;
}

.featured-event h2,
.event-card h3,
.results-row h3,
.hero-event h1,
body.page-tournament .tournament-hero h1,
.schedule-item h3 {
  letter-spacing: 0.055em;
}

@media (max-width: 640px) {
  #home-title {
    width: min(86vw, 520px);
    max-width: min(86vw, 520px);
  }

  .featured-event h2,
  .event-card h3,
  .results-row h3,
  .hero-event h1,
  body.page-tournament .tournament-hero h1,
  .schedule-item h3 {
    letter-spacing: 0.04em;
  }
}

.ns-mini-logo {
  object-fit: contain;
  padding: 0;
}

[data-event-card][hidden],
.is-past-event {
  display: none !important;
}

.status.live {
  color: #7f5c22;
  border-color: rgba(127, 92, 34, 0.7);
}

.contact-thanks-section {
  min-height: calc(100vh - 230px);
  display: grid;
  place-items: center;
  padding-top: clamp(120px, 18vh, 180px);
}

.contact-thanks-panel {
  width: min(820px, 100%);
  border-top: 1px solid rgba(20, 18, 15, 0.18);
  border-bottom: 1px solid rgba(20, 18, 15, 0.18);
  padding: clamp(34px, 6vw, 72px) 0;
}

.contact-thanks-panel h1 {
  margin: 0 0 22px;
  font-size: clamp(2rem, 6vw, 4.4rem);
  line-height: 1.12;
  white-space: normal;
}

.contact-thanks-panel p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(20, 18, 15, 0.72);
  line-height: 2;
}

.thanks-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}
