

:root {
  /* Atmosphere */
  --void:         #0F0E0C;
  --void-soft:    #1A1814;
  --parchment:    #EDE8DF;
  --muted:        #9C958C;
  --amber:        #D97706;
  --amber-glow:   rgba(217, 119, 6, 0.15);

  /* Glass */
  --glass-bg:     rgba(26, 24, 20, 0.55);
  --glass-border: rgba(237, 232, 223, 0.08);
  --glass-highlight: rgba(255, 255, 255, 0.03);

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 5rem;

  /* Motion */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth:   cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- 2. RESET & BASE ---
   Normalize. Dark canvas. Smooth text. */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
.scene::-webkit-scrollbar {
  display: none;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--parchment);
  background-color: var(--void);
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease-out-expo);
}

a:hover {
  border-bottom-color: var(--amber);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

/* --- 3. HIDDEN RADIOS ---
    State machine for section switching. */

.nav-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

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

.particle {
  position: absolute;
  background: var(--parchment);
  border-radius: 50%;
  animation: particleDrift ease-in-out infinite alternate;
}

/* Particle variations via nth-child */
.particle:nth-child(1)  { left: 10%; top: 20%; width: 2px; height: 2px; opacity: 0.3; animation-duration: 12s; }
.particle:nth-child(2)  { left: 20%; top: 60%; width: 3px; height: 3px; opacity: 0.2; animation-duration: 15s; }
.particle:nth-child(3)  { left: 35%; top: 40%; width: 2px; height: 2px; opacity: 0.4; animation-duration: 18s; }
.particle:nth-child(4)  { left: 50%; top: 80%; width: 4px; height: 4px; opacity: 0.15; animation-duration: 14s; }
.particle:nth-child(5)  { left: 65%; top: 30%; width: 2px; height: 2px; opacity: 0.35; animation-duration: 20s; }
.particle:nth-child(6)  { left: 75%; top: 70%; width: 3px; height: 3px; opacity: 0.25; animation-duration: 16s; }
.particle:nth-child(7)  { left: 85%; top: 50%; width: 2px; height: 2px; opacity: 0.2; animation-duration: 22s; }
.particle:nth-child(8)  { left: 15%; top: 90%; width: 3px; height: 3px; opacity: 0.3; animation-duration: 17s; }
.particle:nth-child(9)  { left: 45%; top: 15%; width: 2px; height: 2px; opacity: 0.25; animation-duration: 19s; }
.particle:nth-child(10) { left: 90%; top: 25%; width: 4px; height: 4px; opacity: 0.15; animation-duration: 13s; }
.particle:nth-child(11) { left: 5%;  top: 75%; width: 2px; height: 2px; opacity: 0.2; animation-duration: 21s; }
.particle:nth-child(12) { left: 55%; top: 55%; width: 3px; height: 3px; opacity: 0.35; animation-duration: 11s; }
.particle:nth-child(13) { left: 30%; top: 10%; width: 2px; height: 2px; opacity: 0.15; animation-duration: 23s; }
.particle:nth-child(14) { left: 70%; top: 45%; width: 4px; height: 4px; opacity: 0.3; animation-duration: 14s; }
.particle:nth-child(15) { left: 40%; top: 85%; width: 2px; height: 2px; opacity: 0.2; animation-duration: 18s; }
.particle:nth-child(16) { left: 80%; top: 15%; width: 3px; height: 3px; opacity: 0.25; animation-duration: 16s; }
.particle:nth-child(17) { left: 25%; top: 35%; width: 2px; height: 2px; opacity: 0.3; animation-duration: 20s; }
.particle:nth-child(18) { left: 60%; top: 65%; width: 4px; height: 4px; opacity: 0.15; animation-duration: 12s; }
.particle:nth-child(19) { left: 95%; top: 80%; width: 2px; height: 2px; opacity: 0.2; animation-duration: 19s; }
.particle:nth-child(20) { left: 12%; top: 50%; width: 3px; height: 3px; opacity: 0.35; animation-duration: 15s; }

@keyframes particleDrift {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(30px, -40px); }
}

