/* ===========================================================
   Cumple de Joanna · OMNO Park — sistema visual tropical
   Dos temas: "pop" (Pop Chispa) y "pastel" (Pastel Suave)
   =========================================================== */

:root {
  --font-display: 'Fredoka', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;
  --maxw: 1120px;
  --radius: 26px;
  --radius-sm: 16px;
  --shadow-card: 0 18px 50px -22px rgba(3, 50, 71, 0.45);
  --shadow-soft: 0 10px 30px -18px rgba(3, 50, 71, 0.5);
}

/* ---------- TEMA: POP CHISPA (por defecto) ---------- */
[data-theme="pop"] {
  --water-1: #0891b2;
  --water-2: #22d3ee;
  --water-3: #67e8f9;
  --sun: #fbbf24;
  --sun-deep: #f59e0b;
  --coral: #fb7185;
  --coral-deep: #f43f5e;
  --palm: #34d399;
  --palm-deep: #10b981;
  --grape: #a78bfa;
  --sand: #fde68a;
  --foam: #ffffff;
  --ink: #07344a;
  --ink-soft: #15708f;
  --ink-faint: #5a8aa0;
  --card: #ffffff;
  --card-2: #f1fbff;
  --card-border: rgba(7, 52, 74, 0.08);
  --page-top: #cffafe;
  --page-bottom: #a5f3fc;
  --cta: #f43f5e;
  --cta-text: #ffffff;
  --cta-2: #f59e0b;
  --chip: #ecfeff;
}

/* ---------- TEMA: PASTEL SUAVE ---------- */
[data-theme="pastel"] {
  --water-1: #7dd3fc;
  --water-2: #bae6fd;
  --water-3: #e0f2fe;
  --sun: #fde68a;
  --sun-deep: #fcd34d;
  --coral: #f9a8d4;
  --coral-deep: #f472b6;
  --palm: #a7f3d0;
  --palm-deep: #6ee7b7;
  --grape: #c4b5fd;
  --sand: #fef3c7;
  --foam: #ffffff;
  --ink: #0c4a6e;
  --ink-soft: #0369a1;
  --ink-faint: #6aa3c4;
  --card: #ffffff;
  --card-2: #f5fbff;
  --card-border: rgba(12, 74, 110, 0.08);
  --page-top: #f0f9ff;
  --page-bottom: #fce7f3;
  --cta: #f472b6;
  --cta-text: #5b2545;
  --cta-2: #38bdf8;
  --chip: #f0f9ff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: linear-gradient(180deg, var(--page-top), var(--page-bottom) 60%, var(--page-top));
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

#root { position: relative; z-index: 1; }

h1, h2, h3 { font-family: var(--font-display); margin: 0; line-height: 1.04; }

a { color: inherit; }

::selection { background: var(--sun); color: var(--ink); }

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

/* ===================== DECOR ===================== */
.sky-decor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.bubble {
  position: absolute;
  bottom: -80px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, rgba(255,255,255,.9), rgba(255,255,255,.18) 45%, rgba(255,255,255,0) 70%);
  border: 1px solid rgba(255,255,255,.35);
  animation: rise linear infinite;
  opacity: .0;
}
@keyframes rise {
  0% { transform: translateY(0) translateX(0) scale(.7); opacity: 0; }
  10% { opacity: .8; }
  90% { opacity: .55; }
  100% { transform: translateY(-112vh) translateX(40px) scale(1.05); opacity: 0; }
}

.float-emoji {
  position: absolute;
  font-size: 38px;
  filter: drop-shadow(0 6px 10px rgba(3,50,71,.18));
  animation: bob 7s ease-in-out infinite;
  opacity: .9;
}
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-16px) rotate(6deg); }
}

@media (prefers-reduced-motion: reduce) {
  .bubble, .float-emoji { animation: none !important; }
}

