/* ============================================================
   KULULOO LIVE — Stylesheet
   ------------------------------------------------------------
   Structure:
   0.  @font-face (local FUP Begin)
   1.  Design tokens (CSS variables)
   2.  Reset & base
   3.  Layout helpers
   4.  Buttons & shared UI
   5.  Header / nav
   6.  Hero
   7.  How it works
   8.  Guest actions
   9.  Live screen
   10. Opening slideshow
   11. Media gallery + lightbox
   12. After the event
   13. AI & magnets
   14. Packages
   15. FAQ
   16. Final CTA + form
   17. Footer
   18. Sticky mobile CTA
   19. Responsive (tablet / desktop)
   20. Motion preferences
   ============================================================ */

/* ---------- 0. Fonts ---------- */
@font-face {
  font-family: "FUP Begin";
  src: url("../fonts/fup-begin-light.woff2") format("woff2"),
       url("../fonts/fup-begin-light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FUP Begin";
  src: url("../fonts/fup-begin-regular.woff2") format("woff2"),
       url("../fonts/fup-begin-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FUP Begin";
  src: url("../fonts/fup-begin-medium.woff2") format("woff2"),
       url("../fonts/fup-begin-medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FUP Begin";
  src: url("../fonts/fup-begin-semibold.woff2") format("woff2"),
       url("../fonts/fup-begin-semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FUP Begin";
  src: url("../fonts/fup-begin-bold.woff2") format("woff2"),
       url("../fonts/fup-begin-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FUP Begin";
  src: url("../fonts/fup-begin-extrabold.woff2") format("woff2"),
       url("../fonts/fup-begin-extrabold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ---------- 1. Design tokens ---------- */
:root {
  /* Brand palette */
  --green-deep: #173F2F;
  --green-mid: #2F7757;
  --green-accent: #48B889;
  --cream: #FCF7F0;
  --white: #FFFFFF;
  --gold: #D4AE45;
  --mint: #D1E8DD;
  --text-secondary: #6E8374;

  /* Derived / functional */
  --ink: #173F2F;                 /* primary text on light */
  --ink-soft: #34503F;
  --line: rgba(23, 63, 47, 0.12); /* hairline borders */
  --line-strong: rgba(23, 63, 47, 0.22);
  --surface: var(--white);
  --surface-warm: var(--cream);
  --gold-soft: rgba(212, 174, 69, 0.16);
  --shadow-sm: 0 2px 10px rgba(23, 63, 47, 0.06);
  --shadow-md: 0 12px 34px rgba(23, 63, 47, 0.10);
  --shadow-lg: 0 26px 60px rgba(23, 63, 47, 0.16);

  /* Typography */
  --font: "FUP Begin", -apple-system, "Segoe UI", Arial, sans-serif;

  /* Radii (soft, never sharp) */
  --r-xs: 10px;
  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 36px;
  --r-pill: 999px;

  /* Spacing scale */
  --space-1: 6px;
  --space-2: 12px;
  --space-3: 18px;
  --space-4: 26px;
  --space-5: 38px;
  --space-6: 56px;
  --space-7: 80px;
  --space-8: 112px;

  /* Layout */
  --maxw: 1200px;
  --gutter: 20px;
  --header-h: 68px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 0.45s;
}

/* ---------- 2. Reset & base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
video { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: -0.01em;
}

p { margin: 0; }

ul { margin: 0; padding: 0; list-style: none; }

/* Visible, consistent focus for keyboard users */
:focus-visible {
  outline: 3px solid var(--green-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ---------- 3. Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--space-6); }
.section--tight { padding-block: var(--space-5); }

.section-head {
  max-width: 640px;
  margin-bottom: var(--space-5);
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.kicker {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--green-mid);
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.section-title {
  font-size: clamp(1.75rem, 4.4vw, 2.7rem);
  color: var(--green-deep);
}

.section-sub {
  margin-top: var(--space-3);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 60ch;
}

.eyebrow-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
}
.eyebrow-line::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  transition: transform var(--dur) var(--ease),
              background-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              color var(--dur) var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--green-deep);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--green-mid); box-shadow: var(--shadow-md); }

.btn--gold {
  background: var(--gold);
  color: var(--green-deep);
}
.btn--gold:hover { background: #c69f39; }

.btn--ghost {
  background: transparent;
  color: var(--green-deep);
  border: 1.5px solid var(--line-strong);
}
.btn--ghost:hover {
  border-color: var(--green-mid);
  background: rgba(47, 119, 87, 0.06);
}

.btn--light {
  background: var(--cream);
  color: var(--green-deep);
}
.btn--light:hover { background: #fff; }

.btn--block { width: 100%; }
.btn--lg { min-height: 58px; padding: 0 32px; font-size: 1.05rem; }

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: var(--r-pill);
}

/* Small SVG icon sizing */
.i { width: 22px; height: 22px; flex: none; }
.i-sm { width: 18px; height: 18px; flex: none; }

/* ---------- 5. Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(252, 247, 240, 0.86);
  -webkit-backdrop-filter: saturate(1.2) blur(10px);
  backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: 0.02em;
  color: var(--green-deep);
}
.brand-mark {
  width: 26px; height: 26px;
  flex: none;
  color: var(--green-mid);
}
.brand span { color: var(--gold); }

.nav {
  display: none;
  align-items: center;
  gap: var(--space-4);
}
.nav a {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding-block: 6px;
  transition: color var(--dur) var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--dur) var(--ease);
}
.nav a:hover { color: var(--green-deep); }
.nav a:hover::after { transform: scaleX(1); }

.header-cta { display: none; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  color: var(--green-deep);
  border: 1px solid var(--line);
}
.nav-toggle .i { width: 24px; height: 24px; }

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--cream);
  transform: translateY(-100%);
  transition: transform var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
  padding: var(--gutter);
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateY(0);
  visibility: visible;
}
.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: var(--space-4);
}
.mobile-menu nav a {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-deep);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: var(--space-5); }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(209, 232, 221, 0.55) 0%, rgba(209, 232, 221, 0) 55%),
    var(--cream);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
}
.hero-copy { max-width: 620px; }
.hero h1 {
  font-size: clamp(2.1rem, 8vw, 3.6rem);
  color: var(--green-deep);
  margin-top: var(--space-2);
}
.hero-lead {
  margin-top: var(--space-3);
  font-size: clamp(1.05rem, 3vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 46ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-top: var(--space-4);
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 500;
}
.hero-trust .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* Hero visual composition */
.hero-visual { position: relative; padding-bottom: 40px; }
.hero-note {
  margin-top: 52px; /* clears the floating phone / live cards below the stage */
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 500;
}

/* The venue big screen (heart of product) */
.stage {
  position: relative;
  border-radius: var(--r-lg);
  background: var(--green-deep);
  padding: 16px 16px 20px;
  box-shadow: var(--shadow-lg);
}
.stage::after { /* subtle floor reflection base */
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -14px;
  height: 22px;
  background: radial-gradient(60% 100% at 50% 0%, rgba(23,63,47,0.28), rgba(23,63,47,0));
  filter: blur(2px);
  z-index: -1;
}
.screen {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: #0f2c20;
  border: 1px solid rgba(255,255,255,0.08);
}
.screen-live-badge {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: rgba(23, 63, 47, 0.72);
  color: var(--cream);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-accent);
  box-shadow: 0 0 0 0 rgba(72, 184, 137, 0.6);
  animation: livePulse 2s var(--ease) infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(72,184,137,0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(72,184,137,0); }
  100% { box-shadow: 0 0 0 0 rgba(72,184,137,0); }
}
.screen-eventname {
  position: absolute;
  bottom: 12px;
  inset-inline-end: 12px;
  z-index: 4;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: rgba(23, 63, 47, 0.68);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 600;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

/* Rotating content layers inside the screen */
.screen-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s var(--ease);
}
.screen-layer.is-active { opacity: 1; }
.screen-layer img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.screen-fallback {
  width: 100%; height: 100%;
  display: grid;
  place-content: center;
  gap: 10px;
  text-align: center;
  color: var(--mint);
  background:
    radial-gradient(80% 80% at 50% 30%, rgba(47,119,87,0.5), rgba(15,44,32,0)),
    #0f2c20;
  padding: 24px;
}
.screen-fallback .i { width: 34px; height: 34px; margin-inline: auto; color: var(--green-accent); }
.screen-msg {
  width: 100%; height: 100%;
  display: grid;
  place-content: center;
  padding: 8% 12%;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(47,119,87,0.35), rgba(15,44,32,0.15)),
    #12331f;
}
.screen-msg blockquote {
  margin: 0;
  color: var(--cream);
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  font-weight: 600;
  line-height: 1.4;
}
.screen-msg cite {
  display: block;
  margin-top: 14px;
  color: var(--mint);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 500;
}
.screen-video-flag {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.play-badge {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: rgba(252, 247, 240, 0.92);
  color: var(--green-deep);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
}
.play-badge .i { width: 26px; height: 26px; margin-inline-start: 3px; }

/* Floating phone entering the experience */
.phone {
  position: absolute;
  inset-inline-start: -4px;
  bottom: -22px;
  width: 27%;
  max-width: 122px;
  aspect-ratio: 9 / 19;
  border-radius: 20px;
  background: var(--green-deep);
  padding: 6px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-4deg);
  z-index: 5;
}
.phone-screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
}
.phone-screen img { width: 100%; height: 100%; object-fit: cover; }
.phone-notch {
  position: absolute;
  top: 7px; left: 50%;
  transform: translateX(-50%);
  width: 34%; height: 5px;
  border-radius: 3px;
  background: rgba(23,63,47,0.35);
  z-index: 2;
}

/* Decorative (non-scannable) QR chip */
.qr-chip {
  position: absolute;
  inset-inline-end: -8px;
  top: 8%;
  z-index: 6;
  background: var(--white);
  padding: 10px;
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-md);
  text-align: center;
  transform: rotate(3deg);
}
.qr-chip svg { width: 62px; height: 62px; display: block; }
.qr-chip small {
  display: block;
  margin-top: 6px;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

/* Small live content cards floating near the stage */
.live-cards {
  position: absolute;
  inset-inline-end: 5%;
  bottom: -16px;
  display: grid;
  gap: 8px;
  z-index: 6;
}
.live-card {
  background: var(--white);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-md);
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-deep);
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 190px;
}
.live-card .tag {
  width: 26px; height: 26px;
  border-radius: 8px;
  display: grid; place-items: center;
  flex: none;
  color: var(--green-mid);
  background: var(--mint);
}
.live-card .tag .i-sm { color: var(--green-mid); }

