:root {
  color-scheme: dark;
  --bg: #060606;
  --bg-soft: rgba(11, 11, 11, 0.72);
  --panel: rgba(18, 18, 18, 0.78);
  --panel-strong: rgba(18, 18, 18, 0.94);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: #f4efe4;
  --text-soft: rgba(244, 239, 228, 0.72);
  --muted: rgba(244, 239, 228, 0.52);
  --accent: #d7b36d;
  --accent-strong: #f0cc87;
  --scene-left: rgba(215, 179, 109, 0.18);
  --scene-right: rgba(255, 255, 255, 0.08);
  --scene-video: rgba(215, 179, 109, 0.14);
  --scene-video-strong: rgba(5, 5, 5, 0.92);
  --shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
  --radius: 28px;
  --radius-sm: 18px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

html.menu-open {
  overflow: hidden;
}

html.intro-active {
  overflow: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(215, 179, 109, 0.09), transparent 36%),
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.06), transparent 30%),
    linear-gradient(180deg, #050505 0%, #090909 48%, #050505 100%);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.intro-active {
  overflow: hidden;
}

body.is-ready .hero__copy,
body.is-ready .hero__sidebar {
  animation-play-state: running;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: rgba(215, 179, 109, 0.32);
  color: var(--text);
}

.page-grain,
.page-light {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.page-grain {
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  mix-blend-mode: screen;
}

.page-light--left {
  background: radial-gradient(circle at 20% 18%, var(--scene-left), transparent 30%);
}

.page-light--right {
  background: radial-gradient(circle at 88% 18%, var(--scene-right), transparent 26%);
}

.intro-overlay {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  touch-action: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 420ms ease, visibility 420ms ease;
  z-index: 80;
}

.intro-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.intro-overlay.is-closing {
  opacity: 0;
}

.intro-sound-toggle {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
}

.intro-overlay__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(215, 179, 109, 0.08), transparent 25%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.98));
  backdrop-filter: blur(18px);
}

.transition-overlay {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 240ms ease, visibility 240ms ease;
  z-index: 70;
}

.transition-overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.transition-overlay__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(215, 179, 109, 0.22), transparent 18%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.88), rgba(3, 3, 3, 0.98));
  backdrop-filter: blur(10px);
}

.transition-overlay__flare {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(240, 204, 135, 0.22), transparent 12%),
    linear-gradient(90deg, transparent 43%, rgba(255, 255, 255, 0.05) 50%, transparent 57%);
  transform: scale(0.94);
  opacity: 0;
  transition: opacity 520ms ease, transform 520ms ease;
}

.transition-overlay.is-active .transition-overlay__flare {
  opacity: 1;
  transform: scale(1);
}

.transition-overlay__text {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--text);
  text-align: center;
  transform: translateY(10px);
  opacity: 0;
  transition: opacity 260ms ease 80ms, transform 260ms ease 80ms;
}

.transition-overlay.is-active .transition-overlay__text {
  opacity: 1;
  transform: translateY(0);
}

.transition-overlay__text strong {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.95;
}

.intro-overlay__shell {
  position: relative;
  width: min(980px, calc(100vw - 24px));
  min-height: min(880px, calc(100vh - 24px));
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
}

.intro-overlay__eyebrow {
  position: relative;
  z-index: 3;
  color: var(--accent-strong);
  text-align: center;
}

.intro-overlay__stage {
  position: relative;
  width: min(760px, calc(100vw - 32px));
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}

.intro-overlay__halo {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(215, 179, 109, 0.14), transparent 52%),
    radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 65%);
  filter: blur(4px);
  animation: intro-halo-pulse 6s ease-in-out infinite;
}

.intro-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: intro-orbit-spin 26s linear infinite;
}

.intro-orbit::before {
  content: "";
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(215, 179, 109, 0.04);
}

.intro-orbit__item {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: -39px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(215, 179, 109, 0.05);
  transform:
    rotate(var(--intro-angle))
    translateX(clamp(120px, 18vw, 240px))
    rotate(calc(-1 * var(--intro-angle)));
  transform-origin: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
  animation: intro-icon-breathe 4.6s ease-in-out infinite;
  animation-delay: var(--intro-delay, 0ms);
}

