/* ============================================
   Amora & Co. — Design Tokens
   ============================================ */
:root {
  /* Brand colors, sampled directly from the Amora & Co. logo artwork */
  --lavender: #cbb4d1;
  --lavender-deep: #8a6b9c;
  --blush: #f0b2b2;
  --blush-deep: #c2726b;
  --rose-ink: #7a4a5c;
  --gold: #f3c888;
  --gold-deep: #ad8b2e;
  --sage: #a8c8c0;
  --sage-deep: #4f8a72;
  --sky: #b0c8d0;
  --sky-deep: #5c7f91;

  /* Neutrals */
  --cream: #fdfaf5;
  --cream-alt: #f6efe4;
  --white: #ffffff;
  --ink: #4a4038;
  --ink-soft: #857a6d;
  --border: #ece3d4;

  /* Semantic */
  --color-bg: var(--cream);
  --color-bg-alt: var(--cream-alt);
  --color-text: var(--ink);
  --color-text-soft: var(--ink-soft);
  /* Buttons need a lighter tint of --blush than the illustration uses, to keep --rose-ink text readable */
  --color-primary: color-mix(in srgb, var(--blush) 55%, white);
  --color-primary-text: var(--rose-ink);
  --color-primary-hover: color-mix(in srgb, var(--blush) 75%, white);
  --color-accent: var(--lavender-deep);

  /* Type */
  --font-heading: "Cormorant Garamond", "Georgia", serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;

  /* Fluid type scale */
  --fs-xs: clamp(0.8rem, 0.77rem + 0.15vw, 0.9rem);
  --fs-sm: clamp(0.9rem, 0.87rem + 0.15vw, 1rem);
  --fs-base: clamp(1rem, 0.97rem + 0.15vw, 1.125rem);
  --fs-lg: clamp(1.15rem, 1.1rem + 0.25vw, 1.35rem);
  --fs-xl: clamp(1.5rem, 1.35rem + 0.75vw, 2rem);
  --fs-2xl: clamp(2rem, 1.7rem + 1.5vw, 3rem);
  --fs-3xl: clamp(2.6rem, 2.1rem + 2.5vw, 4.25rem);

  /* Spacing (8pt rhythm, spacious for premium feel) */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Effects */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-full: 999px;
  --shadow-sm: 0 2px 8px rgba(69, 58, 48, 0.06);
  --shadow-md: 0 8px 24px rgba(69, 58, 48, 0.1);
  --shadow-lg: 0 20px 48px rgba(69, 58, 48, 0.14);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 150ms;
  --dur-base: 250ms;
  --dur-slow: 400ms;

  --header-h: 84px;
}

/* ============================================
   Reset
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  min-height: 100dvh;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.section { padding-block: var(--space-3xl); position: relative; overflow-x: clip; }
.section-alt { background: var(--color-bg-alt); }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-ink);
  margin-bottom: var(--space-sm);
}

.section-head {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: var(--space-xl);
}
.section-head h2 { font-size: var(--fs-2xl); margin-bottom: var(--space-sm); }
.section-head p { color: var(--color-text-soft); font-size: var(--fs-lg); }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 1rem 1.75rem;
  min-height: 48px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--fs-sm);
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              background-color var(--dur-fast) var(--ease-out);
  touch-action: manipulation;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--color-primary);
  color: var(--color-primary-text);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--color-primary-hover); box-shadow: var(--shadow-lg); }

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { background: var(--white); border-color: var(--blush-deep); }

.btn-block { width: 100%; }

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2.5px solid var(--color-accent);
  outline-offset: 3px;
}

/* ============================================
   Header
   ============================================ */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              height var(--dur-base) var(--ease-out);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.site-header.is-scrolled {
  background: rgba(251, 246, 239, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-text);
}
.logo .logo-mark { height: 34px; width: auto; flex-shrink: 0; }
.logo .wordmark { height: 26px; width: auto; }