/* --- 5. TOP NAVIGATION ---
    Floating, minimal, cinematic.
    Fixed at top center. */

.top-nav {
  position: fixed;
  top: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: rgba(15, 14, 12, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--parchment);
  max-width: 200px;
  opacity: 1;
  overflow: hidden;
  white-space: nowrap;
  margin-right: var(--space-lg);
  transition: max-width 0.5s var(--ease-out-expo), opacity 0.4s var(--ease-out-expo), margin 0.5s var(--ease-out-expo);
}

/* On Home: brand collapses, margin drops to 0, pill shrinks and stays centered */
#nav-home:checked ~ .top-nav .nav-brand {
  max-width: 0;
  opacity: 0;
  margin-right: 0;
}

.nav-links {
  display: flex;
  gap: var(--space-md);
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  cursor: pointer;
  padding: 0.3rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.3s var(--ease-out-expo), border-color 0.3s var(--ease-out-expo);
  user-select: none;
}

.nav-link:hover {
  color: var(--parchment);
}

/* Active nav glow */
#nav-home:checked ~ .top-nav .nav-link-home,
#nav-menu:checked ~ .top-nav .nav-link-menu,
#nav-music:checked ~ .top-nav .nav-link-music,
#nav-jobs:checked ~ .top-nav .nav-link-jobs {
  color: var(--amber);
  border-bottom-color: var(--amber);
  text-shadow: 0 0 20px var(--amber-glow);
}

.stage {
  position: relative;
}

.scene {
  display: none;
  position: relative;
  min-height: 100dvh;
}

/* Home is fixed to viewport - no scroll */
.scene-home {
  overflow: hidden;
  height: 100dvh;
}

/* Other scenes scroll naturally when content overflows */
.scene-menu,
.scene-music,
.scene-jobs {
  overflow-y: auto;
}

/* Show active scene with cinematic entrance */
#nav-home:checked ~ .stage .scene-home,
#nav-menu:checked ~ .stage .scene-menu,
#nav-music:checked ~ .stage .scene-music,
#nav-jobs:checked ~ .stage .scene-jobs {
  display: flex;
  flex-direction: column;
  animation: sceneFadeIn 0.8s var(--ease-out-expo) both;
}

/* Music scene: content-height only - footer visible without scroll */
#nav-music:checked ~ .stage .scene-music {
  min-height: auto;
}

@keyframes sceneFadeIn {
  from {
    opacity: 0;
    transform: scale(1.02);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Full-bleed media layer */
.scene-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.scene-video,
.scene-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scene-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 14, 12, 0.85) 0%,
    rgba(15, 14, 12, 0.4) 50%,
    rgba(15, 14, 12, 0.7) 100%
  );
  z-index: 2;
}

.scene-menu .scene-media,
.scene-music .scene-media,
.scene-jobs .scene-media {
  background: var(--void);
}

.scene-menu .scene-media .scene-image,
.scene-music .scene-media .scene-image,
.scene-jobs .scene-media .scene-image {
  display: none;
}

.scene-menu {
  background: linear-gradient(
    160deg,
    #0F0E0C 0%,
    #161412 40%,
    #1A1814 70%,
    #141210 100%
  );
}

.scene-music {
  background: linear-gradient(
    200deg,
    #0F0E0C 0%,
    #141210 35%,
    #1A1814 65%,
    #161412 100%
  );
}

.scene-jobs {
  background: linear-gradient(
    180deg,
    #0F0E0C 0%,
    #121110 30%,
    #1A1814 60%,
    #0F0E0C 100%
  );
}

.scene-overlay-menu {
  background: linear-gradient(
    to right,
    rgba(15, 14, 12, 0.3) 0%,
    rgba(15, 14, 12, 0) 50%,
    rgba(15, 14, 12, 0.2) 100%
  );
}

.scene-overlay-music {
  background: linear-gradient(
    to left,
    rgba(15, 14, 12, 0.25) 0%,
    rgba(15, 14, 12, 0) 50%,
    rgba(15, 14, 12, 0.2) 100%
  );
}