/* beach ball (CSS, sin SVG) */
.beachball {
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #fff 0 14%, transparent 14%),
    conic-gradient(from -20deg,
      var(--coral) 0 60deg, #fff 60deg 90deg,
      var(--sun) 90deg 150deg, #fff 150deg 180deg,
      var(--palm) 180deg 240deg, #fff 240deg 270deg,
      var(--water-2) 270deg 330deg, #fff 330deg 360deg);
  box-shadow: inset -6px -8px 16px rgba(0,0,0,.12), 0 10px 22px -10px rgba(3,50,71,.5);
}

/* sun */
.sun-badge {
  border-radius: 50%;
  background: radial-gradient(circle at 38% 36%, #fff7d6, var(--sun) 55%, var(--sun-deep));
  box-shadow: 0 0 0 10px color-mix(in srgb, var(--sun) 35%, transparent),
              0 0 60px color-mix(in srgb, var(--sun) 60%, transparent);
}

/* ===================== WAVE DIVIDER ===================== */
.wave { display: block; width: 100%; height: auto; }

/* ===================== SECTION SHELL ===================== */
.section { position: relative; padding: 64px 0; }
.section-head { text-align: center; margin-bottom: 40px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; font-size: 13px;
  color: var(--ink-soft);
  background: var(--card);
  padding: 8px 16px; border-radius: 999px;
  box-shadow: var(--shadow-soft);
}
.section-title {
  font-size: clamp(30px, 5.4vw, 50px);
  font-weight: 600;
  margin-top: 16px;
  color: var(--ink);
}
.section-sub { margin-top: 10px; font-size: 17px; color: var(--ink-soft); font-weight: 600; }

/* ===================== BUTTONS ===================== */
.btn {
  -webkit-appearance: none; appearance: none; border: 0; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 17px;
  padding: 16px 26px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: transform .14s ease, box-shadow .14s ease, filter .14s ease;
  text-decoration: none; line-height: 1;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary {
  background: var(--cta); color: var(--cta-text);
  box-shadow: 0 12px 26px -10px color-mix(in srgb, var(--cta) 80%, black);
}
.btn-primary:hover { transform: translateY(-2px); filter: saturate(1.1); }
.btn-sun { background: var(--sun-deep); color: #fff; box-shadow: 0 12px 26px -12px var(--sun-deep); }
.btn-sun:hover { transform: translateY(-2px); }
.btn-ghost {
  background: var(--card); color: var(--ink);
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--card-border);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: color-mix(in srgb, var(--water-1) 40%, transparent); }
.btn-block { width: 100%; }

/* ===================== CARDS ===================== */
.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--card-border);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  padding: 26px 0 0;
  text-align: center;
  overflow: hidden;
}
.confetti-banner {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em; font-size: 14px;
  color: #fff;
  background: linear-gradient(90deg, var(--coral), var(--sun-deep));
  padding: 10px 20px; border-radius: 999px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 22px;
}
.hero-name {
  font-size: clamp(64px, 17vw, 168px);
  font-weight: 700;
  letter-spacing: .01em;
  line-height: .9;
  margin: 6px 0;
  filter: drop-shadow(0 8px 0 rgba(7,52,74,.10));
}
.hero-name span { display: inline-block; }
.hero-name span:nth-child(6n+1){ color: var(--coral-deep); }
.hero-name span:nth-child(6n+2){ color: var(--sun-deep); }
.hero-name span:nth-child(6n+3){ color: var(--palm-deep); }
.hero-name span:nth-child(6n+4){ color: var(--water-1); }
.hero-name span:nth-child(6n+5){ color: var(--grape); }
.hero-name span:nth-child(6n+6){ color: var(--coral); }
.hero-name span:hover { transform: translateY(-8px) rotate(-3deg); transition: transform .2s; }

.cumple-row {
  display: inline-flex; align-items: center; gap: 16px;
  margin: 6px 0 4px;
}
.cumple-text {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(24px, 5vw, 40px);
  color: var(--ink); letter-spacing: .1em; text-transform: uppercase;
}
.age-badge {
  font-family: var(--font-display); font-weight: 700;
  width: clamp(58px, 12vw, 92px); height: clamp(58px, 12vw, 92px);
  display: grid; place-items: center;
  font-size: clamp(34px, 7vw, 56px);
  color: #fff;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 34%, var(--coral), var(--coral-deep));
  box-shadow: 0 14px 30px -12px var(--coral-deep), inset 0 -6px 10px rgba(0,0,0,.15);
  transform: rotate(-6deg);
}

.hero-photo-ring {
  margin: 30px auto 18px;
  width: clamp(180px, 46vw, 260px);
  height: clamp(180px, 46vw, 260px);
  border-radius: 50%;
  padding: 10px;
  background: conic-gradient(from 0deg, var(--coral), var(--sun), var(--palm), var(--water-2), var(--grape), var(--coral));
  box-shadow: 0 22px 50px -20px rgba(7,52,74,.6);
  position: relative;
}
.hero-photo-ring image-slot {
  width: 100%; height: 100%; display: block;
  border-radius: 50%;
  border: 6px solid #fff;
}

/* --- HERO MEDIA (foto o vídeo en bucle) --- */
.hero-media {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 6px solid #fff;
  overflow: hidden;
  background: linear-gradient(160deg, var(--water-1, #bdeaf6), #fff);
}
.hero-media-el {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.hero-media-empty {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  border: none; cursor: pointer;
  background: transparent; color: var(--ink, #07344a);
  text-align: center; padding: 10% 14%;
  transition: background .2s ease;
}
.hero-media-empty:hover { background: rgba(255,255,255,.35); }
.hero-media-empty .hme-ico { font-size: clamp(30px, 8vw, 44px); }
.hero-media-empty .hme-t { font-family: var(--font-display); font-weight: 700; font-size: clamp(13px, 3.4vw, 16px); line-height: 1.15; }
.hero-media-empty .hme-s { font-size: clamp(11px, 2.8vw, 13px); color: var(--ink-soft, #4a6b78); line-height: 1.15; }
.hero-media-spin { font-size: 30px; animation: hm-spin 1.1s linear infinite; }
@keyframes hm-spin { to { transform: rotate(360deg); } }
.hero-media-edit, .hero-media-del {
  position: absolute; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%;
  border: 2px solid #fff; cursor: pointer;
  display: grid; place-items: center; font-size: 15px;
  box-shadow: 0 6px 16px -6px rgba(7,52,74,.7);
  opacity: 0; transform: translateY(4px);
  transition: opacity .2s ease, transform .2s ease;
}
.hero-media-edit { bottom: 10px; right: 12px; background: var(--card, #fff); }
.hero-media-del { top: 10px; right: 12px; background: var(--coral, #f43f5e); color: #fff; }
.hero-media:hover .hero-media-edit,
.hero-media:hover .hero-media-del { opacity: 1; transform: translateY(0); }
.hero-media-note {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  margin-top: 12px; width: max-content; max-width: 280px;
  background: var(--card, #fff); color: var(--ink, #07344a);
  font-size: 13px; line-height: 1.3; font-weight: 600;
  padding: 9px 14px; border-radius: 14px;
  box-shadow: var(--shadow-card); z-index: 4;
}
@media (hover: none) {
  .hero-media-edit, .hero-media-del { opacity: 1; transform: none; }
}
.hero-tag {
  position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%) rotate(-3deg);
  background: var(--sun); color: var(--ink);
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  padding: 7px 18px; border-radius: 999px;
  box-shadow: var(--shadow-soft); white-space: nowrap;
}

.date-pill {
  display: inline-flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 14px;
  background: var(--card); color: var(--ink);
  font-family: var(--font-display); font-weight: 600; font-size: clamp(15px, 3.6vw, 19px);
  padding: 12px 22px; border-radius: 999px;
  box-shadow: var(--shadow-card);
  margin: 8px 0 22px;
}
.date-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin: 8px 0 30px; }

/* ===================== COUNTDOWN ===================== */
.countdown { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin: 6px 0 14px; }
.cd-cell {
  background: var(--card);
  border-radius: 20px;
  min-width: clamp(70px, 19vw, 104px);
  padding: 16px 8px 12px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--card-border);
}
.cd-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(32px, 8vw, 52px);
  color: var(--water-1); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cd-label {
  font-family: var(--font-display); font-weight: 500;
  text-transform: uppercase; letter-spacing: .12em;
  font-size: 12px; color: var(--ink-faint); margin-top: 8px;
}
.cd-done { font-size: 22px; font-family: var(--font-display); color: var(--coral-deep); font-weight: 600; }

/* ===================== INFO GRID ===================== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 720px) { .info-grid { grid-template-columns: 1fr; } }
.info-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 24px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--card-border);
  transition: transform .16s ease;
}
.info-card:hover { transform: translateY(-4px); }
.info-ico {
  flex: 0 0 auto;
  width: 56px; height: 56px; border-radius: 18px;
  display: grid; place-items: center; font-size: 28px;
  background: var(--chip);
  box-shadow: inset 0 0 0 1px var(--card-border);
}
.info-card h3 {
  font-size: 14px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 6px;
}
.info-card p { margin: 0; font-size: 19px; font-weight: 700; color: var(--ink); line-height: 1.35; }

.kids-banner {
  margin-top: 18px;
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--water-1), var(--water-2));
  color: #fff;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.kids-banner h3 { font-size: clamp(24px, 5vw, 34px); font-weight: 600; margin-bottom: 10px; }
.kids-banner p { font-size: 17px; line-height: 1.55; max-width: 640px; font-weight: 600; opacity: .96; }
.kids-banner .omno-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  background: #fff; color: var(--ink);
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  padding: 11px 20px; border-radius: 999px; text-decoration: none;
  box-shadow: var(--shadow-soft);
}
.kids-banner .omno-link:hover { transform: translateY(-2px); }

/* ===================== RSVP ===================== */
.rsvp-card { max-width: 560px; margin: 0 auto; padding: clamp(24px, 5vw, 40px); }
.field { margin-bottom: 22px; }
.field label {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: 16px; color: var(--ink); margin-bottom: 10px;
}
.field input[type="text"] {
  width: 100%; font-family: var(--font-body); font-size: 18px; font-weight: 600;
  padding: 15px 18px; border-radius: 16px;
  border: 2px solid var(--card-border); background: var(--card-2); color: var(--ink);
  outline: none; transition: border-color .15s;
}
.field input[type="text"]:focus { border-color: var(--water-1); }
.field input::placeholder { color: var(--ink-faint); font-weight: 600; }

.stepper { display: flex; align-items: center; gap: 14px; }
.stepper button {
  width: 52px; height: 52px; border-radius: 16px; border: 0; cursor: pointer;
  font-size: 28px; font-family: var(--font-display); font-weight: 600;
  background: var(--chip); color: var(--ink-soft);
  box-shadow: inset 0 0 0 1px var(--card-border);
  display: grid; place-items: center; transition: transform .1s, background .15s;
}
.stepper button:hover { background: color-mix(in srgb, var(--water-2) 30%, var(--chip)); }
.stepper button:active { transform: scale(.92); }
.stepper .count {
  font-family: var(--font-display); font-weight: 700; font-size: 34px;
  min-width: 56px; text-align: center; color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.stepper .unit { font-size: 16px; color: var(--ink-faint); font-weight: 700; }

.rsvp-success {
  text-align: center; padding: clamp(24px, 5vw, 40px);
}
.rsvp-success .big { font-size: 60px; margin-bottom: 10px; }
.rsvp-success h3 { font-size: 28px; font-weight: 600; color: var(--palm-deep); margin-bottom: 10px; }
.rsvp-success p { font-size: 17px; color: var(--ink-soft); font-weight: 600; }
.rsvp-success .summary {
  margin: 20px auto; display: inline-flex; gap: 10px; flex-wrap: wrap; justify-content: center;
}
.summary-chip {
  background: var(--chip); border-radius: 14px; padding: 12px 18px;
  font-family: var(--font-display); font-weight: 600; color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--card-border);
}
.link-reset {
  background: none; border: 0; color: var(--ink-faint); cursor: pointer;
  font-family: var(--font-body); font-weight: 700; text-decoration: underline; font-size: 14px;
}

/* ===================== GIFTS ===================== */
.gift-card {
  max-width: 720px; margin: 0 auto; text-align: center;
  padding: clamp(30px, 6vw, 52px);
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--card-border);
  position: relative; overflow: hidden;
}
.gift-emoji { font-size: 56px; margin-bottom: 14px; }
.gift-card h2 { font-size: clamp(26px, 5vw, 40px); font-weight: 600; color: var(--coral-deep); margin-bottom: 18px; }
.gift-card p { font-size: clamp(17px, 2.6vw, 21px); line-height: 1.6; color: var(--ink); font-weight: 600; max-width: 560px; margin: 0 auto 14px; }
.gift-card .heart-sign { font-family: var(--font-display); font-weight: 600; color: var(--ink-soft); font-size: 18px; margin-top: 10px; }

/* ===================== GALLERY ===================== */
.gallery-tools { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 28px; }
.dropzone {
  border: 2.5px dashed color-mix(in srgb, var(--water-1) 45%, transparent);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--card) 70%, transparent);
  padding: 34px; text-align: center; cursor: pointer;
  transition: background .15s, border-color .15s, transform .15s;
  margin-bottom: 26px;
}
.dropzone:hover, .dropzone.drag { background: var(--card); border-color: var(--water-1); transform: translateY(-2px); }
.dropzone .dz-emoji { font-size: 44px; }
.dropzone h3 { font-size: 22px; font-weight: 600; margin: 10px 0 6px; color: var(--ink); }
.dropzone p { margin: 0; color: var(--ink-soft); font-weight: 600; }

.masonry { columns: 3 240px; column-gap: 16px; }
.masonry .ph { break-inside: avoid; margin-bottom: 16px; position: relative; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-card); background: var(--card-2); cursor: zoom-in; }
.masonry .ph img { width: 100%; display: block; }
.masonry .ph .ph-actions {
  position: absolute; inset: auto 0 0 0; display: flex; justify-content: flex-end; gap: 8px;
  padding: 10px; background: linear-gradient(transparent, rgba(7,52,74,.55));
  opacity: 0; transition: opacity .15s;
}
.masonry .ph:hover .ph-actions { opacity: 1; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 12px; border: 0; cursor: pointer;
  background: rgba(255,255,255,.92); color: var(--ink); font-size: 18px;
  display: grid; place-items: center; box-shadow: var(--shadow-soft);
}
.icon-btn:hover { background: #fff; }

.gallery-empty {
  text-align: center; padding: 30px; color: var(--ink-soft); font-weight: 600;
}

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(4,32,46,.86); backdrop-filter: blur(6px);
  display: grid; place-items: center; padding: 24px;
  animation: fade .2s ease;
}
@keyframes fade { from { opacity: 0; } }
.lightbox img { max-width: 92vw; max-height: 82vh; border-radius: 16px; box-shadow: 0 30px 80px -20px #000; }
.lightbox .lb-close, .lightbox .lb-nav {
  position: absolute; background: rgba(255,255,255,.16); color: #fff; border: 0; cursor: pointer;
  width: 54px; height: 54px; border-radius: 50%; font-size: 24px; display: grid; place-items: center;
  transition: background .15s;
}
.lightbox .lb-close:hover, .lightbox .lb-nav:hover { background: rgba(255,255,255,.32); }
.lightbox .lb-close { top: 20px; right: 20px; }
.lightbox .lb-nav.prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-nav.next { right: 16px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-dl {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
}

/* ===================== LOCATION ===================== */
.loc-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 22px; align-items: stretch; }
@media (max-width: 820px) { .loc-grid { grid-template-columns: 1fr; } }
.map-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); min-height: 320px; border: 1px solid var(--card-border); background: var(--card); }
.map-card iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.loc-info { padding: clamp(24px, 4vw, 34px); display: flex; flex-direction: column; }
.loc-info h3 { font-size: 26px; font-weight: 600; margin-bottom: 6px; }
.loc-addr { font-size: 17px; color: var(--ink-soft); font-weight: 600; line-height: 1.5; margin-bottom: 8px; }
.loc-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 6px 0 20px; }
.loc-meta .m {
  background: var(--chip); border-radius: 999px; padding: 8px 14px; font-weight: 700; font-size: 14px; color: var(--ink-soft);
  box-shadow: inset 0 0 0 1px var(--card-border);
}
.loc-actions { display: flex; flex-direction: column; gap: 12px; margin-top: auto; }

/* ===================== FOOTER ===================== */
.footer { text-align: center; padding: 50px 0 70px; }
.footer .ages { font-family: var(--font-display); font-weight: 600; font-size: 22px; color: var(--ink); margin-bottom: 10px; }
.footer p { color: var(--ink-soft); font-weight: 600; margin: 4px 0; }
.footer a { color: var(--ink-soft); font-weight: 700; }
.footer .made { margin-top: 16px; font-size: 13px; color: var(--ink-faint); }

/* ===================== FLOATING CONTROLS ===================== */
.float-controls { position: fixed; right: 16px; bottom: 16px; z-index: 60; display: flex; flex-direction: column; gap: 10px; }
.fc-btn {
  width: 54px; height: 54px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--card); color: var(--ink); font-size: 22px;
  box-shadow: var(--shadow-card); display: grid; place-items: center;
  transition: transform .15s;
}
.fc-btn:hover { transform: translateY(-3px) scale(1.05); }
.fc-btn.on { background: var(--cta); color: var(--cta-text); }

/* sticky confirm bar (mobile) */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--card) 86%, transparent);
  backdrop-filter: blur(10px);
  box-shadow: 0 -10px 30px -20px rgba(3,50,71,.6);
  display: none;
}
.sticky-cta .btn { width: 100%; }
@media (max-width: 720px) {
  .sticky-cta { display: block; }
  .footer { padding-bottom: 110px; }
  .float-controls { bottom: 84px; }
}

/* entrance */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