.nav-desktop {
  display: none;
}
.nav-desktop ul { display: flex; align-items: center; gap: var(--space-lg); }
.nav-desktop a {
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--color-text-soft);
  padding: 0.5rem 0;
  position: relative;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--blush-deep);
  transition: width var(--dur-base) var(--ease-out);
}
.nav-desktop a:hover { color: var(--color-text); }
.nav-desktop a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: var(--space-sm); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base) var(--ease-out);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  inset: var(--header-h) var(--space-md) auto;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base) var(--ease-out), visibility var(--dur-base);
  z-index: 90;
}
.nav-mobile.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
.nav-mobile a {
  padding: 0.9rem 0.75rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: var(--fs-lg);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-mobile a:hover, .nav-mobile a:focus-visible { background: var(--color-bg-alt); }
.nav-mobile .btn { margin-top: var(--space-xs); }

@media (min-width: 900px) {
  .nav-desktop { display: block; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none; }
}

/* Below this width the header logo + "Book Now" pill + hamburger no longer
   fit on one line. The mobile drawer and sticky bottom bar already offer a
   booking CTA, so drop the header button and keep only the hamburger. */
@media (max-width: 499px) {
  .header-actions .btn-primary { display: none; }
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  padding-block: calc(var(--header-h) + var(--space-2xl)) var(--space-2xl);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(38px);
  opacity: 0.6;
  animation: float 9s ease-in-out infinite;
  will-change: transform;
}
.hero-shape.s1 { width: 260px; height: 260px; background: var(--lavender); top: 4%; left: 2%; animation-delay: 0s; }
.hero-shape.s2 { width: 200px; height: 200px; background: var(--gold); top: 60%; left: 8%; animation-delay: 1.5s; }
.hero-shape.s3 { width: 300px; height: 300px; background: var(--sky); top: 0%; right: 2%; animation-delay: 0.8s; }
.hero-shape.s4 { width: 180px; height: 180px; background: var(--sage); bottom: 4%; right: 10%; animation-delay: 2.2s; }
.hero-shape.s5 { width: 130px; height: 130px; background: var(--blush); bottom: 26%; left: 44%; animation-delay: 3s; }

.hero-sparkle {
  position: absolute;
  color: var(--gold-deep);
  opacity: 0.7;
  animation: twinkle 3.4s ease-in-out infinite;
}
.hero-sparkle svg { width: 100%; height: 100%; }
.hero-sparkle.sp1 { width: 20px; height: 20px; top: 14%; left: 30%; animation-delay: 0s; color: var(--lavender-deep); }
.hero-sparkle.sp2 { width: 14px; height: 14px; top: 66%; left: 22%; animation-delay: 0.6s; color: var(--blush-deep); }
.hero-sparkle.sp3 { width: 24px; height: 24px; top: 20%; right: 18%; animation-delay: 1.2s; }
.hero-sparkle.sp4 { width: 16px; height: 16px; bottom: 18%; right: 28%; animation-delay: 1.8s; color: var(--sage-deep); }

@keyframes twinkle {
  0%, 100% { transform: scale(0.85); opacity: 0.45; }
  50% { transform: scale(1.05); opacity: 0.85; }
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(0, -26px) scale(1.05); }
}

