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

html {
  scroll-behavior: smooth;
}

:root {
  --black: #050505;
  --surface: #0d0f10;
  --surface-2: #141718;
  --panel: #181c1d;
  --panel-soft: rgba(22, 27, 27, 0.82);
  --line: rgba(255, 255, 255, 0.1);
  --line-soft: rgba(255, 255, 255, 0.06);
  --text: #f5f7f4;
  --muted: #a0a7a4;
  --chrome: #d9dddb;
  --green: #9eff34;
  --green-soft: rgba(158, 255, 52, 0.2);
  --green-glow: rgba(158, 255, 52, 0.42);
  --white-glow: rgba(255, 255, 255, 0.72);
  --display: "Bebas Neue", sans-serif;
  --sans: "Manrope", sans-serif;
  --blackletter: "UnifrakturCook", serif;
}

body {
  font-family: var(--sans);
  background:
    radial-gradient(circle at top right, rgba(158, 255, 52, 0.08), transparent 20%),
    radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.06), transparent 18%),
    linear-gradient(180deg, #070808 0%, #0a0c0d 38%, #050505 100%);
  color: var(--text);
  min-height: 100vh;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.24'%3E%3Cpath d='M0 80h160'/%3E%3Cpath d='M80 0v160'/%3E%3C/g%3E%3C/svg%3E");
}

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

.sample-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
  background: linear-gradient(90deg, #0b0f0d 0%, #101714 100%);
  color: rgba(245, 247, 244, 0.78);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  z-index: 10;
}

.sample-bar a {
  color: var(--green);
  border-bottom: 1px solid rgba(158, 255, 52, 0.4);
}

.sample-bar-brand {
  display: inline-flex;
  align-items: center;
  border-bottom: none !important;
}

.sample-bar-mark {
  display: block;
  width: 120px;
  height: auto;
}

.sample-bar .sep {
  opacity: 0.32;
}

.site-nav,
.hero,
.subpage-hero,
.club-strip,
.section,
.site-footer {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.site-nav {
  margin-top: 18px;
  padding: 16px 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(17, 20, 21, 0.94), rgba(7, 9, 10, 0.94)),
    rgba(8, 10, 10, 0.78);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 14px;
  z-index: 20;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

.site-nav::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 28%),
    linear-gradient(90deg, rgba(158, 255, 52, 0.12), transparent 16%, transparent 84%, rgba(158, 255, 52, 0.12));
}

.site-nav::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(158, 255, 52, 0), rgba(158, 255, 52, 0.82), rgba(158, 255, 52, 0));
  opacity: 0.8;
}

.site-nav > * {
  position: relative;
  z-index: 1;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0.16rem;
  padding: 10px 14px 10px 0;
}

.logo-main {
  font-family: var(--blackletter);
  font-size: 2.15rem;
  line-height: 0.9;
  color: var(--text);
  text-shadow: 0 0 18px rgba(158, 255, 52, 0.12);
}

.logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 0;
  margin: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.nav-links a,
.nav-book,
.nav-toggle,
.nav-status,
.mobile-nav a,
.btn {
  position: relative;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links a {
  color: var(--muted);
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px 0 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.nav-links a:last-child {
  border-right: none;
}

.nav-links a::before {
  content: "0" counter(nav-item);
  counter-increment: nav-item;
  position: absolute;
  left: 14px;
  top: 15px;
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  color: rgba(158, 255, 52, 0.56);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  height: 1px;
  background: linear-gradient(90deg, rgba(158, 255, 52, 0), rgba(158, 255, 52, 1), rgba(158, 255, 52, 0));
  transform: scaleX(0.24);
  opacity: 0;
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
}

.nav-links {
  counter-reset: nav-item;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  transform: translateY(-1px);
  background: rgba(158, 255, 52, 0.05);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  opacity: 1;
  box-shadow: 0 0 12px rgba(158, 255, 52, 0.3);
}

.nav-status {
  min-height: 56px;
  min-width: 190px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(158, 255, 52, 0.08), transparent 70%),
    rgba(255, 255, 255, 0.02);
  display: grid;
  align-content: center;
  gap: 0.18rem;
  animation: navStatusPulse 4.8s ease-in-out infinite;
}

.nav-status-label {
  font-size: 0.56rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(158, 255, 52, 0.68);
}

.nav-status-value {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--text);
}