/* ---------- 7. How it works ---------- */
.steps {
  display: grid;
  gap: var(--space-3);
}
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.step-index {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
}
.step-visual {
  width: 68px; height: 68px;
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: var(--space-3);
  color: var(--green-mid);
  background: radial-gradient(circle at 30% 30%, var(--mint), rgba(209,232,221,0.4));
  border: 1px solid var(--line);
}
.step-visual .i { width: 30px; height: 30px; }
.step h3 {
  font-size: 1.35rem;
  color: var(--green-deep);
  margin-top: 6px;
}
.step p {
  margin-top: 10px;
  color: var(--text-secondary);
}
.step-flow {
  position: absolute;
  inset-inline-end: var(--space-4);
  top: var(--space-4);
  color: var(--line-strong);
}
.step-flow .i { width: 26px; height: 26px; }

/* ---------- 8. Guest actions ---------- */
.actions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
.action-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.action-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}
.action-icon {
  width: 58px; height: 58px;
  border-radius: 18px;
  display: grid; place-items: center;
  color: var(--green-deep);
  background: var(--gold-soft);
  margin-bottom: var(--space-3);
}
.action-icon .i { width: 28px; height: 28px; }
.action-card h3 { font-size: 1.2rem; color: var(--green-deep); }
.action-card p { margin-top: 8px; color: var(--text-secondary); }