.hero-inner {
  display: grid;
  gap: var(--space-2xl);
  align-items: center;
}
.hero-content { text-align: center; max-width: 720px; margin-inline: auto; }
.hero-content h1 {
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-md);
}
.hero-content h1 em {
  font-style: italic;
  line-height: 1.1;
  display: inline-block;
  padding-bottom: 0.08em;
  background: linear-gradient(90deg, var(--blush-deep), var(--lavender-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-content .lede {
  font-size: var(--fs-lg);
  color: var(--color-text-soft);
  margin-bottom: var(--space-lg);
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-lg);
}
.hero-illustration {
  display: flex;
  justify-content: center;
}
.hero-illustration img { width: min(100%, 560px); height: auto; animation: bob 6s ease-in-out infinite; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ============================================
   Reveal-on-scroll
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { transition-delay: calc(var(--i, 0) * 70ms); }

/* ============================================
   Feature cards
   ============================================ */
.features-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(3, 1fr);
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-sm);
  flex-shrink: 0;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 { font-size: var(--fs-lg); margin-bottom: 0.5rem; }
.feature-card p { color: var(--color-text-soft); font-size: var(--fs-sm); }

.feature-card.is-featured {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  background: linear-gradient(120deg, color-mix(in srgb, var(--lavender) 55%, white), color-mix(in srgb, var(--blush) 55%, white));
  position: relative;
  overflow: hidden;
}
.feature-card.is-featured .feature-icon {
  width: 72px; height: 72px;
  background: var(--white);
  margin-bottom: 0;
}
.feature-card.is-featured .feature-icon svg { width: 36px; height: 36px; }
.feature-card.is-featured h3 { font-size: var(--fs-xl); margin-bottom: 0.35rem; }
.feature-card.is-featured p { max-width: 46ch; }

.feature-card.tint-bg-sage { background: color-mix(in srgb, var(--sage) 40%, white); }
.feature-card.tint-bg-gold { background: color-mix(in srgb, var(--gold) 45%, white); }
.feature-card.tint-bg-sky { background: color-mix(in srgb, var(--sky) 40%, white); }
.feature-card.tint-bg-sage .feature-icon,
.feature-card.tint-bg-gold .feature-icon,
.feature-card.tint-bg-sky .feature-icon { background: var(--white); }

@media (max-width: 767px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-card.is-featured { flex-direction: column; text-align: center; }
}

.tint-lavender { background: color-mix(in srgb, var(--lavender) 30%, white); color: var(--lavender-deep); }
.tint-pink { background: color-mix(in srgb, var(--blush) 30%, white); color: var(--blush-deep); }
.tint-gold { background: color-mix(in srgb, var(--gold) 35%, white); color: var(--gold-deep); }
.tint-sage { background: color-mix(in srgb, var(--sage) 30%, white); color: var(--sage-deep); }
.tint-blue { background: color-mix(in srgb, var(--sky) 30%, white); color: var(--sky-deep); }

/* ============================================
   Stats strip
   ============================================ */
.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg) var(--space-xl);
  text-align: center;
}
.stats > div { flex: 1 1 140px; max-width: 220px; }
.stat-num {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  color: var(--rose-ink);
  font-variant-numeric: tabular-nums;
}
.stat-label { color: var(--color-text-soft); font-weight: 700; font-size: var(--fs-sm); }

/* ============================================
   How It Works steps
   ============================================ */
.steps-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(4, 1fr);
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-card h3 { font-size: var(--fs-lg); margin-bottom: 0.5rem; }
.step-card p { color: var(--color-text-soft); font-size: var(--fs-sm); }

@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .steps-grid { grid-template-columns: 1fr; }
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.03em;
}

/* ============================================
   Pricing / Party Packages
   ============================================ */
.pricing-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: stretch;
}
.price-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
  border: 2px solid transparent;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.price-card.is-featured {
  border-color: var(--blush-deep);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}
.price-card .badge-popular {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.price-card h3 { font-size: var(--fs-lg); margin-bottom: 0.35rem; }
.price-card .price-sub { color: var(--color-text-soft); font-size: var(--fs-sm); margin-bottom: var(--space-sm); }
.price-value { font-family: var(--font-heading); font-size: var(--fs-2xl); margin-bottom: var(--space-md); }
.price-value small { font-family: var(--font-body); font-size: var(--fs-sm); font-weight: 700; color: var(--color-text-soft); }
.price-list { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: var(--space-lg); }
.price-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: var(--fs-sm); }
.price-list svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 0.2em; color: var(--sage-deep); }
.price-card .btn { margin-top: auto; }

