/* ===== SHARED DESIGN SYSTEM — Lock & Code ===== */

:root {
  --midnight-end: #02080e;
  --midnight: #0B1C2C;
  --gold: #D4AF37;
  --gold-light: #FCE29F;
  --gold-deep: #8B6F1E;
  --text-light: #FDFDFD;
  --text-muted: #A0A8B2;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--midnight-end);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.6;
}
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 100;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.06 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.6;
}
h1, h2, h3 { font-family: 'Cinzel', serif; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; }

/* ===== TOP BAR ===== */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 40px;
  backdrop-filter: blur(12px);
  background: linear-gradient(to bottom, rgba(2,8,14,0.9), rgba(2,8,14,0));
}
.topbar .brand-line { display: flex; align-items: center; gap: 16px; }
.topbar .brand-logo {
  height: 56px; width: auto; display: block;
  filter:
    drop-shadow(0 0 12px rgba(255,255,255,0.45))
    drop-shadow(0 0 24px rgba(255,255,255,0.25))
    drop-shadow(0 4px 14px rgba(0,0,0,0.5));
  transition: transform 0.25s ease;
}
.topbar .brand-logo:hover { transform: scale(1.04); }
.topbar .brand {
  font-family: 'Cinzel', serif; font-size: 0.7rem; letter-spacing: 0.5em;
  color: var(--gold); font-weight: 700;
}
.topbar .venue-tag {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  color: var(--text-muted); font-size: 0.85rem; letter-spacing: 0.15em;
}
.topbar nav { display: flex; gap: 28px; }
.topbar nav a {
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none; transition: color 0.2s;
  font-weight: 500;
}
.topbar nav a:hover, .topbar nav a.active { color: var(--gold); }
.topbar .book-btn {
  color: var(--midnight-end); background: var(--gold);
  padding: 10px 20px; text-transform: uppercase; letter-spacing: 0.2em;
  font-size: 0.7rem; font-weight: 700; text-decoration: none;
  transition: background 0.2s;
}
.topbar .book-btn:hover { background: var(--gold-light); }
.breadcrumb {
  position: fixed; top: 90px; left: 40px; z-index: 40;
  font-family: 'Cinzel', serif; font-size: 0.6rem; letter-spacing: 0.4em;
  color: var(--text-muted); font-weight: 600;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; text-transform: uppercase; letter-spacing: 0.2em;
  font-size: 0.78rem; font-weight: 600; text-decoration: none;
  transition: all 0.25s ease; border: 1px solid var(--gold);
}
.btn-primary { background: var(--gold); color: var(--midnight-end); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(212,175,55,0.5); }
.btn-ghost { background: transparent; color: var(--gold); }
.btn-ghost:hover { background: rgba(212,175,55,0.1); transform: translateY(-2px); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slowZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.18); }
}
@keyframes kenBurns {
  0%   { background-position: 50% 0%;   background-size: 110% auto; }
  50%  { background-position: 50% 100%; background-size: 115% auto; }
  100% { background-position: 50% 0%;   background-size: 110% auto; }
}

/* ===== UTILITIES ===== */
.eyebrow {
  font-family: 'Cinzel', serif; font-size: 0.7rem; letter-spacing: 0.55em;
  color: var(--gold); margin-bottom: 24px; font-weight: 700;
}
.gold-rule { width: 50px; height: 1px; background: var(--gold); margin: 28px auto; }
.italic-accent {
  color: var(--gold); font-style: italic; font-family: 'Cormorant Garamond', serif;
  text-transform: lowercase; font-weight: 400;
}

/* ===== QUOTE SECTION ===== */
.quote-section {
  padding: 140px 40px; text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.06) 0%, transparent 70%), var(--midnight-end);
}
.quote-section .stars { color: var(--gold); font-size: 1.4rem; letter-spacing: 0.6em; margin-bottom: 32px; }
.quote-section blockquote {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.4rem); line-height: 1.3;
  color: var(--gold-light); max-width: 880px; margin: 0 auto 32px; font-weight: 400;
}
.quote-section blockquote::before { content: '\201C'; color: var(--gold); margin-right: 6px; }
.quote-section blockquote::after { content: '\201D'; color: var(--gold); margin-left: 6px; }
.quote-section .source {
  color: var(--text-muted); font-size: 0.7rem; letter-spacing: 0.4em;
  text-transform: uppercase; font-weight: 600;
}

