/* ===========================================================
   DJ BROOKS — Mobile DJ, Hertfordshire & the South East
   Design system: ink base, champagne-gold accent, editorial serif
   =========================================================== */

:root {
  /* Palette */
  --ink:        #0b0b0d;
  --ink-2:      #121216;
  --panel:      #17171c;
  --panel-2:    #1e1e24;
  --line:       rgba(255,255,255,.10);
  --line-soft:  rgba(255,255,255,.06);
  --text:       #f4f1ea;
  --muted:      #a49f95;
  --muted-2:    #7c776e;
  --gold:       #c9a24b;
  --gold-2:     #e4c87a;
  --gold-soft:  rgba(201,162,75,.14);

  /* Type */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Rhythm */
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 4px;
  --section-y: clamp(72px, 11vw, 150px);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--gold); color: var(--ink); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.05; letter-spacing: -.01em; }
.eyebrow {
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before { display: none; }

.serif-italic { font-style: italic; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(34px, 5.4vw, 62px); margin: 18px 0 20px; }
.section-head p { color: var(--muted); font-size: 17px; max-width: 60ch; }
.section-head.center p { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 100px; font-weight: 600; font-size: 14.5px;
  letter-spacing: .01em; transition: .35s var(--ease); white-space: nowrap;
}
.btn-gold { background: var(--gold); color: #17130a; }
.btn-gold:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 14px 34px -12px rgba(201,162,75,.6); }
.btn-ghost { border: 1px solid var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn .arw { transition: transform .35s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

/* ===========================================================
   NAV
   =========================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11,11,13,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  padding-block: 13px;
}
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--serif); font-size: 21px; letter-spacing: .02em; }
.brand .disc {
  width: 26px; height: 26px; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--gold-2) 0 18%, var(--ink) 20% 30%, var(--gold) 32% 40%, var(--ink) 42%);
  border: 1px solid rgba(201,162,75,.5);
  flex: none;
}
.brand b { font-weight: 400; }
.brand span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-family: var(--sans); font-size: 14.5px; color: var(--muted); transition: color .25s; letter-spacing: .01em; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-cta .btn { padding: 11px 22px; }

.burger { display: none; flex-direction: column; gap: 5px; width: 30px; height: 24px; justify-content: center; }
.burger span { height: 1.5px; background: var(--text); border-radius: 2px; transition: .3s var(--ease); }
.nav-open .burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-open .burger span:nth-child(2) { opacity: 0; }
.nav-open .burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===========================================================
   HERO
   =========================================================== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; background: #0b0b0d; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-vid {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.1s var(--ease); will-change: opacity;
}
.hero-vid.is-active { opacity: 1; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--ink) 2%, rgba(11,11,13,.35) 45%, rgba(11,11,13,.55) 100%),
    radial-gradient(120% 80% at 20% 90%, rgba(11,11,13,.85), transparent 60%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(48px, 8vh, 96px); padding-top: 120px; }
.hero h1 {
  font-size: clamp(58px, 13vw, 168px);
  line-height: .92; letter-spacing: -.02em; margin: 22px 0 26px;
}
.hero h1 em { font-style: italic; color: var(--gold-2); }
.hero-sub { font-size: clamp(17px, 2.2vw, 21px); color: #e7e3da; max-width: 46ch; margin-bottom: 32px; }
.hero-sub b { color: #fff; font-weight: 500; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 26px; color: var(--muted); font-size: 13.5px; letter-spacing: .04em; }
.hero-badges span { display: inline-flex; align-items: center; gap: 9px; text-transform: uppercase; }
.hero-badges span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.scroll-cue {
  position: absolute; bottom: 26px; right: var(--gutter); z-index: 3;
  writing-mode: vertical-rl; font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--muted); display: flex; align-items: center; gap: 14px;
}
.scroll-cue::after { content: ""; width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); animation: cue 2.2s var(--ease) infinite; }
@keyframes cue { 0%{transform:scaleY(0);transform-origin:top} 45%{transform:scaleY(1);transform-origin:top} 55%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ===========================================================
   MARQUEE
   =========================================================== */
.marquee { border-block: 1px solid var(--line-soft); background: var(--ink-2); overflow: hidden; padding-block: 20px; }
.marquee-track { display: flex; gap: 0; width: max-content; animation: marq 62s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track > span { font-family: var(--serif); font-size: clamp(19px, 2.4vw, 28px); color: var(--muted); padding-inline: 28px; display: inline-flex; align-items: center; gap: 38px; white-space: nowrap; }
.marquee-track > span::after { content: "✦"; color: var(--gold); font-size: .55em; }
.marquee-track .quote { color: var(--gold-2); }
.marquee-track .quote .qt { font-style: italic; display: inline-flex; align-items: baseline; gap: 12px; }
.marquee-track .quote .qt::before { content: "★"; font-style: normal; color: var(--gold); font-size: .5em; transform: translateY(-2px); }
.marquee-track .quote em { font-style: normal; font-family: var(--sans); font-size: .44em; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
@keyframes marq { to { transform: translateX(-50%); } }

/* ===========================================================
   INTRO / STATS
   =========================================================== */
.intro { text-align: center; }
.intro .lead {
  font-family: var(--serif); font-size: clamp(26px, 4vw, 46px); line-height: 1.22;
  max-width: 20ch; margin: 22px auto 0; letter-spacing: -.01em;
}
.intro .lead em { font-style: italic; color: var(--gold-2); }
.intro .sub { color: var(--muted); max-width: 56ch; margin: 26px auto 0; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: clamp(48px, 6vw, 76px); border-top: 1px solid var(--line); padding-top: clamp(40px, 5vw, 60px); }
.stat .num { font-family: var(--serif); font-size: clamp(40px, 6vw, 64px); color: var(--text); line-height: 1; }
.stat .num em { font-style: italic; color: var(--gold-2); }
.stat .lbl { color: var(--muted); font-size: 14px; margin-top: 12px; letter-spacing: .02em; }

/* ===========================================================
   EVENTS GRID
   =========================================================== */
.events-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.ev-card { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 340px; display: flex; align-items: flex-end; isolation: isolate; }
.ev-card.big { grid-column: span 6; min-height: 460px; }
.ev-card.small { grid-column: span 6; min-height: 340px; }
@media (min-width: 900px){
  .ev-card.big { grid-column: span 6; }
  .ev-card.small { grid-column: span 3; }
  .ev-card.wide { grid-column: span 6; }
}
.ev-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .8s var(--ease); }
.ev-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(8,8,10,.92) 6%, rgba(8,8,10,.15) 62%, rgba(8,8,10,.35)); }
.ev-card:hover img { transform: scale(1.06); }
.ev-body { padding: 28px; }
.ev-body .tag { font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.ev-body h3 { font-size: clamp(23px, 2.4vw, 30px); margin: 12px 0 8px; }
.ev-body p { color: #cfcabf; font-size: 14.5px; max-width: 38ch; }

/* ===========================================================
   SPLIT (About)
   =========================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media .float-badge {
  position: absolute; left: 22px; bottom: 22px; background: rgba(11,11,13,.72); backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 20px;
}
.split-media .float-badge .n { font-family: var(--serif); font-size: 30px; color: var(--gold-2); line-height: 1; }
.split-media .float-badge .t { font-size: 12.5px; color: var(--muted); margin-top: 5px; letter-spacing: .04em; }
.about-body p { color: var(--muted); margin-top: 20px; }
.about-body p strong { color: var(--text); font-weight: 500; }
.about-sign { margin-top: 30px; font-family: var(--serif); font-style: italic; font-size: 26px; color: var(--gold-2); }
.about-sign small { display: block; font-family: var(--sans); font-style: normal; font-size: 13px; letter-spacing: .04em; color: var(--muted); margin-top: 6px; }

/* ===========================================================
   STEPS
   =========================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 34px); }
.step { border-top: 1px solid var(--line); padding-top: 26px; }
.step .idx { font-family: var(--serif); font-style: italic; font-size: 46px; color: var(--gold); line-height: 1; }
.step h3 { font-size: 22px; margin: 18px 0 12px; }
.step p { color: var(--muted); font-size: 15px; }

/* ===========================================================
   PACKAGES
   =========================================================== */
.pkg-note { text-align: center; color: var(--muted); max-width: 62ch; margin: 0 auto clamp(40px,5vw,58px); font-size: 15px; }
.pkg-note b { color: var(--text); font-weight: 500; }
.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.pkg {
  background: var(--panel); border: 1px solid var(--line); border-radius: 8px; padding: 34px 30px;
  display: flex; flex-direction: column; transition: .4s var(--ease); position: relative;
}
.pkg:hover { transform: translateY(-6px); border-color: rgba(201,162,75,.4); }
.pkg.featured { background: linear-gradient(180deg, #201b10, #16130c); border-color: rgba(201,162,75,.55); }
.pkg .ribbon {
  position: absolute; top: -1px; right: 24px; transform: translateY(-50%);
  background: var(--gold); color: #17130a; font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: 7px 14px; border-radius: 100px;
}
.pkg h3 { font-size: 27px; }
.pkg .price { display: flex; align-items: baseline; gap: 8px; margin: 16px 0 4px; }
.pkg .price .from { font-size: 12.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; }
.pkg .price .amt { font-family: var(--serif); font-size: 44px; color: var(--text); line-height: 1; }
.pkg.featured .price .amt { color: var(--gold-2); }
.pkg .blurb { color: var(--muted); font-size: 14.5px; margin: 8px 0 22px; min-height: 42px; }
.pkg ul { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; flex: 1; }
.pkg li { position: relative; padding-left: 28px; font-size: 14.5px; color: #d8d3c8; }
.pkg li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 15px; height: 8px;
  border-left: 1.6px solid var(--gold); border-bottom: 1.6px solid var(--gold);
  transform: rotate(-45deg);
}
.pkg li.hours { padding-left: 0; color: var(--muted); font-size: 13px; border-top: 1px solid var(--line-soft); padding-top: 14px; margin-top: 4px; }
.pkg li.hours::before { display: none; }
.pkg-wide {
  grid-column: 1 / -1; background: var(--ink-2); border: 1px solid var(--line); border-radius: 8px;
  padding: 34px 36px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; margin-top: 4px;
}
.pkg-wide h3 { font-size: 26px; }
.pkg-wide p { color: var(--muted); font-size: 14.5px; max-width: 62ch; margin-top: 8px; }
.pkg-extra { text-align: center; color: var(--muted-2); font-size: 13.5px; margin-top: 26px; }
.pkg-extra b { color: var(--muted); font-weight: 500; }

/* ===========================================================
   GALLERY
   =========================================================== */
.gallery { columns: 3; column-gap: 14px; }
.gallery figure { break-inside: avoid; margin-bottom: 14px; border-radius: var(--radius); overflow: hidden; position: relative; }
.gallery img, .gallery video { width: 100%; transition: transform .7s var(--ease), filter .5s; filter: saturate(1.02); }
.gallery figure:hover img, .gallery figure:hover video { transform: scale(1.05); }
.gallery figure::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px var(--line-soft); border-radius: var(--radius); }

/* ===========================================================
   TESTIMONIALS
   =========================================================== */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote { background: var(--panel); border: 1px solid var(--line); border-radius: 8px; padding: 34px 30px; }
.quote .stars { color: var(--gold); letter-spacing: 3px; font-size: 15px; }
.quote blockquote { font-family: var(--serif); font-size: 23px; line-height: 1.35; margin: 18px 0 22px; letter-spacing: -.01em; }
.quote .who { color: var(--muted); font-size: 13.5px; letter-spacing: .04em; text-transform: uppercase; }

/* ===========================================================
   TRAVEL
   =========================================================== */
.travel-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px,5vw,70px); align-items: center; }
.travel-body p { color: var(--muted); margin-top: 20px; }
.travel-body p b { color: var(--text); font-weight: 500; }
.travel-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.travel-chips span { border: 1px solid var(--line); border-radius: 100px; padding: 8px 16px; font-size: 13px; color: var(--muted); }
.travel-visual {
  aspect-ratio: 1/1; border-radius: 50%; position: relative;
  background:
    radial-gradient(circle, transparent 0 30%, var(--gold-soft) 30% 31%, transparent 31%),
    radial-gradient(circle, transparent 0 55%, rgba(201,162,75,.10) 55% 56%, transparent 56%),
    radial-gradient(circle at 50% 50%, rgba(201,162,75,.06), transparent 70%);
  border: 1px solid var(--line); display: grid; place-items: center; overflow: hidden;
}
.travel-visual .pin { text-align: center; }
.travel-visual .pin .dot { width: 14px; height: 14px; border-radius: 50%; background: var(--gold); margin: 0 auto 14px; box-shadow: 0 0 0 6px var(--gold-soft), 0 0 30px var(--gold); }
.travel-visual .pin .city { font-family: var(--serif); font-size: 26px; }
.travel-visual .pin .radius { color: var(--muted); font-size: 13px; margin-top: 4px; letter-spacing: .1em; text-transform: uppercase; }

/* ===========================================================
   FAQ
   =========================================================== */
.faq { max-width: 860px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; text-align: left; padding: 26px 0; font-family: var(--serif); font-size: clamp(18px, 2.2vw, 23px); transition: color .25s; }
.faq-q:hover { color: var(--gold-2); }
.faq-q .ic { flex: none; width: 22px; height: 22px; position: relative; }
.faq-q .ic::before, .faq-q .ic::after { content: ""; position: absolute; background: var(--gold); border-radius: 2px; transition: .3s var(--ease); }
.faq-q .ic::before { top: 50%; left: 0; right: 0; height: 1.6px; transform: translateY(-50%); }
.faq-q .ic::after { left: 50%; top: 0; bottom: 0; width: 1.6px; transform: translateX(-50%); }
.faq-item.open .faq-q .ic::after { transform: translateX(-50%) scaleY(0); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .4s var(--ease); }
.faq-a p { color: var(--muted); padding-bottom: 26px; padding-right: 40px; font-size: 15.5px; }

/* ===========================================================
   CONTACT / CTA
   =========================================================== */
.contact { position: relative; overflow: hidden; }
.contact::before {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: .16;
  background: url("assets/img/crowd-disco.jpg") center/cover; filter: grayscale(.3);
}
.contact::after { content: ""; position: absolute; inset: 0; z-index: 0; background: linear-gradient(var(--ink), rgba(11,11,13,.86)); }
.contact .container { position: relative; z-index: 2; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.contact-lead h2 { font-size: clamp(36px, 5.6vw, 66px); margin: 18px 0 20px; }
.contact-lead h2 em { font-style: italic; color: var(--gold-2); }
.contact-lead p { color: var(--muted); max-width: 42ch; }
.contact-methods { margin-top: 34px; display: flex; flex-direction: column; gap: 4px; }
.cm { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line); }
.cm:last-child { border-bottom: 1px solid var(--line); }
.cm .cm-ic { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold); flex: none; }
.cm .cm-ic svg { width: 19px; height: 19px; }
.cm .cm-t { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.cm .cm-v { font-size: 16px; color: var(--text); }
.cm:hover .cm-v { color: var(--gold-2); }

.form { background: rgba(23,23,28,.7); backdrop-filter: blur(10px); border: 1px solid var(--line); border-radius: 12px; padding: clamp(26px, 3vw, 38px); }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--ink); border: 1px solid var(--line); border-radius: 6px;
  padding: 13px 15px; color: var(--text); font: inherit; font-size: 15px; transition: border-color .25s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a49f95' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; }
.form .fineprint { font-size: 12.5px; color: var(--muted-2); margin-top: 14px; text-align: center; }
.form-note { font-size: 13.5px; padding: 12px 14px; border-radius: 6px; margin-top: 14px; display: none; }
.form-note.ok { display: block; background: var(--gold-soft); color: var(--gold-2); border: 1px solid rgba(201,162,75,.4); }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer { border-top: 1px solid var(--line); padding-block: 60px 34px; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; align-items: flex-start; }
.footer .brand { font-size: 24px; margin-bottom: 14px; }
.footer-tag { color: var(--muted); max-width: 34ch; font-size: 14.5px; }
.footer-cols { display: flex; gap: clamp(40px, 8vw, 90px); flex-wrap: wrap; }
.footer-col h4 { font-family: var(--sans); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 16px; font-weight: 600; }
.footer-col a, .footer-col p { display: block; color: var(--muted); font-size: 14.5px; margin-bottom: 10px; transition: color .25s; }
.footer-col a:hover { color: var(--gold-2); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; margin-top: 50px; padding-top: 26px; border-top: 1px solid var(--line-soft); color: var(--muted-2); font-size: 13px; }
.footer-badges { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-badges span { display: inline-flex; align-items: center; gap: 8px; }
.footer-badges span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* ===========================================================
   REVEAL ANIMATION
   =========================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .marquee-track, .scroll-cue::after { animation: none; }
}

/* ===========================================================
   MOBILE MENU PANEL
   =========================================================== */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: rgba(9,9,11,.98); backdrop-filter: blur(8px);
  display: flex; flex-direction: column; justify-content: center; gap: 8px; padding: 0 var(--gutter);
  opacity: 0; pointer-events: none; transform: translateY(-12px); transition: .4s var(--ease);
}
.nav-open .mobile-menu { opacity: 1; pointer-events: auto; transform: none; }
.mobile-menu a { font-family: var(--serif); font-size: 34px; padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .btn { margin-top: 26px; }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .nav-cta .btn { display: none; }
  .events-grid { grid-template-columns: 1fr 1fr; }
  .ev-card.big, .ev-card.small, .ev-card.wide { grid-column: span 1; min-height: 300px; }
  .gallery { columns: 2; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .split, .travel-wrap, .contact-grid { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media { aspect-ratio: 3/4; max-height: 70vh; }
  .stats, .steps, .packages, .quotes { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .form .row { grid-template-columns: 1fr; }
  .travel-visual { max-width: 300px; margin-inline: auto; }
  .footer-top { flex-direction: column; }
  .hero-inner { padding-top: 100px; }
}
