@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&display=swap');

:root {
  --bg: #050104;
  --panel: rgba(25, 10, 14, 0.85);
  --panel-strong: rgba(40, 10, 14, 0.9);
  --accent: #c1121f;
  --accent-2: #c58a32;
  --text: #f8f1e9;
  --muted: #cbbba5;
  --line: rgba(255, 255, 255, 0.08);
  --blur: 18px;
  --condensed: 'Barlow Condensed', 'Manrope', system-ui, sans-serif;
  --content-max: 1500px;
  --page-pad: clamp(1.25rem, 3vw, 2.75rem);
}

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

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(193, 18, 31, 0.15), transparent 20%),
              radial-gradient(circle at 80% 0%, rgba(212, 160, 23, 0.15), transparent 25%),
              var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  overflow-x: hidden;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4 {
  font-family: 'Cinzel Decorative', 'Times New Roman', serif;
  letter-spacing: 0.5px;
  margin: 0 0 0.4em;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.6rem, 2.2vw + 1.4rem, 3.8rem);
}

h2 {
  font-size: clamp(2rem, 1.6vw + 1.2rem, 3rem);
}

p {
  margin: 0 0 1em;
  color: var(--muted);
}

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

ul {
  margin: 0.5em 0 0.5em 1.2em;
  color: var(--muted);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  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%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  z-index: 1;
}

.embers {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 8;
  background-image:
    radial-gradient(7px 7px at 14% 12%, rgba(255, 206, 143, 0.7), transparent),
    radial-gradient(5px 5px at 28% 18%, rgba(255, 140, 96, 0.55), transparent),
    radial-gradient(6px 6px at 52% 10%, rgba(255, 190, 120, 0.65), transparent),
    radial-gradient(5px 5px at 74% 24%, rgba(255, 116, 96, 0.6), transparent),
    radial-gradient(5px 5px at 16% 66%, rgba(255, 198, 102, 0.6), transparent),
    radial-gradient(6px 6px at 44% 72%, rgba(255, 112, 112, 0.55), transparent),
    radial-gradient(5px 5px at 70% 68%, rgba(255, 198, 102, 0.65), transparent),
    radial-gradient(6px 6px at 88% 80%, rgba(255, 112, 112, 0.55), transparent),
    radial-gradient(4px 4px at 22% 42%, rgba(255, 215, 125, 0.4), transparent),
    radial-gradient(4px 4px at 62% 56%, rgba(255, 140, 96, 0.45), transparent);
  animation:
    ember-drift 12s linear infinite,
    ember-flicker 2.2s ease-in-out infinite alternate,
    ember-float 9s ease-in-out infinite alternate,
    ember-flare 7s ease-in-out infinite;
  opacity: 0.82;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 12px rgba(255, 198, 102, 0.35));
}

@keyframes ember-drift {
  0% { transform: translate3d(0, 0, 0); filter: blur(0px); }
  50% { transform: translate3d(-6px, -20px, 0); filter: blur(0.4px); }
  100% { transform: translate3d(4px, -40px, 0); filter: blur(0px); }
}

@keyframes ember-shift {
  0% { background-position: 0 0; }
  50% { background-position: 10px -14px; }
  100% { background-position: -8px -26px; }
}

@keyframes ember-flicker {
  0% { opacity: 0.7; }
  50% { opacity: 1; }
  100% { opacity: 0.85; }
}

@keyframes ember-flare {
  0% { transform: scale(1) translate3d(0, 0, 0); filter: blur(0.2px); }
  40% { transform: scale(1.03) translate3d(-3px, -6px, 0); filter: blur(0.3px); }
  70% { transform: scale(1.06) translate3d(2px, -10px, 0); filter: blur(0.1px); }
  100% { transform: scale(1) translate3d(0, 0, 0); filter: blur(0.2px); }
}

@keyframes ember-float {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(4px, -8px, 0); }
  100% { transform: translate3d(-3px, -16px, 0); }
}

.page-loader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(193, 18, 31, 0.22), rgba(5, 1, 4, 0.95));
  display: grid;
  place-items: center;
  z-index: 180;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.page-loader.is-active {
  opacity: 1;
  pointer-events: all;
}