/* ===== CTA SECTION ===== */
.cta-section { padding: 140px 40px; text-align: center; background: var(--midnight-end); }
.cta-section h2 {
  font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1; color: var(--text-light); margin-bottom: 22px;
}
.cta-section h2 em {
  color: var(--gold); font-style: italic; font-family: 'Cormorant Garamond', serif;
  text-transform: lowercase; font-weight: 400;
}
.cta-section p { color: var(--text-muted); font-size: 1rem; max-width: 540px; margin: 0 auto 40px; font-weight: 300; line-height: 1.7; }

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid rgba(212,175,55,0.2); padding: 70px 40px 40px;
  background: #000; text-align: center;
}
footer .brand-logo {
  height: 110px; width: auto; display: block; margin: 0 auto 28px;
  filter:
    drop-shadow(0 0 20px rgba(255,255,255,0.45))
    drop-shadow(0 0 40px rgba(255,255,255,0.25))
    drop-shadow(0 8px 22px rgba(0,0,0,0.6));
}
footer .brand-line {
  font-family: 'Cinzel', serif; font-size: 0.7rem; letter-spacing: 0.5em;
  color: var(--gold); margin-bottom: 24px; font-weight: 700;
}
footer .links {
  display: flex; gap: 36px; justify-content: center; margin-bottom: 32px; flex-wrap: wrap;
}
footer .links a {
  color: var(--text-muted); font-size: 0.7rem; letter-spacing: 0.3em;
  text-transform: uppercase; text-decoration: none; font-weight: 500; transition: color 0.2s;
}
footer .links a:hover { color: var(--gold); }
footer .copyright {
  color: var(--text-muted); font-size: 0.65rem; letter-spacing: 0.2em; opacity: 0.6;
}

/* ===== MOBILE NAV (CSS-only hamburger drawer) ===== */
.nav-toggle { display: none; }
.hamburger {
  display: none;
  width: 32px; height: 24px;
  flex-direction: column; justify-content: space-between;
  cursor: pointer; padding: 0; background: none; border: none;
  z-index: 60; position: relative;
}
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--gold);
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
  transform-origin: center;
}
.mobile-drawer {
  display: none;
  position: fixed; top: 0; right: -100%;
  width: min(86%, 360px); height: 100vh;
  background: linear-gradient(180deg, var(--midnight) 0%, var(--midnight-end) 100%);
  border-left: 1px solid rgba(212,175,55,0.2);
  padding: 100px 30px 40px;
  flex-direction: column;
  gap: 8px;
  transition: right 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 55;
  box-shadow: -20px 0 60px rgba(0,0,0,0.6);
  overflow-y: auto;
  visibility: hidden;
  pointer-events: none;
}
.mobile-drawer a {
  color: var(--text-light); text-decoration: none;
  padding: 18px 0;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem; letter-spacing: 0.25em;
  text-transform: uppercase; font-weight: 700;
  border-bottom: 1px solid rgba(212,175,55,0.12);
  transition: color 0.2s ease, padding 0.2s ease;
}
.mobile-drawer a:hover { color: var(--gold); padding-left: 6px; }
.mobile-drawer a.drawer-book {
  margin-top: 24px; background: var(--gold); color: var(--midnight-end);
  text-align: center; padding: 18px;
  border-bottom: none;
}
.drawer-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(2,8,14,0.7); backdrop-filter: blur(4px);
  z-index: 54; opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .topbar { padding: 14px 20px; }
  .topbar nav { display: none; }
  .topbar > .book-btn { display: none; }
  .topbar .brand-logo { height: 44px; }
  .breadcrumb { display: none; }
  .hamburger { display: flex; }
  /* Drawer + overlay only render when nav-open (prevents iOS touch interception) */
  body.nav-open .mobile-drawer {
    display: flex; right: 0;
    visibility: visible; pointer-events: auto;
  }
  body.nav-open .drawer-overlay {
    display: block; opacity: 1; pointer-events: auto;
  }
  body.nav-open .hamburger span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
  body.nav-open .hamburger span:nth-child(2) { opacity: 0; }
  body.nav-open .hamburger span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }
  body.nav-open { overflow: hidden; }
}
@media (max-width: 700px) {
  .hero .stat-row { flex-wrap: wrap !important; row-gap: 20px !important; gap: 20px 28px !important; }
  .buy-panel { padding: 50px 28px !important; }
  .vouchers-section, .buy-section { padding: 80px 20px !important; }
  .topbar .brand-logo { height: 44px !important; }
  .topbar .venue-tag { display: none; }
  footer { padding: 50px 20px 30px; }
  footer .brand-logo { height: 80px !important; }
  footer .links { gap: 18px 28px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
}