.scene-overlay-jobs {
  background: linear-gradient(
    to bottom,
    rgba(15, 14, 12, 0.2) 0%,
    rgba(15, 14, 12, 0) 40%,
    rgba(15, 14, 12, 0.15) 100%
  );
}

/* Content layer above media */
.scene-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: calc(var(--space-xl) + 3rem) var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.scene-content-scrollable {
  justify-content: flex-start;
  padding-top: calc(var(--space-xl) + 4rem);
  padding-bottom: calc(var(--space-xl) + 2rem);
}

/* Music scene: tighter bottom padding so footer sits closer */
.scene-music .scene-content-scrollable {
  padding-bottom: 105px;
}

.home-eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted);
  margin-bottom: var(--space-md);
  animation: fadeUp 0.8s var(--ease-out-expo) 0.2s both;
}

.home-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  animation: fadeUp 0.8s var(--ease-out-expo) 0.3s both;
}

.title-glow {
  color: var(--parchment);
  text-shadow:
    0 0 40px rgba(237, 232, 223, 0.1),
    0 0 80px rgba(217, 119, 6, 0.08);
}

.home-divider {
  width: 100px;
  height: 2px;
  background: var(--amber);
  margin-bottom: var(--space-md);
  box-shadow: 0 0 20px var(--amber-glow);
  animation: scaleX 0.7s var(--ease-out-expo) 0.5s both;
}

.home-tagline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--muted);
  margin-bottom: var(--space-md);
  animation: fadeUp 0.8s var(--ease-out-expo) 0.6s both;
}

.home-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 45ch;
  text-align: center;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  animation: fadeUp 0.8s var(--ease-out-expo) 0.7s both;
}

.home-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--parchment);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 0.9rem 2rem;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  user-select: none;
  animation: fadeUp 0.8s var(--ease-out-expo) 0.9s both;
  margin-bottom: var(--space-lg);
}

.home-address {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-align: center;
  animation: fadeUp 0.8s var(--ease-out-expo) 1.0s both;
}

.home-cta:hover {
  background: rgba(217, 119, 6, 0.15);
  border-color: rgba(217, 119, 6, 0.3);
  box-shadow: 0 0 30px var(--amber-glow);
  transform: translateY(-2px);
}

.cta-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease-out-expo);
}

.home-cta:hover .cta-icon {
  transform: translateX(4px);
}

.menu-header {
  text-align: left;
  width: 100%;
  margin-bottom: var(--space-xl);
}

.menu-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.95;
  color: var(--parchment);
  margin-bottom: var(--space-sm);
}

.menu-subtitle {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: italic;
  color: var(--muted);
}

.menu-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.menu-category {
  width: 100%;
}

.menu-cat-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--amber);
  margin-bottom: var(--space-md);
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

/* Glassmorphism card */
.menu-glasscard {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-top: 1px solid var(--glass-highlight);
  padding: var(--space-md);
  transition: all 0.35s var(--ease-out-expo);
}

.menu-glasscard:hover {
  transform: translateY(-4px);
  background: rgba(26, 24, 20, 0.7);
  border-color: rgba(217, 119, 6, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Image reveal on hover - smooth unfurl inside the card */
.glasscard-image-wrap {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-bottom: 0;
  border-radius: 8px;
  /* Collapse: quick and clean */
  transition: max-height 0.35s cubic-bezier(0.33, 1, 0.68, 1),
              opacity 0.25s ease,
              margin 0.25s ease;
}

.menu-glasscard:hover .glasscard-image-wrap {
  max-height: 180px;
  opacity: 1;
  margin-bottom: var(--space-sm);
  /* Expand: long delay so scrolling doesn't trigger every card */
  transition: max-height 0.55s cubic-bezier(0.33, 1, 0.68, 1) 0.35s,
              opacity 0.4s ease 0.3s,
              margin 0.35s ease 0.35s;
}

.glasscard-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  /* Image slides down and settles as the wrapper opens */
  transform: translateY(-10px) scale(1.04);
  transform-origin: top center;
  transition: transform 0.55s cubic-bezier(0.33, 1, 0.68, 1) 0.12s;
}

.menu-glasscard:hover .glasscard-image {
  transform: translateY(0) scale(1);
}

.glasscard-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-bottom: 0.3rem;
}

