/* ═══════════════════════════════════════════════════════════════
   CAFÉ 333 — Kansas City's Newest Jazz Joint
   Blues, neons, and brass on black.
   ═══════════════════════════════════════════════════════════════ */

/* ─── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
  /* Blues & Neons on Black */
  --neon-blue:   #4A9EFF;
  --neon-cyan:   #00D4FF;
  --neon-glow:   rgba(74, 158, 255, 0.4);
  --cyan-glow:   rgba(0, 212, 255, 0.3);

  /* Brass & Gold — for lines, rails, decorative accents */
  --gold:        #D4A853;
  --gold-light:  #E8C97A;
  --gold-dark:   #B8893A;
  --brass:       #C5954A;
  --brass-dim:   rgba(212, 168, 83, 0.15);

  /* Dark Palette */
  --cream:       #E8EAF0;
  --cream-dark:  #C5C8D4;
  --charcoal:    #0E0E14;
  --black:       #08080D;
  --midnight:    #0A0A12;
  --smoke:       #181824;
  --slate:       #7A7D8D;
  --deep-blue:   #0D1020;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Outfit', -apple-system, sans-serif;

  /* Spacing */
  --section-pad: clamp(4rem, 10vw, 8rem);
  --container-max: 1200px;

  /* Animation */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET & BASE ──────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--cream);
  background: var(--black);
  overflow-x: hidden;
}

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

a {
  color: var(--neon-blue);
  text-decoration: none;
  transition: color 0.3s var(--ease-smooth);
}

a:hover {
  color: var(--neon-cyan);
}

::selection {
  background: var(--neon-blue);
  color: var(--black);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

/* ─── SECTION HEADERS ───────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.5rem;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--neon-blue);
  text-shadow: 0 0 30px var(--neon-glow);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--slate);
  max-width: 600px;
  line-height: 1.8;
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-label {
  padding-left: 0;
}

.section-header--center .section-label::before {
  display: none;
}

.section-header--center .section-subtitle {
  margin: 0 auto;
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--neon-blue);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--neon-cyan);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--neon-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(74, 158, 255, 0.3);
}

.btn-ghost:hover {
  border-color: var(--neon-blue);
  color: var(--neon-blue);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(74, 158, 255, 0.15);
}

.btn-outline {
  background: transparent;
  color: var(--neon-blue);
  border: 1px solid var(--neon-blue);
}

.btn-outline:hover {
  background: var(--neon-blue);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 0 20px var(--neon-glow);
}

/* ─── NAVBAR ────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.4s var(--ease-smooth);
}

.navbar.scrolled {
  background: rgba(8, 8, 13, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--brass-dim);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  text-decoration: none;
  z-index: 1001;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
}

.logo-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--neon-blue);
  text-shadow: 0 0 15px var(--neon-glow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--neon-blue);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover {
  color: var(--neon-blue);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.6rem 1.5rem !important;
  border: 1px solid var(--neon-blue) !important;
  color: var(--neon-blue) !important;
}

.nav-cta:hover {
  background: var(--neon-blue) !important;
  color: var(--black) !important;
  box-shadow: 0 0 15px var(--neon-glow) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s var(--ease-smooth);
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger::before { top: -7px; }
.hamburger::after  { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(0.35) saturate(1.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(8, 8, 13, 0.4) 0%, rgba(8, 8, 13, 0.2) 40%, rgba(8, 8, 13, 0.7) 80%, var(--black) 100%),
    linear-gradient(to right, rgba(74, 158, 255, 0.05) 0%, transparent 50%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 2rem;
}

.hero-tagline-top {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.3s var(--ease-out) forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title-line {
  opacity: 0;
  display: inline-block;
}

.title-line-1 {
  animation: fadeUp 0.8s 0.5s var(--ease-out) forwards;
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-style: italic;
  color: var(--cream);
}

.title-line-2 {
  animation: fadeUp 0.8s 0.7s var(--ease-out) forwards;
  font-family: var(--font-ui);
  font-size: clamp(0.8rem, 2vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--neon-blue);
  text-shadow: 0 0 20px var(--neon-glow);
  margin: 0.8rem 0 0.3rem;
}

.title-line-3 {
  animation: fadeUp 0.8s 0.9s var(--ease-out) forwards;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.title-dot {
  display: none;
}

.hero-divider {
  width: 120px;
  margin: 1rem auto 2rem;
  color: var(--gold);
  opacity: 0;
  animation: fadeUp 0.8s 1.1s var(--ease-out) forwards;
}

.divider-svg {
  width: 100%;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 300;
  color: var(--cream-dark);
  line-height: 1.8;
  max-width: 550px;
  margin: 0 auto 3rem;
  opacity: 0;
  animation: fadeUp 0.8s 1.3s var(--ease-out) forwards;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1.5s var(--ease-out) forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 2s var(--ease-out) forwards;
}

.hero-scroll span {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--neon-blue), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}

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

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  20% { transform: translate(-15%, 5%); }
  30% { transform: translate(7%, -25%); }
  40% { transform: translate(-5%, 25%); }
  50% { transform: translate(-15%, 10%); }
  60% { transform: translate(15%, 0%); }
  70% { transform: translate(0%, 15%); }
  80% { transform: translate(3%, 35%); }
  90% { transform: translate(-10%, 10%); }
}

/* ─── ABOUT ─────────────────────────────────────────────────── */
.about {
  background: var(--charcoal);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--smoke);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.image-frame:hover img {
  transform: scale(1.03);
}

.image-accent {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  z-index: -1;
}

.about-text .lead {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--neon-blue);
  text-shadow: 0 0 30px rgba(74, 158, 255, 0.15);
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--cream-dark);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.about-values {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--brass-dim);
}

