/* ============================================================
   DILEX — Sunset Party · Gradakia Beach Bar, Kefalonia
   Palette: night #100E1E · dusk #3B2450 · ember #E4572E
            gold #FFB84D · coral #E86A5C · sand #F2E4CD
   ============================================================ */

:root {
  --night: #100E1E;
  --dusk: #3B2450;
  --ember: #E4572E;
  --ember-hover: #F2652F;
  --gold: #FFB84D;
  --coral: #E86A5C;
  --sand: #F2E4CD;
  --sand-85: rgba(242, 228, 205, .85);
  --sand-65: rgba(242, 228, 205, .65);
  --sand-45: rgba(242, 228, 205, .45);
  --line: rgba(242, 228, 205, .25);
  --line-gold: rgba(255, 184, 77, .3);
  --display: 'Anton', sans-serif;
  --body: 'Archivo', sans-serif;
  --serif: 'Cormorant Garamond', serif;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--night);
  color: var(--sand);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--ember); }
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Sky engine ---------- */
.sky, .sky__night, .sky__dusk, .sky__gold, .sky__stars, .sky__pov {
  position: fixed; inset: 0; pointer-events: none;
}
.sky { z-index: 0; }
.sky__night { background: linear-gradient(180deg, #100E1E 0%, #1A1430 55%, #241636 100%); }
.sky__dusk  { background: linear-gradient(180deg, #221534 0%, #34204A 48%, #533050 78%, #6E3A46 100%); }
.sky__gold  { background: linear-gradient(180deg, #2B1B3E 0%, #5E3048 36%, #9C4636 66%, #C85332 84%, #E08A3C 100%); }
.sky__stars { opacity: 0; }
.sky__stars span { position: absolute; top: 0; left: 0; width: 2px; height: 2px; border-radius: 50%; }
.sky__sun {
  position: fixed; pointer-events: none;
  left: 50%; top: 26svh;
  width: 150px; height: 150px; margin-left: -75px;
  border-radius: 50%;
  background: radial-gradient(circle, #FFE6B0 0%, #FFB84D 45%, #E4572E 80%, rgba(228, 87, 46, 0) 100%);
  box-shadow: 0 0 60px 30px rgba(255, 184, 77, .45), 0 0 160px 80px rgba(228, 87, 46, .25);
  will-change: transform, opacity;
}
/* "camera" dolly — the whole sky eases toward the sunset as you scroll */
.sky { transform-origin: 50% 35%; will-change: transform; }
.sky__pov { opacity: 0; }
.sky__moon {
  position: absolute; left: 60%; top: 20svh;
  width: 58px; height: 58px; margin-left: -29px;
  border-radius: 50%;
  /* crater spots over the lit disc, terminator shadow on the lower-left */
  background:
    radial-gradient(circle at 62% 30%, rgba(176, 166, 148, .55) 0 9%, transparent 13%),
    radial-gradient(circle at 34% 52%, rgba(176, 166, 148, .5) 0 12%, transparent 16%),
    radial-gradient(circle at 56% 68%, rgba(176, 166, 148, .45) 0 7%, transparent 11%),
    radial-gradient(circle at 44% 24%, rgba(176, 166, 148, .4) 0 6%, transparent 10%),
    radial-gradient(circle at 72% 55%, rgba(176, 166, 148, .35) 0 5%, transparent 9%),
    radial-gradient(circle at 42% 38%, #FFFDF4 0%, #F2E4CD 55%, #CBB795 100%);
  box-shadow:
    inset -12px -9px 18px rgba(96, 88, 124, .55),
    0 0 26px 8px rgba(242, 228, 205, .4),
    0 0 90px 30px rgba(242, 228, 205, .14);
}
.sky__water { position: absolute; left: 0; right: 0; bottom: 0; height: 40svh; will-change: transform; }
/* Generated scene plates: beach POV (sand → sea → horizon), golden hour and night.
   They crossfade with the scroll story; the top edge fades into the CSS sky. */
.scene {
  position: absolute; inset: 0 -16px; opacity: 0; pointer-events: none;
  background-size: cover; background-position: center bottom;
  mask-image: linear-gradient(180deg, transparent 0%, black 32%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 32%);
  will-change: transform;
}
.scene--gold { background-image: url("../assets/scene-gold.jpg"); animation: seaDrift 16s ease-in-out infinite alternate; }
.scene--night { background-image: url("../assets/scene-night.jpg"); animation: seaDrift 21s ease-in-out infinite alternate-reverse; }
@media (min-aspect-ratio: 16/10) {
  /* wide screens crop the plates by width — bias toward keeping the horizon in frame */
  .scene { background-position: center 30%; }
}
/* living-water glints: soft pulses over each plate's baked reflection path */
.glint {
  position: absolute; top: 26%; height: 46%; width: 84px; opacity: 0; pointer-events: none;
  mix-blend-mode: screen; filter: blur(9px);
  animation: glintPulse 3.8s ease-in-out infinite;
}
.glint--gold {
  left: 50%; margin-left: -42px;
  background: linear-gradient(180deg, rgba(255, 216, 140, .7) 0%, rgba(255, 160, 66, .28) 60%, transparent 100%);
}
.glint--night {
  left: 60%; margin-left: -42px; width: 60px;
  background: linear-gradient(180deg, rgba(238, 242, 255, .55) 0%, rgba(238, 242, 255, .2) 60%, transparent 100%);
  animation-duration: 4.6s;
}
.grain {
  position: fixed; inset: 0; z-index: 50; pointer-events: none;
  opacity: .1; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 240px 240px;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  padding-top: calc(14px + env(safe-area-inset-top));
  background: linear-gradient(180deg, rgba(16, 14, 30, .55), rgba(16, 14, 30, 0));
}
.nav__logo { font-family: var(--display); font-size: 20px; letter-spacing: 4px; }
.nav__langs {
  display: flex; gap: 2px; padding: 3px;
  border: 1px solid rgba(242, 228, 205, .3); border-radius: 999px;
  backdrop-filter: blur(8px); background: rgba(16, 14, 30, .25);
}
.lang {
  border: none; cursor: pointer;
  font-family: var(--body); font-size: 11px; font-weight: 600; letter-spacing: 1px;
  padding: 5px 12px; border-radius: 999px;
  background: transparent; color: var(--sand-65);
}
.lang:hover { color: var(--sand); }
.lang.is-active { background: var(--sand); color: var(--night); }

/* ---------- Hero ---------- */
main { position: relative; z-index: 1; }
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.hero__scrim {
  position: absolute; inset: 0; pointer-events: none;
  /* fades to fully transparent at the bottom — must never create a seam
     against the continuous sky where the hero ends */
  background: linear-gradient(180deg, rgba(16, 14, 30, .45) 0%, rgba(16, 14, 30, .1) 34%, rgba(43, 27, 62, .18) 62%, rgba(43, 27, 62, 0) 92%);
}
.hero__content {
  position: relative; width: 100%; max-width: 560px;
  margin: 0 auto; padding: 0 24px 40px;
}
.hero__eyebrow {
  margin: 0 0 22px;
  font-size: 12px; font-weight: 600; letter-spacing: 3px; color: var(--gold);
  text-shadow: 0 1px 10px rgba(16, 14, 30, .7);
}
.hero__title {
  margin: 0;
  font-family: var(--display); text-transform: uppercase;
  line-height: .92; font-size: clamp(68px, 20vw, 132px);
  text-shadow: 0 2px 24px rgba(16, 14, 30, .45);
}
.hero__title-stroke { color: transparent; -webkit-text-stroke: 2px var(--sand); }
.hero__flourish {
  margin: 22px 0 28px;
  font-family: var(--serif); font-style: italic; font-size: 25px; color: var(--gold);
  text-shadow: 0 1px 12px rgba(16, 14, 30, .7);
}
.hero__facts {
  display: flex; flex-direction: column; gap: 9px;
  font-size: 17px; font-weight: 600; color: #FFF6E8;
  margin-bottom: 30px;
  text-shadow: 0 1px 14px rgba(16, 14, 30, .85), 0 0 2px rgba(16, 14, 30, .9);
}
.hero__facts strong { font-weight: 800; }
.hero__ctas { display: flex; flex-direction: column; gap: 10px; }
.hero__cue { display: flex; justify-content: center; margin-top: 26px; }
.hero__cue span {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(242, 228, 205, .5); border-radius: 999px;
  display: flex; justify-content: center; padding-top: 7px;
  animation: cueBob 2s ease-in-out infinite;
}
.hero__cue span::after { content: ""; width: 3px; height: 8px; border-radius: 3px; background: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  cursor: pointer;
  font-family: var(--body); font-size: 16px; font-weight: 700; letter-spacing: .5px;
  padding: 17px 24px; border-radius: 999px; border: none;
  transition: background .2s, color .2s, border-color .2s, transform .1s;
  text-decoration: none; display: inline-flex; align-items: center; justify-content: center;
}
.btn:active { transform: scale(.98); }
.btn--primary { background: var(--ember); color: #FFF6E8; }
.btn--primary:hover { background: var(--ember-hover); }
.btn--pulse { animation: emberPulse 3.5s ease-in-out infinite; }
.btn--ghost {
  background: rgba(242, 228, 205, .08);
  border: 1px solid rgba(242, 228, 205, .4);
  color: var(--sand); font-weight: 600; font-size: 15px;
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--block { width: 100%; }
.btn--wa { background: #1DAB61; color: #FFF; font-size: 15px; padding: 14px 24px; margin-top: 10px; }
.btn--wa:hover { background: #22C06E; color: #FFF; }
.wa-alt {
  display: block; text-align: center; margin-top: 12px;
  font-size: 13px; font-weight: 600; color: #7FE0A8; text-decoration: none;
}
.wa-alt:hover { color: #A9F0C8; }

/* ---------- Ticker ---------- */
.ticker {
  overflow: hidden; padding: 12px 0;
  border-top: 1px solid rgba(255, 184, 77, .25);
  border-bottom: 1px solid rgba(255, 184, 77, .25);
  background: rgba(16, 14, 30, .35);
  backdrop-filter: blur(4px);
}
.ticker__track {
  display: flex; width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--display); font-size: 15px; letter-spacing: 2.5px;
  color: var(--gold); white-space: nowrap;
}
.ticker__track span { padding-right: 40px; }

/* ---------- Sections ---------- */
.section { max-width: 560px; margin: 0 auto; padding: 72px 24px 0; }
.section--bleed { max-width: none; padding-left: 0; padding-right: 0; }
.section__inner { max-width: 560px; margin: 0 auto; padding: 0 24px; }
.kicker {
  margin: 0 0 20px;
  font-family: var(--display); font-size: 14px; font-weight: 400;
  letter-spacing: 4px; color: var(--gold);
}
.section__sub { margin: -12px 0 28px; }
.section__text { margin: 0 0 24px; font-size: 15px; line-height: 1.65; color: var(--sand-85); text-wrap: pretty; }
.flourish { font-family: var(--serif); font-style: italic; font-size: 21px; color: rgba(242, 228, 205, .8); margin: 0; }

/* ---------- Image slots (auto-swap when assets exist) ---------- */
.slot {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 20px; text-align: center;
  font-size: 12px; letter-spacing: 1.5px; color: var(--sand-65);
  border: 1px dashed rgba(242, 228, 205, .35);
  background:
    radial-gradient(120% 90% at 30% 20%, rgba(255, 184, 77, .28), transparent 55%),
    radial-gradient(120% 100% at 80% 90%, rgba(228, 87, 46, .3), transparent 60%),
    linear-gradient(160deg, #221534, #34204A 70%, #533050);
}
.slot--hero {
  border: none; background: none;
  align-items: flex-start; justify-content: center;
  padding-top: calc(74px + env(safe-area-inset-top));
}
.slot__chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  border: 1px dashed rgba(242, 228, 205, .4);
  background: rgba(16, 14, 30, .45);
}
.slot__chip::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--ember);
}
.has-img .slot { display: none; }
.has-img img { display: block; }

/* ---------- DJ card ---------- */
.dj-card {
  border: 1px solid rgba(242, 228, 205, .18); border-radius: 20px;
  overflow: hidden; background: rgba(16, 14, 30, .45); backdrop-filter: blur(6px);
}
.dj-card__photo { position: relative; aspect-ratio: 4 / 3; }
.dj-card__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dj-card__tint {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(160deg, rgba(228, 87, 46, .5), rgba(59, 36, 80, .65));
  mix-blend-mode: color;
}
.dj-card__fade {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(16, 14, 30, 0) 55%, rgba(16, 14, 30, .8) 92%, rgba(16, 14, 30, 0) 100%);
}
.dj-card__body { padding: 22px 22px 26px; }
.dj-card__name {
  margin: 0;
  font-family: var(--display); text-transform: uppercase;
  font-size: 44px; line-height: .9;
}
.dj-card__body .flourish { font-size: 20px; color: var(--gold); margin: 10px 0 12px; }
.dj-card__bio { margin: 0 0 18px; font-size: 14.5px; line-height: 1.6; color: rgba(242, 228, 205, .82); text-wrap: pretty; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 18px; padding: 0; list-style: none; }
.chips li {
  font-size: 12px; font-weight: 600; letter-spacing: 1px;
  padding: 6px 13px; border-radius: 999px;
  border: 1px solid rgba(255, 184, 77, .5); color: var(--gold);
}
.dj-card__creds { margin: 0 0 20px; font-size: 13px; color: var(--sand-65); }
.pills { display: flex; gap: 10px; }
.pills a {
  font-size: 13px; font-weight: 600; padding: 9px 16px; border-radius: 999px;
  background: rgba(242, 228, 205, .1); color: var(--sand);
}
.pills a:hover { background: rgba(255, 184, 77, .2); color: var(--gold); }

/* ---------- Timeline ---------- */
.timeline {
  margin: 0 0 0 6px; padding: 0; list-style: none;
  border-left: 1px solid var(--line);
}
.timeline li { display: flex; gap: 18px; padding: 0 0 26px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline__dot {
  width: 11px; height: 11px; border-radius: 50%;
  background: rgba(242, 228, 205, .5);
  margin-left: -6px; margin-top: 4px; flex-shrink: 0;
}
.timeline time { display: block; font-size: 13px; font-weight: 700; letter-spacing: 2px; color: var(--gold); }
.timeline li p { margin: 3px 0 0; font-size: 15px; color: var(--sand-85); }
.timeline li.is-sunset .timeline__dot {
  width: 15px; height: 15px; margin-left: -8px; margin-top: 2px;
  background: var(--gold);
  box-shadow: 0 0 14px 4px rgba(255, 184, 77, .7);
  animation: emberPulse 3s ease-in-out infinite;
}
.timeline__moment {
  font-family: var(--serif); font-style: italic;
  font-size: 22px !important; line-height: 1.35; color: var(--sand) !important;
  margin-top: 5px !important; text-wrap: pretty;
}

/* ---------- Carousel ---------- */
.carousel {
  display: flex; gap: 14px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0 24px 8px;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel figure { flex: 0 0 78%; max-width: 420px; scroll-snap-align: center; margin: 0; }
.carousel__frame { position: relative; aspect-ratio: 4 / 5; border-radius: 16px; overflow: hidden; }
.carousel__frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.carousel figcaption { font-size: 12px; letter-spacing: 1.5px; color: var(--sand-65); margin-top: 8px; }

/* ---------- Countdown ---------- */
.count { display: flex; gap: 10px; margin-bottom: 36px; }
.count > div {
  flex: 1; text-align: center; padding: 16px 6px;
  border: 1px solid var(--line-gold); border-radius: 14px;
  background: rgba(16, 14, 30, .4);
}
.count b {
  display: block;
  font-family: var(--display); font-weight: 400; font-size: 34px;
  font-variant-numeric: tabular-nums;
}
.count .count__sec { color: var(--gold); }
.count span { display: block; font-size: 11px; letter-spacing: 2px; color: rgba(242, 228, 205, .6); margin-top: 4px; }

/* ---------- Tiers ---------- */
.tiers { display: flex; flex-direction: column; gap: 16px; }
.tier {
  border: 1px solid rgba(242, 228, 205, .2); border-radius: 20px;
  padding: 24px; background: rgba(16, 14, 30, .72);
}
.tier--free { border-color: rgba(255, 184, 77, .45); }
.tier__head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 6px; }
.tier h3 {
  margin: 0;
  font-family: var(--display); text-transform: uppercase;
  font-size: 26px; font-weight: 400;
}
.tier__badge {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  padding: 5px 11px; border-radius: 999px;
  background: rgba(228, 87, 46, .25); border: 1px solid rgba(228, 87, 46, .6);
  color: var(--gold); white-space: nowrap;
}
.tier__price { font-family: var(--display); font-size: 34px; color: var(--gold); margin-bottom: 12px; }
.tier__flourish { font-size: 19px; color: var(--coral); margin: 0 0 12px; }
.tier ul { margin: 0 0 20px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 7px; font-size: 14px; color: var(--sand-85); }

/* ---------- Night vista outro ---------- */
.outro {
  min-height: 48svh;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 6svh;
}
.outro__line {
  font-size: 24px; color: rgba(242, 228, 205, .9);
  text-shadow: 0 1px 18px rgba(16, 14, 30, .8);
}

/* ---------- Footer ---------- */
.footer {
  max-width: 560px; margin: 0 auto; text-align: center;
  padding: 80px 24px calc(120px + env(safe-area-inset-bottom));
}
.footer__logo { font-family: var(--display); font-size: 24px; letter-spacing: 5px; margin-bottom: 12px; }
.footer__links { display: flex; justify-content: center; gap: 20px; font-size: 14px; }
.footer__meta { font-size: 12px; color: var(--sand-45); margin-top: 18px; }

/* ---------- Sticky bar ---------- */
.bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 18px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  background: rgba(16, 14, 30, .82); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-gold);
  transform: translateY(110%);
  transition: transform .35s cubic-bezier(.32, .72, .35, 1);
}
.bar.is-on { transform: none; }
.bar__info { min-width: 0; flex: 1; }
.bar__wa {
  flex-shrink: 0; width: 47px; height: 47px; border-radius: 50%;
  background: #1DAB61;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, transform .1s;
}
.bar__wa:hover { background: #22C06E; }
.bar__wa:active { transform: scale(.95); }
.bar__wa svg { width: 24px; height: 24px; display: block; }
.bar__info b { display: block; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bar__info span { font-size: 12px; color: var(--sand-65); white-space: nowrap; }
.bar .btn { flex-shrink: 0; padding: 13px 26px; font-size: 15px; }

/* ---------- Sheet ---------- */
.overlay {
  position: fixed; inset: 0; z-index: 40;
  background: rgba(16, 14, 30, .6); backdrop-filter: blur(6px);
  animation: fadeIn .2s ease;
}
.sheet {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 41;
  max-width: 560px; margin: 0 auto;
  background: #1A1430;
  border: 1px solid rgba(255, 184, 77, .25); border-bottom: none;
  border-radius: 24px 24px 0 0;
  padding: 10px 24px calc(28px + env(safe-area-inset-bottom));
  max-height: 88svh; overflow-y: auto;
  animation: sheetUp .3s cubic-bezier(.2, .9, .3, 1);
}
.sheet__grab { display: flex; justify-content: center; padding: 4px 0 14px; }
.sheet__grab::after { content: ""; width: 42px; height: 4px; border-radius: 999px; background: rgba(242, 228, 205, .3); }
.seg {
  display: flex; padding: 4px; border-radius: 999px;
  background: rgba(16, 14, 30, .7); border: 1px solid rgba(242, 228, 205, .15);
  margin-bottom: 22px;
}
.seg button {
  flex: 1; border: none; cursor: pointer;
  font-family: var(--body); font-size: 14px; font-weight: 700;
  padding: 12px; border-radius: 999px;
  background: transparent; color: var(--sand-65);
  transition: background .2s, color .2s;
}
.seg button[aria-pressed="true"] { background: var(--ember); color: #FFF6E8; }
#resForm { display: flex; flex-direction: column; gap: 14px; }
.field {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px; color: rgba(242, 228, 205, .7);
}
.field input {
  border: 1px solid var(--line); border-radius: 12px;
  background: rgba(16, 14, 30, .6); color: var(--sand);
  font-family: var(--body); font-size: 16px; padding: 14px 16px; letter-spacing: normal;
}
.guests {
  display: flex; align-items: center; justify-content: space-between;
  border: 1px solid var(--line); border-radius: 12px;
  background: rgba(16, 14, 30, .6); padding: 10px 12px;
}
.guests > span { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; color: rgba(242, 228, 205, .7); }
.guests__ctrl { display: flex; align-items: center; gap: 16px; }
.guests__ctrl button {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(242, 228, 205, .35); background: transparent;
  color: var(--sand); font-size: 20px; cursor: pointer;
}
.guests__ctrl button:hover { border-color: var(--gold); color: var(--gold); }
.guests__ctrl b { font-family: var(--display); font-weight: 400; font-size: 22px; font-variant-numeric: tabular-nums; min-width: 24px; text-align: center; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; }
.sheet__error { margin: 0; font-size: 13px; color: var(--coral); text-align: center; }

/* confirmation */
.confirm { text-align: center; padding: 12px 0 8px; }
.confirm__tick {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255, 184, 77, .15); border: 2px solid var(--gold);
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; color: var(--gold);
}
.confirm h3 {
  margin: 0 0 8px;
  font-family: var(--display); text-transform: uppercase;
  font-size: 30px; font-weight: 400;
}
.confirm p { margin: 0 auto 22px; max-width: 320px; font-size: 14.5px; line-height: 1.6; color: rgba(242, 228, 205, .8); text-wrap: pretty; }
.qr {
  width: 168px; height: 168px; margin: 0 auto 22px;
  background: var(--sand); border-radius: 16px;
  position: relative; padding: 14px;
}
.qr__pattern {
  width: 100%; height: 100%; opacity: .85;
  background-image:
    repeating-linear-gradient(0deg, #100E1E 0 5px, transparent 5px 11px),
    repeating-linear-gradient(90deg, #100E1E 0 5px, transparent 5px 13px);
}
.qr__eye { position: absolute; width: 30px; height: 30px; border: 6px solid #100E1E; background: var(--sand); }
.qr__eye--tl { top: 14px; left: 14px; }
.qr__eye--tr { top: 14px; right: 14px; }
.qr__eye--bl { bottom: 14px; left: 14px; }
.confirm .btn--ghost { padding: 12px 28px; font-size: 14px; }
.confirm .btn--wa { margin: 0 auto 14px; display: inline-flex; }

/* ---------- Animations ---------- */
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes cueBob { 0%, 100% { transform: translateY(0); opacity: .9; } 50% { transform: translateY(8px); opacity: .4; } }
@keyframes emberPulse {
  0%, 100% { box-shadow: 0 0 18px rgba(255, 184, 77, .55), 0 0 48px rgba(228, 87, 46, .35); }
  50% { box-shadow: 0 0 26px rgba(255, 184, 77, .85), 0 0 70px rgba(228, 87, 46, .55); }
}
@keyframes sheetUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes seaDrift { from { transform: translateX(-9px); } to { transform: translateX(9px); } }
@keyframes glintPulse { 0%, 100% { transform: scaleX(1); } 50% { transform: scaleX(.78); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker__track, .hero__cue span, .btn--pulse,
  .timeline li.is-sunset .timeline__dot, .scene, .glint { animation: none; }
  .overlay, .sheet { animation: none; }
  .bar { transition: none; }
}

/* ---------- Desktop refinements ---------- */
@media (min-width: 700px) {
  .hero__ctas { flex-direction: row; align-items: center; gap: 16px; }
  .tiers { flex-direction: row; align-items: stretch; }
  .tiers .tier { flex: 1; display: flex; flex-direction: column; }
  .tiers .tier ul { flex: 1; }
}
