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

:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --dark: #080808;
  --dark-mid: #111111;
  --dark-card: #161616;
  --off-white: #F0EDE8;
  --muted: #888880;
  --nav-h: 64px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--off-white);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; }

/* ── SITE NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 2rem;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--off-white);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover { color: var(--gold-light); }

.nav-links a[aria-current="page"] {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle svg { display: block; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 6rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(180,80,10,0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 70%, rgba(220,130,20,0.2) 0%, transparent 50%),
    linear-gradient(180deg, rgba(8,8,8,0.3) 0%, rgba(8,8,8,0.6) 60%, rgba(8,8,8,1) 100%),
    url('../images/hero.jpg') center center / cover no-repeat;
}

.hero--big-bang .hero-bg {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(220,130,20,0.25) 0%, transparent 55%),
    linear-gradient(180deg, rgba(8,8,8,0.25) 0%, rgba(8,8,8,0.55) 60%, rgba(8,8,8,1) 100%),
    url('../images/big-bang.jpg') center center / cover no-repeat;
}

.hero-bg-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 65% 35%, rgba(200,100,10,0.5) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 60%, rgba(180,80,5,0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 75%, rgba(220,140,20,0.2) 0%, transparent 40%),
    linear-gradient(160deg, #0d0806 0%, #1a0e05 40%, #0d0806 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  text-shadow:
    0 0 8px rgba(8, 8, 8, 0.85),
    0 1px 2px rgba(8, 8, 8, 0.7);
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 0 80px rgba(220,120,20,0.4);
  margin-bottom: 2rem;
}

.hero-title span { display: block; color: var(--gold-light); }

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 300;
  color: var(--off-white);
  opacity: 0.85;
  max-width: 520px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.1rem 2.5rem;
  border: 1px solid var(--gold);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: #000;
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
}

.btn-secondary:hover {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-hint svg { opacity: 0.5; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── PAGE HEADER (subpages) ── */
.page-header {
  padding: 5rem 2rem 3rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.page-header .section-title { margin-bottom: 1rem; }

.page-header .lede {
  font-size: 1.1rem;
  color: var(--off-white);
  opacity: 0.8;
  max-width: 640px;
}

/* ── DIVIDER ── */
.gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 2rem;
  opacity: 0.4;
}

/* ── SECTION BASE ── */
.section {
  padding: 6rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 1.5rem;
}

.section-lede {
  font-size: 1.05rem;
  color: var(--off-white);
  opacity: 0.8;
  max-width: 640px;
  line-height: 1.65;
  margin-bottom: 1rem;
}

/* ── VIDEO EMBED ── */
.video-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--dark-card);
  border: 1px solid rgba(201, 168, 76, 0.25);
  box-shadow: 0 0 80px rgba(201, 168, 76, 0.08);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-frame iframe,
.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── EVENT CARDS (home: Pick Your Detonator) ── */
.event-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.event-card {
  display: flex;
  flex-direction: column;
  background: var(--dark-card);
  border: 1px solid rgba(201, 168, 76, 0.18);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}

.event-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  background: #1a1a1a;
}

.event-card__image {
  aspect-ratio: 16 / 9;
  background-position: center;
  background-size: cover;
  background-color: #0a0a0a;
  border-bottom: 2px solid var(--gold);
  transition: transform 0.4s ease;
}

.event-card:hover .event-card__image { transform: scale(1.03); }

.event-card--doors-off .event-card__image {
  background-image: url('../images/hero.jpg');
}

.event-card--big-bang .event-card__image {
  background-image: url('../images/big-bang.jpg');
}

.event-card__body {
  padding: 2rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.event-card .eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.event-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 1rem;
}

.event-card p {
  color: var(--off-white);
  opacity: 0.8;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.event-card .tags {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.event-card .card-cta {
  margin-top: auto;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.event-card .card-cta::after {
  content: ' →';
  transition: margin-left 0.2s;
}

.event-card:hover .card-cta { color: var(--gold-light); }

/* ── BESPOKE CALLOUT ── */
.callout-wrap {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 70%),
    var(--dark-mid);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 5rem 2rem;
  text-align: center;
}

.callout-inner {
  max-width: 680px;
  margin: 0 auto;
}

.callout-inner .section-label { text-align: center; }

.callout-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  color: var(--off-white);
  margin-bottom: 1.5rem;
}

.callout-quote em {
  font-style: normal;
  color: var(--gold-light);
}

.callout-body {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
}

/* ── TESTIMONIALS ── */
.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial {
  position: relative;
  padding: 2.25rem 2rem 2rem;
  background: var(--dark-card);
  border-left: 2px solid var(--gold);
}

.testimonial-mark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 6rem;
  line-height: 0.5;
  color: rgba(201, 168, 76, 0.25);
  margin-bottom: 0.25rem;
}

.testimonial p {
  font-size: 0.95rem;
  color: var(--off-white);
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── FIND US ── */
.find-us {
  padding: 6rem 2rem;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.find-us .section-label { text-align: center; }

.find-us p {
  font-size: 1rem;
  color: var(--off-white);
  opacity: 0.8;
  max-width: 560px;
  margin: 0 auto;
}

/* ── CTA STRIP ── */
.cta-strip {
  padding: 5rem 2rem 6rem;
  text-align: center;
  background: var(--dark-mid);
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}

.cta-strip h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-strip p {
  color: var(--muted);
  margin-bottom: 2.5rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.cta-strip .button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.mobile-only { display: none; }

.cta-pairs {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 720px;
  margin: 0 auto;
}

.cta-pair {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex: 1 1 260px;
  min-width: 240px;
}

.cta-strip .cta-pair__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  color: var(--gold-light);
  margin: 0;
  max-width: none;
}

.cta-pair .btn-primary,
.cta-pair .btn-secondary {
  width: 100%;
  text-align: center;
}

/* ── EXPERIENCE BLOCK (on /experiences) ── */
.experience-block {
  padding: 5rem 2rem;
  max-width: 980px;
  margin: 0 auto;
}

.experience-block + .experience-block { border-top: 1px solid rgba(201, 168, 76, 0.12); }

.experience-block .block-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 1.25rem;
}

.experience-block .block-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.concept-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 2rem;
}