.value {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.value-icon {
  font-size: 1.2rem;
  color: var(--neon-blue);
}

.value-text {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--cream);
}

/* ─── EXPERIENCE ────────────────────────────────────────────── */
.experience {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(74, 158, 255, 0.03) 0%, transparent 50%),
    var(--midnight);
}

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

.exp-card {
  position: relative;
  background: rgba(24, 24, 36, 0.6);
  border: 1px solid rgba(74, 158, 255, 0.08);
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
}

.exp-card:hover {
  border-color: rgba(74, 158, 255, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(74, 158, 255, 0.05);
}

.exp-card-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  opacity: 0.6;
  z-index: 2;
}

.exp-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--smoke);
}

.exp-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
  filter: brightness(0.8);
}

.exp-card:hover .exp-card-image img {
  transform: scale(1.05);
  filter: brightness(0.9);
}

.exp-card-content {
  padding: 2rem;
}

.exp-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1rem;
}

.exp-card-content p {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.7;
}

/* ─── MENU ──────────────────────────────────────────────────── */
.menu {
  background: var(--charcoal);
  position: relative;
}

.menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--brass-dim), transparent);
  pointer-events: none;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.menu-cat-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--neon-blue);
  margin-bottom: 0.3rem;
  display: flex;
  flex-direction: column;
}

.menu-cat-subtitle {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 1.5rem;
}

.menu-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(74, 158, 255, 0.06);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-header {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
  white-space: nowrap;
}

.menu-item-dots {
  flex: 1;
  border-bottom: 1px dotted var(--brass-dim);
  min-width: 2rem;
  margin-bottom: 4px;
}

.menu-item-price {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
}

.menu-item-desc {
  font-size: 0.85rem;
  color: var(--slate);
  font-style: italic;
  line-height: 1.5;
}

.menu-note {
  text-align: center;
  margin-top: 3rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--slate);
  font-style: italic;
}

/* ─── PERFORMANCES ──────────────────────────────────────────── */
.performances {
  background:
    radial-gradient(ellipse at 20% 80%, rgba(74, 158, 255, 0.04) 0%, transparent 50%),
    var(--midnight);
}

.perf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.perf-card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(24, 24, 36, 0.4);
  border: 1px solid rgba(74, 158, 255, 0.08);
  transition: all 0.4s var(--ease-out);
}

.perf-card:hover {
  border-color: rgba(74, 158, 255, 0.2);
  background: rgba(24, 24, 36, 0.6);
  box-shadow: 0 0 20px rgba(74, 158, 255, 0.05);
}

.perf-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  padding: 0.5rem;
  border: 1px solid var(--brass-dim);
}

.perf-month {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.perf-day {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
}

.perf-genre {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-blue);
  display: inline-block;
  margin-bottom: 0.5rem;
}

.perf-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.perf-desc {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.perf-time {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--slate);
  letter-spacing: 0.05em;
}

.perf-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--brass-dim);
}

.perf-cta p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--cream-dark);
  margin-bottom: 1.5rem;
}