.intro-orbit__inner {
  display: grid;
  place-items: center;
  gap: 4px;
  width: 100%;
  height: 100%;
  animation: intro-orbit-counterspin 26s linear infinite reverse;
}

.intro-orbit__item:hover {
  border-color: rgba(240, 204, 135, 0.6);
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-strong);
}

.intro-orbit__icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
}

.intro-orbit__icon svg {
  width: 30px;
  height: 30px;
}

.intro-orbit__label {
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--muted);
  white-space: nowrap;
}

.intro-overlay__copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 0;
  width: auto;
  padding: 0;
  text-align: center;
}

.intro-enter {
  position: relative;
  width: auto;
  min-height: auto;
  padding: 0 0 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(244, 239, 228, 0.96);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4.6vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: none;
  transition:
    transform 180ms ease,
    color 180ms ease,
    text-shadow 180ms ease,
    opacity 180ms ease;
}

.intro-enter::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 54%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 179, 109, 0.92), transparent);
  transform: translateX(-50%) scaleX(0.66);
  transform-origin: center;
  opacity: 0.58;
  transition: transform 180ms ease, opacity 180ms ease;
}

.intro-enter:hover,
.intro-enter:focus-visible {
  transform: translateY(-2px);
  color: rgba(248, 223, 167, 1);
  text-shadow: 0 0 24px rgba(215, 179, 109, 0.24);
}

.intro-enter:hover::after,
.intro-enter:focus-visible::after {
  transform: translateX(-50%) scaleX(1);
  opacity: 1;
}

.intro-enter:focus-visible {
  outline: none;
}

.site-header,
main,
.site-footer,
.menu-overlay {
  position: relative;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr minmax(220px, 1.2fr) auto;
  gap: 24px;
  align-items: center;
  padding: 22px clamp(18px, 4vw, 44px);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.84), rgba(5, 5, 5, 0));
  backdrop-filter: blur(12px);
}

.site-header__actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.brand {
  display: inline-flex;
  gap: 14px;
  align-items: center;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(215, 179, 109, 0.42);
  border-radius: 999px;
  color: var(--accent-strong);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.brand__copy {
  display: flex;
  flex-direction: column;
}

.brand__copy strong,
.brand__copy em {
  font-style: normal;
}

.brand__copy strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.brand__copy em,
.site-header__tagline,
.eyebrow,
.menu-panel__eyebrow,
.showcase-card__eyebrow,
.hero-card__label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.brand__copy em,
.site-header__tagline {
  color: var(--muted);
}

.site-header__tagline {
  margin: 0;
  text-align: center;
}

.menu-trigger {
  display: inline-grid;
  align-content: center;
  gap: 7px;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.74);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.menu-trigger:hover {
  transform: translateY(-1px);
  border-color: rgba(215, 179, 109, 0.4);
  background: rgba(20, 20, 20, 0.88);
}

.sound-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.68);
  color: var(--text-soft);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.intro-replay {
  white-space: nowrap;
}

.sound-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(215, 179, 109, 0.38);
  color: var(--text);
  background: rgba(20, 20, 20, 0.82);
}

.sound-toggle[aria-pressed="false"] {
  color: rgba(244, 239, 228, 0.45);
}

.sound-toggle.is-muted .sound-toggle__icon {
  opacity: 0.55;
}

.sound-toggle__icon {
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
}

.sound-toggle__icon svg {
  width: 16px;
  height: 16px;
}

.sound-toggle__text {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.menu-trigger span {
  display: block;
  width: 22px;
  height: 1.8px;
  margin: 0 auto;
  border-radius: 999px;
  background: currentColor;
  color: var(--text);
  transition: transform 220ms ease, opacity 220ms ease, width 220ms ease;
}

body.menu-open .menu-trigger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.menu-open .menu-trigger span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-trigger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

main {
  display: block;
  z-index: 1;
}

.hero,
.chapter {
  width: min(var(--max-width), calc(100vw - 36px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 128px 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.65fr);
  gap: 28px;
  align-items: end;
}

.hero__media-shell {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__video,
.hero__veil,
.hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.02) brightness(0.48);
  transform: scale(1.04);
}

.hero__veil {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.2), rgba(5, 5, 5, 0.72) 78%, var(--scene-video-strong)),
    radial-gradient(circle at 50% 30%, var(--scene-video), transparent 24%);
}