.concept-text p {
  color: var(--off-white);
  opacity: 0.75;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.concept-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.concept-features li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feat-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.feat-icon svg { color: var(--gold); }

.feat-text strong {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: #fff;
}

.feat-text span {
  font-size: 0.875rem;
  color: var(--muted);
}

/* ── HOW IT WORKS / STEPS ── */
.how-block {
  margin-top: 4rem;
}

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

.step {
  position: relative;
  padding: 2rem;
  background: var(--dark-card);
  border-top: 2px solid var(--gold);
}

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: rgba(201, 168, 76, 0.15);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step h3 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.step p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── BLOCK INTRO (lead paragraphs above a steps grid) ── */
.block-intro {
  max-width: 720px;
  margin-top: 2rem;
}

.block-intro p {
  color: var(--off-white);
  opacity: 0.8;
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* ── DETAILS STRIP ── */
.details-strip {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--dark-card);
  border: 1px solid rgba(201, 168, 76, 0.18);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2.5rem;
}

.details-strip dt {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.details-strip dd {
  font-size: 0.95rem;
  color: var(--off-white);
  opacity: 0.9;
  line-height: 1.5;
}

.details-strip dd strong { color: #fff; }

/* ── BOOKING ── */
.booking-block {
  margin-top: 3rem;
}

.booking-panel {
  border: 1px solid rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.04);
  padding: 2.75rem 2rem;
  text-align: center;
}

.booking-panel .placeholder-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.booking-panel h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 0.5rem;
}

.booking-panel p {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 1.75rem;
}

/* ── ACTION ROW (under blocks) ── */
.action-row {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ── FAQ ── */
.faq-section { padding: 4rem 2rem; max-width: 760px; margin: 0 auto; }

.faq-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.25rem 0;
}

.faq-item:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.06); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  padding-right: 0.5rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-family: 'Bebas Neue', sans-serif;
  color: var(--gold);
  font-size: 1.6rem;
  line-height: 1;
  transition: transform 0.2s;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item .answer {
  margin-top: 1rem;
  color: var(--off-white);
  opacity: 0.8;
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item .answer p + p { margin-top: 0.75rem; }

/* ── ENQUIRY FORM ── */
.contact-page {
  padding: 4rem 2rem 6rem;
  max-width: 680px;
  margin: 0 auto;
}

.form-intro { margin-bottom: 2.5rem; }

.form-intro p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 0.75rem;
}

form { display: flex; flex-direction: column; gap: 1.25rem; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

input, textarea, select {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--off-white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  padding: 0.875rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

input:focus, textarea:focus, select:focus { border-color: var(--gold); }

select option { background: #1a1a1a; }

textarea { resize: vertical; min-height: 120px; }

.submit-btn {
  align-self: flex-start;
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: -0.5rem;
}

.form-success {
  display: none;
  border: 1px solid var(--gold);
  padding: 2.5rem 2rem;
  text-align: center;
  animation: fadeIn 0.5s ease-out;
}

.form-success.visible { display: block; }

.form-success .checkmark {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.6rem;
}

.form-success h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}

.form-success p {
  color: var(--muted);
  max-width: 38ch;
  margin: 0 auto;
  line-height: 1.6;
}

.form-error {
  display: none;
  color: #e89b9b;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.form-error.visible { display: block; }

.next-step {
  margin-top: 3rem;
  padding: 1.5rem 1.75rem;
  background: var(--dark-card);
  border-left: 2px solid var(--gold);
}

.next-step h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.next-step p { font-size: 0.9rem; color: var(--muted); }

/* ── SITEMAP LIST ── */
.sitemap-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.sitemap-list li {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sitemap-list li:last-child { border-bottom: none; }

.sitemap-list a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.sitemap-list a:hover { color: var(--gold-light); }

.sitemap-list span {
  font-size: 0.95rem;
  color: var(--off-white);
  opacity: 0.7;
  line-height: 1.5;
}

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

/* ── FOOTER ── */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--off-white); }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(136, 136, 128, 0.5);
  width: 100%;
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  margin-top: 1rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 820px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(8, 8, 8, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    gap: 0;
    padding: 1rem 2rem 1.5rem;
  }

  .nav-links.open { display: flex; }

  .nav-links li {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .nav-links li:last-child { border-bottom: none; }

  .nav-toggle { display: inline-flex; }
}

@media (max-width: 700px) {
  .event-cards { grid-template-columns: 1fr; gap: 1.5rem; }
  .concept-body { grid-template-columns: 1fr; gap: 2.5rem; }
  .testimonials { grid-template-columns: 1fr; gap: 1.5rem; }
  .steps { grid-template-columns: 1fr; }
  .details-strip { grid-template-columns: 1fr; gap: 1.25rem; }
  .field-row { grid-template-columns: 1fr; }

  .hero-ctas,
  .cta-strip .button-row,
  .action-row {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary,
  .cta-strip .button-row .btn-primary,
  .cta-strip .button-row .btn-secondary,
  .action-row .btn-primary,
  .action-row .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .mobile-only { display: inline; }

  .cta-pairs {
    flex-direction: column;
    gap: 2rem;
  }

  .cta-pair {
    width: 100%;
    min-width: 0;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
  }
}