.addons {
  max-width: 640px;
  margin: var(--space-2xl) auto 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  box-shadow: var(--shadow-sm);
}
.addons h3 {
  font-size: var(--fs-lg);
  text-align: center;
  margin-bottom: var(--space-md);
}
.addons-list { display: flex; flex-direction: column; }
.addons-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-md);
  padding-block: 0.75rem;
  font-size: var(--fs-sm);
}
.addons-list li + li { border-top: 1px solid var(--border); }
.addons-list li span:first-child { color: var(--color-text); font-weight: 600; }
.addons-list li span:last-child { color: var(--color-text-soft); font-weight: 700; white-space: nowrap; }

/* ============================================
   Booking form
   ============================================ */
.booking-wrap {
  display: grid;
  gap: var(--space-xl);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}
.booking-wrap > * { min-width: 0; }
.booking-info h2 { font-size: var(--fs-2xl); margin-bottom: var(--space-sm); }
.booking-info p { color: var(--color-text-soft); margin-bottom: var(--space-md); }
.booking-info ul { display: flex; flex-direction: column; gap: 0.75rem; }
.booking-info li { display: flex; align-items: center; gap: 0.7rem; font-weight: 700; font-size: var(--fs-sm); }
.booking-info li svg { width: 20px; height: 20px; color: var(--rose-ink); flex-shrink: 0; }

.form-grid { display: grid; gap: var(--space-md); grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-field.full { grid-column: 1 / -1; }
}
.form-field { position: relative; display: flex; flex-direction: column; gap: 0.4rem; min-width: 0; }
.form-field label { font-size: var(--fs-sm); font-weight: 700; color: var(--color-text); }
.form-field .req { color: var(--rose-ink); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--cream);
  transition: border-color var(--dur-fast) var(--ease-out), background-color var(--dur-fast) var(--ease-out);
}
.form-field textarea { min-height: 110px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blush-deep);
  background: var(--white);
  outline: none;
}
.form-field small { font-size: var(--fs-xs); color: var(--color-text-soft); }
.form-field .error-msg {
  display: none;
  font-size: var(--fs-xs);
  color: var(--rose-ink);
  font-weight: 700;
}
.form-field.has-error input,
.form-field.has-error select { border-color: var(--blush-deep); }
.form-field.has-error .error-msg { display: block; }

.form-submit-row { display: flex; align-items: center; gap: var(--space-md); flex-wrap: wrap; }
.form-note { font-size: var(--fs-xs); color: var(--color-text-soft); }

.btn-loading .btn-label { visibility: hidden; }
.btn-loading { position: relative; pointer-events: none; }
.btn-loading::after {
  content: "";
  position: absolute;
  width: 18px; height: 18px;
  border: 2.5px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-success {
  display: none;
  align-items: center;
  gap: var(--space-sm);
  background: color-mix(in srgb, var(--sage) 25%, white);
  border: 1.5px solid var(--sage-deep);
  color: var(--sage-deep);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  font-weight: 700;
  margin-top: var(--space-md);
}
.form-success.is-visible { display: flex; }
.form-success svg { width: 24px; height: 24px; flex-shrink: 0; }

.form-error {
  display: none;
  align-items: center;
  gap: var(--space-sm);
  background: color-mix(in srgb, var(--blush) 30%, white);
  border: 1.5px solid var(--rose-ink);
  color: var(--rose-ink);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  font-weight: 700;
  margin-top: var(--space-md);
}
.form-error.is-visible { display: flex; }
.form-error svg { width: 24px; height: 24px; flex-shrink: 0; }
.form-error a { text-decoration: underline; }

/* Honeypot spam trap: hidden from sighted users, still present in the DOM for bots */
.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 900px) {
  .booking-wrap { grid-template-columns: 0.85fr 1.15fr; }
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding-block: var(--space-2xl) var(--space-lg);
  position: relative;
  overflow-x: clip;
}
.footer-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
  margin-bottom: var(--space-xl);
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
}
.footer-brand .logo { color: var(--cream); margin-bottom: var(--space-sm); }
.footer-brand p { color: #d8cabf; font-size: var(--fs-sm); max-width: 30ch; }
.footer-col h4 { font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--space-sm); color: var(--gold); }
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a, .footer-col p { color: #d8cabf; font-size: var(--fs-sm); }
.footer-col a:hover { color: var(--white); }
.social-row { display: flex; gap: 0.75rem; margin-top: var(--space-sm); }
.social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.social-row a:hover { background: var(--blush-deep); transform: translateY(-3px); }
.social-row svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: #b3a396;
}