/* ---------- 9. Live screen section ---------- */
.livescreen {
  background: var(--green-deep);
  color: var(--cream);
  border-radius: 0;
}
.livescreen .section-title { color: var(--white); }
.livescreen .section-sub { color: var(--mint); }
.livescreen .kicker { color: var(--green-accent); }

.livescreen-grid {
  display: grid;
  gap: var(--space-5);
  align-items: center;
}

.lsp {
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-lg);
  padding: 14px;
  box-shadow: var(--shadow-lg);
}
.lsp-screen {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: #0d2519;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  padding: 10px;
}
.lsp-tile {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #12331f;
  border: 1px solid rgba(255,255,255,0.06);
  min-height: 0;
}
.lsp-tile img { width: 100%; height: 100%; object-fit: cover; }
.lsp-lead { grid-row: 1 / span 2; }
.lsp-tile.is-msg {
  display: grid;
  place-content: center;
  text-align: center;
  padding: 12px;
  background: linear-gradient(180deg, rgba(47,119,87,0.4), rgba(15,44,32,0.2)), #12331f;
}
.lsp-tile.is-msg p {
  color: var(--cream);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
}
.lsp-tile.is-msg span {
  display: block;
  margin-top: 8px;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 500;
}
.lsp-tile .play-badge { width: 48px; height: 48px; position: absolute; inset: 0; margin: auto; }
.lsp-tile .play-badge .i { width: 20px; height: 20px; }
.lsp-fallback {
  display: grid;
  place-content: center;
  gap: 8px;
  color: var(--mint);
  text-align: center;
  padding: 10px;
}
.lsp-fallback .i { width: 26px; height: 26px; margin-inline: auto; color: var(--green-accent); }
.lsp-fallback span { font-size: 0.8rem; }