.hero__grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 88%);
  opacity: 0.3;
}

body.is-transitioning .hero__video {
  filter: saturate(0.72) contrast(0.96) brightness(0.34) blur(1px);
  transform: scale(1.08);
}

body.is-transitioning .hero__copy,
body.is-transitioning .hero__sidebar {
  opacity: 0.84;
  transform: translateY(8px);
  filter: blur(1px);
}

.hero__copy {
  max-width: 780px;
  padding: clamp(20px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.3), rgba(8, 8, 8, 0.16));
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  animation: hero-rise 760ms cubic-bezier(0.2, 0.7, 0.1, 1) both paused;
}

.hero__copy h1,
.chapter__header h2,
.feature-panel h3,
.showcase-card h3,
.arena-intro,
.contact-card h3 {
  font-family: "Cormorant Garamond", serif;
}

.hero__copy h1 {
  margin: 16px 0 18px;
  font-size: clamp(3.4rem, 7vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
}

.hero__lead,
.chapter-card p,
.feature-panel p,
.showcase-card p,
.arena-intro p,
.factory-card p,
.contact-card p,
.menu-panel p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 1rem;
}

.hero__lead {
  max-width: 60ch;
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.action,
.menu-close,
.action--ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.action--primary {
  background: linear-gradient(135deg, rgba(215, 179, 109, 0.94), rgba(240, 204, 135, 0.86));
  color: #1b1307;
  font-weight: 800;
}

.action--ghost,
.menu-close {
  background: rgba(255, 255, 255, 0.04);
}

.action:hover,
.menu-close:hover,
.menu-link:hover,
.feature-pill:hover {
  transform: translateY(-2px);
}

.hero__sidebar {
  display: grid;
  gap: 14px;
  animation: hero-rise 760ms 120ms cubic-bezier(0.2, 0.7, 0.1, 1) both paused;
}

.hero-card,
.chapter-card,
.feature-panel,
.showcase-card,
.mode-card,
.factory-card,
.contact-card,
.menu-panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.84), rgba(17, 17, 17, 0.62));
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 20px 22px;
}

.hero-card strong {
  display: block;
  margin: 8px 0 10px;
  font-size: 1.12rem;
}

.hero-card span {
  color: var(--muted);
  line-height: 1.55;
}

.chapter {
  padding: 104px 0 10px;
  scroll-margin-top: 120px;
}

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

.chapter__header {
  max-width: 860px;
  margin-bottom: 28px;
}

.chapter__header h2 {
  margin: 12px 0 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
}

.chapter.is-active .chapter__header h2 {
  color: var(--text);
}

.chapter.is-active .chapter-card,
.chapter.is-active .feature-panel,
.chapter.is-active .showcase-card,
.chapter.is-active .mode-card,
.chapter.is-active .factory-card,
.chapter.is-active .contact-card {
  border-color: rgba(215, 179, 109, 0.22);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(215, 179, 109, 0.03);
}

.chapter__grid,
.feature-split,
.showcase-grid,
.arena-layout,
.factory-layout,
.contact-grid {
  display: grid;
  gap: 18px;
}

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

.chapter-card {
  padding: 22px;
}

.chapter-card--lead {
  grid-column: 1 / -1;
}

.chapter-card h3,
.feature-panel h3,
.showcase-card h3,
.mode-card h3,
.factory-card h3,
.contact-card h3 {
  margin: 0 0 10px;
  font-size: 1.7rem;
  line-height: 1;
}

.feature-split {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.feature-panel,
.showcase-card,
.mode-card,
.factory-card,
.contact-card {
  padding: 22px;
}

.feature-panel--large {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.feature-meta span,
.menu-overlay__footer span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.84rem;
}

.feature-stack {
  display: grid;
  gap: 18px;
}

.showcase-grid,
.factory-layout,
.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.arena-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

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

.mode-card {
  min-height: 160px;
}

.mode-card p {
  max-width: 32ch;
}

.factory-card--contact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.service-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.service-list li,
.menu-spotlight-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
  line-height: 1.55;
}