.page-loader__door {
  width: 32%;
  max-width: 320px;
  aspect-ratio: 1 / 2;
  background: radial-gradient(ellipse at 50% 30%, rgba(255, 198, 102, 0.25), transparent 60%),
              linear-gradient(180deg, rgba(15, 7, 7, 0.6), rgba(10, 3, 4, 0.9));
  border: 1px solid rgba(197, 138, 50, 0.35);
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.45), 0 0 30px rgba(197, 138, 50, 0.25);
  position: relative;
  overflow: hidden;
  animation: door-flicker 0.6s ease-in-out infinite alternate;
}

.page-loader__door::after {
  content: '';
  position: absolute;
  inset: 18% 24%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 198, 102, 0.8), rgba(193, 18, 31, 0.2));
  mix-blend-mode: screen;
  opacity: 0.55;
}

.page-loader__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 55%, rgba(255, 198, 102, 0.12), transparent 65%),
              radial-gradient(ellipse at 50% 52%, rgba(193, 18, 31, 0.16), transparent 70%);
  filter: blur(4px);
}

.page-loader__spark {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 198, 102, 0.9), transparent 70%);
  animation: spark-rise 1.2s ease-in-out infinite;
  filter: blur(0.4px);
}

.chip-loader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 160;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform: scale(0.9);
}

.chip-loader.is-active {
  opacity: 1;
  transform: scale(1);
}

.chip-loader__ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(197, 138, 50, 0.35);
  box-shadow: 0 0 16px rgba(197, 138, 50, 0.35), inset 0 0 16px rgba(193, 18, 31, 0.28);
  position: relative;
  overflow: hidden;
}

.chip-loader__ring::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 2px solid rgba(193, 18, 31, 0.5);
  box-shadow: 0 0 12px rgba(193, 18, 31, 0.35);
}

.chip-loader__shine {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(255, 198, 102, 0.8), rgba(193, 18, 31, 0.6), rgba(255, 198, 102, 0.8));
  animation: chip-spin 0.6s linear infinite;
  mix-blend-mode: screen;
  opacity: 0.8;
  filter: blur(1px);
}

@keyframes door-flicker {
  0% { opacity: 0.65; filter: brightness(0.9); }
  50% { opacity: 0.95; filter: brightness(1.1); }
  100% { opacity: 0.75; filter: brightness(1); }
}

@keyframes spark-rise {
  0% { opacity: 0.6; transform: translate3d(0, 6px, 0) scale(0.7); }
  50% { opacity: 1; transform: translate3d(2px, -2px, 0) scale(1.05); }
  100% { opacity: 0; transform: translate3d(-3px, -18px, 0) scale(0.9); }
}

@keyframes chip-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes card-embers {
  0% { background-position: 0 0; opacity: 0.35; }
  50% { background-position: 8px -6px; opacity: 0.5; }
  100% { background-position: -6px 8px; opacity: 0.35; }
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: linear-gradient(90deg, rgba(5, 1, 4, 0.94), rgba(20, 5, 5, 0.8));
  backdrop-filter: blur(var(--blur));
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4), inset 0 -1px 0 rgba(193, 18, 31, 0.25);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand__crest {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, rgba(212, 160, 23, 0.25), transparent 65%), rgba(193, 18, 31, 0.4);
  color: var(--accent-2);
  font-family: 'Cinzel Decorative', serif;
  border: 1px solid var(--accent-2);
  border-radius: 14px;
  box-shadow: 0 0 24px rgba(193, 18, 31, 0.45);
  overflow: hidden;
}

.brand__crest img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(212, 160, 23, 0.35));
}

.brand__name {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.brand__tag {
  font-size: 0.8rem;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.9px;
}

.nav a {
  padding: 0.55rem 0.95rem;
  border-radius: 12px;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, border 0.18s ease;
  position: relative;
  color: var(--text);
  text-shadow: 0 0 6px rgba(197, 138, 50, 0.32), 0 0 12px rgba(193, 18, 31, 0.22);
  border: 1px solid transparent;
}

.nav a:hover,
.nav a.is-active {
  color: var(--accent-2);
  background: radial-gradient(circle at 50% 50%, rgba(212, 160, 23, 0.14), rgba(193, 18, 31, 0.18));
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(193, 18, 31, 0.22), 0 0 10px rgba(197, 138, 50, 0.22);
  border-color: rgba(197, 138, 50, 0.35);
}

.nav__cta {
  border: 1px solid var(--accent-2);
  color: var(--accent-2);
}

.nav a::after {
  content: '';
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 4px;
  height: 2px;
  background: linear-gradient(90deg, rgba(193,18,31,0.85), rgba(212,160,23,0.85));
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  border-radius: 12px;
}

.nav a:hover::after,
.nav a.is-active::after {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  position: relative;
  padding: clamp(5rem, 6vw, 7rem) var(--page-pad) clamp(3.5rem, 5vw, 6rem);
  overflow: hidden;
  min-height: 100vh;
  display: grid;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 40%, rgba(193, 18, 31, 0.25), transparent 40%),
              radial-gradient(circle at 80% 20%, rgba(212, 160, 23, 0.25), transparent 45%),
              radial-gradient(circle at 50% 70%, rgba(193, 18, 31, 0.18), transparent 40%);
  filter: blur(10px);
}

