/* ============================================================
   YS12 v6 — World-class designer level
   Video-hero + mobile-first cinematic experience
   Brand: #EB0A1E (TGR Red) — never alter hue
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #EB0A1E;
  --red-deep:   #b00715;
  --black:      #0a0a0a;
  --dark:       #111111;
  --darker:     #060606;
  --white:      #ffffff;
  --off-white:  #f5f4f2;
  --lt-gray:    #ebebeb;
  --border:     #e4e3e0;
  --gray:       #888;
  --text:       #1a1a1a;
  --text-lt:    #555;
  --nav-h: 80px;

  --font-cond: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', 'Noto Sans JP', sans-serif;
  --font-jp:   'Noto Sans JP', sans-serif;

  --ease-out:  cubic-bezier(.16, 1, .3, 1);
  --ease-io:   cubic-bezier(.7, 0, .3, 1);
}

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

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}
body.loading { overflow: hidden; height: 100vh; }
body.locked  { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

/* Custom cursor */
body.has-cursor,
body.has-cursor * { cursor: none !important; }
body.has-cursor input,
body.has-cursor textarea,
body.has-cursor select { cursor: text !important; }

/* ============================================================
   LOADER
   ============================================================ */
.loader {
  position: fixed; inset: 0;
  z-index: 9000;
  pointer-events: none;
  background: var(--darker);
}
.loader__panel {
  position: absolute; top: 0; bottom: 0;
  width: 50%;
  background: var(--darker);
  z-index: 2;
}
.loader__panel--l { left: 0; }
.loader__panel--r { right: 0; }

.loader__center {
  position: absolute; inset: 0;
  z-index: 3;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 40px;
  text-align: center;
  padding: 0 24px;
}

.loader__counter {
  display: flex; align-items: baseline; gap: 4px;
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: clamp(72px, 15vw, 200px);
  line-height: 1;
  color: var(--white);
  letter-spacing: -.02em;
}
.loader__num {
  font-variant-numeric: tabular-nums;
  display: inline-block;
  min-width: 2.4ch;
  text-align: right;
}
.loader__pct {
  font-size: .35em;
  color: var(--red);
  font-weight: 700;
  transform: translateY(-1.5em);
}

.loader__id {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: .25em;
  display: flex; gap: 4px;
  opacity: 0;
  animation: loaderIdIn 1s var(--ease-out) forwards .3s;
}
@keyframes loaderIdIn { from { opacity: 0; letter-spacing: .5em; } to { opacity: 1; letter-spacing: .25em; } }
.loader__id-ys { color: var(--white); }
.loader__id-12 { color: var(--red); }

.loader__progress {
  width: min(240px, 70vw); height: 2px;
  background: rgba(255,255,255,.08);
  position: relative;
  overflow: hidden;
}
.loader__progress-fill {
  display: block;
  width: 0%; height: 100%;
  background: var(--red);
  box-shadow: 0 0 12px rgba(235,10,30,.7);
  transition: width .25s linear;
}
.loader__label {
  font-family: var(--font-cond);
  font-size: .7rem;
  letter-spacing: .4em;
  color: rgba(255,255,255,.4);
}

.loader__flash {
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 0; background: var(--red);
  transform: translateY(-50%);
  z-index: 4;
  box-shadow: 0 0 60px rgba(235,10,30,.8);
}

/* ============================================================
   CHAPTERS OVERLAY
   ============================================================ */
.ch-overlay {
  position: fixed; inset: 0;
  background: rgba(8,8,10,.98);
  z-index: 3000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .45s ease;
  padding: 24px;
}
.ch-overlay.open { opacity: 1; pointer-events: auto; }
.ch-overlay__inner { width: 100%; max-width: 760px; }
.ch-overlay__label {
  font-family: var(--font-cond);
  font-size: .72rem; letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 48px;
  text-align: center;
}
.ch-overlay__list { list-style: none; margin-bottom: 56px; }
.ch-overlay__list li { border-bottom: 1px solid rgba(255,255,255,.06); }
.ch-overlay__list li:first-child { border-top: 1px solid rgba(255,255,255,.06); }

.ch-link {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: baseline;
  gap: 20px;
  padding: 22px 8px;
  position: relative;
  transition: padding .35s var(--ease-out), background .25s;
}
.ch-link::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--red);
  opacity: .08;
  transition: width .4s var(--ease-out);
  z-index: -1;
}
.ch-link:hover { padding-left: 24px; }
.ch-link:hover::before { width: 100%; }

.ch-link__num {
  font-family: var(--font-cond);
  font-size: .85rem; letter-spacing: .2em;
  color: var(--red); font-weight: 700;
}
.ch-link__name {
  font-family: var(--font-cond);
  font-size: clamp(1.8rem, 7vw, 3.6rem);
  font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--white);
  transition: color .25s, transform .35s var(--ease-out);
  line-height: 1.05;
}
.ch-link:hover .ch-link__name { color: var(--red); }
.ch-link__arrow {
  font-family: var(--font-cond);
  font-size: 1.2rem;
  color: rgba(255,255,255,.2);
  transition: color .25s, transform .35s var(--ease-out);
}
.ch-link:hover .ch-link__arrow { color: var(--red); transform: translateX(8px); }

.ch-overlay__close {
  display: block; margin: 0 auto;
  font-family: var(--font-cond);
  font-size: .75rem; letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gray);
  background: none; border: none; cursor: pointer;
  transition: color .2s;
}
.ch-overlay__close:hover { color: var(--white); }

/* ============================================================
   CURTAIN TRANSITION
   ============================================================ */
.curtain {
  position: fixed; inset: 0;
  z-index: 4000;
  pointer-events: none;
}
.curtain[aria-hidden="true"] { display: none; }
.curtain__panel {
  position: absolute; left: 0; right: 0;
  height: 25%;
  background: var(--darker);
  transform: scaleX(0);
  transform-origin: left center;
}
.curtain__panel--1 { top: 0; }
.curtain__panel--2 { top: 25%; }
.curtain__panel--3 { top: 75%; }
.curtain__panel--accent {
  top: 50%;
  height: 1px;
  background: var(--red);
  transform-origin: left center;
  transform: scaleX(0);
  box-shadow: 0 0 30px rgba(235,10,30,.8);
}
.curtain__label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex; align-items: baseline; gap: 20px;
  z-index: 2;
  font-family: var(--font-cond);
  color: var(--white);
  white-space: nowrap;
  padding: 0 20px;
}
.curtain__label .num {
  font-size: 1rem; letter-spacing: .25em; color: var(--red); font-weight: 700;
}
.curtain__label .name {
  font-weight: 800;
  font-size: clamp(1.8rem, 8vw, 5rem);
  letter-spacing: .04em; text-transform: uppercase;
}

/* ============================================================
   SIDE RAIL — visible on desktop AND mobile (right side on mobile)
   ============================================================ */
.side-rail {
  position: fixed;
  top: 50%; left: 32px;
  transform: translateY(-50%);
  z-index: 600;
  display: flex; align-items: center; gap: 14px;
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
}
.side-rail.visible { opacity: 1; pointer-events: auto; }
.side-rail__track {
  width: 2px; height: 220px;
  background: rgba(0,0,0,.12);
  position: relative;
}
.side-rail.dark .side-rail__track { background: rgba(255,255,255,.15); }

.side-rail__fill {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0%;
  background: var(--red);
  transition: height .15s linear;
}
.side-rail__chapters {
  display: flex; flex-direction: column;
  justify-content: space-between;
  height: 220px;
  position: absolute;
  left: -2px; top: 0;
}
.side-rail__dot {
  display: flex; align-items: center;
  position: relative;
  width: 6px; height: 6px;
  background: rgba(0,0,0,.3);
  border-radius: 50%;
  transition: background .25s, transform .25s;
}
.side-rail.dark .side-rail__dot { background: rgba(255,255,255,.3); }
.side-rail__dot.is-active { background: var(--red); transform: scale(1.6); }
.side-rail__dot span {
  position: absolute;
  left: 18px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-cond);
  font-size: .65rem; font-weight: 700;
  letter-spacing: .15em;
  color: rgba(0,0,0,.4);
  opacity: 0;
  transition: opacity .25s, color .25s;
  white-space: nowrap;
}
.side-rail.dark .side-rail__dot span { color: rgba(255,255,255,.5); }
.side-rail__dot:hover span,
.side-rail__dot.is-active span { opacity: 1; color: var(--red); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  z-index: 1000;
}
.nav__logo {
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  background: var(--white);
  padding: 12px 20px 12px 24px;
  height: var(--nav-h);
  min-width: 120px;
  transition: background .3s, transform .3s var(--ease-out);
  line-height: 1;
  transform-origin: top left;
}
.nav.dark .nav__logo { background: var(--dark); }
.nav__logo:hover { transform: scale(1.04); }