.service-list li::before,
.menu-spotlight-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(215, 179, 109, 0.08);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
  z-index: 40;
}

body.intro-active .menu-overlay {
  z-index: 30;
}

.menu-overlay[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.menu-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(16px);
}

.menu-overlay__panel {
  position: relative;
  width: min(calc(100vw - 28px), 1260px);
  margin: 18px auto;
  padding: 28px;
  max-height: calc(100vh - 36px);
  overflow: auto;
  transform: translateY(24px) scale(0.985);
  opacity: 0;
  transition: transform 260ms cubic-bezier(0.2, 0.7, 0.1, 1), opacity 260ms ease;
}

.menu-overlay[aria-hidden="false"] .menu-overlay__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.menu-overlay__top,
.menu-overlay__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.menu-overlay__top h2 {
  margin: 10px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.96;
}

.menu-overlay__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr) minmax(280px, 0.9fr);
  gap: 18px;
  margin-top: 24px;
}

.menu-panel {
  padding: 22px;
}

.menu-panel__eyebrow {
  margin: 0 0 12px;
  color: var(--accent-strong);
}

.menu-spotlight-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.menu-links {
  display: grid;
  gap: 12px;
}

.menu-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 12px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  animation: menu-rise 500ms cubic-bezier(0.2, 0.7, 0.1, 1) both;
  animation-delay: var(--enter-delay, 0ms);
}

.menu-link__label {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.68rem;
  line-height: 1;
}

.menu-link__note {
  color: var(--muted);
  font-size: 0.85rem;
}

.menu-link__arrow {
  color: var(--accent-strong);
  font-size: 1rem;
}

.menu-link--compact .menu-link__label {
  font-size: 1.2rem;
}

.menu-link--compact {
  padding: 14px 0;
}

.menu-projects {
  margin-top: 20px;
}

.menu-projects__list {
  display: grid;
  gap: 10px;
}

.feature-pill {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  animation: menu-rise 500ms cubic-bezier(0.2, 0.7, 0.1, 1) both;
  animation-delay: var(--enter-delay, 0ms);
}

.feature-pill__label {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
}

.feature-pill__meta {
  color: var(--muted);
  font-size: 0.85rem;
}

.menu-overlay__footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.eyebrow,
.menu-panel__eyebrow,
.showcase-card__eyebrow,
.hero-card__label {
  margin: 0;
  color: var(--accent-strong);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 660ms ease, transform 660ms cubic-bezier(0.2, 0.7, 0.1, 1);
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.story-rail {
  position: fixed;
  top: 50%;
  right: clamp(14px, 3vw, 34px);
  display: grid;
  gap: 8px;
  width: 150px;
  padding: 14px 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(10, 10, 10, 0.52);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  transform: translateY(-50%);
  z-index: 22;
}

.story-rail__kicker {
  color: var(--accent-strong);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
}

.story-rail strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  line-height: 1;
}

