@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;0,800;0,900;1,900&display=swap');

:root {
  --pink: #ff5aa7;
  --pink-rgb: 255, 90, 167;
  --teal: #22bdb7;
  --teal-rgb: 34, 189, 183;
  --orange: #ffb445;
  --orange-rgb: 255, 180, 69;
  --purple: #8e58c4;
  --purple-rgb: 142, 88, 196;
  --ink: #2c1a44;
  --ink-soft: #6a5380;
  --off-white: #fffdf5;
  --cream: #fef4ea;
  --line: rgba(44, 26, 68, 0.08);
  --shadow-sm: 0 4px 14px rgba(44, 26, 68, 0.06);
  --shadow-md: 0 12px 32px rgba(44, 26, 68, 0.08);
  --shadow-lg: 0 24px 60px rgba(44, 26, 68, 0.12);
  --shadow-pink: 0 14px 36px rgba(255, 90, 167, 0.32);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  background: var(--cream);
  background-image:
    radial-gradient(at 0% 0%,   rgba(255, 90, 167, 0.16) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(34, 189, 183, 0.16) 0px, transparent 50%),
    radial-gradient(at 50% 50%, rgba(255, 180, 69, 0.10) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(142, 88, 196, 0.14) 0px, transparent 50%);
  background-attachment: fixed;
  overflow-x: hidden;
}

::selection { background: var(--pink); color: white; }

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

/* ─── Sticky Nav ──────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1320px, calc(100% - 28px));
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 11px 14px 11px 22px;
  background: rgba(255, 253, 245, 0.65);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(44, 26, 68, 0.08);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-nav.is-scrolled {
  background: rgba(255, 253, 245, 0.92);
  box-shadow: 0 12px 36px rgba(44, 26, 68, 0.12);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--ink);
}
.nav-brand em { color: var(--pink); font-style: italic; font-weight: 900; margin-left: 2px; }
.nav-brand-mark { width: 26px; height: 26px; color: var(--pink); flex-shrink: 0; }

.nav-links {
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
  display: flex;
  gap: 4px;
}
.nav-links a {
  display: inline-block;
  padding: 8px 14px;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: rgba(255, 90, 167, 0.12); color: var(--pink); }

.nav-cta {
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  border: none;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(44, 26, 68, 0.2);
  transition: transform 0.2s var(--ease), background 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { background: var(--pink); transform: translateY(-1px); box-shadow: 0 10px 22px rgba(255, 90, 167, 0.35); }

@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* ─── Layout primitives ──────────────────────────────────────── */
main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 110px;
}

.section-head {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 720px;
}
.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 12px 0 14px;
  color: var(--ink);
}
.section-sub {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 540px;
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 6px;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
}
.eyebrow-bar {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.eyebrow-teal { color: var(--teal); }
.eyebrow-orange { color: var(--orange); }
.eyebrow-purple { color: var(--purple); }
.eyebrow-pink { color: var(--pink); }
.eyebrow-white { color: rgba(255, 255, 255, 0.9); }

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 30px 0 20px;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: -40px -20px -20px;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.bg-sun {
  position: absolute;
  width: 480px;
  height: 480px;
  top: -120px;
  left: -160px;
  color: var(--orange);
  opacity: 0.32;
  animation: spin 80s linear infinite;
}
.bg-daisy {
  position: absolute;
  width: 120px;
  height: 120px;
  animation: drift 9s ease-in-out infinite alternate;
}
.bg-daisy-tr { top: 30px; right: -10px; color: var(--pink); opacity: 0.55; }
.bg-peace {
  position: absolute;
  width: 80px;
  height: 80px;
  bottom: 20px;
  left: 4%;
  color: var(--purple);
  opacity: 0.4;
  animation: drift 11s ease-in-out infinite alternate-reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes drift {
  from { transform: translateY(0) rotate(-4deg); }
  to   { transform: translateY(-14px) rotate(6deg); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 70px;
  align-items: center;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.6rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 14px 0 18px;
  background: linear-gradient(110deg, var(--pink) 0%, var(--purple) 35%, var(--teal) 70%, var(--orange) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  animation: gradientShift 9s ease-in-out infinite alternate;
}
@keyframes gradientShift {
  from { background-position: 0% 50%; }
  to   { background-position: 100% 50%; }
}

.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink-soft);
  margin: 0 0 36px;
  max-width: 500px;
  line-height: 1.5;
}
.hero-sub-em { color: var(--ink); font-weight: 600; }

.details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 0 32px;
  max-width: 520px;
}
.details article {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 18px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.details article:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.details span {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--pink);
  margin-bottom: 4px;
}
.details strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.btn-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 34px;
  background: var(--pink);
  color: white;
  border: none;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: var(--shadow-pink);
  transition: transform 0.25s var(--ease), background 0.2s, box-shadow 0.25s;
}
.btn-reserve:hover {
  transform: translateY(-2px);
  background: #ff4097;
  box-shadow: 0 18px 42px rgba(255, 90, 167, 0.42);
}
.btn-ghost {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 12px 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--pink); border-bottom-color: var(--pink); }