/* Sticky mobile book bar */
.mobile-book-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 95;
  padding: 0.75rem var(--space-md);
  padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
  background: rgba(251, 246, 239, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 -4px 16px rgba(69,58,48,0.1);
}
@media (min-width: 900px) { .mobile-book-bar { display: none; } }

@media (min-width: 900px) { body { padding-bottom: 0; } }
body { padding-bottom: 76px; }
@media (min-width: 900px) { body { padding-bottom: 0; } }

/* ============================================
   Accessibility: reduced motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

.skip-link {
  position: absolute;
  left: var(--space-sm);
  top: -60px;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 200;
  transition: top var(--dur-fast) var(--ease-out);
  font-weight: 700;
}
.skip-link:focus { top: var(--space-sm); }

/* ============================================
   Party garland (side decoration, straddles section boundaries
   so it visually bridges one section into the next). Only shown
   once there's real gutter space outside the 1240px container,
   so nothing ever overlaps real content.
   ============================================ */
.balloon-cluster {
  display: none;
  position: absolute;
  top: var(--bc-top, -110px);
  width: 120px;
  height: 260px;
  pointer-events: none;
  z-index: 1;
}
.balloon-cluster.side-left { left: 14px; }
.balloon-cluster.side-right { right: 14px; }
.balloon-cluster.on-dark { opacity: 0.9; }

.balloon {
  position: absolute;
  animation: balloon-float 7s ease-in-out infinite;
  transform-origin: center;
}
.balloon svg { display: block; width: 100%; height: 100%; }
.balloon.b1 { width: 66px; height: 100px; top: 0; left: 20px; animation-delay: 0s; }
.balloon.b2 { width: 52px; height: 80px; top: 48px; left: 0; animation-delay: 0.9s; }
.balloon.b3 { width: 44px; height: 66px; top: 28px; left: 68px; animation-delay: 1.7s; }

.confetti-dot {
  position: absolute;
  border-radius: 50%;
  animation: balloon-float 5s ease-in-out infinite;
}
.confetti-star {
  position: absolute;
  animation: twinkle 3.2s ease-in-out infinite;
}
.confetti-star svg { width: 100%; height: 100%; }

@keyframes balloon-float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-14px) rotate(3deg); }
}

/* Jumping castle decoration: a bigger, sparser flagship element
   placed at a couple of key transitions, same straddle logic. */
.castle-deco {
  display: none;
  position: absolute;
  top: var(--bc-top, -95px);
  width: 168px;
  height: 156px;
  pointer-events: none;
  z-index: 1;
  animation: castle-sway 6s ease-in-out infinite;
}
.castle-deco.side-left { left: 14px; }
.castle-deco.side-right { right: 14px; }
.castle-deco svg { display: block; width: 100%; height: 100%; }

@keyframes castle-sway {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

/* Reveal the garland only once there's genuine gutter space beyond the
   1240px container: at 1650px the gutter is ~205px, comfortably fitting
   the 168px-wide castle (the largest element) offset 14px from the edge. */
@media (min-width: 1650px) {
  .balloon-cluster, .castle-deco { display: block; }
}