.glasscard-header h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--parchment);
}

.glasscard-price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--amber);
}

.glasscard-tags {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.glasscard-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

.music-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: stretch;
  width: 100%;
}

.music-left {
  display: flex;
  flex-direction: column;
}

.music-right {
  display: flex;
  flex-direction: column;
}

.music-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.95;
  color: var(--parchment);
  margin-bottom: var(--space-md);
}

.music-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 40ch;
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

/* Now Playing Player - glassmorphism */
.player-glass {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-top: 1px solid var(--glass-highlight);
  border-radius: 16px;
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
  transition: box-shadow 0.4s var(--ease-out-expo);
}

.player-glass:hover {
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
}

.player-art {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.player-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out-expo);
}

.player-glass:hover .player-art img {
  transform: scale(1.05);
}

.player-info {
  flex: 1;
  min-width: 0;
}

.player-track {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--parchment);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.15rem;
}

.player-artist {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.player-progress {
  width: 100%;
  height: 3px;
  background: rgba(237, 232, 223, 0.1);
  border-radius: 2px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.player-progress-bar {
  height: 100%;
  width: 35%;
  background: var(--amber);
  border-radius: 2px;
  transition: width 0.3s var(--ease-smooth);
  box-shadow: 0 0 8px var(--amber-glow);
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.player-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s var(--ease-out-expo);
}

.player-btn:hover {
  background: rgba(217, 119, 6, 0.1);
  border-color: rgba(217, 119, 6, 0.3);
  color: var(--parchment);
  transform: scale(1.1);
}

.player-btn svg {
  width: 14px;
  height: 14px;
}

.player-btn-play {
  width: 38px;
  height: 38px;
  background: var(--amber);
  border-color: var(--amber);
  color: var(--void);
}

.player-btn-play:hover {
  background: #e88d1a;
  border-color: #e88d1a;
  color: var(--void);
  box-shadow: 0 0 20px var(--amber-glow);
}

.player-btn-play svg {
  width: 16px;
  height: 16px;
}

/* Playlist glass panel */
.playlist-glass {
  flex: 1;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-top: 1px solid var(--glass-highlight);
  padding: var(--space-lg);
}

.playlist-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--amber);
  margin-bottom: var(--space-md);
}

.playlist {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.playlist li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(237, 232, 223, 0.05);
  transition: color 0.2s var(--ease-out-expo);
  cursor: pointer;
}

.playlist li:hover {
  color: var(--parchment);
}

.pl-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--amber);
  min-width: 1.5rem;
}

.pl-artist {
  font-weight: 400;
}

.pl-song {
  font-weight: 300;
  font-style: italic;
  opacity: 0.7;
}

/* Ritual glass card */
.ritual-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-left: 3px solid var(--amber);
  padding: var(--space-md);
}

.ritual-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--parchment);
  margin-bottom: 0.2rem;
}

.ritual-when {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: var(--space-sm);
}

.ritual-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

/* Large background watermark */
.jobs-watermark {
  position: absolute;
  top: 2rem;
  right: -1rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(10rem, 22vw, 20rem);
  line-height: 0.85;
  color: var(--parchment);
  opacity: 0.025;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.03em;
  z-index: 1;
}

.jobs-header {
  position: relative;
  z-index: 2;
  text-align: left;
  width: 100%;
  margin-bottom: var(--space-xl);
}

.jobs-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.95;
  color: var(--parchment);
  margin-bottom: var(--space-sm);
}

.jobs-subtitle {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: italic;
  color: var(--muted);
}

/* Editorial culture quote */
.jobs-culture-glass {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 60ch;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-left: 3px solid var(--amber);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.culture-quote-mark {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 5rem;
  line-height: 0.8;
  color: var(--amber);
  opacity: 0.35;
  margin-bottom: var(--space-sm);
}

.jobs-culture-glass p {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--parchment);
  line-height: 1.7;
  text-align: left;
}

/* Benefits strip */
.jobs-benefits {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 0.7rem 1.4rem;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--parchment);
  transition: all 0.3s var(--ease-out-expo);
}