.lsp-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-inline: 4px;
}
.lsp-now {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cream);
}
.lsp-eventname {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--mint);
}
.lsp-qr {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.lsp-qr svg { width: 34px; height: 34px; }

.livescreen-points { display: grid; gap: var(--space-3); }
.ls-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ls-point .i {
  color: var(--green-accent);
  margin-top: 3px;
  flex: none;
}
.ls-point h4 { color: var(--white); font-size: 1.1rem; }
.ls-point p { color: var(--mint); margin-top: 4px; }

/* ---------- 10. Opening slideshow ---------- */
.opening-grid {
  display: grid;
  gap: var(--space-5);
  align-items: center;
}
.opening-mock {
  position: relative;
  border-radius: var(--r-lg);
  background: var(--green-deep);
  padding: 16px;
  box-shadow: var(--shadow-lg);
}
.opening-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid rgba(212,174,69,0.4);
}
.opening-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s var(--ease), transform 6s linear;
}
.opening-slide.is-active { opacity: 1; transform: scale(1); }
.opening-slide img { width: 100%; height: 100%; object-fit: cover; }
.opening-slide-fallback {
  width: 100%; height: 100%;
  display: grid; place-content: center; gap: 10px;
  text-align: center;
  color: var(--mint);
  background: radial-gradient(70% 70% at 50% 40%, rgba(47,119,87,0.5), rgba(15,44,32,0)), #0f2c20;
}
.opening-slide-fallback .i { width: 32px; height: 32px; margin-inline: auto; color: var(--gold); }
.opening-caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 30px 20px 16px;
  background: linear-gradient(180deg, rgba(15,44,32,0), rgba(15,44,32,0.72));
  color: var(--cream);
  text-align: center;
}
.opening-caption .frame-line {
  width: 40px; height: 2px;
  background: var(--gold);
  margin: 0 auto 10px;
  border-radius: 2px;
}
.opening-caption strong {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.opening-dots {
  display: flex;
  gap: 7px;
  justify-content: center;
  margin-top: 14px;
}
.opening-dots i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(252,247,240,0.35);
  transition: background var(--dur) var(--ease), width var(--dur) var(--ease);
}
.opening-dots i.on { background: var(--gold); width: 20px; border-radius: 4px; }