.story-rail__count {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.story-rail__progress {
  position: relative;
  height: 4px;
  margin-top: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.story-rail__progress span {
  display: block;
  width: 14%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  transition: width 240ms ease;
}

body[data-story="ouverture"] {
  --scene-left: rgba(215, 179, 109, 0.18);
  --scene-right: rgba(255, 255, 255, 0.08);
  --scene-video: rgba(215, 179, 109, 0.14);
}

body[data-story="studio"] {
  --scene-left: rgba(122, 170, 255, 0.16);
  --scene-right: rgba(255, 255, 255, 0.08);
  --scene-video: rgba(122, 170, 255, 0.12);
}

body[data-story="animation"] {
  --scene-left: rgba(240, 204, 135, 0.16);
  --scene-right: rgba(122, 170, 255, 0.12);
  --scene-video: rgba(122, 170, 255, 0.16);
}

body[data-story="fulani"] {
  --scene-left: rgba(105, 150, 255, 0.16);
  --scene-right: rgba(215, 179, 109, 0.08);
  --scene-video: rgba(105, 150, 255, 0.16);
}

body[data-story="arena"] {
  --scene-left: rgba(210, 80, 82, 0.2);
  --scene-right: rgba(240, 204, 135, 0.08);
  --scene-video: rgba(210, 80, 82, 0.14);
}

body[data-story="factory"] {
  --scene-left: rgba(78, 169, 150, 0.16);
  --scene-right: rgba(215, 179, 109, 0.1);
  --scene-video: rgba(78, 169, 150, 0.14);
}

body[data-story="contact"] {
  --scene-left: rgba(153, 118, 255, 0.16);
  --scene-right: rgba(240, 204, 135, 0.08);
  --scene-video: rgba(153, 118, 255, 0.12);
}

.site-footer {
  width: min(var(--max-width), calc(100vw - 36px));
  margin: 28px auto 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer span:last-child {
  text-align: right;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes menu-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes intro-orbit-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes intro-orbit-counterspin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@keyframes intro-halo-pulse {
  0%, 100% {
    transform: scale(0.98);
    opacity: 0.78;
  }
  50% {
    transform: scale(1.02);
    opacity: 1;
  }
}

@keyframes intro-icon-breathe {
  0%, 100% {
    transform:
      rotate(var(--intro-angle))
      translateX(clamp(120px, 18vw, 240px))
      rotate(calc(-1 * var(--intro-angle)))
      scale(0.98);
  }
  50% {
    transform:
      rotate(var(--intro-angle))
      translateX(clamp(120px, 18vw, 240px))
      rotate(calc(-1 * var(--intro-angle)))
      scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }

  .hero__copy,
  .hero__sidebar {
    animation: none;
    animation-play-state: running;
  }

  .intro-orbit,
  .intro-orbit__item,
  .intro-overlay__halo {
    animation: none !important;
  }

  .transition-overlay,
  .transition-overlay__flare,
  .transition-overlay__text,
  .story-rail__progress span {
    transition: none !important;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header__tagline {
    display: none;
  }

  .story-rail {
    display: none;
  }

  .hero,
  .feature-split,
  .arena-layout,
  .menu-overlay__grid {
    grid-template-columns: 1fr;
  }

  .showcase-grid,
  .factory-layout,
  .contact-grid,
  .chapter__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-overlay__panel {
    width: min(calc(100vw - 18px), 1260px);
    padding: 18px;
    max-height: calc(100vh - 18px);
  }

  .intro-overlay__stage {
    width: min(620px, calc(100vw - 24px));
  }

  .intro-orbit__item {
    width: 68px;
    height: 68px;
    margin: -34px;
    transform:
      rotate(var(--intro-angle))
      translateX(clamp(106px, 24vw, 188px))
      rotate(calc(-1 * var(--intro-angle)));
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 110px;
  }

  .hero,
  .chapter {
    width: min(calc(100vw - 22px), var(--max-width));
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero__copy h1 {
    font-size: clamp(2.8rem, 13vw, 4.6rem);
  }

  .showcase-grid,
  .factory-layout,
  .contact-grid,
  .chapter__grid,
  .mode-grid {
    grid-template-columns: 1fr;
  }

  .menu-overlay__panel {
    margin: 10px auto;
    padding: 14px;
    max-height: calc(100vh - 14px);
  }

  .intro-overlay__shell {
    min-height: calc(100vh - 14px);
  }

  .intro-overlay__stage {
    width: min(520px, calc(100vw - 12px));
  }

  .intro-orbit__item {
    width: 58px;
    height: 58px;
    margin: -29px;
    transform:
      rotate(var(--intro-angle))
      translateX(clamp(92px, 26vw, 148px))
      rotate(calc(-1 * var(--intro-angle)));
  }

  .intro-overlay__copy {
    padding: 0;
  }

  .intro-replay {
    width: 44px;
    min-width: 44px;
    padding: 0;
    justify-content: center;
  }

  .intro-replay .sound-toggle__text {
    display: none;
  }

  .menu-link {
    padding: 16px 0;
  }

  .menu-link__label {
    font-size: 1.42rem;
  }

  .site-footer {
    width: min(calc(100vw - 22px), var(--max-width));
  }
}
