/* ============================================================
   REBOOT 2026 — Camp Navarro
   Premium dark, cinematic, redwood. Hand-built CSS.
   ============================================================ */

:root {
  /* warm near-black stone */
  --bg:        #0a0908;
  --bg-2:      #100e0c;
  --surface:   #16130f;
  --surface-2: #1d1813;
  --line:      rgba(245, 240, 232, 0.10);
  --line-2:    rgba(245, 240, 232, 0.06);

  /* text */
  --text:      #f4efe7;
  --muted:     #b3aa9c;
  --muted-2:   #8a8275;

  /* gold / amber accent (redwood-lit) */
  --gold:      #e0a93d;
  --gold-2:    #c98c2a;
  --gold-soft: rgba(224, 169, 61, 0.14);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: 1180px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

/* ---- film grain ---- */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: 0.045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- shared type ---- */
.eyebrow, .section-label {
  font-family: "Outfit", sans-serif;
  font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
}
.section-label { color: var(--muted-2); }

h1, h2, h3 { font-family: "Outfit", sans-serif; font-weight: 600; letter-spacing: -0.02em; line-height: 1.04; }
em { font-family: "Fraunces", Georgia, serif; font-style: italic; font-weight: 400; letter-spacing: 0; }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: "Outfit", sans-serif; font-weight: 500; font-size: 15px;
  padding: 13px 24px; border-radius: 100px; cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease),
              border-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  border: 1px solid transparent; white-space: nowrap;
}
.btn--gold {
  background: var(--gold); color: #1a1407;
  box-shadow: 0 0 0 rgba(224,169,61,0);
}
.btn--gold:hover {
  background: #f0bb4f;
  box-shadow: 0 10px 40px -8px rgba(224,169,61,0.45);
  transform: translateY(-1px);
}
.btn--ghost {
  background: rgba(255,255,255,0.02); color: var(--text);
  border-color: var(--line);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { border-color: rgba(245,240,232,0.28); background: rgba(255,255,255,0.05); }
.btn--lg { padding: 17px 36px; font-size: 16.5px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Outfit", sans-serif; font-weight: 500; color: var(--gold);
  transition: gap .25s var(--ease);
}
.link-arrow svg { width: 18px; height: 18px; }
.link-arrow:hover { gap: 13px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10,9,8,0.72);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line-2);
}
.nav__inner {
  max-width: var(--wrap); margin: 0 auto; padding: 18px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__brand { display: flex; align-items: center; gap: 9px; font-family: "Outfit", sans-serif; font-weight: 600; }
.nav__mark { color: var(--gold); font-size: 18px; transform: rotate(-20deg); }
.nav__word { letter-spacing: 0.14em; font-size: 16px; }
.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-size: 14.5px; color: var(--muted); position: relative;
  transition: color .25s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; padding-top: 104px; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  /* fallback cinematic forest gradient if image missing */
  background-color: #0c1410;
  background-image:
    radial-gradient(120% 80% at 70% 0%, #243026 0%, transparent 55%),
    radial-gradient(100% 90% at 20% 100%, #0a0f0b 0%, transparent 60%),
    linear-gradient(180deg, #11180f 0%, #080a07 100%);
  transform: scale(1.08); will-change: transform;
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    /* left scrim — anchors the text block */
    linear-gradient(96deg, rgba(8,8,7,0.86) 0%, rgba(8,8,7,0.6) 26%, rgba(8,8,7,0.2) 52%, transparent 74%),
    /* vertical scrim — darker top (nav) + darker bottom (meta/CTAs) */
    linear-gradient(180deg, rgba(8,8,7,0.5) 0%, rgba(8,8,7,0.1) 24%, rgba(8,8,7,0.4) 54%, rgba(8,8,7,0.88) 82%, var(--bg) 100%),
    radial-gradient(120% 90% at 14% 92%, rgba(8,8,7,0.8), transparent 62%);
}
.hero__rays {
  position: absolute; inset: 0; mix-blend-mode: screen; opacity: 0.5;
  background: conic-gradient(from 200deg at 75% -10%,
    transparent 0deg, rgba(224,169,61,0.10) 18deg, transparent 40deg,
    rgba(224,169,61,0.06) 60deg, transparent 90deg);
}
.hero__content { position: relative; z-index: 2; max-width: var(--wrap); margin: 0 auto; padding: 0 28px 11vh; width: 100%; }
.eyebrow { display: block; margin-bottom: 22px; font-size: 16.25px; text-shadow: 0 1px 14px rgba(0,0,0,0.6); }
.hero__title {
  font-size: clamp(2.7rem, 6.4vw, 5.6rem);
  letter-spacing: -0.035em; margin-bottom: 26px;
  text-shadow: 0 2px 60px rgba(0,0,0,0.5);
}
.hero__sub { max-width: 540px; font-size: clamp(1rem, 1.4vw, 1.18rem); color: #e3ddd1; margin-bottom: 38px; text-shadow: 0 1px 20px rgba(0,0,0,0.55); }

.hero__meta { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; margin-bottom: 40px; }
.meta { display: flex; flex-direction: column; gap: 3px; }
.meta__k { font-size: 12.65px; letter-spacing: 0.14em; text-transform: uppercase; color: #c9c1b2; }
.meta__v { font-family: "Outfit", sans-serif; font-size: 17.6px; font-weight: 500; text-shadow: 0 1px 16px rgba(0,0,0,0.5); }
.meta__div { width: 1px; height: 30px; background: var(--line); }

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%); z-index: 3;
  width: 26px; height: 42px; border: 1px solid var(--line); border-radius: 20px;
  display: flex; justify-content: center; padding-top: 8px;
}
.hero__scroll span { width: 3px; height: 8px; border-radius: 3px; background: var(--gold); animation: scroll 1.8s var(--ease) infinite; }
@keyframes scroll { 0% { opacity: 0; transform: translateY(0);} 40% {opacity:1;} 100% { opacity: 0; transform: translateY(14px);} }

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto { padding: clamp(90px, 14vh, 180px) 0; border-bottom: 1px solid var(--line-2); }
.manifesto .section-label { display: block; margin-bottom: 36px; }
.manifesto__line {
  font-size: clamp(1.6rem, 3.4vw, 3rem); font-weight: 500; letter-spacing: -0.02em;
  line-height: 1.24; max-width: 16ch; color: var(--text);
}
.manifesto__line { max-width: none; }
.manifesto__line em { color: var(--gold); }
.manifesto__foot { margin-top: 38px; max-width: 560px; color: var(--muted); font-size: 1.1rem; }

/* ============================================================
   STATS
   ============================================================ */
.stats { padding: clamp(60px, 9vh, 110px) 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { display: flex; flex-direction: column; gap: 8px; padding: 4px 0; }
.stat__num {
  font-family: "Outfit", sans-serif; font-weight: 600;
  font-size: clamp(2.6rem, 5vw, 4rem); letter-spacing: -0.04em; line-height: 1;
  background: linear-gradient(180deg, #fff 20%, #c2b9a8 120%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat__label { color: var(--muted-2); font-size: 14.5px; letter-spacing: 0.01em; }

/* ============================================================
   SECTION HEAD
   ============================================================ */
.head { margin-bottom: 56px; }
.head--center { text-align: center; max-width: 680px; margin-left: auto; margin-right: auto; }
.head .section-label { display: block; margin-bottom: 18px; }
.head__title { font-size: clamp(1.9rem, 3.8vw, 3.2rem); letter-spacing: -0.03em; }
.head__sub { margin-top: 20px; color: var(--muted); font-size: 1.08rem; }

/* ============================================================
   EXPERIENCE / BENTO
   ============================================================ */
.experience { padding: clamp(70px, 11vh, 140px) 0; }
.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 248px; gap: 18px; }
.card {
  position: relative; overflow: hidden; border-radius: 20px;
  border: 1px solid var(--line); background: var(--surface);
  padding: 30px; display: flex; flex-direction: column; justify-content: flex-end;
  transition: border-color .4s var(--ease), transform .4s var(--ease);
}
.card:hover { border-color: rgba(224,169,61,0.35); transform: translateY(-3px); }
.card--tall { grid-row: span 2; }
.card--wide { grid-column: span 2; }
.card[style*="--img"]::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: var(--img); background-size: cover; background-position: center;
  transition: transform .8s var(--ease); transform: scale(1.02);
}
.card[style*="--img"]:hover::before { transform: scale(1.08); }
.card__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(8,7,6,0.1) 0%, rgba(8,7,6,0.55) 55%, rgba(8,7,6,0.92) 100%);
}
.card__body { position: relative; z-index: 2; }
.ico {
  width: 42px; height: 42px; border-radius: 11px; margin-bottom: 16px;
  display: grid; place-items: center; color: var(--gold);
  background: var(--gold-soft); border: 1px solid rgba(224,169,61,0.22);
}
.ico svg { width: 21px; height: 21px; }
.card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 14.5px; line-height: 1.55; max-width: 42ch; }
.card--tall p, .card--wide p { color: #d8d0c2; }

/* ============================================================
   GUESTS
   ============================================================ */
.guests { padding: clamp(70px, 11vh, 140px) 0; border-top: 1px solid var(--line-2); }
.guests__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.guests__title { font-size: clamp(2rem, 4.4vw, 3.6rem); margin: 18px 0 26px; }
.guests__title em { color: var(--gold); }
.guests__text { color: var(--muted); margin-bottom: 18px; max-width: 46ch; }
.guests__text strong { color: var(--text); font-weight: 500; }
.guests__media { position: relative; }
.guests__img {
  aspect-ratio: 3/2; border-radius: 22px; background-size: cover; background-position: center;
  border: 1px solid var(--line);
  background-color: #14110d;
  background-image: radial-gradient(80% 60% at 50% 30%, #2a2118, #0c0a07);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.7);
}
.guests__media figcaption {
  margin-top: 14px; font-size: 13px; color: var(--muted-2); letter-spacing: 0.02em;
}

/* ============================================================
   LINEUP — this year's special guests
   ============================================================ */
.lineup { padding: clamp(16px, 3vh, 40px) 0 clamp(70px, 11vh, 130px); }
.lineup__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.lineup__card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 20px;
  overflow: hidden; padding: 18px;
  transition: border-color .4s var(--ease), transform .4s var(--ease);
}
.lineup__card:hover { border-color: rgba(224,169,61,0.4); transform: translateY(-4px); }
.lineup__photo { aspect-ratio: 4/5; border-radius: 14px; overflow: hidden; margin-bottom: 18px; background: var(--surface-2); }
.lineup__photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  filter: grayscale(1) contrast(1.03);
  transition: filter .5s var(--ease), transform .6s var(--ease);
}
.lineup__card:hover .lineup__photo img { filter: grayscale(0); transform: scale(1.04); }
.lineup__wordmark { font-family: "Outfit", sans-serif; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; font-size: 12px; color: var(--gold); }
.lineup__name { font-family: "Outfit", sans-serif; font-weight: 600; font-size: 1.18rem; letter-spacing: -0.01em; margin-top: 5px; }
.lineup__role { color: var(--muted-2); font-size: 13.5px; margin-top: 2px; }
.lineup__impact { color: #d8d0c2; font-size: 13.5px; line-height: 1.45; margin-top: 12px; }
@media (max-width: 980px) { .lineup__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .lineup__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

/* ============================================================
   THE PLACE
   ============================================================ */
.place { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.place__media { position: absolute; inset: 0; z-index: 0; }
.place__img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  background-color: #0b120c;
  background-image: linear-gradient(160deg, #16201500 0%, #0a0f0a 90%), radial-gradient(70% 90% at 80% 10%, #20301f, transparent 60%);
}
.place__veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,8,6,0.92) 0%, rgba(8,8,6,0.6) 45%, rgba(8,8,6,0.2) 100%); }
.place__content { position: relative; z-index: 2; }
.place__title { font-size: clamp(2.1rem, 4.8vw, 3.8rem); margin: 18px 0 24px; }
.place__text { max-width: 480px; color: #d6cebf; font-size: 1.12rem; margin-bottom: 40px; }
.place__facts { display: flex; flex-direction: column; gap: 14px; }
.place__facts div { color: var(--muted); border-left: 2px solid rgba(224,169,61,0.5); padding-left: 16px; }
.place__facts span { color: var(--text); font-family: "Outfit", sans-serif; font-weight: 600; }
.place__clients { margin-top: 44px; }
.place__clients-label { display: block; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 16px; }
.place__clients .logos { display: flex; flex-wrap: wrap; gap: 10px; }
.place__clients .logos span {
  font-family: "Outfit", sans-serif; font-weight: 500; font-size: 14px;
  color: #d6cebf; border: 1px solid var(--line); border-radius: 100px;
  padding: 8px 16px; background: rgba(255,255,255,0.02);
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.place__clients .logos span:hover { border-color: rgba(224,169,61,0.4); color: var(--text); }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners { padding: clamp(40px, 7vh, 90px) 0; }
.partners__card {
  position: relative; overflow: hidden;
  border: 1px solid rgba(224,169,61,0.28); border-radius: 28px;
  padding: clamp(44px, 6vw, 80px); text-align: center;
  background: linear-gradient(180deg, rgba(224,169,61,0.06), rgba(224,169,61,0.01)), var(--surface);
}
.partners__glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(620px 280px at 50% -10%, rgba(224,169,61,0.22), transparent 65%);
}
.partners__card > *:not(.partners__glow) { position: relative; z-index: 1; }
.partners__card .section-label { display: block; margin-bottom: 18px; }
.partners__title { font-size: clamp(1.9rem, 4.2vw, 3.2rem); letter-spacing: -0.03em; margin-bottom: 22px; }
.partners__text { max-width: 560px; margin: 0 auto 40px; color: var(--muted); font-size: 1.08rem; }
.partners__feats {
  display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 44px; text-align: left;
}
.partners__feats > div {
  display: flex; align-items: center; gap: 12px; max-width: 230px;
  font-size: 14.5px; color: #d6cebf; line-height: 1.4;
}
.partners__feats .ico { width: 38px; height: 38px; flex-shrink: 0; margin: 0; }
.partners__note { margin-top: 22px; font-size: 13.5px; color: var(--muted-2); }
.partners__note strong { color: var(--text); font-weight: 500; }

@media (max-width: 760px) {
  .partners__feats { flex-direction: column; align-items: flex-start; max-width: 340px; margin-left: auto; margin-right: auto; }
  .partners__feats > div { max-width: none; }
}

/* ============================================================
   TICKETS
   ============================================================ */
.tickets { padding: clamp(80px, 12vh, 150px) 0; }
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.tier {
  border: 1px solid var(--line); border-radius: 22px; padding: 34px 30px;
  background: var(--surface); display: flex; flex-direction: column;
  transition: border-color .4s var(--ease), transform .4s var(--ease), background .4s var(--ease);
}
.tier:hover { transform: translateY(-4px); border-color: rgba(245,240,232,0.2); }
.tier--feature {
  background: linear-gradient(180deg, rgba(224,169,61,0.08), rgba(224,169,61,0.01));
  border-color: rgba(224,169,61,0.4);
}
.tier--feature:hover { border-color: rgba(224,169,61,0.6); }
.tier__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.tier__head h3 { font-size: 1.3rem; }
.tier__tag {
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted-2); border: 1px solid var(--line); border-radius: 100px; padding: 5px 11px;
}
.tier__tag--gold { color: var(--gold); border-color: rgba(224,169,61,0.4); background: var(--gold-soft); }
.tier__price { font-family: "Outfit", sans-serif; line-height: 1; margin-bottom: 14px; }
.tier__price span { font-size: 3rem; font-weight: 600; letter-spacing: -0.04em; }
.tier__price small { color: var(--muted-2); font-size: 0.95rem; margin-left: 6px; font-weight: 400; }
.tier__note { color: var(--muted); font-size: 14px; margin-bottom: 22px; min-height: 40px; }
.tier__list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; flex: 1; }
.tier__list li { position: relative; padding-left: 26px; color: var(--muted); font-size: 14.5px; }
.tier__list li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 14px; height: 8px;
  border-left: 1.6px solid var(--gold); border-bottom: 1.6px solid var(--gold);
  transform: rotate(-45deg);
}
.tier__cta { width: 100%; }
.tickets__fine { text-align: center; margin-top: 34px; color: var(--muted-2); font-size: 14px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { padding: clamp(60px, 9vh, 120px) 0 clamp(80px, 12vh, 150px); overflow: hidden; }
.gallery__track {
  display: flex; gap: 16px; padding: 0 28px; overflow-x: auto;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  max-width: calc(var(--wrap) + 56px); margin: 0 auto;
}
.gallery__track::-webkit-scrollbar { height: 0; }
.gallery__track figure {
  flex: 0 0 clamp(280px, 42vw, 460px); aspect-ratio: 4/3; border-radius: 18px;
  background-size: cover; background-position: center; scroll-snap-align: start;
  border: 1px solid var(--line);
  background-color: #14110d;
  background-image: radial-gradient(70% 70% at 40% 30%, #241c13, #0c0a07);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: clamp(70px, 11vh, 140px) 0; border-top: 1px solid var(--line-2); }
.faq__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 70px; align-items: start; }
.faq__intro .section-label { display: block; margin-bottom: 18px; }
.faq__contact { margin-top: 24px; color: var(--muted); }
.faq__contact a { color: var(--gold); }
.faq__list details {
  border-bottom: 1px solid var(--line); padding: 6px 0;
}
.faq__list summary {
  list-style: none; cursor: pointer; padding: 22px 0;
  font-family: "Outfit", sans-serif; font-size: 1.18rem; font-weight: 500;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  transition: color .25s var(--ease);
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary:hover { color: var(--gold); }
.faq__plus { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq__plus::before, .faq__plus::after {
  content: ""; position: absolute; background: var(--gold); transition: transform .3s var(--ease);
}
.faq__plus::before { left: 0; top: 7px; width: 16px; height: 2px; }
.faq__plus::after { left: 7px; top: 0; width: 2px; height: 16px; }
details[open] .faq__plus::after { transform: scaleY(0); }
.faq__list details p {
  color: var(--muted); padding: 0 0 24px; max-width: 60ch; line-height: 1.6;
  animation: fadeUp .4s var(--ease);
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(-6px);} to { opacity: 1; transform: none;} }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final { position: relative; min-height: 78vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.final__media { position: absolute; inset: 0; z-index: 0; }
.final__img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  background-color: #120b06;
  background-image: radial-gradient(60% 70% at 50% 80%, #3a2a12, transparent 60%), linear-gradient(180deg, #0a0806, #0a0806);
}
.final__veil { position: absolute; inset: 0; background: radial-gradient(70% 80% at 50% 50%, rgba(10,8,6,0.4), rgba(10,8,6,0.85)); }
.final__content { position: relative; z-index: 2; padding: 60px 28px; }
.final__title { font-size: clamp(2.6rem, 6vw, 5rem); letter-spacing: -0.04em; margin-bottom: 20px; }
.final__sub { color: var(--muted); margin-bottom: 38px; font-size: 1.1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); padding: 70px 0 40px; background: var(--bg-2); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer__brand p { color: var(--muted-2); font-size: 14px; margin-top: 16px; line-height: 1.6; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__h { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 4px; }
.footer__col a { color: var(--muted); font-size: 14.5px; transition: color .25s var(--ease); }
.footer__col a:hover { color: var(--gold); }
.footer__sponsor { font-family: "Outfit", sans-serif; font-weight: 600; font-size: 1.1rem; }
.footer__muted { color: var(--muted-2); font-size: 13px; }
.footer__base {
  display: flex; justify-content: space-between; padding-top: 28px;
  border-top: 1px solid var(--line-2); color: var(--muted-2); font-size: 13px; gap: 16px; flex-wrap: wrap;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .card--wide { grid-column: span 2; }
  .card--tall { grid-row: span 1; }
  .guests__grid, .faq__grid { grid-template-columns: 1fr; gap: 44px; }
  .tiers { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .nav__cta { display: none; }
  .hero__content { padding-bottom: 13vh; }
  .hero__meta { gap: 16px; }
  .meta__div { display: none; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .card--wide { grid-column: span 1; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions { width: 100%; }
  .hero__actions .btn { flex: 1; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