.oni-mask {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 45%, rgba(0,0,0,0.65), transparent 55%),
              conic-gradient(from 90deg, rgba(193, 18, 31, 0.4), rgba(212, 160, 23, 0.35), rgba(193, 18, 31, 0.35), rgba(212, 160, 23, 0.3));
  mix-blend-mode: screen;
  opacity: 0.35;
  mask-image: radial-gradient(circle at 50% 45%, black 30%, transparent 60%);
  will-change: transform;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: min(1280px, 95vw);
  margin: 0 auto;
  text-align: center;
}

.hero__logo {
  width: 140px;
  height: 140px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 40% 40%, rgba(212, 160, 23, 0.12), rgba(193, 18, 31, 0.1));
  border-radius: 24px;
  border: 1px solid rgba(212, 160, 23, 0.22);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.hero__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.eyebrow {
  font-family: var(--condensed);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.8rem;
}

.lead {
  font-size: clamp(1.05rem, 0.7vw + 1rem, 1.35rem);
  color: var(--muted);
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.6rem 0;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.2rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  background: none;
  color: var(--text);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.btn-primary {
  background: linear-gradient(120deg, rgba(193, 18, 31, 0.9), rgba(212, 160, 23, 0.9));
  border: 1px solid var(--accent-2);
  color: #0a0505;
  box-shadow: 0 10px 35px rgba(193, 18, 31, 0.45);
}

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

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(193, 18, 31, 0.35);
  border-color: var(--accent-2);
}

.btn-block {
  width: 100%;
}

.chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.5rem auto 0;
  max-width: min(1280px, 95vw);
}

.chip {
  font-family: var(--condensed);
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.section {
  padding: clamp(3.5rem, 5vw, 5rem) var(--page-pad);
  position: relative;
  z-index: 2;
}

.vip-section {
  overflow: hidden;
}

.vip-section::before,
.vip-section::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 15% 20%, rgba(193, 18, 31, 0.12), transparent 45%),
              radial-gradient(circle at 85% 10%, rgba(197, 138, 50, 0.18), transparent 45%),
              radial-gradient(ellipse at 50% 120%, rgba(193, 18, 31, 0.15), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.9;
}

.vip-section::after {
  background: conic-gradient(from 120deg, rgba(197, 138, 50, 0.08), rgba(193, 18, 31, 0.12), rgba(197, 138, 50, 0.08), rgba(5, 1, 4, 0.0));
  filter: blur(26px);
}

.section.split {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem;
  align-items: start;
  max-width: var(--content-max);
  margin: 0 auto;
}

.section.band {
  background: linear-gradient(180deg, rgba(193, 18, 31, 0.07), rgba(5, 1, 4, 0.6));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}


.section__content {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* Venue page fit tweaks */
body[data-page="venue"] .section {
  padding-block: clamp(3rem, 4.5vw, 4.6rem);
  min-height: calc(100vh - 160px);
}

body[data-page="venue"] .section.split {
  grid-template-columns: 1.22fr 1fr;
  align-items: center;
  max-width: 1380px;
  gap: clamp(1.8rem, 4.5vw, 3.4rem);
}

body[data-page="venue"] h2 {
  font-size: clamp(2.6rem, 2.4vw + 1.6rem, 3.6rem);
  line-height: 1.15;
}

body[data-page="venue"] .panel {
  max-width: 540px;
  width: 100%;
}

body[data-page="team"] .section__content h2 {
  font-size: 2.6rem;
  text-shadow: 0 0 18px rgba(197, 138, 50, 0.4), 0 0 28px rgba(193, 18, 31, 0.3);
}

.team-lead {
  font-size: 1.1rem;
  color: var(--muted);
  text-shadow: 0 0 12px rgba(197, 138, 50, 0.25);
  margin-bottom: 1.2rem;
}

.body {
  font-size: 1rem;
}

.list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  margin-top: 1.25rem;
}