/* ---------- 11. Media gallery ---------- */
.gallery {
  columns: 1;
  column-gap: var(--space-3);
}
.media-item {
  break-inside: avoid;
  margin-bottom: var(--space-3);
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.media-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.media-thumb {
  position: relative;
  width: 100%;
  background: var(--mint);
  overflow: hidden;
}
.media-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ar-portrait { aspect-ratio: 3 / 4; }
.ar-landscape { aspect-ratio: 16 / 10; }
.ar-square { aspect-ratio: 1 / 1; }

.media-fallback {
  width: 100%; height: 100%;
  min-height: 180px;
  display: grid; place-content: center; gap: 8px;
  text-align: center;
  color: var(--green-mid);
  background: radial-gradient(70% 70% at 50% 35%, var(--mint), rgba(209,232,221,0.35));
}
.media-fallback .i { width: 30px; height: 30px; margin-inline: auto; }
.media-fallback span { font-size: 0.82rem; font-weight: 600; }

.media-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  background: linear-gradient(180deg, rgba(23,63,47,0) 45%, rgba(23,63,47,0.62));
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.media-item:hover .media-overlay,
.media-item:focus-within .media-overlay { opacity: 1; }
.media-overlay .media-title {
  color: var(--cream);
  font-weight: 600;
  font-size: 0.95rem;
}
.media-play {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  pointer-events: none;
}
.media-badge-type {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  background: rgba(252,247,240,0.92);
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.media-item.is-featured { break-inside: avoid; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(15, 30, 22, 0.86);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  padding: var(--gutter);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-stage {
  position: relative;
  width: min(960px, 96vw);
  max-height: 88vh;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-lg);
  transform: translateY(12px) scale(0.98);
  transition: transform var(--dur) var(--ease);
}
.lightbox.open .lightbox-stage { transform: translateY(0) scale(1); }
.lightbox-stage img,
.lightbox-stage video,
.lightbox-stage iframe {
  width: 100%;
  max-height: 88vh;
  display: block;
  border: 0;
}
.lightbox-stage .ratio-16-9 { aspect-ratio: 16 / 9; }
.lightbox-close {
  position: fixed;
  top: 16px;
  inset-inline-end: 16px;
  z-index: 92;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(252,247,240,0.95);
  color: var(--green-deep);
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
}
.lightbox-caption {
  position: absolute;
  inset-inline: 0; bottom: 0;
  padding: 26px 18px 16px;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.6));
  color: var(--cream);
  font-weight: 600;
}

/* ---------- 12. After the event ---------- */
.after-grid {
  display: grid;
  gap: var(--space-5);
  align-items: center;
}
/* Chat mockup (original interpretation, not a real brand UI) */
.chat-mock {
  background: linear-gradient(180deg, #E9EFE7, #DCE7DC);
  border-radius: var(--r-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  max-width: 420px;
}
.chat-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--line);
  margin-bottom: var(--space-3);
}
.chat-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green-mid);
  color: var(--cream);
  display: grid; place-items: center;
  font-weight: 700;
  flex: none;
}
.chat-avatar .i { width: 22px; height: 22px; }
.chat-name { font-weight: 700; color: var(--green-deep); }
.chat-status { font-size: 0.78rem; color: var(--text-secondary); }
.bubble {
  background: var(--white);
  border-radius: 16px 16px 16px 4px;
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
  max-width: 92%;
}
.bubble p { color: var(--ink-soft); font-size: 0.96rem; }
.bubble-card {
  margin-top: 12px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream);
}
.bubble-card .cover {
  aspect-ratio: 16 / 9;
  background: radial-gradient(70% 70% at 40% 30%, var(--mint), rgba(209,232,221,0.4));
  display: grid; place-items: center;
  color: var(--green-mid);
}
.bubble-card .cover .i { width: 28px; height: 28px; }
.bubble-card .cover img { width: 100%; height: 100%; object-fit: cover; }
.bubble-card .card-body { padding: 12px 14px; }
.bubble-card .card-body strong { color: var(--green-deep); font-size: 0.95rem; }
.bubble-card .card-body .btn { margin-top: 10px; min-height: 42px; font-size: 0.9rem; }
.bubble-time {
  display: block;
  margin-top: 6px;
  font-size: 0.72rem;
  color: var(--text-secondary);
  text-align: end;
}