.benefit-item:hover {
  border-color: rgba(217, 119, 6, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.benefit-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber-glow);
  flex-shrink: 0;
}

/* Job grid */
.jobs-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.job-glasscard {
  position: relative;
  overflow: hidden;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-top: 1px solid var(--glass-highlight);
  padding: var(--space-lg);
  padding-left: calc(var(--space-lg) + 1rem);
  transition: all 0.35s var(--ease-out-expo);
}

/* Animated amber left border on hover */
.job-glasscard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--amber);
  transition: height 0.5s var(--ease-out-expo);
}

.job-glasscard:hover::before {
  height: 100%;
}

.job-glasscard:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 119, 6, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.job-glasscard-offset {
  margin-top: var(--space-lg);
}

.job-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 3rem;
  line-height: 1;
  color: var(--amber);
  opacity: 0.35;
  margin-bottom: var(--space-sm);
  transition: opacity 0.3s var(--ease-out-expo);
}

.job-glasscard:hover .job-number {
  opacity: 0.7;
}

.job-glasscard-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--parchment);
  margin-bottom: 0.2rem;
}

.job-glasscard-role {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: var(--space-sm);
}

.job-glasscard-body {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* Apply CTA */
.jobs-apply-glass {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 55ch;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-top: 2px solid var(--amber);
  padding: var(--space-xl);
  text-align: center;
}

.apply-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--amber);
  margin-bottom: var(--space-sm);
}

.apply-text {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.apply-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--void);
  background: var(--amber);
  padding: 0.9rem 2.2rem;
  transition: all 0.3s var(--ease-out-expo);
  border-bottom: none;
}

.apply-cta:hover {
  background: #e88d1a;
  box-shadow: 0 0 30px var(--amber-glow);
  transform: translateY(-2px);
}

.site-footer {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-lg) var(--space-md);
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--muted);
  opacity: 0.5;
  pointer-events: auto;
}

.footer-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--muted);
}

/* --- 9. KEYFRAME ANIMATIONS ---
   GPU-safe transforms and opacity. */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleX {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* --- 10. RESPONSIVE ---
   Collapse below 800px.
   Single column. Reduced effects. */

@media (max-width: 800px) {

  .top-nav {
    top: auto;
    bottom: var(--space-sm);
    padding: 0.6rem 1.2rem;
  }

  .nav-brand {
    display: none;
  }

  .nav-links {
    gap: var(--space-sm);
  }

  .scene-content {
    padding: calc(var(--space-lg) + 2rem) var(--space-md);
  }

  .scene-content-scrollable {
    padding-top: calc(var(--space-lg) + 3rem);
    padding-bottom: calc(var(--space-lg) + 4rem);
  }

  /* Home */
  .home-title {
    font-size: 3.5rem;
  }

  /* Music split stacks */
  .music-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .music-right {
    order: -1;
  }

  /* Menu grid stacks */
  .menu-items {
    grid-template-columns: 1fr;
  }

  /* Jobs: hide watermark, stack benefits, reduce padding */
  .jobs-watermark {
    display: none;
  }

  .jobs-culture-glass {
    padding: var(--space-lg);
  }

  .culture-quote-mark {
    font-size: 3rem;
  }

  .jobs-benefits {
    gap: 0.5rem;
  }

  .benefit-item {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .job-glasscard {
    padding-left: var(--space-lg);
  }

  .job-glasscard-offset {
    margin-top: 0;
  }

  .job-number {
    font-size: 2.2rem;
  }

  .jobs-apply-glass {
    padding: var(--space-lg);
  }

  /* Reduce particles on mobile */
  .particle:nth-child(n+11) {
    display: none;
  }
}

/* Small phones */
@media (max-width: 400px) {
  .home-title {
    font-size: 2.8rem;
  }

  .menu-title,
  .jobs-title {
    font-size: 2.2rem;
  }

  .top-nav {
    padding: 0.5rem 1rem;
  }

  .nav-link {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
  }

  .glasscard-header h4 {
    font-size: 1rem;
  }

  .job-glasscard-title {
    font-size: 1.1rem;
  }

  .player-art {
    width: 60px;
    height: 60px;
  }
}