.nav__logo-ys {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: .04em;
  color: var(--text);
  line-height: 1;
  transition: color .3s;
}
.nav.dark .nav__logo-ys { color: var(--white); }
.nav__logo-num {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 2.8rem;
  letter-spacing: .02em;
  color: var(--red);
  line-height: .9;
  margin-top: -4px;
}

.nav__right {
  display: flex; align-items: stretch;
  height: 100%;
}

.nav__lang {
  display: flex; align-items: center; gap: 6px;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-cond);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  padding: 0 22px;
  border-right: 1px solid rgba(255,255,255,.12);
  transition: color .2s;
}
.nav.light .nav__lang {
  color: rgba(0,0,0,.4);
  border-right-color: rgba(0,0,0,.12);
}
.nav__lang-opt { transition: color .2s; }
.nav__lang-opt.is-active { color: var(--red); }
.nav__lang-sep { opacity: .35; }
.nav__lang:hover { color: var(--white); }
.nav.light .nav__lang:hover { color: var(--text); }

.nav__ch-btn {
  display: flex; align-items: center; gap: 10px;
  background: none; border: none;
  font-family: var(--font-cond);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
  padding: 0 26px;
  transition: opacity .2s;
}
.nav__ch-btn:hover { opacity: .65; }
.nav.light .nav__ch-btn { color: var(--text); }
.nav__ch-arrow {
  display: inline-block;
  transition: transform .3s var(--ease-out);
  font-size: .75rem;
}
.nav__ch-btn:hover .nav__ch-arrow { transform: translateY(3px); }

.nav__burger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 0 28px;
  height: 100%;
  align-items: center; justify-content: center;
}
.nav__burger span {
  display: block; width: 28px; height: 2px;
  background: var(--white);
  transition: transform .3s, opacity .3s, background .3s;
}
.nav.light .nav__burger span { background: var(--text); }
.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); background: var(--white); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); background: var(--white); }

/* ============================================================
   MOBILE MENU — full-screen dramatic reveal
   ============================================================ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--darker);
  z-index: 990;
  display: flex; flex-direction: column;
  padding: calc(var(--nav-h) + 40px) 28px 40px;
  transform: translateY(-102%);
  transition: transform .55s var(--ease-io);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu ul { list-style: none; flex: 1; }
.mobile-menu li {
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}
.mobile-menu li:first-child { border-top: 1px solid rgba(255,255,255,.08); }
.mobile-menu a {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: baseline;
  gap: 16px;
  padding: 22px 4px;
  font-family: var(--font-cond);
  font-size: clamp(1.6rem, 8vw, 2.4rem);
  font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--white);
  transition: color .2s, padding-left .3s var(--ease-out);
  position: relative;
}
.mobile-menu a:hover,
.mobile-menu a:active { color: var(--red); padding-left: 12px; }
.mm-num {
  font-family: var(--font-cond);
  font-size: .8rem;
  letter-spacing: .2em;
  color: var(--red);
  font-weight: 700;
  align-self: center;
}
.mobile-menu__socials {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; flex-direction: column; gap: 14px;
}
.mobile-menu__socials a {
  font-family: var(--font-cond);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .18em;
  color: rgba(255,255,255,.5);
  padding: 6px 0;
  text-transform: uppercase;
  transition: color .2s;
}
.mobile-menu__socials a:hover { color: var(--red); }

/* Persistent FAB */
.cta-fab {
  position: fixed;
  bottom: 24px; right: 0;
  display: flex; align-items: center; gap: 12px;
  background: var(--white);
  border: none;
  padding: 16px 22px 16px 18px;
  z-index: 500;
  font-family: var(--font-cond);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text);
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  transition: background .25s, color .25s, padding-right .25s;
}
.cta-fab:hover { background: var(--red); color: var(--white); padding-right: 28px; }
.cta-fab__plus {
  font-size: 1.5rem; font-weight: 300;
  color: var(--red);
  transition: color .25s, transform .35s var(--ease-out);
}
.cta-fab:hover .cta-fab__plus { color: var(--white); transform: rotate(90deg); }

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  width: 0; height: 0;
  display: none;
  mix-blend-mode: difference;
}
.has-cursor .cursor { display: block; }
.cursor__dot {
  position: absolute;
  top: -3px; left: -3px;
  width: 6px; height: 6px;
  background: var(--white);
  border-radius: 50%;
  transition: opacity .2s, transform .2s;
}
.cursor__ring {
  position: absolute;
  top: -20px; left: -20px;
  width: 40px; height: 40px;
  border: 1.5px solid var(--white);
  border-radius: 50%;
  transition: width .3s var(--ease-out), height .3s var(--ease-out),
              top .3s var(--ease-out), left .3s var(--ease-out),
              background .25s;
}
.cursor.is-hover .cursor__ring {
  width: 56px; height: 56px;
  top: -28px; left: -28px;
}
.cursor.is-view {
  mix-blend-mode: normal;
}
.cursor.is-view .cursor__ring {
  width: 84px; height: 84px;
  top: -42px; left: -42px;
  background: var(--red);
  border-color: var(--red);
}
.cursor.is-view .cursor__dot { opacity: 0; }
.cursor__label {
  position: absolute;
  top: -10px; left: -42px;
  width: 84px;
  text-align: center;
  font-family: var(--font-cond);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--white);
  opacity: 0;
  transition: opacity .2s;
}
.cursor.is-view .cursor__label { opacity: 1; }