/* Personal event page preview */
.event-page-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.event-page-cover {
  aspect-ratio: 16 / 8;
  position: relative;
  background: radial-gradient(80% 100% at 30% 20%, var(--green-mid), var(--green-deep));
  display: grid; place-content: center; text-align: center;
  color: var(--cream);
  padding: 20px;
}
.event-page-cover .frame-line { width: 40px; height: 2px; background: var(--gold); margin: 0 auto 12px; }
.event-page-cover strong { font-size: 1.3rem; }
.event-page-cover span { display:block; margin-top:6px; color: var(--mint); font-size: 0.85rem; }
.event-page-body { padding: var(--space-4); }
.event-page-tabs {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: var(--space-3);
}
.event-tab {
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: var(--mint);
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
}
.event-tab .i-sm { color: var(--green-mid); }
.event-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.event-mini-grid i {
  aspect-ratio: 1;
  border-radius: 10px;
  background: radial-gradient(70% 70% at 40% 30%, var(--mint), rgba(209,232,221,0.35));
  display: block;
}

/* ---------- 13. AI & magnets ---------- */
.ai-section { background: var(--surface-warm); }
.ai-grid {
  display: grid;
  gap: var(--space-5);
  align-items: center;
}
.ai-badge-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: var(--gold-soft);
  color: #977519;
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: var(--space-3);
}
.ai-badge-note .i-sm { color: var(--gold); }

.ai-visual {
  position: relative;
  display: grid;
  gap: var(--space-3);
}
.ai-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ai-frame {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.ai-frame .ai-label {
  padding: 8px 12px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.ai-frame .ai-img { aspect-ratio: 4 / 5; overflow: hidden; }
.ai-frame .ai-img img { width: 100%; height: 100%; object-fit: cover; }
.ai-frame.is-source .ai-img { filter: grayscale(0.15) saturate(0.85); }
.ai-frame .fallback {
  width: 100%; height: 100%;
  display: grid; place-content: center;
  color: var(--green-mid);
  background: radial-gradient(70% 70% at 50% 40%, var(--mint), rgba(209,232,221,0.35));
}
.ai-frame .fallback .i { width: 28px; height: 28px; }

/* Printed magnet mock */
.magnet-mock {
  position: relative;
  justify-self: center;
  width: min(300px, 80%);
  background: var(--white);
  padding: 12px;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gold);
  transform: rotate(-2deg);
}
.magnet-mock::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 2px solid var(--gold-soft);
  border-radius: 10px;
  pointer-events: none;
}
.magnet-inner {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: var(--mint);
}
.magnet-inner img { width: 100%; height: 100%; object-fit: cover; }
.magnet-caption {
  text-align: center;
  padding-top: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ---------- 14. Packages ---------- */
.packages { background: var(--cream); }
.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  align-items: stretch;
}
.pkg {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.pkg--mint { border-color: var(--mint); }
.pkg--deep { border-color: var(--green-deep); }
.pkg--accent { border-color: var(--green-accent); }
.pkg.is-highlight {
  box-shadow: var(--shadow-md);
  border-width: 2px;
}
.pkg.is-highlight::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 2px solid var(--green-deep);
  pointer-events: none;
}
.pkg-badge {
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--gold);
  color: var(--green-deep);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
  box-shadow: var(--shadow-sm);
}
.pkg-name { font-size: 1.5rem; color: var(--green-deep); }
.pkg-sub { color: var(--text-secondary); margin-top: 4px; font-size: 0.95rem; }
.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: var(--space-3) 0;
  color: var(--green-deep);
}
.pkg-price .amount { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.02em; }
.pkg-price .cur { font-size: 1.3rem; font-weight: 700; }
.pkg-features {
  display: grid;
  gap: 10px;
  margin: var(--space-2) 0 var(--space-4);
}
.pkg-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}
.pkg-features .check {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green-mid);
  display: grid; place-items: center;
  margin-top: 1px;
}
.pkg-features .check .i-sm { width: 14px; height: 14px; }
.pkg .btn { margin-top: auto; }