.nav-book,
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.nav-book {
  border: 1px solid rgba(158, 255, 52, 0.34);
  background:
    linear-gradient(180deg, rgba(158, 255, 52, 0.14), rgba(158, 255, 52, 0.06)),
    rgba(158, 255, 52, 0.08);
  color: var(--green);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nav-toggle,
.mobile-nav {
  display: none;
}

.nav-toggle {
  min-height: 48px;
  min-width: 138px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle-text {
  display: inline-flex;
  align-items: center;
}

.nav-toggle-bars {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}

.nav-toggle-bars span {
  width: 18px;
  height: 1.5px;
  display: block;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.site-nav.menu-open .nav-toggle {
  border-color: rgba(158, 255, 52, 0.34);
  background: rgba(158, 255, 52, 0.08);
  color: var(--green);
}

.site-nav.menu-open .nav-toggle-bars span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.site-nav.menu-open .nav-toggle-bars span:nth-child(2) {
  opacity: 0;
}

.site-nav.menu-open .nav-toggle-bars span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(18, 22, 22, 0.98), rgba(8, 10, 10, 0.96)),
    rgba(8, 10, 10, 0.94);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.mobile-nav a::after {
  content: "+";
  color: rgba(158, 255, 52, 0.8);
  font-size: 0.9rem;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--text);
  background: rgba(158, 255, 52, 0.06);
  border-color: rgba(158, 255, 52, 0.12);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav-cta {
  margin-top: 0.55rem;
  justify-content: center;
  border: 1px solid rgba(158, 255, 52, 0.34);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(158, 255, 52, 0.14), rgba(158, 255, 52, 0.06)),
    rgba(158, 255, 52, 0.08);
  color: var(--green);
}

.mobile-nav-cta::after {
  content: none;
}

.nav-book:hover,
.nav-toggle:hover,
.btn:hover {
  transform: translateY(-2px);
}

.hero {
  min-height: calc(100vh - 120px);
  padding: 62px 0 44px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(400px, 1.08fr);
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  padding: 1rem 0;
}

.overline,
.eyebrow,
.strip-label,
.note-number,
.aside-kicker,
.info-label,
.poster-kicker,
.form-title {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.overline,
.eyebrow,
.strip-label,
.note-number,
.aside-kicker,
.info-label,
.poster-kicker {
  color: var(--green);
}

.hero h1,
.section h2,
.poster-card h3 {
  font-family: var(--display);
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(4.2rem, 8vw, 8.6rem);
  line-height: 0.88;
  margin: 1rem 0 1.1rem;
  text-shadow: 0 0 0 rgba(158, 255, 52, 0);
}

.hero h1 span {
  display: block;
  color: var(--green);
  text-shadow: 0 0 0 rgba(158, 255, 52, 0);
}

.hero h1.reveal.visible {
  animation: heroTitleSettle 1.05s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero h1.reveal.visible span {
  animation: heroNeonSettle 1.35s cubic-bezier(0.2, 0.8, 0.2, 1) 0.08s both;
}

.hero-lead,
.note-card p,
.menu-row p,
.crew-copy p,
.footer-note,
.info-card p,
.poster-foot,
.culture-tile .tile-label,
.aside-panel p {
  color: var(--muted);
  line-height: 1.9;
}

.section-intro > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.9;
}

.hero-lead {
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin: 2rem 0 2.4rem;
}

.btn-solid {
  color: var(--black);
  background: linear-gradient(135deg, var(--green) 0%, #d3ff8e 100%);
  box-shadow: 0 0 0 1px rgba(158, 255, 52, 0.12), 0 14px 32px rgba(158, 255, 52, 0.18);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover {
  border-color: rgba(158, 255, 52, 0.32);
  color: var(--green);
}

.hero-stats {
  display: grid;
  gap: 0.9rem;
  max-width: 38rem;
}

.stat-pill {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(13, 16, 16, 0.72);
}

.stat-label {
  color: var(--green);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.stat-value {
  color: var(--text);
  font-size: 0.96rem;
}

.hero-stage {
  position: relative;
  min-height: 760px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 34%, rgba(158, 255, 52, 0.12), transparent 24%),
    linear-gradient(180deg, #050607 0%, #0a0f0f 45%, #060708 100%);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 90px 90px;
  opacity: 0.18;
  mix-blend-mode: screen;
}

.ceiling-grid,
.floor-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hex,
.floor-hex,
.mini-hex {
  position: absolute;
  width: 168px;
  height: 92px;
  clip-path: polygon(26% 0%, 74% 0%, 100% 50%, 74% 100%, 26% 100%, 0% 50%);
}

.hex {
  border: 4px solid rgba(255, 255, 255, 0.94);
  box-shadow:
    0 0 16px rgba(255, 255, 255, 0.44),
    0 0 32px rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.02);
}

.h1 { top: 52px; left: 34px; }
.h2 { top: 30px; left: 178px; }
.h3 { top: 52px; left: 322px; }
.h4 { top: 30px; left: 466px; }
.h5 { top: 132px; left: 106px; }
.h6 { top: 154px; left: 250px; }
.h7 { top: 132px; left: 394px; }
.h8 { top: 234px; left: 322px; }

.stage-room {
  position: absolute;
  inset: 228px 44px 96px 44px;
}

.room-wall {
  position: absolute;
  inset: 0 0 142px 0;
  border-radius: 22px 22px 0 0;
  background:
    linear-gradient(180deg, #f7f9f4 0%, #e8ece7 100%);
  box-shadow: inset 0 -20px 40px rgba(0, 0, 0, 0.08);
}

.room-wall::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.04), transparent 34%, rgba(0, 0, 0, 0.06) 100%);
}

.wall-tv {
  position: absolute;
  top: 72px;
  left: 24%;
  width: 170px;
  height: 100px;
  border-radius: 8px;
  background: linear-gradient(180deg, #111 0%, #000 100%);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.2);
}

.wall-shelves {
  position: absolute;
  top: 120px;
  left: 64px;
  display: grid;
  gap: 18px;
}

.wall-shelves span {
  width: 34px;
  height: 34px;
  clip-path: polygon(26% 0%, 74% 0%, 100% 50%, 74% 100%, 26% 100%, 0% 50%);
  border: 2px solid rgba(16, 18, 18, 0.54);
}

.neon-note {
  position: absolute;
  right: 64px;
  top: 116px;
  color: #b8ff80;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  font-style: italic;
  line-height: 0.9;
  text-shadow:
    0 0 6px rgba(184, 255, 128, 0.8),
    0 0 18px rgba(158, 255, 52, 0.54),
    0 0 36px rgba(158, 255, 52, 0.28);
}

.chair {
  position: absolute;
  bottom: 92px;
  width: 210px;
  height: 118px;
  border-radius: 18px 18px 14px 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #111415 0%, #050606 100%);
  box-shadow: 0 18px 26px rgba(0, 0, 0, 0.36);
}

.chair::before {
  content: "";
  position: absolute;
  inset: 16px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.chair-left {
  left: 38px;
  transform: perspective(800px) rotateY(18deg) rotateX(4deg);
}

.chair-right {
  right: 38px;
  transform: perspective(800px) rotateY(-18deg) rotateX(4deg);
}

.counter-card {
  position: absolute;
  left: 50%;
  bottom: 144px;
  transform: translateX(-50%);
  padding: 18px 22px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(11, 14, 14, 0.82);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.32);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
}

.counter-top {
  color: var(--text);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.counter-bottom {
  color: var(--green);
  font-size: 0.88rem;
}

.floor-grid {
  inset: auto 22px 16px 22px;
  height: 170px;
  transform: perspective(800px) rotateX(72deg);
  transform-origin: center bottom;
  opacity: 0.52;
}

.floor-hex {
  border: 2px solid rgba(255, 255, 255, 0.52);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.16);
}

.f1 { left: 80px; top: 36px; }
.f2 { left: 200px; top: 18px; }
.f3 { left: 320px; top: 36px; }
.f4 { left: 440px; top: 18px; }
.f5 { left: 560px; top: 36px; }

.club-strip {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}

.club-strip > div {
  background: rgba(12, 15, 15, 0.82);
  padding: 18px 22px;
}

.club-strip p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.94rem;
  margin-top: 0.35rem;
}

.section {
  padding: 92px 0;
}

.section-intro {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}

.section h2 {
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: 0.92;
  max-width: 13ch;
}

.inside-grid,
.menu-layout,
.shop-layout,
.culture-grid,
.reserve {
  display: grid;
  gap: 2rem;
}

.inside-grid {
  grid-template-columns: minmax(0, 1.12fr) 360px;
}

.inside-visual,
.menu-board,
.poster-card,
.culture-tile,
.form-shell,
.info-card,
.aside-panel,
.note-card,
.crew-card {
  border: 1px solid var(--line);
  background: rgba(14, 17, 18, 0.86);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
}

.inside-visual {
  position: relative;
  min-height: 520px;
  border-radius: 26px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #050607 0%, #0d1112 38%, #0b0d0e 100%);
}

.visual-ceiling {
  position: absolute;
  inset: 26px 26px auto 26px;
  height: 160px;
}

.mini-hex {
  border: 3px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.38);
}

.m1 { top: 0; left: 24px; }
.m2 { top: 0; left: 164px; }
.m3 { top: 0; left: 304px; }
.m4 { top: 70px; left: 94px; }
.m5 { top: 70px; left: 234px; }
.m6 { top: 70px; left: 374px; }

.visual-floor {
  position: absolute;
  inset: 180px 0 0;
  background:
    radial-gradient(circle at 55% 22%, rgba(158, 255, 52, 0.2), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 20%),
    linear-gradient(145deg, #444a4d 0%, #2d3336 34%, #4e5659 62%, #23282a 100%);
}

.visual-floor::before {
  content: "";
  position: absolute;
  inset: 18% 4% 10%;
  background:
    radial-gradient(circle at top, rgba(158, 255, 52, 0.22), transparent 24%),
    repeating-linear-gradient(60deg, transparent 0 46px, rgba(255, 255, 255, 0.18) 46px 48px),
    repeating-linear-gradient(-60deg, transparent 0 46px, rgba(255, 255, 255, 0.18) 46px 48px);
  opacity: 0.4;
  transform: perspective(800px) rotateX(72deg);
  transform-origin: center top;
}

.visual-couch,
.visual-chair {
  position: absolute;
  bottom: 48px;
  width: 220px;
  height: 86px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.24)), #0c0f10;
}