/* ============================================================
   HERO — with video background
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  background: var(--darker);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.hero__bg { position: absolute; inset: 0; overflow: hidden; }

.hero__video {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.2s ease;
  will-change: transform, opacity;
}
.hero__video.ready {
  opacity: 1;
}
.hero__bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%;
  transform: scale(1.08);
  will-change: transform;
  z-index: 0;
}
.hero__bg-vignette {
  position: absolute; inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at 50% 55%, rgba(0,0,0,0) 0%, rgba(0,0,0,.6) 100%),
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 40%, rgba(0,0,0,.85) 100%);
  pointer-events: none;
}
.hero__bg-grain {
  position: absolute; inset: 0;
  z-index: 3;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .3 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: .3;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero__back-number {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -52%);
  font-family: var(--font-cond);
  font-weight: 900;
  font-size: clamp(240px, 48vw, 720px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.05);
  line-height: 1;
  letter-spacing: -.04em;
  user-select: none;
  z-index: 4;
  pointer-events: none;
  font-style: italic;
}

.hero__meta {
  position: absolute;
  top: calc(var(--nav-h) + 24px);
  z-index: 5;
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-cond);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.hero__meta--tl { left: 32px; }
.hero__meta--tr { right: 32px; }
.hero__meta-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: heroDot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes heroDot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(235,10,30,.6); }
  50%      { opacity: .6; transform: scale(.85); box-shadow: 0 0 0 8px rgba(235,10,30,0); }
}
.hero__meta-em { color: var(--red); font-weight: 800; }

.hero__wordmark {
  position: relative; z-index: 5;
  font-family: var(--font-cond);
  font-weight: 900;
  font-size: clamp(64px, 14vw, 200px);
  line-height: .92;
  letter-spacing: -.015em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center;
  text-shadow: 0 4px 30px rgba(0,0,0,.5);
}
.hero__line {
  display: block;
  overflow: hidden;
  padding: 0 .03em 0;
  position: relative;
}
.hero__line-inner {
  display: inline-block;
}
.hero__line--accent .hero__line-inner {
  color: var(--white);
  font-style: italic;
  -webkit-text-stroke: 2px var(--white);
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  text-shadow: none;
}
.hero__char {
  display: inline-block;
  will-change: transform, opacity;
}

.hero__sig {
  position: relative; z-index: 5;
  margin-top: 28px;
  display: flex; align-items: center; gap: 18px;
  font-family: var(--font-cond);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  opacity: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}
.hero__sig-line {
  display: inline-block;
  width: 64px; height: 1px;
  background: var(--red);
  transform-origin: left center;
}
.hero__sig-num { color: var(--red); font-weight: 800; margin-left: .5em; }

.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  opacity: 0;
}
.hero__scroll-text {
  font-family: var(--font-cond);
  font-size: .7rem; font-weight: 600;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--red), transparent);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute; top: -40px; left: 0;
  width: 100%; height: 40px;
  background: linear-gradient(180deg, transparent, var(--white));
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine { to { top: 40px; } }

.hero__news {
  position: absolute;
  bottom: 92px; right: 0;
  display: flex; flex-direction: column;
  width: 320px;
  z-index: 5;
}
.hero__news-card {
  display: flex; align-items: stretch;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,.4);
  overflow: hidden;
  transition: background .25s, transform .35s var(--ease-out);
}
.hero__news-card:hover { background: var(--off-white); transform: translateX(-8px); }
.hero__news-img {
  width: 96px; flex-shrink: 0;
  position: relative; overflow: hidden;
  background: var(--lt-gray);
}
.hero__news-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.hero__news-card:hover .hero__news-img img { transform: scale(1.08); }
.hero__news-body {
  padding: 12px 16px;
  display: flex; flex-direction: column; justify-content: center;
  gap: 6px;
}
.hero__news-tag {
  font-family: var(--font-cond);
  font-size: .62rem; letter-spacing: .28em;
  font-weight: 700;
  text-transform: uppercase; color: var(--red);
}
.hero__news-title {
  font-family: var(--font-cond);
  font-size: .92rem; font-weight: 600;
  letter-spacing: .03em; color: var(--text);
  line-height: 1.35;
}

.hero__speedlines {
  position: absolute; inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
  opacity: .35;
}
.hero__speedlines span {
  position: absolute;
  left: -30%; width: 40%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.7), transparent);
  animation: heroSpeed 5s linear infinite;
}
.hero__speedlines span:nth-child(1) { top: 16%; animation-delay: 0s;   animation-duration: 4.5s; }
.hero__speedlines span:nth-child(2) { top: 30%; animation-delay: .9s;  animation-duration: 5.6s; }
.hero__speedlines span:nth-child(3) { top: 48%; animation-delay: 1.8s; animation-duration: 4.0s; background: linear-gradient(90deg, transparent, rgba(235,10,30,.6), transparent); }
.hero__speedlines span:nth-child(4) { top: 64%; animation-delay: .5s;  animation-duration: 5.2s; }
.hero__speedlines span:nth-child(5) { top: 78%; animation-delay: 2.6s; animation-duration: 4.8s; }
.hero__speedlines span:nth-child(6) { top: 90%; animation-delay: 1.4s; animation-duration: 5.4s; }
@keyframes heroSpeed {
  0%   { transform: translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateX(320vw); opacity: 0; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--black);
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  position: relative;
  z-index: 5;
}
.marquee__track {
  display: flex; gap: 50px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee__item {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
  flex-shrink: 0;
}
.marquee__dot {
  font-size: clamp(.8rem, 1.4vw, 1.2rem);
  color: var(--red);
  align-self: center;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   CHAPTER LAYOUT
   ============================================================ */
.ch {
  position: relative;
  background: var(--white);
  padding: 100px 0;
  overflow: hidden;
}
.ch__index {
  position: absolute;
  top: 40px; left: 60px;
  display: flex; align-items: baseline; gap: 8px;
  font-family: var(--font-cond);
  font-weight: 700;
  color: var(--red);
  z-index: 2;
}
.ch__index span {
  font-size: 1rem; letter-spacing: .2em;
}
.ch__index em {
  font-style: normal;
  font-size: .68rem;
  color: var(--gray);
  letter-spacing: .15em;
}

.ch__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 78vh;
  position: relative;
  z-index: 1;
}
.ch--flip .ch__layout { direction: rtl; }
.ch--flip .ch__layout > * { direction: ltr; }

.ch__text {
  padding: 40px 80px;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid var(--border);
}
.ch--flip .ch__text { border-right: none; border-left: 1px solid var(--border); }

.ch__label {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 36px;
}
.ch__label-dot {
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.ch__label-dot::after {
  content: '';
  position: absolute; inset: -5px;
  border: 1px solid var(--red);
  border-radius: 50%;
  animation: chDot 2.2s ease-out infinite;
}
@keyframes chDot {
  0%   { transform: scale(.9); opacity: .8; }
  100% { transform: scale(2);  opacity: 0; }
}
.ch__label-text {
  font-family: var(--font-cond);
  font-size: .74rem; font-weight: 700;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--text);
}

.ch__quote {
  font-family: var(--font-cond);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 32px;
  text-transform: uppercase;
}

.ch__divider {
  width: 48px; height: 3px;
  background: var(--red);
  margin-bottom: 32px;
  transform-origin: left center;
}

.ch__body {
  font-family: var(--font-jp);
  font-size: .95rem;
  font-weight: 400;
  line-height: 2;
  color: var(--text-lt);
  letter-spacing: .02em;
  max-width: 480px;
}

.ch__cta {
  margin-top: 36px;
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-cond);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text);
  cursor: pointer;
  transition: color .25s, gap .25s;
  width: max-content;
}
.ch__cta:hover { color: var(--red); gap: 16px; }
.ch__cta-arrow { font-size: 1.1rem; }

.ch__photo {
  position: relative;
  overflow: hidden;
  background: var(--lt-gray);
  min-height: 78vh;
}
.ch__photo-inner {
  position: absolute; inset: 0;
  overflow: hidden;
}
.ch__photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%;
  will-change: transform;
}
.ch__photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.35) 100%);
  pointer-events: none;
}
.ch__photo-caption {
  position: absolute;
  bottom: 28px; left: 32px;
  z-index: 2;
  font-family: var(--font-cond);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--white);
  padding-left: 24px;
}
.ch__photo-caption::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 16px; height: 1px;
  background: var(--red);
}

/* ============================================================
   INFOS
   ============================================================ */
.infos { background: var(--off-white); }
.infos__inner {
  padding: 100px 80px 60px;
  max-width: 1280px;
}
.infos__heading,
.racing-info__heading,
.partners__heading,
.timeline__heading {
  font-family: var(--font-cond);
  font-size: .74rem; letter-spacing: .35em;
  font-weight: 700;
  text-transform: uppercase; color: var(--gray);
  margin-bottom: 36px;
}

.infos__grid {
  display: inline-flex;
  border: 1px solid var(--border);
  margin-bottom: 56px;
  background: var(--white);
}
.infos__item {
  padding: 22px 38px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 8px;
}
.infos__item:last-child { border-right: none; }
.infos__label {
  font-family: var(--font-cond);
  font-size: .62rem; letter-spacing: .28em;
  font-weight: 600;
  text-transform: uppercase; color: var(--gray);
}
.infos__val {
  font-family: var(--font-cond);
  font-size: 1.15rem; font-weight: 700;
  color: var(--text); letter-spacing: .05em;
}

/* ============================================================
   STATS v2 — 2x2 grid, top label + big value, race-number outline
   ============================================================ */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  background: var(--border);
  gap: 1px;
  margin-bottom: 64px;
}
.stats--v2 { grid-template-columns: repeat(3, 1fr); }

.stat__num--based {
  font-style: italic;
  letter-spacing: .01em;
}

.stat {
  background: var(--white);
  padding: 32px 28px 28px;
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
  overflow: hidden;
  transition: background .25s;
  min-height: 200px;
  justify-content: space-between;
}
.stat:hover { background: var(--off-white); }
.stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--red);
  transition: width .8s var(--ease-out);
}
.stat.in::before { width: 100%; }

.stat__label-top {
  font-family: var(--font-cond);
  font-size: .68rem;
  letter-spacing: .28em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gray);
}

.stat__num {
  font-family: var(--font-cond);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 800;
  color: var(--red);
  line-height: 1.05;
  letter-spacing: -.005em;
  margin-top: auto;
}
.stat__num--team {
  font-size: clamp(1.6rem, 3.1vw, 2.3rem);
  font-style: italic;
}

.stat__label {
  font-family: var(--font-cond);
  font-size: .72rem;
  letter-spacing: .18em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-lt);
  line-height: 1.5;
}
.stat__label small { font-size: .6rem; opacity: .8; }