/* ---------- 15. FAQ ---------- */
.faq {
  max-width: 820px;
  margin-inline: auto;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--white);
  margin-bottom: var(--space-2);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.faq-item.open {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  text-align: start;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green-deep);
}
.faq-q .chev {
  flex: none;
  transition: transform var(--dur) var(--ease);
  color: var(--green-mid);
}
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur) var(--ease);
}
.faq-a-inner {
  padding: 0 var(--space-4) var(--space-4);
  color: var(--text-secondary);
}

/* ---------- 16. Final CTA + form ---------- */
.final-cta { background: var(--green-deep); color: var(--cream); }
.final-cta .section-title { color: var(--white); }
.final-cta .section-sub { color: var(--mint); }
.final-cta .kicker { color: var(--green-accent); }
.cta-grid {
  display: grid;
  gap: var(--space-5);
  align-items: start;
}
.lead-form {
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-lg);
}
.selected-pkg {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  background: var(--mint);
  color: var(--green-deep);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: var(--space-3);
}
.selected-pkg.show { display: inline-flex; }
.selected-pkg .i-sm { color: var(--green-mid); }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.field .req { color: var(--gold); }
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 13px 14px;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  min-height: 50px;
  width: 100%;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(47,119,87,0.14);
  outline: none;
}
.field.invalid input,
.field.invalid select,
.field.invalid textarea { border-color: #b3462f; }
.field-error {
  font-size: 0.8rem;
  color: #b3462f;
  min-height: 0;
  display: none;
}
.field.invalid .field-error { display: block; }
.form-actions { margin-top: var(--space-4); }
.form-note {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-align: center;
}
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-4) var(--space-2);
}
.form-success.show { display: block; }
.form-success .success-mark {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green-mid);
  display: grid; place-items: center;
  margin: 0 auto var(--space-3);
}
.form-success .success-mark .i { width: 32px; height: 32px; }
.form-success h3 { color: var(--green-deep); font-size: 1.4rem; }
.form-success p { margin-top: 8px; color: var(--text-secondary); }

/* ---------- 17. Footer ---------- */
.site-footer {
  background: #103023;
  color: var(--mint);
  padding-block: var(--space-5);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
  justify-content: space-between;
}
.footer-inner .brand { color: var(--cream); }
.footer-inner small { color: rgba(209,232,221,0.7); font-size: 0.85rem; }

/* ---------- 18. Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 55;
  display: flex;
  gap: 10px;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  background: rgba(252, 247, 240, 0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  transform: translateY(120%);
  transition: transform var(--dur) var(--ease);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { flex: 1; min-height: 50px; padding-inline: 14px; }
.sticky-cta .btn--ghost { flex: 0 0 auto; }

/* ---------- 19. Responsive ---------- */
/* On the narrowest screens the stage is small; keep the floating phone
   compact so it sits in the corner and never clips the "now on screen"
   badge or the live cards. */
@media (max-width: 639px) {
  .phone { width: 20%; max-width: 70px; bottom: -6px; }
  .qr-chip { padding: 8px; }
  .qr-chip svg { width: 52px; height: 52px; }
  .live-card { font-size: 0.72rem; padding: 7px 10px; max-width: 168px; }
}

@media (min-width: 640px) {
  .actions-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row.two { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .gallery { columns: 2; }
  .ai-frame .ai-img { aspect-ratio: 3 / 4; }
}

@media (min-width: 900px) {
  :root { --gutter: 28px; --header-h: 76px; }
  .nav { display: flex; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .sticky-cta { display: none; }

  .section { padding-block: var(--space-7); }

  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: var(--space-7); }
  .hero { padding-block: var(--space-7); }

  .livescreen-grid { grid-template-columns: 1.35fr 1fr; }
  .opening-grid { grid-template-columns: 1.3fr 1fr; }
  .after-grid { grid-template-columns: 1fr 1.1fr; }
  .ai-grid { grid-template-columns: 1fr 1fr; }
  .cta-grid { grid-template-columns: 1fr 1.1fr; }

  .packages-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery { columns: 3; }
}

@media (min-width: 1200px) {
  .hero h1 { font-size: 3.6rem; }
}

/* ---------- 20. Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .opening-slide { transition: opacity 0.2s linear; }
}