.vip-stack {
  display: grid;
  gap: 1.1rem;
  max-width: 880px;
  margin: 0 auto;
}

body[data-page="vip"] .section__content {
  text-align: center;
}

body[data-page="vip"] .section__content h2 {
  text-align: center;
}

body[data-page="vip"] .vip-stack {
  margin-top: 1rem;
}

body[data-page="vip"] .vip-tier {
  text-align: left;
}

.vip-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0.6rem auto 1.4rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(197, 138, 50, 0.35);
  border-radius: 999px;
  background: rgba(193, 18, 31, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  color: var(--muted);
}

.vip-emblem {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(197, 138, 50, 0.6);
  background: radial-gradient(circle at 35% 35%, rgba(197, 138, 50, 0.2), rgba(193, 18, 31, 0.2));
  color: var(--accent-2);
  font-family: 'Cinzel Decorative', serif;
  font-weight: 700;
  box-shadow: 0 0 18px rgba(197, 138, 50, 0.4);
}

.vip-tier {
  position: relative;
  padding: 1.6rem 1.7rem 1.45rem 2rem;
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.vip-tier::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 16px;
  bottom: 16px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(212, 160, 23, 0.95), rgba(193, 18, 31, 0.8));
  box-shadow: 0 0 14px rgba(212, 160, 23, 0.4);
}

.vip-tier::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(193, 18, 31, 0.1), rgba(197, 138, 50, 0.75), rgba(193, 18, 31, 0.1));
  opacity: 0.85;
}

.vip-tier__header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--accent-2);
}

.vip-tier__header h3 {
  margin: 0;
  font-size: 1.25rem;
}

.vip-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(212, 160, 23, 0.18);
  border: 1px solid rgba(212, 160, 23, 0.5);
  box-shadow: 0 0 12px rgba(212, 160, 23, 0.35);
}

.vip-features {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
}

.vip-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
}

.vip-features li:last-child {
  border-bottom: none;
}

.vip-features li::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--accent-2), var(--accent));
  box-shadow: 0 0 10px rgba(212, 160, 23, 0.4);
  flex-shrink: 0;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.6rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  position: sticky;
  top: 96px;
}