/* Race number cell — big outlined #12 anchored bottom-left */
.stat--num {
  position: relative;
}
.stat__outline-num {
  display: block;
  font-family: var(--font-cond);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(78px, 8vw, 128px);
  line-height: .9;
  letter-spacing: -.03em;
  color: transparent;
  -webkit-text-stroke: 2px var(--red);
  user-select: none;
  margin-top: auto;
  align-self: flex-start;
}

/* ============================================================
   NEXT-RACE COUNTDOWN
   ============================================================ */
.next-race {
  position: relative;
  background: var(--red);
  color: var(--white);
  padding: 40px 44px 36px;
  margin: 0 0 56px;
  overflow: hidden;
  isolation: isolate;
}
.next-race__bg-word {
  position: absolute;
  top: 12px; left: -1%;
  right: 0;
  font-family: var(--font-cond);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(72px, 12vw, 160px);
  line-height: 1;
  letter-spacing: -.03em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.22);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.next-race__inner {
  position: relative;
  z-index: 1;
}
.next-race__top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.next-race__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-cond);
  font-size: .76rem;
  letter-spacing: .3em;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
}
.next-race__eyebrow-dot { opacity: .55; font-style: normal; }
.next-race__round { font-style: normal; color: var(--white); }

.next-race__title-row {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 12px;
}
.next-race__flag {
  font-size: 2.4rem;
  line-height: 1;
  display: inline-block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.2));
}
.next-race__title {
  font-family: var(--font-cond);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: .01em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
}
.next-race__meta {
  font-family: var(--font-cond);
  font-size: .92rem;
  letter-spacing: .12em;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.next-race__countdown {
  display: flex; gap: 32px;
  margin-bottom: 28px;
}
.nr-cd {
  display: flex; flex-direction: column; gap: 4px;
}
.nr-cd__n {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--white);
  font-variant-numeric: tabular-nums;
  min-width: 2ch;
}
.nr-cd__l {
  font-family: var(--font-cond);
  font-size: .78rem;
  letter-spacing: .18em;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
}
.next-race__cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 22px;
  border: 1px solid rgba(255,255,255,.5);
  font-family: var(--font-cond);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--white);
  transition: background .25s, color .25s, gap .25s;
  width: 100%;
  justify-content: center;
  max-width: none;
}
.next-race__cta:hover { background: var(--white); color: var(--red); gap: 16px; }
.next-race__cta-icon { width: 20px; height: 20px; flex-shrink: 0; }

/* Race-over state */
.next-race.is-over {
  background: var(--dark);
}
.next-race.is-over .next-race__bg-word {
  -webkit-text-stroke-color: rgba(255,255,255,.15);
}

/* ============================================================
   SEASON CALENDAR (Kato-style)
   ============================================================ */
.calendar {
  margin-top: 8px;
}
.calendar__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.calendar__eyebrow {
  font-family: var(--font-cond);
  font-size: .74rem;
  letter-spacing: .35em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gray);
}
.calendar__tabs {
  display: flex; gap: 0;
  border-bottom: 1px solid var(--border);
}
.calendar__tab {
  background: none; border: none;
  padding: 10px 20px;
  font-family: var(--font-cond);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray);
  cursor: pointer;
  position: relative;
  transition: color .2s;
}
.calendar__tab::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .45s var(--ease-out);
}
.calendar__tab:hover { color: var(--text); }
.calendar__tab.is-active { color: var(--red); }
.calendar__tab.is-active::after { transform: scaleX(1); }

.calendar__table {
  background: var(--white);
  border: 1px solid var(--border);
}
.cal-row {
  display: grid;
  grid-template-columns: 68px 40px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background .2s;
}
.cal-row:last-child { border-bottom: none; }
.cal-row:hover { background: var(--off-white); }

.cal-row__rd {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 1rem;
  color: var(--red);
  letter-spacing: .08em;
}
.cal-row__flag {
  font-size: 1.4rem;
  line-height: 1;
}
.cal-row__circuit {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  letter-spacing: .02em;
  text-transform: uppercase;
  display: flex; flex-direction: column; gap: 2px;
}
.cal-row__circuit small {
  font-size: .68rem;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: .18em;
  text-transform: uppercase;
}
.cal-row__date {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: .95rem;
  color: var(--text);
  letter-spacing: .06em;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.cal-row--done {
  background: linear-gradient(90deg, transparent, rgba(0,0,0,.02));
}
.cal-row--done .cal-row__rd,
.cal-row--done .cal-row__circuit,
.cal-row--done .cal-row__date { color: var(--gray); }
.cal-row--done .cal-row__flag { filter: grayscale(80%) opacity(.7); }
.cal-row--done::after {
  content: '✓';
  position: absolute;
  right: 8px; top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
  font-size: .9rem;
  pointer-events: none;
}

.cal-row--next {
  background: rgba(235,10,30,.05);
  border-left: 3px solid var(--red);
  padding-left: 19px;
}
.cal-row--next .cal-row__rd { color: var(--red); }
.cal-row--next::before {
  content: 'NEXT';
  position: absolute;
  right: 22px; top: 8px;
  font-family: var(--font-cond);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .25em;
  color: var(--red);
}

.calendar__note {
  margin-top: 14px;
  font-family: var(--font-jp);
  font-size: .76rem;
  color: var(--gray);
  line-height: 1.7;
}

.strip {
  position: relative;
  width: 100%;
  height: 60vh; min-height: 380px;
  overflow: hidden;
  background: var(--lt-gray);
}
.strip__inner {
  position: absolute; inset: 0;
  overflow: hidden;
}
.strip__img {
  position: absolute; inset: 0;
  width: 100%; height: 120%;
  object-fit: cover;
  will-change: transform;
}
.strip__label {
  position: absolute;
  bottom: 28px; right: 32px;
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-cond);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--white);
  z-index: 2;
}
.strip__label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--red);
}

/* ============================================================
   QUOTE
   ============================================================ */
.quote {
  position: relative;
  min-height: 78vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--darker);
}
.quote__bg { position: absolute; inset: 0; overflow: hidden; }
.quote__bg img {
  position: absolute; inset: 0;
  width: 100%; height: 120%; object-fit: cover;
  opacity: .42;
  will-change: transform;
}
.quote__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.4) 50%, rgba(0,0,0,.7) 100%);
}

.quote__diag {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 240px;
  pointer-events: none;
  z-index: 2;
}
.quote__diag--right {
  left: auto; right: 0;
  transform: scaleX(-1);
}
.quote__diag-bar {
  position: absolute;
  left: -40px;
  background: var(--red);
  transform: skewY(-8deg);
}
.quote__diag-bar--1 { width: 200px; height: 100px; top: 12%; }
.quote__diag-bar--2 { width: 140px; height: 70px;  top: calc(12% + 116px); background: var(--darker); }
.quote__diag-bar--3 { width: 180px; height: 100px; top: calc(12% + 200px); }

.quote__content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 10% 80px 60px;
  display: flex; flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
.quote__content--left {
  align-items: flex-start;
  text-align: left;
  padding: 80px 60px 80px 14%;
}
.quote__eyebrow {
  font-family: var(--font-cond);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
}
.quote__text {
  font-family: var(--font-cond);
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 5.6rem);
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  max-width: 800px;
}
.quote__text > .quote-line { display: block; overflow: hidden; }
.quote__text > .quote-line > .quote-line-inner {
  display: inline-block;
  will-change: transform;
}
.quote__text--final .quote-line-inner:last-child {
  color: var(--red);
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  background: var(--white);
  border-top: 1px solid var(--border);
}
.timeline__inner {
  max-width: 980px;
  padding: 100px 60px;
}
.tl-row {
  display: grid;
  grid-template-columns: 130px 60px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
  position: relative;
}
.tl-row:last-child { border-bottom: none; }
.tl-row__year {
  font-family: var(--font-cond);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  padding-top: 4px;
  letter-spacing: -.01em;
}
.tl-row__bar {
  position: relative;
  margin-top: 16px;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 1s var(--ease-out) .2s;
}
.tl-row.in .tl-row__bar { width: 100%; }
.tl-row__content h4 {
  font-family: var(--font-cond);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
}
.tl-row__content p {
  font-family: var(--font-jp);
  font-size: .9rem;
  color: var(--text-lt);
  line-height: 1.95;
}
.tl-row--accent .tl-row__year { font-style: italic; }
.tl-row--accent::before {
  content: '→ NEXT';
  position: absolute;
  top: 32px; right: 0;
  font-family: var(--font-cond);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .25em;
  color: var(--red);
}