.visual-couch {
  left: 26px;
}

.visual-chair {
  right: 110px;
  width: 98px;
  height: 136px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.3)), #0d1011;
}

.chair-two {
  right: 32px;
}

.inside-notes {
  display: grid;
  gap: 1rem;
}

.note-card {
  border-radius: 22px;
  padding: 24px;
}

.note-card h3,
.menu-row h3,
.crew-copy h3,
.aside-panel h3 {
  font-family: var(--display);
  letter-spacing: 0.03em;
}

.note-card h3 {
  font-size: 1.8rem;
  margin: 0.55rem 0 0.65rem;
}

.menu-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
}

.shop-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
}

.menu-board {
  border-radius: 28px;
  padding: 28px;
  display: grid;
  gap: 1.2rem;
}

.menu-group {
  display: grid;
  gap: 0.4rem;
}

.menu-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 0;
  border-top: 1px solid var(--line);
}

.menu-row h3 {
  font-size: 2rem;
  margin-bottom: 0.3rem;
}

.menu-row span {
  white-space: nowrap;
  color: var(--green);
  font-family: var(--display);
  font-size: 2rem;
}

.menu-aside {
  display: grid;
  gap: 1rem;
}

.aside-panel {
  border-radius: 20px;
  padding: 24px;
}

.aside-panel.strong {
  border-color: rgba(158, 255, 52, 0.26);
  background:
    linear-gradient(180deg, rgba(158, 255, 52, 0.08), transparent 70%),
    rgba(14, 17, 18, 0.92);
}