.panel__badge {
  display: inline-flex;
  padding: 0.4rem 0.75rem;
  border-radius: 10px;
  background: rgba(212, 160, 23, 0.12);
  color: var(--accent-2);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.panel__body h4 {
  margin-top: 1rem;
  margin-bottom: 0.4rem;
  color: var(--accent-2);
}

.panel ul {
  padding-left: 1.1rem;
}

.glass {
  background: linear-gradient(130deg, rgba(193, 18, 31, 0.14), rgba(5, 1, 4, 0.7));
  border: 1px solid rgba(212, 160, 23, 0.3);
  backdrop-filter: blur(var(--blur));
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.cards--wide {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.staff-board {
  margin-top: 2rem;
  padding: 1.2rem;
  border: 1px dashed var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.staff-board__header {
  margin-bottom: 1rem;
}

.staff-spotlight {
  margin-top: 2rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(120deg, rgba(193, 18, 31, 0.08), rgba(5, 1, 4, 0.7));
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

.staff-spotlight__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.slice-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
  cursor: pointer;
}

.slice {
  aspect-ratio: 1 / 1;
  min-height: 220px;
  border-radius: 16px;
  background-image: linear-gradient(rgba(5,1,4,0.3), rgba(5,1,4,0.08)), var(--img, linear-gradient(145deg, rgba(193, 18, 31, 0.5), rgba(197, 138, 50, 0.35)));
  background-size: cover;
  background-position: var(--img-pos, center center);
  background-repeat: no-repeat;
  border: 2px solid rgba(197, 138, 50, 0.7);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35), 0 0 12px rgba(197, 138, 50, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.slice::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 110%, rgba(197, 138, 50, 0.28), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  filter: blur(6px);
}

.slice::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(3px 3px at 20% 30%, rgba(255, 198, 102, 0.35), transparent),
    radial-gradient(3px 3px at 70% 20%, rgba(255, 120, 80, 0.3), transparent),
    radial-gradient(3px 3px at 50% 70%, rgba(255, 198, 102, 0.3), transparent);
  background-size: 120% 120%;
  mix-blend-mode: screen;
  opacity: 0.4;
  animation: card-embers 7s ease-in-out infinite;
  pointer-events: none;
}

.slice:hover {
  transform: translateY(-6px) scale(1.02) rotateX(2deg) rotateY(-2deg);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45), 0 0 18px rgba(197, 138, 50, 0.45), 0 10px 30px rgba(193, 18, 31, 0.35);
  filter: saturate(1.1);
}

.slice:hover::before {
  opacity: 1;
}

.slice__label {
  position: absolute;
  left: 0.4rem;
  bottom: 0.45rem;
  padding: 0.3rem 0.65rem;
  border-radius: 12px;
  background: rgba(5, 1, 4, 0.65);
  border: 1px solid rgba(197, 138, 50, 0.5);
  color: var(--accent-2);
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: none;
  font-size: 0.78rem;
  line-height: 1.1;
  max-width: calc(100% - 0.8rem);
  overflow: hidden;
  backdrop-filter: blur(4px);
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.slice__label .slice__name {
  white-space: nowrap;
}

.slice__label .slice__role {
  font-size: 0.72rem;
  color: var(--text);
  opacity: 0.9;
  white-space: nowrap;
}

.slice--empty {
  opacity: 0.55;
  border-style: dashed;
}

.slice--empty:hover {
  opacity: 0.7;
}

.staff-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(5, 1, 4, 0.75);
  backdrop-filter: blur(12px);
  z-index: 60;
  padding: 1.5rem;
}

.staff-modal.is-open {
  display: flex;
}

.staff-modal__card {
  position: relative;
  max-width: 980px;
  width: min(980px, 95vw);
  background: rgba(5, 1, 4, 0.95);
  border: 1px solid rgba(197, 138, 50, 0.45);
  border-radius: 16px;
  box-shadow: 0 28px 70px rgba(0,0,0,0.55);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}

.staff-modal__media {
  min-height: 320px;
  background: linear-gradient(rgba(5,1,4,0.08), rgba(5,1,4,0.08)), var(--img, url('../images/FreyaGposer2.png')) center 20% / cover no-repeat;
  border-right: 1px solid rgba(197, 138, 50, 0.35);
}

.staff-modal__body {
  padding: 1.2rem 1.3rem 1.5rem;
  display: grid;
  gap: 0.65rem;
}

.staff-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: rgba(5,1,4,0.6);
  color: var(--text);
  border: 1px solid rgba(197, 138, 50, 0.5);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 1.2rem;
  cursor: pointer;
}

.staff-modal__close:hover {
  background: rgba(193, 18, 31, 0.25);
}

.staff-fields p {
  margin: 0.2rem 0;
}

.staff-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.staff-close-btn {
  justify-self: start;
  margin-top: 0.3rem;
}

@media (max-width: 900px) {
  .slice {
    min-height: 200px;
  }
  .staff-modal__card {
    grid-template-columns: 1fr;
  }
  .staff-modal__media {
    min-height: 240px;
    border-right: none;
    border-bottom: 1px solid rgba(197, 138, 50, 0.35);
  }
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.9rem;
}

.staff-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem;
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.staff-card__frame {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  border: 1px dashed var(--line);
  display: grid;
  place-items: center;
  color: var(--accent-2);
  font-weight: 800;
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.02);
}

.staff-card__meta {
  display: grid;
  gap: 0.15rem;
  color: var(--muted);
}

.staff-card__meta strong {
  color: var(--text);
}

.tag {
  display: inline-block;
  margin-top: 0.4rem;
  padding: 0.35rem 0.65rem;
  border-radius: 12px;
  background: rgba(212, 160, 23, 0.12);
  color: var(--accent-2);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.feature-drinks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1.3rem;
}

.feature-card {
  position: relative;
  padding: 1.1rem 1.2rem;
  border-radius: 18px;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(212, 160, 23, 0.28);
  background: linear-gradient(160deg, rgba(5,1,4,0.85), rgba(5,1,4,0.65));
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  display: grid;
  gap: 0.35rem;
  align-content: start;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(255, 198, 102, 0.18), transparent 45%);
  opacity: 0.9;
  pointer-events: none;
}

.feature-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 260px;
  border-radius: 12px;
  border: 1px solid rgba(212, 160, 23, 0.25);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
  overflow: hidden;
}

.feature-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
}