/* ============================================================
   HORIZONTAL SCROLL — desktop pin, mobile swipe
   ============================================================ */
.hscroll {
  position: relative;
  height: 360vh;
  background: var(--darker);
}
.hscroll__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hscroll__progress {
  position: absolute;
  left: 12vw; right: 12vw;
  bottom: 8vh;
  height: 1px;
  background: rgba(255,255,255,.12);
  z-index: 5;
}
.hscroll__progress span {
  display: block;
  height: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  box-shadow: 0 0 12px rgba(235,10,30,.7);
}
.hscroll__counter {
  position: absolute;
  bottom: calc(8vh + 16px);
  left: 12vw;
  z-index: 5;
  font-family: var(--font-cond);
  font-weight: 700;
  color: rgba(255,255,255,.7);
  display: flex; align-items: baseline; gap: 6px;
}
.hscroll__counter span {
  font-size: 1.1rem;
  letter-spacing: .15em;
  color: var(--red);
  font-variant-numeric: tabular-nums;
}
.hscroll__counter em {
  font-style: normal;
  font-size: .7rem;
  letter-spacing: .2em;
  color: rgba(255,255,255,.4);
}
.hscroll__mobile-hint {
  display: none;
}
.hscroll__mobile-hint-arrow {
  color: var(--red);
  font-weight: 800;
}

.hscroll__track {
  display: flex;
  align-items: center;
  gap: 8vw;
  padding: 0 12vw;
  will-change: transform;
}
.hpanel {
  flex-shrink: 0;
  color: var(--white);
}
.hpanel--intro {
  width: 64vw;
  max-width: 700px;
}
.hpanel__label {
  font-family: var(--font-cond);
  font-size: .74rem; letter-spacing: .35em;
  font-weight: 700;
  text-transform: uppercase; color: var(--red);
  display: block; margin-bottom: 28px;
}
.hpanel__title {
  font-family: var(--font-cond);
  font-weight: 900;
  font-size: clamp(3.2rem, 8.5vw, 7.5rem);
  line-height: .92;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.hpanel__hint {
  font-family: var(--font-cond);
  font-size: .82rem; letter-spacing: .3em;
  font-weight: 600;
  text-transform: uppercase; color: rgba(255,255,255,.35);
  margin-top: 36px;
}

.hpanel--year {
  width: 36vw;
  max-width: 400px;
  border: 1px solid rgba(255,255,255,.15);
  padding: 52px 44px;
  background: rgba(255,255,255,.02);
  transition: border-color .3s, background .3s, transform .5s var(--ease-out);
  position: relative;
}
.hpanel--year::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 0; height: 2px;
  background: var(--red);
  transition: width .8s var(--ease-out);
}
.hpanel--year:hover { border-color: var(--red); background: rgba(235,10,30,.06); }
.hpanel--year:hover::before { width: 100%; }

.hpanel--shift-up   { transform: translateY(-15vh); }
.hpanel--shift-down { transform: translateY(15vh); }
.hpanel--accent { background: var(--red); border-color: var(--red); }
.hpanel--accent::before { background: var(--white); }
.hpanel--accent:hover { background: var(--red-deep); }
.hpanel__num {
  font-family: var(--font-cond);
  font-weight: 900;
  font-size: 3.4rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
}
.hpanel--accent .hpanel__num { color: var(--white); }
.hpanel__bar { width: 32px; height: 2px; background: var(--red); margin-bottom: 20px; }
.hpanel--accent .hpanel__bar { background: var(--white); }
.hpanel__h {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 1.7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hpanel__p {
  font-family: var(--font-jp);
  font-size: .92rem;
  font-weight: 400;
  line-height: 1.85;
  color: rgba(255,255,255,.7);
}
.hpanel--accent .hpanel__p { color: rgba(255,255,255,.95); }
.hpanel__corner {
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--font-cond);
  font-size: .65rem;
  letter-spacing: .25em;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

/* ============================================================
   RESULTS
   ============================================================ */
.results {
  background: var(--off-white);
  padding: 100px 80px;
  border-top: 1px solid var(--border);
}
.results__inner { max-width: 1200px; margin: 0 auto; }
.results__header { margin-bottom: 36px; }
.results__eyebrow {
  font-family: var(--font-cond);
  font-size: .74rem; letter-spacing: .35em;
  font-weight: 700;
  text-transform: uppercase; color: var(--gray);
  margin-bottom: 14px;
}
.results__title {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--text);
}

.results__tabs {
  display: flex; gap: 0;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.results__tabs::-webkit-scrollbar { display: none; }
.results__tab {
  background: none; border: none;
  padding: 16px 24px;
  font-family: var(--font-cond);
  font-size: .85rem; font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gray);
  cursor: pointer;
  position: relative;
  transition: color .25s;
  white-space: nowrap;
  flex-shrink: 0;
}
.results__tab::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .5s var(--ease-out);
}
.results__tab:hover { color: var(--text); }
.results__tab.is-active { color: var(--red); }
.results__tab.is-active::after { transform: scaleX(1); }

.rt-summary {
  font-family: var(--font-cond);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--text);
  padding: 18px 22px;
  background: var(--white);
  border-left: 4px solid var(--red);
  margin-bottom: 16px;
}
.rt-scroll { overflow-x: auto; background: var(--white); }
.results__table table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-cond);
  min-width: 600px;
}
.results__table th, .results__table td {
  padding: 16px 20px;
  text-align: left;
  font-size: .9rem;
  border-bottom: 1px solid var(--border);
}
.results__table th {
  background: var(--off-white);
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: .72rem;
  color: var(--gray);
}
.results__table tbody tr { transition: background .15s; }
.results__table tbody tr:hover { background: var(--off-white); }
.results__table tbody td { color: var(--text); }
.results__table tbody td:nth-child(1) {
  color: var(--red);
  font-weight: 800;
  letter-spacing: .08em;
}
.results__note {
  margin-top: 18px;
  font-size: .78rem;
  font-family: var(--font-jp);
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  position: relative;
  height: 110vh; min-height: 720px;
  overflow: hidden;
  background: var(--darker);
}
.gallery__bg { position: absolute; inset: 0; }
.gallery__bg img {
  position: absolute; inset: 0;
  width: 100%; height: 115%; object-fit: cover;
  opacity: .35;
  will-change: transform;
}
.gallery__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,.3) 0%, rgba(0,0,0,.7) 100%),
    linear-gradient(180deg, rgba(0,0,0,.4) 0%, rgba(0,0,0,.6) 100%);
}

.gallery__title {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-family: var(--font-cond);
  font-weight: 900;
  font-size: clamp(80px, 16vw, 220px);
  line-height: .9;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.12);
  text-align: center;
  user-select: none;
  pointer-events: none;
}
.gallery__title-line {
  display: block;
  overflow: hidden;
  padding: 0 .04em;
}
.gallery__title-line--accent {
  -webkit-text-stroke: 1px rgba(235,10,30,.5);
  font-style: italic;
}

.gallery__photos {
  position: absolute; inset: 0;
  z-index: 2;
}
.gallery__photo {
  position: absolute;
  overflow: hidden;
  background: #222;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  opacity: 0;
  transform: translateY(60px) scale(.95);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  cursor: pointer;
  will-change: transform;
}
.gallery__photo.visible { opacity: 1; transform: translateY(0) scale(1); }
.gallery__photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.gallery__photo:hover img { transform: scale(1.06); }
.gallery__photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.45) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
}
.gallery__photo:hover::after { opacity: 1; }
.gallery__photo-num {
  position: absolute;
  bottom: 14px; left: 16px;
  z-index: 2;
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: .15em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}
.gallery__photo:hover .gallery__photo-num { opacity: 1; transform: translateY(0); }

.gallery__photo--1 { width: 22vw; max-width: 360px; height: 28vw; max-height: 460px; left: 8%;  top: 10%; transition-delay: 0s; }
.gallery__photo--2 { width: 20vw; max-width: 320px; height: 26vw; max-height: 420px; left: 36%; top: 18%; transition-delay: .12s; }
.gallery__photo--3 { width: 24vw; max-width: 400px; height: 18vw; max-height: 300px; left: 60%; top: 8%;  transition-delay: .24s; }
.gallery__photo--4 { width: 18vw; max-width: 300px; height: 24vw; max-height: 380px; left: 68%; top: 48%; transition-delay: .36s; }