.festival-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.festival-tags li {
  padding: 9px 18px;
  background: white;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.15s, box-shadow 0.15s;
}
.festival-tags li:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
}

.invite-card {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 440px;
  margin: 0;
}
.invite-card::before {
  content: '';
  position: absolute;
  inset: -18px;
  background: linear-gradient(45deg, var(--pink), var(--orange), var(--teal), var(--purple));
  z-index: -1;
  border-radius: var(--radius-lg);
  transform: rotate(3deg);
  opacity: 0.28;
  filter: blur(22px);
}
.invite-card img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 8px solid white;
  transform: rotate(2deg);
  transition: transform 0.5s var(--ease);
}
.invite-card:hover img { transform: rotate(0) scale(1.02); }
.invite-tape {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 110px;
  height: 24px;
  background: linear-gradient(180deg, rgba(255, 180, 69, 0.85), rgba(255, 180, 69, 0.6));
  border-radius: 2px;
  box-shadow: 0 4px 10px rgba(44, 26, 68, 0.1);
  z-index: 2;
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .hero-sub, .details { margin-inline: auto; }
  .cta-row, .festival-tags { justify-content: center; }
  .invite-card img { transform: rotate(0); }
  .bg-daisy-tr, .bg-peace { opacity: 0.3; }
}

/* ─── Countdown ──────────────────────────────────────────────── */
.countdown { text-align: center; }
.timer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 740px;
  margin: 0 auto;
}
.timer-unit {
  background: white;
  border-radius: var(--radius-md);
  padding: 26px 12px 18px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.timer-unit:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.timer-unit strong {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.timer-unit span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
}
.timer-foot {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.95rem;
}

@media (max-width: 520px) {
  .timer { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Activities ─────────────────────────────────────────────── */
.activity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.activity {
  position: relative;
  background: white;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  overflow: hidden;
}
.activity::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent, var(--pink));
}
.activity:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(var(--accent-rgb, 255, 90, 167), 0.22);
  border-color: rgba(var(--accent-rgb, 255, 90, 167), 0.35);
}
.activity-icon {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(var(--accent-rgb, 255, 90, 167), 0.14);
  color: var(--accent, var(--pink));
}
.activity-icon svg { width: 36px; height: 36px; display: block; }
.activity h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--ink);
  line-height: 1.2;
}
.activity p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.55;
}
.activities-foot {
  margin: 36px auto 0;
  text-align: center;
  color: var(--ink-soft);
  font-style: italic;
  font-size: 0.98rem;
  max-width: 560px;
}

@media (max-width: 1100px) {
  .activity-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .activity-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .activity { padding: 22px 20px; }
}
@media (max-width: 460px) {
  .activity-grid { grid-template-columns: 1fr; }
}

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}
.faq-item {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.25s var(--ease), border-color 0.25s;
}
.faq-item[open] {
  border-color: rgba(255, 90, 167, 0.35);
  box-shadow: 0 14px 36px rgba(255, 90, 167, 0.12);
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }
.faq-mark {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 90, 167, 0.14);
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s var(--ease);
}
.faq-mark::before,
.faq-mark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--pink);
  border-radius: 2px;
  transition: opacity 0.2s, background 0.2s;
}
.faq-mark::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.faq-mark::after  { width: 2px; height: 12px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-mark { background: var(--pink); transform: rotate(135deg); }
.faq-item[open] .faq-mark::before { background: white; }
.faq-item[open] .faq-mark::after { opacity: 0; }
.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.6;
}

@media (max-width: 760px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* ─── Last Call (gradient panel) ─────────────────────────────── */
.lastcall { display: flex; justify-content: center; }
.lastcall-panel {
  position: relative;
  width: 100%;
  max-width: 820px;
  padding: 64px 40px;
  text-align: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #ff5aa7 0%, #8e58c4 60%, #5a3aa8 100%);
  color: white;
  box-shadow: 0 30px 70px rgba(142, 88, 196, 0.3);
  overflow: hidden;
}
.lastcall-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(at 80% 20%, rgba(255, 180, 69, 0.35), transparent 50%),
    radial-gradient(at 20% 80%, rgba(34, 189, 183, 0.3), transparent 50%);
  z-index: 0;
}
.lastcall-panel > * { position: relative; z-index: 1; }
.lastcall-panel h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4.4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 10px 0 28px;
  color: white;
}
.lastcall-deco {
  position: absolute;
  width: 90px;
  height: 90px;
  opacity: 0.55;
  z-index: 1;
}
.lastcall-deco-l { top: 24px; left: 26px; color: rgba(255, 180, 69, 0.9); animation: drift 7s ease-in-out infinite alternate; }
.lastcall-deco-r { bottom: 24px; right: 26px; color: rgba(255, 255, 255, 0.6); animation: drift 8s ease-in-out infinite alternate-reverse; }
.btn-reserve-light {
  background: white;
  color: var(--pink);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}