.aside-panel h3 {
  font-size: 2rem;
  color: var(--text);
  margin: 0.5rem 0 0.7rem;
}

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

.crew-card {
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.crew-card:hover {
  transform: translateY(-8px);
  border-color: rgba(158, 255, 52, 0.24);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.32);
}

.crew-visual {
  min-height: 280px;
  position: relative;
  background:
    radial-gradient(circle at 50% 18%, rgba(158, 255, 52, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 36%),
    linear-gradient(145deg, #141719 0%, #0b0c0d 100%);
}

.crew-visual::before {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 24px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 34px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 30%);
}

.crew-visual.mid {
  background:
    radial-gradient(circle at 60% 24%, rgba(158, 255, 52, 0.14), transparent 20%),
    linear-gradient(145deg, #121718 0%, #090a0b 100%);
}

.crew-visual.alt {
  background:
    radial-gradient(circle at 42% 18%, rgba(158, 255, 52, 0.22), transparent 18%),
    linear-gradient(145deg, #171b1c 0%, #090a0b 100%);
}

.crew-tag {
  position: absolute;
  left: 22px;
  bottom: 20px;
  color: var(--green);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.crew-copy {
  padding: 22px 24px 26px;
}

.crew-copy h3 {
  font-size: 2rem;
}

.crew-role {
  display: block;
  color: var(--green);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0.35rem 0 0.9rem;
}

.culture-grid {
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
  align-items: stretch;
}

.poster-card {
  border-radius: 26px;
  padding: 26px;
  background:
    radial-gradient(circle at top right, rgba(158, 255, 52, 0.16), transparent 22%),
    linear-gradient(180deg, #0f1213 0%, #070809 100%);
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.poster-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.poster-mark {
  font-family: var(--blackletter);
  font-size: 2.2rem;
  line-height: 0.9;
}

.poster-card h3 {
  font-size: 4.4rem;
  line-height: 0.85;
  margin: 1.2rem 0 1.1rem;
}

.poster-card ul {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  color: var(--green);
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: 0.03em;
}

.poster-foot {
  margin-top: auto;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.culture-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.culture-tile {
  min-height: 420px;
  border-radius: 22px;
  padding: 18px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
}

.culture-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 32%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.72) 100%);
}

.tile-label {
  position: relative;
  z-index: 1;
}

.merch {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.42)),
    linear-gradient(145deg, #0c0d0e 0%, #15181a 100%);
}

.merch::after {
  content: "TPC";
  position: absolute;
  left: 18px;
  top: 22px;
  font-family: var(--blackletter);
  font-size: 4rem;
  line-height: 0.9;
  color: rgba(255, 255, 255, 0.92);
}

.room {
  background:
    radial-gradient(circle at center, rgba(158, 255, 52, 0.32), transparent 28%),
    linear-gradient(145deg, #080a0b 0%, #121617 100%);
}

.promo {
  background:
    linear-gradient(180deg, rgba(158, 255, 52, 0.12), transparent 24%),
    linear-gradient(145deg, #0d1112 0%, #070809 100%);
}

.promo::after {
  content: "$10 OFF";
  position: absolute;
  left: 18px;
  top: 18px;
  font-family: var(--display);
  font-size: 4rem;
  line-height: 0.85;
  color: var(--text);
}

.shop-showcase {
  display: grid;
  gap: 1rem;
}

.shop-hero-card,
.product-card,
.cart-preview,
.shop-note {
  border: 1px solid var(--line);
  background: rgba(14, 17, 18, 0.88);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
}

.shop-hero-card {
  border-radius: 28px;
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1.2rem;
  background:
    radial-gradient(circle at top right, rgba(158, 255, 52, 0.14), transparent 22%),
    linear-gradient(180deg, #101314 0%, #070809 100%);
}

.shop-hero-copy h3,
.product-card h3,
.shop-note h3 {
  font-family: var(--display);
  letter-spacing: 0.03em;
}

.shop-pill,
.product-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(158, 255, 52, 0.18);
  background: rgba(158, 255, 52, 0.08);
  color: var(--green);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.shop-hero-copy h3 {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 0.9;
  margin: 1rem 0 0.9rem;
}

.shop-hero-copy p,
.product-card p,
.cart-note,
.cart-line span,
.shop-note p,
.shop-checklist li {
  color: var(--muted);
  line-height: 1.85;
}

.shop-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.cart-preview {
  border-radius: 24px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(17, 20, 21, 0.96), rgba(9, 11, 12, 0.96));
}

.cart-preview-head,
.cart-line,
.cart-totals > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.cart-preview-head {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1rem;
}

.cart-preview-head span,
.cart-line span,
.cart-totals span {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cart-preview-head span,
.cart-totals span {
  color: rgba(158, 255, 52, 0.74);
}

.cart-preview-head strong,
.cart-line strong,
.cart-totals strong {
  color: var(--text);
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.cart-line {
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line-soft);
}

.cart-item {
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.cart-totals {
  display: grid;
  gap: 0.7rem;
  padding-top: 1rem;
}

.cart-total-row {
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

.cart-total-row strong {
  color: var(--green);
}

.cart-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

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

.product-card {
  border-radius: 22px;
  padding: 22px;
  display: grid;
  gap: 1rem;
}

.product-card h3 {
  font-size: 2rem;
  line-height: 0.95;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-meta span:last-child {
  color: var(--green);
  font-family: var(--display);
  font-size: 1.8rem;
  letter-spacing: 0.03em;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.product-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(158, 255, 52, 0.28);
  color: var(--green);
  background: rgba(158, 255, 52, 0.05);
}

.shop-aside {
  display: grid;
  gap: 1rem;
}

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

.route-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(16, 19, 20, 0.94), rgba(8, 10, 11, 0.94));
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.route-card:hover {
  transform: translateY(-4px);
  border-color: rgba(158, 255, 52, 0.24);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.route-label {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--green);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.route-card strong {
  display: block;
  color: var(--text);
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.7rem;
}

.route-card p {
  color: var(--muted);
  line-height: 1.8;
}

.shop-note {
  border-radius: 22px;
  padding: 24px;
}

.shop-note.strong {
  border-color: rgba(158, 255, 52, 0.26);
  background:
    linear-gradient(180deg, rgba(158, 255, 52, 0.08), transparent 70%),
    rgba(14, 17, 18, 0.92);
}

.shop-note h3 {
  font-size: 2rem;
  margin: 0.5rem 0 0.75rem;
}

.shop-checklist {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  margin-top: 0.8rem;
}

.shop-checklist li {
  position: relative;
  padding-left: 1.2rem;
}

.shop-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(158, 255, 52, 0.42);
}

.subpage-hero {
  min-height: auto;
  padding: 56px 0 24px;
  display: grid;
  gap: 1.4rem;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: rgba(158, 255, 52, 0.82);
}

.subpage-lead {
  max-width: 54rem;
  color: var(--muted);
  line-height: 1.9;
}

.subpage-hero h1 {
  font-family: var(--display);
  font-size: clamp(3.8rem, 7vw, 7rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
}

.subpage-hero h1 span {
  display: block;
  color: var(--green);
}

.subpage-hero h1.reveal.visible {
  animation: heroTitleSettle 1.05s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.subpage-hero h1.reveal.visible span {
  animation: heroNeonSettle 1.35s cubic-bezier(0.2, 0.8, 0.2, 1) 0.08s both;
}

.subpage-ledger,
.catalog-grid,
.detail-grid,
.stack-grid,
.flow-grid,
.status-grid {
  display: grid;
  gap: 1rem;
}

.subpage-ledger,
.detail-grid,
.stack-grid,
.flow-grid,
.status-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.ledger-chip,
.catalog-card,
.detail-shell,
.detail-card,
.detail-note,
.flow-card,
.status-card,
.stack-card {
  border: 1px solid var(--line);
  background: rgba(14, 17, 18, 0.88);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
}

.ledger-chip {
  border-radius: 18px;
  padding: 18px 20px;
}

.ledger-chip span,
.catalog-kicker,
.detail-kicker,
.flow-kicker,
.status-kicker {
  display: inline-flex;
  color: var(--green);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ledger-chip span {
  margin-bottom: 0.45rem;
}

.ledger-chip strong,
.status-card strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0.6rem;
}

.catalog-card {
  border-radius: 24px;
  overflow: hidden;
}

.catalog-visual {
  min-height: 220px;
  position: relative;
  background:
    radial-gradient(circle at 70% 24%, rgba(158, 255, 52, 0.18), transparent 22%),
    linear-gradient(145deg, #141719 0%, #070809 100%);
}

.catalog-visual::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 30%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 30px);
}

.catalog-visual.hoodie {
  background:
    radial-gradient(circle at 34% 18%, rgba(158, 255, 52, 0.12), transparent 20%),
    linear-gradient(145deg, #16191b 0%, #090a0b 100%);
}

.catalog-visual.cap {
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(145deg, #0d1011 0%, #181c1d 100%);
}

.catalog-visual.bundle {
  background:
    radial-gradient(circle at top right, rgba(158, 255, 52, 0.16), transparent 20%),
    linear-gradient(145deg, #121516 0%, #060708 100%);
}

.catalog-copy,
.stack-card,
.flow-card,
.status-card {
  padding: 22px;
}

.catalog-topline,
.detail-headline-row {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
  flex-wrap: wrap;
}

.catalog-copy h3,
.detail-copy h1,
.detail-card h3,
.stack-card h3,
.flow-card h3,
.status-card h3 {
  font-family: var(--display);
  letter-spacing: 0.03em;
}

.catalog-copy h3 {
  font-size: 2rem;
  margin: 0.75rem 0 0.55rem;
}

.catalog-copy p,
.detail-copy p,
.detail-card p,
.detail-note p,
.stack-card p,
.flow-card p,
.status-card p {
  color: var(--muted);
  line-height: 1.85;
}

.catalog-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
}

.catalog-meta span {
  color: var(--text);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.catalog-meta strong {
  color: var(--green);
  font-family: var(--display);
  font-size: 1.8rem;
}

.stock-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stock-pill.in-stock {
  color: var(--green);
  background: rgba(158, 255, 52, 0.08);
  border-color: rgba(158, 255, 52, 0.22);
}

.stock-pill.low-stock {
  color: #ffd66e;
  background: rgba(255, 214, 110, 0.08);
  border-color: rgba(255, 214, 110, 0.22);
}

.stock-pill.sold-out {
  color: #ff9f9f;
  background: rgba(255, 116, 116, 0.08);
  border-color: rgba(255, 116, 116, 0.22);
}

.size-row,
.size-option-grid {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.size-row {
  margin-top: 0.95rem;
}

.size-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.size-chip.active {
  color: var(--green);
  border-color: rgba(158, 255, 52, 0.28);
  background: rgba(158, 255, 52, 0.06);
}

.size-chip.sold-out {
  color: rgba(245, 247, 244, 0.42);
  border-color: rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  text-decoration: line-through;
}

.catalog-actions,
.detail-cta-row,
.pill-row,
.option-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.catalog-actions {
  margin-top: 1rem;
}

.catalog-link,
.mini-link,
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.catalog-link:hover,
.mini-link:hover {
  transform: translateY(-2px);
  border-color: rgba(158, 255, 52, 0.28);
  color: var(--green);
  background: rgba(158, 255, 52, 0.05);
}

.catalog-link.primary,
.pill.active {
  border-color: rgba(158, 255, 52, 0.28);
  color: var(--green);
  background:
    linear-gradient(180deg, rgba(158, 255, 52, 0.14), rgba(158, 255, 52, 0.06)),
    rgba(158, 255, 52, 0.08);
}

.detail-shell {
  border-radius: 28px;
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(320px, 0.95fr);
  gap: 1.2rem;
}

.detail-visual {
  min-height: 560px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 62% 24%, rgba(158, 255, 52, 0.14), transparent 22%),
    linear-gradient(145deg, #15191a 0%, #070809 100%);
}

.detail-visual::before {
  content: "";
  position: absolute;
  inset: 26px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 38px);
}

.detail-visual::after {
  content: "TPC";
  position: absolute;
  right: 28px;
  bottom: 22px;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--blackletter);
  font-size: 5rem;
  line-height: 0.9;
}

.detail-copy {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.detail-copy h1 {
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  line-height: 0.9;
}

.detail-price {
  color: var(--green);
  font-family: var(--display);
  font-size: 3rem;
  letter-spacing: 0.03em;
}

.inventory-panel {
  display: grid;
  gap: 0.75rem;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(158, 255, 52, 0.06), transparent 70%),
    rgba(255, 255, 255, 0.02);
}

.inventory-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.inventory-row span {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.inventory-row strong {
  color: var(--text);
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: 0.03em;
}

.size-option-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0.9rem;
}

.size-option {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 16px 14px;
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  gap: 0.45rem;
}

.size-option.active {
  border-color: rgba(158, 255, 52, 0.28);
  background:
    linear-gradient(180deg, rgba(158, 255, 52, 0.1), transparent 80%),
    rgba(255, 255, 255, 0.03);
}

.size-option.sold-out {
  opacity: 0.62;
}

.size-code {
  color: var(--text);
  font-family: var(--display);
  font-size: 1.8rem;
  line-height: 0.9;
}

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

.detail-card,
.detail-note {
  border-radius: 22px;
  padding: 22px;
}

.detail-card h3,
.stack-card h3,
.flow-card h3,
.status-card h3 {
  font-size: 2rem;
  margin: 0.65rem 0 0.55rem;
}

.reserve {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  align-items: start;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.info-card {
  border-radius: 20px;
  padding: 22px;
}

.info-card.accent {
  border-color: rgba(158, 255, 52, 0.28);
  background:
    linear-gradient(180deg, rgba(158, 255, 52, 0.08), transparent 75%),
    rgba(14, 17, 18, 0.9);
}

.info-card p {
  margin-top: 0.45rem;
}

.form-shell {
  border-radius: 26px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(17, 20, 21, 0.96), rgba(9, 11, 12, 0.96));
  position: relative;
  overflow: hidden;
}

.form-shell::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 28%),
    linear-gradient(90deg, rgba(158, 255, 52, 0.12), transparent 20%, transparent 80%, rgba(158, 255, 52, 0.12));
}

.form-head,
.form-grid,
.form-foot {
  position: relative;
  z-index: 1;
}

.form-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 1.15rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.form-kicker {
  color: rgba(158, 255, 52, 0.72);
  margin-bottom: 0.45rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.form-title {
  color: var(--text);
  max-width: 22rem;
}

.form-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(158, 255, 52, 0.18);
  border-radius: 999px;
  background: rgba(158, 255, 52, 0.08);
  color: var(--green);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.form-row {
  display: grid;
  gap: 0.55rem;
}

.form-row-full {
  grid-column: 1 / -1;
}

.form-row label {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(7, 9, 9, 0.96), rgba(12, 15, 16, 0.92));
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.form-row textarea {
  min-height: 120px;
  padding: 14px 16px;
  resize: vertical;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(210, 216, 212, 0.42);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(158, 255, 52, 0.42);
  box-shadow: 0 0 0 3px rgba(158, 255, 52, 0.08);
  transform: translateY(-1px);
  background: rgba(8, 11, 11, 0.98);
}

.form-foot {
  margin-top: 1.2rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}

.form-note {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.form-submit {
  width: auto;
  min-width: 220px;
}

.site-footer {
  padding: 0 0 54px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.footer-brand {
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.55rem;
}

.footer-brand span {
  font-family: var(--blackletter);
  color: var(--green);
  font-size: 1.1em;
  margin-right: 0.3rem;
}

.footer-note {
  max-width: 48rem;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.footer-link:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.footer-mark {
  display: block;
  width: 172px;
  height: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes heroTitleSettle {
  0% {
    filter: blur(10px);
    text-shadow: 0 0 0 rgba(158, 255, 52, 0);
  }
  45% {
    filter: blur(0);
    text-shadow:
      0 0 18px rgba(255, 255, 255, 0.12),
      0 0 34px rgba(158, 255, 52, 0.08);
  }
  100% {
    filter: none;
    text-shadow:
      0 0 10px rgba(255, 255, 255, 0.08),
      0 0 22px rgba(158, 255, 52, 0.08);
  }
}

@keyframes heroNeonSettle {
  0% {
    color: #d7ffc8;
    text-shadow: 0 0 0 rgba(158, 255, 52, 0);
  }
  40% {
    color: #efffe5;
    text-shadow:
      0 0 10px rgba(158, 255, 52, 0.82),
      0 0 26px rgba(158, 255, 52, 0.46),
      0 0 44px rgba(158, 255, 52, 0.22);
  }
  100% {
    color: var(--green);
    text-shadow:
      0 0 8px rgba(158, 255, 52, 0.34),
      0 0 18px rgba(158, 255, 52, 0.18);
  }
}

@keyframes navStatusPulse {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow:
      inset 0 0 0 rgba(158, 255, 52, 0),
      0 0 0 rgba(158, 255, 52, 0);
  }
  50% {
    border-color: rgba(158, 255, 52, 0.18);
    box-shadow:
      inset 0 0 18px rgba(158, 255, 52, 0.05),
      0 0 16px rgba(158, 255, 52, 0.08);
  }
}

.nav-links a:focus-visible,
.nav-book:focus-visible,
.nav-toggle:focus-visible,
.mobile-nav a:focus-visible,
.btn:focus-visible {
  outline: 1px solid rgba(158, 255, 52, 0.9);
  outline-offset: 4px;
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal.visible {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .hero,
  .detail-shell,
  .inside-grid,
  .menu-layout,
  .shop-layout,
  .culture-grid,
  .reserve,
  .section-intro {
    grid-template-columns: 1fr;
  }

  .section h2 {
    max-width: none;
  }

  .hero-stage {
    min-height: 700px;
  }

  .culture-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .site-nav,
  .hero,
  .subpage-hero,
  .club-strip,
  .section,
  .site-footer {
    width: min(100% - 28px, 1280px);
  }

  .site-nav {
    border-radius: 28px;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
  }

  .nav-links,
  .nav-status,
  .nav-book {
    display: none;
  }

  .nav-logo {
    min-width: 0;
    flex: 1 1 auto;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .mobile-nav {
    display: block;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-actions,
  .club-strip,
  .info-grid,
  .crew-grid,
  .culture-stack,
  .route-grid,
  .subpage-ledger,
  .catalog-grid,
  .detail-grid,
  .stack-grid,
  .flow-grid,
  .status-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stage {
    min-height: 640px;
  }

  .hex,
  .floor-hex,
  .mini-hex {
    width: 128px;
    height: 72px;
  }

  .h1 { top: 34px; left: 18px; }
  .h2 { top: 18px; left: 126px; }
  .h3 { top: 34px; left: 234px; }
  .h4 { top: 18px; left: 342px; }
  .h5 { top: 104px; left: 72px; }
  .h6 { top: 120px; left: 180px; }
  .h7 { top: 104px; left: 288px; }
  .h8 { top: 176px; left: 234px; }

  .stage-room {
    inset: 180px 18px 88px 18px;
  }

  .neon-note {
    right: 22px;
    top: 102px;
  }

  .wall-tv {
    left: 22%;
  }

  .chair {
    width: 160px;
    height: 94px;
  }

  .counter-card {
    bottom: 128px;
  }

  .inside-visual {
    min-height: 440px;
  }

  .visual-ceiling {
    inset: 22px 22px auto 22px;
  }

  .m1 { left: 8px; }
  .m2 { left: 116px; }
  .m3 { left: 224px; }
  .m4 { left: 62px; }
  .m5 { left: 170px; }
  .m6 { left: 278px; }

  .visual-couch {
    width: 180px;
  }

  .visual-chair {
    right: 82px;
  }

  .chair-two {
    right: 20px;
  }

  .menu-board,
  .poster-card,
  .shop-hero-card,
  .detail-shell,
  .form-shell {
    padding: 22px;
  }

  .shop-hero-card,
  .product-grid,
  .detail-shell {
    grid-template-columns: 1fr;
  }

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

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

  .form-head {
    flex-direction: column;
  }

  .form-badge,
  .form-submit {
    width: 100%;
  }

  .shop-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .detail-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .menu-row {
    flex-direction: column;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .sample-bar {
    flex-wrap: wrap;
    gap: 0.35rem 0.6rem;
    padding-inline: 0.75rem;
  }

  .site-nav {
    padding: 14px 16px;
  }

  .nav-logo {
    gap: 0.18rem;
  }

  .logo-main {
    font-size: 1.76rem;
  }

  .logo-sub {
    font-size: 0.54rem;
    letter-spacing: 0.16em;
  }

  .nav-toggle {
    min-width: 118px;
    padding: 0 14px;
  }

  .form-title {
    max-width: 16rem;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 18vw, 5.4rem);
  }

  .hero-stage {
    min-height: 560px;
  }

  .section {
    padding: 70px 0;
  }

  .stat-pill {
    grid-template-columns: 1fr;
  }

  .wall-tv {
    width: 120px;
    height: 74px;
  }

  .wall-shelves {
    top: 112px;
    left: 24px;
  }

  .neon-note {
    font-size: 1.7rem;
    right: 14px;
  }

  .chair {
    width: 110px;
    height: 74px;
    bottom: 80px;
  }

  .counter-card {
    padding: 14px 16px;
  }

  .poster-card h3 {
    font-size: 3.4rem;
  }

  .poster-card ul {
    font-size: 1.5rem;
  }

  .culture-tile,
  .poster-card {
    min-height: 320px;
  }

  .footer-mark {
    width: 148px;
  }
}