.gallery__caption {
  position: absolute;
  bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  font-family: var(--font-cond);
  font-size: .75rem; letter-spacing: .35em;
  font-weight: 600;
  text-transform: uppercase; color: rgba(255,255,255,.5);
  white-space: nowrap;
}

/* ============================================================
   PARTNERS
   ============================================================ */
/* ============================================================
   SPONSORS — endless-scrolling logo marquee
   ============================================================ */
.sponsors {
  background: var(--white);
  padding: 80px 0 72px;
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.sponsors__inner { max-width: 1400px; margin: 0 auto; }
.sponsors__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 0 60px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.sponsors__heading {
  font-family: var(--font-cond);
  font-size: .8rem;
  letter-spacing: .35em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
}
.sponsors__sub {
  font-family: var(--font-cond);
  font-size: .74rem;
  letter-spacing: .18em;
  color: var(--gray);
  text-transform: uppercase;
}

.sponsors__marquee {
  position: relative;
  overflow: hidden;
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--off-white);
}
.sponsors__track {
  display: flex;
  align-items: center;
  gap: 120px;
  animation: sponsorScroll 50s linear infinite;
  width: max-content;
  will-change: transform;
}
.sponsors__marquee:hover .sponsors__track {
  animation-play-state: paused;
}
@keyframes sponsorScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.sponsors__logo {
  flex-shrink: 0;
  height: 208px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s var(--ease-out);
}
.sponsors__logo img {
  max-height: 100%;
  max-width: 560px;
  width: auto;
  object-fit: contain;
  /* 常時フルカラー */
  filter: none;
  transition: transform .35s var(--ease-out);
}
.sponsors__logo:hover img {
  transform: scale(1.06);
}

.sponsors__fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  pointer-events: none;
  z-index: 2;
}
.sponsors__fade--l {
  left: 0;
  background: linear-gradient(90deg, var(--off-white) 0%, transparent 100%);
}
.sponsors__fade--r {
  right: 0;
  background: linear-gradient(-90deg, var(--off-white) 0%, transparent 100%);
}

.sponsors__names {
  padding: 32px 60px 0;
  font-family: var(--font-cond);
  font-size: .74rem;
  letter-spacing: .18em;
  color: var(--gray);
  text-align: center;
  line-height: 1.9;
  text-transform: uppercase;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--off-white);
  padding: 120px 80px;
  text-align: center;
}
.contact__inner {
  max-width: 720px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.contact__logo {
  display: flex; flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.contact__logo-ys {
  font-family: var(--font-cond);
  font-weight: 800; font-size: 2.4rem;
  letter-spacing: .04em; color: var(--text);
}
.contact__logo-num {
  font-family: var(--font-cond);
  font-weight: 800; font-size: 3.4rem;
  letter-spacing: .02em; color: var(--red);
  line-height: .85;
}
.contact__title {
  font-family: var(--font-cond);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--text);
}
.contact__lead {
  font-family: var(--font-jp);
  font-size: .95rem;
  color: var(--text-lt);
  line-height: 1.8;
  max-width: 560px;
}

.cf {
  width: 100%;
  display: flex; flex-direction: column; gap: 18px;
  text-align: left;
  margin-top: 12px;
}
.cf__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.cf__field { display: flex; flex-direction: column; gap: 8px; }
.cf__label {
  font-family: var(--font-cond);
  font-size: .68rem;
  letter-spacing: .28em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gray);
}
.cf__field input,
.cf__field textarea,
.cf__field select {
  font-family: var(--font-body);
  font-size: .95rem;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  border-radius: 0;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.cf__field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%23888' stroke-width='1.5' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.cf__field input:focus,
.cf__field textarea:focus,
.cf__field select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(235,10,30,.12);
}
.cf__field textarea { resize: vertical; min-height: 120px; }