.btn-reserve-light:hover {
  background: white;
  color: #d8267a;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.25);
}
.lastcall-foot {
  margin: 20px 0 0;
  font-size: 0.85rem;
  opacity: 0.85;
  font-weight: 600;
  letter-spacing: 0.04em;
}
@media (max-width: 600px) {
  .lastcall-panel { padding: 50px 26px; }
  .lastcall-deco { width: 60px; height: 60px; }
}

/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer {
  margin-top: 80px;
  padding: 70px 24px 36px;
  background: var(--ink);
  color: rgba(255, 253, 245, 0.85);
}
.footer-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--off-white);
  margin-bottom: 24px;
}
.footer-brand em { color: var(--orange); font-style: italic; }
.footer-brand svg { width: 32px; height: 32px; color: var(--pink); }

.footer-presented {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 0 0 18px;
}
.footer-presented span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 253, 245, 0.55);
}
.footer-presented strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--off-white);
  font-weight: 900;
}
.footer-meta { margin: 12px 0 0; font-size: 0.93rem; color: rgba(255, 253, 245, 0.7); }
.footer-fineprint { margin: 30px 0 0; font-size: 0.78rem; color: rgba(255, 253, 245, 0.45); letter-spacing: 0.03em; }

/* ─── Modal ──────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 26, 68, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
  padding: 20px;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }

.modal-content {
  position: relative;
  background: var(--off-white);
  padding: 44px 36px 36px;
  border-radius: var(--radius-lg);
  max-width: 460px;
  width: 100%;
  box-shadow: 0 40px 100px rgba(44, 26, 68, 0.4);
  border: 2px solid white;
  transform: scale(0.94) translateY(20px);
  transition: transform 0.45s var(--ease);
}
.modal-overlay.active .modal-content { transform: scale(1) translateY(0); }

.modal-deco {
  width: 56px;
  height: 56px;
  margin: 0 auto 8px;
  display: block;
  color: var(--pink);
}
.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  margin: 4px 0 0;
  text-align: center;
  color: var(--ink);
  line-height: 1.05;
}

.rsvp-form { display: grid; gap: 14px; margin-top: 24px; }
.form-group { display: grid; gap: 6px; }
.rsvp-form label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--pink);
}
.rsvp-form input,
.rsvp-form select {
  padding: 13px 16px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 1rem;
  background: white;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.rsvp-form input:focus,
.rsvp-form select:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(255, 90, 167, 0.15);
}
.kid-ages:empty { display: none; }
.kid-ages {
  padding: 16px;
  background: rgba(255, 90, 167, 0.06);
  border: 1px dashed rgba(255, 90, 167, 0.4);
  border-radius: var(--radius-sm);
}
.kid-ages-intro {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  text-align: center;
}
.kid-ages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 8px;
}
.kid-age-item { display: grid; gap: 4px; }
.kid-age-item label {
  font-size: 0.66rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  color: var(--ink-soft) !important;
  text-align: center;
}
.kid-age-item input {
  padding: 10px 8px !important;
  text-align: center;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.submit-btn {
  margin-top: 6px;
  padding: 15px;
  background: var(--pink);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(255, 90, 167, 0.3);
  transition: transform 0.2s var(--ease), background 0.2s, box-shadow 0.2s;
}
.submit-btn:hover {
  transform: translateY(-2px);
  background: #ff4097;
  box-shadow: 0 16px 32px rgba(255, 90, 167, 0.42);
}
.submit-btn:disabled { opacity: 0.7; cursor: progress; }

.close-modal {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(44, 26, 68, 0.08);
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--ink);
  transition: background 0.2s, transform 0.2s;
}
.close-modal:hover { background: rgba(44, 26, 68, 0.15); transform: rotate(90deg); }

#success-splash { text-align: center; padding: 8px 0 4px; }
.success-line {
  background: var(--ink);
  color: white;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  margin: 18px 0;
}
.success-foot { opacity: 0.7; margin: 0; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 760px) {
  main { padding: 96px 18px 0; gap: 80px; }
  .section-head { margin-bottom: 36px; }
  .lastcall-panel { padding: 50px 28px; }
  .details { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  main { padding: 92px 14px 0; }
  .modal-content { padding: 36px 24px 28px; }
  .modal-title { font-size: 1.9rem; }
  .nav-brand span { font-size: 1.05rem; }
  .nav-cta { padding: 9px 16px; font-size: 0.74rem; }
}
