/* ═══════════════════════════════════════════════════════════════
   elysrei — bookings page
   Shares the main site's design system (see app.css):
   Garamond/Helvetica, red/black smoke, film grain, glass tiles.
   This page scrolls — event planners need to scan it.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg: #070405;
  --ink: #f0e9e4;
  --ink-dim: #b8a9a6;
  --red: #96101e;
  --red-hover: #ad1f2e;
  --serif: Garamond, Georgia, serif;
  --sans: Helvetica, Arial, -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(55% 45% at 10% 6%, rgba(150, 16, 30, 0.30), transparent 65%),
    radial-gradient(48% 42% at 90% 94%, rgba(110, 15, 26, 0.24), transparent 62%),
    var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* film grain */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 60;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── shared section shell ──────────────────────────────────── */
section {
  padding: 120px clamp(1.1rem, 4vw, 3rem);
}

.section-inner { max-width: 1060px; margin: 0 auto; }

.section-label {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(0.75rem, 1.1vw, 0.85rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: clamp(1.8rem, 4vw, 2.8rem);
}

/* quiet outlined button, serif label — same as the main site */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 0.84rem;
  letter-spacing: 0.03em;
  padding: 0.6rem 1.1rem;
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(240, 233, 228, 0.75);
  border-radius: 0;
  transition: background 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.btn:hover, .btn:focus-visible {
  background: rgba(150, 16, 30, 0.4);
  border-color: var(--ink);
}

.btn-secondary {
  border-color: rgba(240, 233, 228, 0.38);
  background: rgba(7, 4, 5, 0.25);
}

/* ── navigation ────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem clamp(1.1rem, 3vw, 2.4rem);
  background: linear-gradient(to bottom, rgba(7, 4, 5, 0.72), rgba(7, 4, 5, 0));
  transition: background 0.25s ease;
}

/* solid glass bar once the page scrolls past the hero */
.site-nav.scrolled {
  background: rgba(7, 4, 5, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(240, 233, 228, 0.08);
}

.site-nav .logo img { height: clamp(34px, 5vw, 46px); width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.6vw, 1.35rem);
}

.nav-links a {
  font-family: var(--serif);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
  transition: opacity 0.25s ease;
  opacity: 0.9;
}

.nav-links a:hover, .nav-links a:focus-visible {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-ig { display: inline-flex; }
.nav-ig svg { width: 19px; height: 19px; }

.nav-group { position: relative; }
.active-group > .nav-parent { text-decoration: underline; text-underline-offset: 4px; }

.nav-parent span {
  display: inline-block;
  margin-left: 0.18rem;
  font-size: 0.78em;
  transition: transform 0.2s ease;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.7rem);
  left: 50%;
  width: max-content;
  min-width: 170px;
  padding: 0.55rem;
  background: rgba(7, 4, 5, 0.94);
  border: 1px solid rgba(240, 233, 228, 0.14);
  border-radius: 4px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -5px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown a {
  display: block;
  padding: 0.48rem 0.65rem;
  font-size: 0.8rem;
  text-shadow: none;
  white-space: nowrap;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-group:hover .nav-parent span,
.nav-group:focus-within .nav-parent span { transform: rotate(180deg); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(7, 4, 5, 0.96);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1.2rem;
  padding: 6.5rem 1.5rem 3rem;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.open { opacity: 1; pointer-events: auto; }

.mobile-menu a {
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.mobile-menu > a,
.mobile-nav-group { width: min(84vw, 360px); text-align: center; }

.mobile-nav-group { text-align: center; }

.mobile-accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}

.mobile-accordion-toggle span { transition: transform 0.2s ease; }
.mobile-nav-group.open .mobile-accordion-toggle span { transform: rotate(45deg); }

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  display: grid;
  gap: 0.25rem;
  transition: max-height 0.28s ease, padding 0.28s ease;
}

.mobile-nav-group.open .mobile-submenu {
  max-height: 420px;
  padding-top: 0.7rem;
}

.mobile-menu .mobile-submenu a {
  width: 100%;
  padding: 0.22rem;
  font-family: var(--sans);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ── hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/assets/img/action-shot-2.jpg') center 38%/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7, 4, 5, 0.55), rgba(7, 4, 5, 0.18) 40%, rgba(7, 4, 5, 0.82));
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 clamp(1.1rem, 4vw, 3rem) clamp(3rem, 9vh, 5.5rem);
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.3rem, 6.5vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  max-width: 20ch;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.7);
}

.hero-sub {
  margin-top: 1.3rem;
  font-family: var(--sans);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(0.82rem, 1.4vw, 0.95rem);
  letter-spacing: 0.06em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
}

.hero-genres {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.hero-cta {
  margin-top: 1.8rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

/* ── about ─────────────────────────────────────────────────── */
.about-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.about-text p {
  margin-bottom: 1.2rem;
}

.about-text p:last-of-type { margin-bottom: 0; }

.about-text .lede {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.about-text p:not(.lede) { color: var(--ink-dim); }

.about-text .section-label { text-align: left; }

.about-video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  background: rgba(240, 233, 228, 0.06);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.65), 0 0 90px rgba(150, 16, 30, 0.18);
}

.about-video-embed video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-video-caption {
  margin-top: 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

@media (max-width: 860px) {
  .about-inner { grid-template-columns: 1fr; }
}

/* ── video reels ───────────────────────────────────────────── */
.reels-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  max-width: 1060px;
  margin: 0 auto;
}

.reel-video {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 6px;
  overflow: hidden;
  background: rgba(240, 233, 228, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.reel-card:hover .reel-video {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
}

.reel-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-title {
  margin-top: 0.85rem;
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.35;
}

.reel-desc {
  margin-top: 0.2rem;
  font-size: 0.84rem;
  color: var(--ink-dim);
}

@media (max-width: 900px) {
  .reels-row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .reels-row::-webkit-scrollbar { display: none; }
  .reel-card { scroll-snap-align: start; width: min(62vw, 260px); flex-shrink: 0; }
}

/* ── photos ────────────────────────────────────────────────── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  max-width: 900px;
  margin: 0 auto;
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.photo-grid img:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
}

@media (max-width: 560px) {
  .photo-grid { grid-template-columns: 1fr; }
}

/* ── as seen at ────────────────────────────────────────────── */
.seen-at { padding-top: 0; }

.seen-at-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  justify-content: center;
  max-width: 860px;
  margin: 0 auto;
}

.seen-at-list span {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink-dim);
  white-space: nowrap;
}

.seen-at-list span::after {
  content: '\00b7';
  margin-left: 1.5rem;
  color: var(--red);
}

.seen-at-list span:last-child::after { content: none; }

/* ── testimonials — glass quote tiles, as on the main site ─── */
.testimonials { padding-top: 0; }

.testimonials .section-label { margin-bottom: 2rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(1.2rem, 3vw, 2rem);
  row-gap: 10px;
  max-width: 1060px;
  margin: 0 auto;
}

.testimonial {
  background: rgba(240, 233, 228, 0.1);
  border: 1px solid rgba(240, 233, 228, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1.6rem 1.7rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
}

.testimonial blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.55;
}

.testimonial figcaption {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  line-height: 1.7;
}

.testimonial-wide {
  grid-column: 1 / -1;
}

@media (max-width: 600px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ── lineups — 3 columns on desktop ────────────────────────── */
.lineup-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 960px;
  margin: 0 auto;
}

.lineup-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: rgba(240, 233, 228, 0.14);
  border: 1px solid rgba(240, 233, 228, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.lineup-name {
  font-family: var(--serif);
  font-size: 1.25rem;
}

.lineup-desc {
  color: var(--ink-dim);
  font-size: 0.92rem;
}

@media (max-width: 560px) {
  .lineup-list { grid-template-columns: 1fr; }
}

/* ── faq ───────────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid rgba(240, 233, 228, 0.14); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  text-align: left;
  transition: color 0.25s ease;
}

.faq-question:hover { color: var(--ink); }

.faq-toggle {
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--red-hover);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-dim);
  padding-bottom: 1.25rem;
  max-width: 60ch;
}

/* ── booking form ──────────────────────────────────────────── */
.booking-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.booking-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.booking-sub {
  color: var(--ink-dim);
  font-size: 0.95rem;
  line-height: 1.7;
}

.booking-channels {
  margin-top: 1.2rem;
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.booking-email {
  font-family: var(--serif);
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(240, 233, 228, 0.4);
  transition: border-color 0.25s ease;
}

.booking-email:hover { border-color: var(--ink); }

.booking-or {
  color: var(--ink-dim);
  font-size: 0.85rem;
}

.booking-whatsapp {
  font-family: var(--serif);
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(37, 211, 102, 0.5);
  transition: border-color 0.25s ease;
}

.booking-whatsapp:hover { border-color: #25d366; }

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
}

.field-group {
  display: block;
  min-width: 0;
}

.form-label {
  display: block;
  margin-bottom: 0.1rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.optional {
  letter-spacing: 0.03em;
  text-transform: lowercase;
  opacity: 0.7;
}

.form-field {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(184, 169, 166, 0.55);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 0.9rem 0;
  width: 100%;
  outline: none;
  transition: border-color 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-field::placeholder { color: var(--ink-dim); }
.form-field:focus { border-bottom-color: var(--red-hover); }
select.form-field { color: var(--ink-dim); }
select.form-field:valid { color: var(--ink); }
select.form-field option { background: var(--bg); color: var(--ink); }
textarea.form-field { resize: vertical; min-height: 100px; }
input[type="date"].form-field { color: var(--ink-dim); }
input[type="date"].form-field::-webkit-calendar-picker-indicator { filter: invert(0.7); }

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

.form-route-note,
.form-status {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--ink-dim);
}

.form-route-note a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status { min-height: 1.4em; }

.booking-submit {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 1.5rem;
  font-family: var(--serif);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 0.75rem 2.2rem;
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(240, 233, 228, 0.75);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.booking-submit:hover, .booking-submit:focus-visible {
  background: rgba(150, 16, 30, 0.4);
  border-color: var(--ink);
}

.booking-submit:disabled { opacity: 0.6; cursor: default; }

@media (max-width: 860px) {
  .booking-inner { grid-template-columns: 1fr; }
  .booking-form { grid-template-columns: 1fr; }
}

/* ── footer ────────────────────────────────────────────────── */
.site-footer {
  padding: 60px clamp(1.1rem, 4vw, 3rem) 70px;
  text-align: center;
  border-top: 1px solid rgba(240, 233, 228, 0.1);
}

.site-footer .logo { display: inline-block; margin-bottom: 1.5rem; }
.site-footer .logo img { height: 38px; margin: 0 auto; }

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-socials a {
  font-family: var(--serif);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  opacity: 0.85;
  transition: opacity 0.25s ease;
}

.footer-socials a:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--ink-dim);
}

/* ── scroll reveal ─────────────────────────────────────────── */
.reveal > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

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

/* ── mobile spacing ────────────────────────────────────────── */
@media (max-width: 700px) {
  section { padding-top: 80px; padding-bottom: 80px; }
  .hero { padding: 0; }
  .events-page .hero h1 {
    max-width: none;
    font-size: clamp(1.95rem, 8.3vw, 2.25rem);
  }
  .seen-at, .testimonials { padding-top: 0; }
}

/* ── reduced motion ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; }
  .reveal > * { opacity: 1; transform: none; }
}