.cf__submit {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--text);
  color: var(--white);
  border: none;
  padding: 18px 30px;
  font-family: var(--font-cond);
  font-size: .85rem; font-weight: 800;
  letter-spacing: .25em; text-transform: uppercase;
  cursor: pointer;
  transition: background .25s, gap .25s;
  margin-top: 10px;
}
.cf__submit:hover { background: var(--red); gap: 20px; }
.cf__submit-arrow { font-size: 1.2rem; }
.cf__status {
  font-family: var(--font-cond);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 4px;
  min-height: 1.4em;
}
.cf__status.is-loading { color: var(--gray); }
.cf__status.is-ok      { color: #137c1e; }
.cf__status.is-err     { color: var(--red); }

.contact__links {
  display: flex; gap: 18px; flex-wrap: wrap; justify-content: center;
  margin-top: 12px;
}
.contact__link {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 30px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--font-cond);
  font-size: .82rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--text-lt);
  transition: border-color .2s, color .2s, background .2s;
}
.contact__link:hover { border-color: var(--red); color: var(--red); }
.contact__link svg { width: 18px; height: 18px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--black); padding: 64px 80px 48px; }
.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  gap: 32px 48px;
  align-items: center;
  max-width: 1400px; margin: 0 auto;
}
.footer__logo {
  display: flex; flex-direction: column;
  line-height: 1; gap: 0;
  grid-row: 1 / 3;
}
.footer__logo-ys {
  font-family: var(--font-cond);
  font-weight: 800; font-size: 1.8rem;
  color: var(--white); letter-spacing: .04em;
}
.footer__logo-num {
  font-family: var(--font-cond);
  font-weight: 800; font-size: 2.4rem;
  color: var(--red); letter-spacing: .02em;
  line-height: .85;
}
.footer__nav { display: flex; flex-wrap: wrap; gap: 6px 24px; }
.footer__nav a {
  font-family: var(--font-cond);
  font-size: .72rem; letter-spacing: .2em;
  font-weight: 600;
  text-transform: uppercase; color: rgba(255,255,255,.4);
  transition: color .2s;
}
.footer__nav a:hover { color: var(--white); }
.footer__socials { display: flex; gap: 20px; align-items: center; }
.footer__socials a { color: rgba(255,255,255,.4); display: flex; transition: color .2s; }
.footer__socials a:hover { color: var(--white); }
.footer__socials svg { width: 18px; height: 18px; }
.footer__copy {
  grid-column: 1 / -1;
  font-family: var(--font-cond);
  font-size: .64rem; letter-spacing: .15em;
  color: rgba(255,255,255,.25);
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px; text-align: center;
  line-height: 1.8;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(6,6,8,.97);
  z-index: 6000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox__inner {
  position: relative;
  max-width: 92vw; max-height: 88vh;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  transform: scale(.96);
  transition: transform .45s var(--ease-out);
}
.lightbox.open .lightbox__inner { transform: scale(1); }
.lightbox__inner img {
  max-width: 100%; max-height: 82vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.lightbox__counter {
  font-family: var(--font-cond);
  font-size: .78rem; letter-spacing: .28em;
  font-weight: 700;
  color: rgba(255,255,255,.5);
}
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: none; border: none;
  color: var(--white);
  font-family: var(--font-cond);
  cursor: pointer;
  z-index: 1;
  transition: color .2s, transform .2s;
}
.lightbox__close {
  top: 28px; right: 28px;
  font-size: 1.6rem; line-height: 1;
  padding: 8px;
}
.lightbox__close:hover { color: var(--red); transform: rotate(90deg); }
.lightbox__nav {
  top: 50%; transform: translateY(-50%);
  font-size: 3rem; line-height: 1;
  padding: 8px 20px;
  opacity: .5;
}
.lightbox__nav:hover { color: var(--red); opacity: 1; }
.lightbox__nav--prev { left: 16px; }
.lightbox__nav--next { right: 16px; }

/* ============================================================
   RESPONSIVE — tablet
   ============================================================ */
@media (max-width: 1100px) {
  .results, .contact { padding-left: 48px; padding-right: 48px; }
  .partners { padding: 60px 48px; }
  .footer { padding-left: 48px; padding-right: 48px; }
  .infos__inner, .timeline__inner { padding-left: 48px; padding-right: 48px; }
  .ch__text { padding: 40px 48px; }
  .ch__index { left: 36px; }

  .side-rail { left: 20px; }
  .side-rail__track { height: 180px; }
  .side-rail__chapters { height: 180px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (< 900px) — 完全再設計
   世界的デザイナーレベルのモバイル体験
   ============================================================ */
@media (max-width: 900px) {
  body.has-cursor, body.has-cursor * { cursor: auto !important; }
  .cursor { display: none !important; }

  :root { --nav-h: 64px; }

  /* ---------- NAV ---------- */
  .nav__logo { min-width: 84px; padding: 8px 14px; }
  .nav__logo-ys { font-size: 1.35rem; }
  .nav__logo-num { font-size: 1.8rem; margin-top: -3px; }
  .nav__lang {
    padding: 0 14px;
    font-size: .68rem;
    letter-spacing: .1em;
  }
  .nav__ch-btn {
    padding: 0 14px;
    font-size: .68rem;
    letter-spacing: .18em;
  }
  .nav__ch-arrow { display: none; }
  .nav__ch-btn > span:first-child { display: none; }
  .nav__ch-btn::after {
    content: 'MENU';
    font-family: var(--font-cond);
  }
  .nav__burger { padding: 0 18px; }

  /* ---------- SIDE RAIL — mobile: right side, smaller ---------- */
  .side-rail {
    left: auto;
    right: 12px;
  }
  .side-rail__track { height: 160px; }
  .side-rail__chapters { height: 160px; }
  .side-rail__dot span { display: none; }

  /* ---------- LOADER ---------- */
  .loader__counter { font-size: clamp(64px, 22vw, 120px); }
  .loader__id { font-size: 1.1rem; letter-spacing: .2em; }
  .loader__progress { width: 60vw; }

  /* ---------- HERO ---------- */
  .hero__meta {
    font-size: .58rem;
    letter-spacing: .22em;
    top: calc(var(--nav-h) + 20px);
    max-width: 62vw;
  }
  .hero__meta--tl { left: 16px; }
  .hero__meta--tr {
    right: 16px;
    top: calc(var(--nav-h) + 20px + 22px);
    max-width: unset;
  }
  .hero__meta-text { text-shadow: 0 2px 4px rgba(0,0,0,.6); }

  .hero__wordmark {
    font-size: clamp(56px, 22vw, 130px);
    line-height: .95;
  }
  .hero__sig {
    font-size: .7rem;
    letter-spacing: .28em;
    gap: 10px;
    margin-top: 22px;
  }
  .hero__sig-line { width: 32px; }
  .hero__sig-text { font-size: .68rem; }

  .hero__scroll {
    bottom: 18px;
    gap: 8px;
  }
  .hero__scroll-text { font-size: .6rem; letter-spacing: .3em; }
  .hero__scroll-line { height: 28px; }

  /* Hero news: 1枚だけ表示、コンパクトに */
  .hero__news {
    width: 100%;
    bottom: 60px;
    display: flex;
    flex-direction: row;
    padding: 0 16px;
    gap: 8px;
  }
  .hero__news-card {
    flex: 1;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.12);
    border-top: 1px solid rgba(255,255,255,.12);
    min-width: 0;
  }
  .hero__news-img { width: 60px; }
  .hero__news-body {
    padding: 8px 12px;
    gap: 4px;
    min-width: 0;
  }
  .hero__news-tag {
    color: var(--red);
    font-size: .56rem;
    letter-spacing: .22em;
  }
  .hero__news-title {
    font-size: .72rem;
    color: var(--white);
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .hero__back-number { font-size: 66vw; }

  /* ---------- MARQUEE ---------- */
  .marquee { padding: 20px 0; }
  .marquee__item { font-size: clamp(1.8rem, 6.5vw, 2.6rem); }
  .marquee__track { gap: 32px; }

  /* ---------- CHAPTER SECTIONS — stack ---------- */
  .ch {
    padding: 60px 0 0;
    overflow: visible;
  }
  .ch__layout {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 0;
  }
  .ch--flip .ch__layout { direction: ltr; }

  .ch__index {
    position: absolute;
    top: 20px; left: 24px;
    font-size: .9rem;
    z-index: 3;
  }
  .ch__index span { font-size: .82rem; }
  .ch__index em { font-size: .6rem; }

  /* Photo goes first, full-width, aspect-ratio locked */
  .ch__photo {
    order: 1;
    min-height: auto;
    aspect-ratio: 4 / 5;
    width: 100%;
  }
  .ch__photo img {
    object-position: center top;
  }
  .ch__photo-caption {
    font-size: .62rem;
    letter-spacing: .22em;
    bottom: 20px;
    left: 24px;
  }

  /* Text: white background, generous padding */
  .ch__text {
    order: 2;
    padding: 56px 28px 68px;
    border: none !important;
    border-top: 1px solid var(--border) !important;
    background: var(--white);
    position: relative;
  }

  /* Big red vertical bar on the left as chapter marker */
  .ch__text::before {
    content: attr(data-ch-idx);
    position: absolute;
    top: 20px; right: 28px;
    font-family: var(--font-cond);
    font-weight: 900;
    font-size: 120px;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(235,10,30,.15);
    letter-spacing: -.02em;
    z-index: 0;
    pointer-events: none;
    font-style: italic;
  }
  .ch__text > * { position: relative; z-index: 1; }

  .ch__label { margin-bottom: 24px; }
  .ch__label-text {
    font-size: .68rem;
    letter-spacing: .28em;
  }
  .ch__quote {
    font-size: clamp(1.9rem, 8vw, 3rem);
    line-height: 1.02;
    margin-bottom: 24px;
    letter-spacing: -.01em;
  }
  .ch__divider { margin-bottom: 24px; width: 40px; }
  .ch__body { font-size: .92rem; line-height: 1.95; }

  .ch__cta { margin-top: 28px; font-size: .72rem; letter-spacing: .22em; }

  /* ---------- INFOS ---------- */
  .infos__inner { padding: 72px 24px 40px; }
  .infos__heading, .sponsors__heading, .timeline__heading, .calendar__eyebrow {
    font-size: .68rem;
    letter-spacing: .28em;
    margin-bottom: 28px;
  }

  .infos__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    margin-bottom: 40px;
  }
  .infos__item {
    padding: 18px 20px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .infos__item:nth-child(odd) { border-right: 1px solid var(--border); }
  .infos__item:nth-last-child(-n+2) { border-bottom: none; }
  .infos__item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    border-right: none;
  }
  .infos__label { font-size: .56rem; letter-spacing: .22em; }
  .infos__val { font-size: 1rem; }

  .stats,
  .stats--v2 {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 48px;
  }
  .stats--v2 {
    /* 6 cells → 3 rows of 2 on mobile */
    grid-template-columns: 1fr 1fr;
  }
  .stat {
    padding: 22px 18px;
    gap: 8px;
    min-height: 160px;
  }
  .stat__label-top { font-size: .58rem; letter-spacing: .22em; }
  .stat__num { font-size: clamp(1.3rem, 5vw, 1.7rem); }
  .stat__num--team { font-size: clamp(1.2rem, 4.8vw, 1.6rem); }
  .stat__label { font-size: .58rem; letter-spacing: .16em; }
  .stat__label small { font-size: .54rem; }
  .stat__outline-num {
    font-size: clamp(64px, 20vw, 96px);
    -webkit-text-stroke-width: 1.5px;
  }

  /* ---------- NEXT RACE ---------- */
  .next-race { padding: 28px 24px 24px; margin-bottom: 40px; }
  .next-race__bg-word { font-size: clamp(56px, 18vw, 96px); top: 8px; }
  .next-race__eyebrow { font-size: .68rem; letter-spacing: .24em; gap: 6px; }
  .next-race__title-row { gap: 12px; margin-bottom: 8px; }
  .next-race__flag { font-size: 1.8rem; }
  .next-race__title { font-size: clamp(1.6rem, 7.5vw, 2.4rem); }
  .next-race__meta {
    font-size: .76rem;
    letter-spacing: .08em;
    margin-bottom: 20px;
  }
  .next-race__countdown { gap: 20px; margin-bottom: 22px; }
  .nr-cd__n { font-size: clamp(2rem, 8vw, 2.6rem); }
  .nr-cd__l { font-size: .68rem; letter-spacing: .14em; }
  .next-race__cta { padding: 14px 18px; font-size: .72rem; letter-spacing: .18em; }
  .next-race__cta-icon { width: 18px; height: 18px; }

  /* ---------- CALENDAR ---------- */
  .calendar__header {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
  }
  .calendar__tab {
    padding: 8px 14px;
    font-size: .7rem;
    letter-spacing: .15em;
  }
  .cal-row {
    grid-template-columns: 44px 28px 1fr;
    gap: 12px;
    padding: 14px 16px;
  }
  .cal-row__rd { font-size: .82rem; }
  .cal-row__flag { font-size: 1.15rem; }
  .cal-row__circuit {
    font-size: .88rem;
  }
  .cal-row__circuit small { font-size: .58rem; letter-spacing: .12em; }
  .cal-row__date {
    grid-column: 3 / 4;
    text-align: left;
    font-size: .75rem;
    margin-top: 4px;
    letter-spacing: .04em;
  }
  .cal-row--next::before { top: 6px; right: 14px; font-size: .52rem; }
  .cal-row--done::after { right: 6px; font-size: .8rem; }

  .strip { height: 60vw; min-height: 240px; }
  .strip__label {
    bottom: 20px; right: 20px;
    font-size: .6rem;
    letter-spacing: .22em;
  }

  /* ---------- QUOTE — mobile ---------- */
  .quote { min-height: 62vh; padding: 0; }
  .quote__diag { width: 140px; }
  .quote__diag-bar--1 { width: 120px; height: 60px; top: 15%; }
  .quote__diag-bar--2 { width: 80px;  height: 44px; top: calc(15% + 70px); }
  .quote__diag-bar--3 { width: 110px; height: 60px; top: calc(15% + 120px); }
  .quote__content,
  .quote__content--left {
    padding: 100px 28px 80px;
    align-items: flex-start;
    text-align: left;
  }
  .quote__eyebrow {
    font-size: .7rem;
    letter-spacing: .28em;
    margin-bottom: 20px;
  }
  .quote__text {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
    line-height: .98;
  }

  /* ---------- TIMELINE ---------- */
  .timeline__inner { padding: 72px 24px; }
  .tl-row {
    grid-template-columns: 68px 24px 1fr;
    gap: 14px;
    padding: 24px 0;
  }
  .tl-row__year { font-size: 1.5rem; padding-top: 2px; }
  .tl-row__bar { margin-top: 12px; }
  .tl-row__content h4 { font-size: .9rem; letter-spacing: .08em; margin-bottom: 8px; }
  .tl-row__content p { font-size: .82rem; line-height: 1.85; }
  .tl-row--accent::before {
    top: 24px;
    font-size: .58rem;
  }

  /* ---------- HORIZONTAL SCROLL — keep horizontal swipe on mobile! ---------- */
  .hscroll {
    height: auto;
  }
  .hscroll__sticky {
    position: relative;
    top: auto;
    height: auto;
    padding: 60px 0 40px;
    display: block;
  }
  .hscroll__track {
    padding: 0 24px;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    transform: none !important;
  }
  .hscroll__track::-webkit-scrollbar { display: none; }

  .hpanel {
    scroll-snap-align: start;
  }
  .hpanel--intro {
    width: 82vw;
    max-width: 82vw;
    padding: 24px 0 12px;
  }
  .hpanel__title { font-size: clamp(2.8rem, 12vw, 4.2rem); }
  .hpanel__hint { margin-top: 24px; font-size: .68rem; letter-spacing: .22em; }

  .hpanel--year {
    width: 74vw;
    max-width: 74vw;
    padding: 40px 32px;
    transform: none !important;
  }
  .hpanel--year::before { width: 30px !important; }
  .hpanel__num { font-size: 2.8rem; }
  .hpanel__h { font-size: 1.35rem; margin-bottom: 14px; }
  .hpanel__p { font-size: .84rem; line-height: 1.85; }

  .hscroll__progress {
    left: 24px; right: 24px;
    bottom: 20px;
    position: absolute;
    top: auto;
  }
  .hscroll__counter {
    top: 20px;
    bottom: auto;
    left: 24px;
    right: auto;
  }
  .hscroll__mobile-hint {
    display: flex;
    position: absolute;
    top: 20px;
    right: 24px;
    align-items: center;
    gap: 8px;
    font-family: var(--font-cond);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .28em;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    z-index: 5;
    animation: hintPulse 2.4s ease-in-out infinite;
  }
  @keyframes hintPulse {
    0%, 100% { opacity: .5; transform: translateX(0); }
    50%      { opacity: 1;  transform: translateX(4px); }
  }

  /* ---------- RESULTS ---------- */
  .results { padding: 72px 24px; }
  .results__title { font-size: 1.5rem; }
  .results__tab {
    padding: 14px 16px;
    font-size: .74rem;
    letter-spacing: .18em;
  }
  .rt-summary { font-size: .95rem; padding: 14px 18px; }
  .results__table th { font-size: .62rem; padding: 12px 14px; letter-spacing: .12em; }
  .results__table td { font-size: .82rem; padding: 12px 14px; }

  /* ---------- GALLERY — mobile layout ---------- */
  .gallery { height: auto; min-height: 0; padding: 100px 0 80px; }
  .gallery__bg img { position: absolute; height: 100%; }
  .gallery__title {
    position: relative;
    top: auto; left: auto;
    transform: none;
    padding: 0 24px 40px;
    font-size: clamp(56px, 18vw, 120px);
  }
  .gallery__photos {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 24px 40px;
  }
  .gallery__photo {
    position: relative;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    max-height: none !important;
    aspect-ratio: 3 / 4;
    transition-delay: 0s !important;
  }
  .gallery__photo--3 { aspect-ratio: 4 / 3; grid-column: 1 / -1; }
  .gallery__photo-num { opacity: 1; transform: none; font-size: .95rem; bottom: 10px; left: 12px; }
  .gallery__caption {
    position: relative;
    bottom: auto; left: auto;
    transform: none;
    text-align: center;
    padding: 0 24px;
    font-size: .68rem;
    letter-spacing: .28em;
    white-space: normal;
  }

  /* ---------- SPONSORS (mobile) ---------- */
  .sponsors { padding: 56px 0 48px; }
  .sponsors__header {
    padding: 0 24px;
    margin-bottom: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .sponsors__heading { font-size: .72rem; letter-spacing: .28em; }
  .sponsors__sub { font-size: .66rem; letter-spacing: .14em; }
  .sponsors__marquee { padding: 36px 0; }
  .sponsors__track { gap: 64px; animation-duration: 36s; }
  .sponsors__logo { height: 120px; }
  .sponsors__logo img { max-width: 300px; }
  .sponsors__fade { width: 60px; }
  .sponsors__names {
    padding: 24px 24px 0;
    font-size: .62rem;
    letter-spacing: .14em;
    line-height: 2;
  }

  /* ---------- CONTACT ---------- */
  .contact { padding: 80px 24px; }
  .contact__title { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .contact__lead { font-size: .88rem; }
  .cf__row { grid-template-columns: 1fr; gap: 14px; }
  .cf__field input, .cf__field textarea, .cf__field select {
    font-size: 16px; /* iOS zoom disable */
  }
  .cf__submit { width: 100%; justify-content: center; padding: 18px; }
  .contact__link { padding: 12px 22px; font-size: .74rem; }

  /* ---------- FOOTER ---------- */
  .footer { padding: 48px 24px 32px; }
  .footer__inner {
    grid-template-columns: auto 1fr;
    gap: 24px;
  }
  .footer__socials { grid-column: 2; justify-self: end; }
  .footer__nav {
    grid-column: 1 / -1;
    gap: 8px 20px;
  }
  .footer__nav a { font-size: .68rem; }

  /* ---------- LIGHTBOX ---------- */
  .lightbox__nav { font-size: 2rem; padding: 6px 12px; }
  .lightbox__close { top: 18px; right: 18px; }

  /* ---------- CTA FAB — smaller icon-only on very small screens ---------- */
  .cta-fab { bottom: 16px; padding: 14px 18px 14px 14px; font-size: .68rem; }
}

/* ============================================================
   RESPONSIVE — small phones (< 400px)
   ============================================================ */
@media (max-width: 400px) {
  .hero__wordmark { font-size: clamp(48px, 20vw, 110px); }
  .cta-fab__text { display: none; }
  .cta-fab { padding: 14px; }
  .hero__news-title { font-size: .68rem; }
  .stat__num { font-size: 1.5rem; }
  .stats--v2 { grid-template-columns: 1fr; }
  .stat { min-height: 130px; padding: 18px 16px; }
}