.feature-card__image--kuro img {
  object-fit: cover;
  object-position: center 45%;
}

.feature-card__image--placeholder {
  background: radial-gradient(circle at 30% 30%, rgba(197, 138, 50, 0.16), transparent 45%),
              radial-gradient(circle at 80% 70%, rgba(193, 18, 31, 0.16), transparent 50%),
              linear-gradient(145deg, rgba(5,1,4,0.9), rgba(10,4,6,0.7));
}

.feature-card__image--fox::before {
  content: '狐';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(212, 160, 23, 0.4);
  font-size: 3rem;
  mix-blend-mode: screen;
  letter-spacing: 4px;
}

.feature-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,1,4,0) 40%, rgba(5,1,4,0.4) 100%);
}

.feature-card__badge {
  display: inline-flex;
  align-self: start;
  padding: 0.3rem 0.65rem;
  border-radius: 10px;
  background: rgba(212, 160, 23, 0.22);
  color: var(--accent-2);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.feature-card__title {
  font-family: 'Cinzel Decorative', 'Times New Roman', serif;
  font-size: 1.4rem;
  color: var(--text);
  margin-top: 0.15rem;
}

.feature-card__desc {
  color: var(--muted);
  margin: 0;
}

.feature-card__list {
  margin: 0.3rem 0 0.3rem 1.1rem;
  color: var(--muted);
}

.feature-card__list li {
  margin-bottom: 0.15rem;
}

.feature-card__aura {
  color: var(--accent-2);
  font-weight: 700;
  font-size: 0.9rem;
}

.bottle-section {
  margin-top: 2rem;
}

.bottle-title {
  font-family: 'Cinzel Decorative', 'Times New Roman', serif;
  margin: 0 0 0.6rem;
  font-size: 1.4rem;
}

.bottle-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.8rem;
}

.bottle-card {
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  box-shadow: 0 14px 30px rgba(0,0,0,0.28);
  display: grid;
  gap: 0.3rem;
}

.bottle-name {
  color: var(--text);
  font-weight: 800;
  margin: 0;
  letter-spacing: 0.2px;
}

.bottle-type {
  margin: 0;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 0.85rem;
}

.bottle-notes {
  margin: 0;
  color: var(--muted);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
}

.price {
  color: var(--accent-2);
  font-weight: 700;
}

.form {
  display: grid;
  gap: 0.9rem;
  margin-top: 0.6rem;
}

.form label {
  display: grid;
  gap: 0.35rem;
  color: var(--text);
  font-weight: 600;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-family: inherit;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 1px solid var(--accent-2);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.25);
}

.cards ul {
  padding-left: 1.1rem;
}

.footer {
  padding: 2rem 2.5rem 3rem;
  border-top: 1px solid var(--line);
  background: rgba(5, 1, 4, 0.85);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  align-items: center;
  margin-top: auto;
}

.footer .brand__crest {
  display: none;
}

.footer__links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__note {
  color: var(--muted);
  text-align: right;
}

.footer__note:last-of-type {
  text-align: center;
  font-size: 0.9rem;
}
.footer__note:last-of-type {
  text-align: center;
  font-size: 0.9rem;
}

.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(5, 1, 4, 0.88);
  backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  z-index: 50;
  padding: 1.5rem;
}

.age-gate__panel {
  max-width: 520px;
  width: min(520px, 90vw);
  background: linear-gradient(130deg, rgba(193, 18, 31, 0.25), rgba(5, 1, 4, 0.85));
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 16px;
  padding: 1.8rem;
  text-align: center;
  box-shadow: 0 30px 70px rgba(0,0,0,0.55);
}

.age-gate__crest {
  display: inline-flex;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  background: rgba(212, 160, 23, 0.14);
  color: var(--accent-2);
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(212, 160, 23, 0.4);
}

.age-gate__title {
  font-size: 1.4rem;
  color: var(--text);
  margin: 0 0 0.6rem;
}

.age-gate__copy {
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.age-gate__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.age-gate .btn-ghost {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 960px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .nav {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .section.split {
    grid-template-columns: 1fr;
  }
  .panel {
    position: relative;
    top: 0;
  }
  .hero {
    padding-top: 5rem;
  }
  .footer__note {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .header {
    padding: 0.75rem 1.1rem;
  }
  .hero, .section, .footer {
    padding-inline: 1.2rem;
  }
  h1 {
    font-size: 2rem;
  }
}