/* ─── GALLERY ───────────────────────────────────────────────── */
.gallery {
  background: var(--charcoal);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--smoke);
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.6s var(--ease-out);
  filter: brightness(0.75) saturate(0.9);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.9) saturate(1.1);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(8, 8, 13, 0.85), transparent);
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--cream);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* ─── SIGNUP ────────────────────────────────────────────────── */
.signup {
  background:
    radial-gradient(ellipse at center, rgba(74, 158, 255, 0.04) 0%, transparent 70%),
    var(--midnight);
  text-align: center;
}

.signup-content {
  max-width: 600px;
  margin: 0 auto;
}

.signup-text {
  font-size: 1.05rem;
  color: var(--cream-dark);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.form-input {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(24, 24, 36, 0.6);
  border: 1px solid rgba(74, 158, 255, 0.15);
  color: var(--cream);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  transition: all 0.3s var(--ease-smooth);
  outline: none;
}

.form-input::placeholder {
  color: var(--slate);
}

.form-input:focus {
  border-color: var(--neon-blue);
  background: rgba(24, 24, 36, 0.8);
  box-shadow: 0 0 0 3px rgba(74, 158, 255, 0.1);
}

.form-options {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 0.5rem 0;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--cream-dark);
}

.form-checkbox input {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(74, 158, 255, 0.3);
  background: rgba(24, 24, 36, 0.6);
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s;
}

.form-checkbox input:checked + .checkmark {
  background: var(--neon-blue);
  border-color: var(--neon-blue);
}

.form-checkbox input:checked + .checkmark::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: solid var(--black);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.btn-submit {
  width: 100%;
  margin-top: 0.5rem;
  text-align: center;
}

.btn-submit .btn-success {
  display: none;
}

.btn-submit.submitted .btn-text {
  display: none;
}

.btn-submit.submitted .btn-success {
  display: inline;
}

.btn-submit.submitted {
  background: #2a7a3f;
  pointer-events: none;
}

.signup-note {
  margin-top: 1.5rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--slate);
  font-style: italic;
}

/* ─── CONTACT ───────────────────────────────────────────────── */
.contact {
  background: var(--charcoal);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 1rem;
}

.contact-details {
  margin-top: 2rem;
}

.contact-detail {
  margin-bottom: 2rem;
}

.contact-detail h4 {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.contact-detail p {
  font-size: 1rem;
  color: var(--cream-dark);
  line-height: 1.6;
}

.contact-social {
  margin-top: 2rem;
}

.contact-social h4 {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(74, 158, 255, 0.2);
  color: var(--cream);
  transition: all 0.3s var(--ease-smooth);
}

.social-link:hover {
  border-color: var(--neon-blue);
  color: var(--neon-blue);
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(74, 158, 255, 0.15);
}

.map-container {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: var(--smoke);
  overflow: hidden;
}

.map-container iframe {
  filter: grayscale(0.5) brightness(0.7) contrast(1.1) hue-rotate(10deg);
  transition: filter 0.3s;
}

.map-container:hover iframe {
  filter: grayscale(0.2) brightness(0.85);
}

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  padding: 3rem 0;
  border-top: 1px solid var(--brass-dim);
}

.footer-content {
  text-align: center;
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.3rem;
}

.footer-address {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--slate);
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-links a {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--neon-blue);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(74, 158, 255, 0.05);
}

.footer-bottom p {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--slate);
}

.footer-credit {
  margin-top: 0.3rem;
}

.footer-credit a {
  color: var(--neon-blue);
}

/* ─── FLOATING NOTES (ambient decoration) ───────────────────── */
.floating-notes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.note {
  position: absolute;
  font-size: 1.2rem;
  color: var(--neon-blue);
  opacity: 0;
  animation: floatNote 15s linear infinite;
}

@keyframes floatNote {
  0% {
    opacity: 0;
    transform: translateY(100vh) rotate(0deg);
  }
  10% {
    opacity: 0.06;
  }
  90% {
    opacity: 0.06;
  }
  100% {
    opacity: 0;
    transform: translateY(-5vh) rotate(20deg);
  }
}

/* ─── SCROLL ANIMATIONS ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .experience-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(8, 8, 13, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s var(--ease-out);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a::after {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image {
    max-width: 400px;
  }

  .about-values {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-item--wide {
    grid-column: span 2;
  }

  .hero-title {
    flex-direction: column;
    gap: 0;
  }

  .perf-card {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .perf-date {
    flex-direction: row;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-item--wide {
    grid-column: span 1;
  }

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

  .btn {
    width: 100%;
    text-align: center;
  }
}
