/* =========================================================
   Layla's Bunnyville — wallpaper/editorial concept
   ========================================================= */

:root {
  /* Palette matches the Bunnyville logo — blue-forward:
     logo teal drives primary, powder-blues carry the accents,
     botanical green is reserved for subtle moments only. */
  --bg: #FDFEFF;

  /* was pink family → now powder-blue / deep navy-teal accents */
  --pink-soft: #B5CDD8;
  --pink-light: #E0ECF2;
  --pink-deep: #2C5568;     /* deep navy-teal, complements the primary */
  --pink-btn:  #4A7A88;     /* primary button uses logo teal */

  /* was lavender family → now soft blue-grey tones */
  --lav: #B8CDDA;
  --lav-light: #E3ECF2;
  --lav-deep: #5E7F92;

  /* was plum family → now deep teal-ink for text + headings */
  --plum: #1F3F4E;
  --plum-mid: #476878;

  /* primary blue family → logo teal */
  --blue: #4A7A88;
  --blue-deep: #1F4B5C;
  --blue-soft: #A5C2CE;
  --blue-light: #D8E6EC;

  --ink: #172E38;
  --paper: #FDFFFE;

  /* Warm rose pinks — used as soft accents alongside the blue brand */
  --rose-soft: #F5D6DF;
  --rose: #E8A4B8;
  --rose-deep: #C97A91;
  --shadow-sm: 0 2px 10px rgba(31, 63, 78, 0.08);
  --shadow-md: 0 10px 40px rgba(31, 63, 78, 0.12);
  --shadow-lg: 0 20px 60px rgba(31, 63, 78, 0.18);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --maxw: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ----- Wallpaper pattern (site background) ----- */
.wallpaper {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: var(--bg);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><g fill='none' stroke='%234A7A88' stroke-width='1.2' opacity='0.32'><path d='M30 55 c-6 -10 -2 -22 8 -22 c6 0 10 5 10 12 c0 -7 4 -12 10 -12 c10 0 14 12 8 22 l-18 22 z'/><circle cx='118' cy='30' r='3' fill='%23A5C2CE' stroke='none' opacity='0.6'/><circle cx='130' cy='42' r='2' fill='%23A5C2CE' stroke='none' opacity='0.6'/><circle cx='108' cy='44' r='2' fill='%23A5C2CE' stroke='none' opacity='0.6'/><g transform='translate(110 110)'><ellipse cx='0' cy='10' rx='10' ry='8' fill='%23B5CDD8' stroke='none' opacity='0.55'/><ellipse cx='-5' cy='-4' rx='3' ry='8' fill='%23B5CDD8' stroke='none' opacity='0.55'/><ellipse cx='5' cy='-4' rx='3' ry='8' fill='%23B5CDD8' stroke='none' opacity='0.55'/><circle cx='-2' cy='8' r='1' fill='%231F3F4E' stroke='none'/><circle cx='2' cy='8' r='1' fill='%231F3F4E' stroke='none'/></g><g transform='translate(35 120)'><path d='M0 0 c-3 -6 4 -10 5 -4 c1 -6 8 -2 5 4 l-5 6 z' fill='%23A5C2CE' stroke='none' opacity='0.55'/></g></g></svg>");
  background-size: 240px 240px;
}

/* Soft gradient veil over wallpaper — washes pattern toward white */
.wallpaper::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.96) 70%),
    linear-gradient(180deg, rgba(255,255,255,0.75), rgba(255,255,255,0.6));
}

/* ----- Typography ----- */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--plum);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
h1 { font-size: clamp(2.6rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); }
h4 { font-size: 1.15rem; }

.italic { font-style: italic; font-weight: 400; color: var(--rose-deep); }
.italic-lav { font-style: italic; font-weight: 400; color: var(--lav-deep); }
.italic-blue { font-style: italic; font-weight: 400; color: var(--blue); }

p { color: #42323F; }
a { color: var(--plum); text-decoration: none; }
a:hover { color: var(--pink-deep); }

.eyebrow {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--plum-mid);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--plum-mid);
  opacity: 0.5;
}
.eyebrow.left::before { display: none; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--plum);
  color: var(--paper);
}
.btn-primary:hover {
  background: var(--pink-deep);
  color: var(--paper);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-pink {
  background: var(--pink-btn);
  color: var(--plum);
}
.btn-pink:hover {
  background: var(--pink-deep);
  color: var(--paper);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--plum);
  border: 1.5px solid var(--plum);
}
.btn-outline:hover {
  background: var(--plum);
  color: var(--paper);
}
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }

/* ----- Navigation ----- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(244, 248, 251, 0.82);
  border-bottom: 1px solid rgba(165, 194, 206, 0.45);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--plum);
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--pink-deep);
  box-shadow: 0 0 0 4px var(--pink-light);
}
.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-shadow: 0 2px 8px rgba(35, 73, 81, 0.12);
}
.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--plum);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0;
  width: 0;
  height: 2px;
  background: var(--pink-deep);
  transition: width 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px; height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--plum);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----- Layout containers ----- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

/* The "paper on wallpaper" frame concept: pages sit inside a
   soft framed canvas so the wallpaper peeks around the edges */
.frame {
  max-width: 1320px;
  margin: 28px auto;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 20px 60px rgba(31, 63, 78, 0.09),
    0 4px 18px rgba(31, 63, 78, 0.06);
  border: 1px solid rgba(165, 194, 206, 0.35);
  overflow: hidden;
  position: relative;
}

/* Decorative scallop strip at top of frame */
.frame::before {
  content: "";
  display: block;
  height: 12px;
  background-image: radial-gradient(circle at 8px 8px, var(--pink-soft) 4px, transparent 5px);
  background-size: 16px 12px;
  background-repeat: repeat-x;
  background-position: center top;
}

/* ----- Hero ----- */
.hero {
  position: relative;
  padding: 90px 56px 80px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-copy h1 {
  margin: 18px 0 24px;
}
.hero-copy .hero-sub {
  font-size: 1.1rem;
  color: var(--plum-mid);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-meta {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px dashed rgba(122, 86, 134, 0.3);
}
.hero-meta div { display: flex; flex-direction: column; gap: 4px; }
.hero-meta .k { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--plum-mid); }
.hero-meta .v { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--plum); }

/* Hero picture frame — arched top like a Victorian portrait */
.hero-art {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 260px 260px 36px 36px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.6), transparent 45%),
    linear-gradient(160deg, var(--pink-light) 0%, var(--pink-soft) 55%, var(--lav-light) 100%);
  border: 10px solid var(--paper);
  box-shadow: var(--shadow-lg), 0 0 0 1.5px var(--pink-soft);
  overflow: hidden;
}
.hero-art .bunny-illustration {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art .ribbon {
  position: absolute;
  top: 24px; left: -34px;
  background: var(--plum);
  color: var(--paper);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.9rem;
  padding: 8px 44px;
  transform: rotate(-12deg);
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.04em;
}
.hero-art .sticker {
  position: absolute;
  bottom: 24px; right: 24px;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--lav-light);
  border: 1.5px dashed var(--lav-deep);
  color: var(--lav-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.88rem;
  line-height: 1.15;
  padding: 10px;
  transform: rotate(8deg);
}

/* Decorative floating shapes */
.float-shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.9;
}

/* ----- Page header (sub-pages) ----- */
.page-header {
  padding: 90px 56px 60px;
  text-align: center;
  position: relative;
  border-bottom: 1px dashed rgba(224, 154, 176, 0.35);
}
.page-header h1 { margin: 16px 0 18px; }
.page-header p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--plum-mid);
  font-size: 1.08rem;
}

/* ----- Sections ----- */
section {
  padding: 90px 56px;
  position: relative;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-head h2 { margin: 16px 0 18px; }
.section-head p { color: var(--plum-mid); font-size: 1.05rem; }

/* ----- Pricing cards (framed portraits) ----- */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}
.walkin-line {
  text-align: center;
  margin: 32px auto 0;
  max-width: 640px;
  color: var(--plum-mid);
  font-size: 1rem;
}
.walkin-line a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}
.walkin-line a:hover { color: var(--blue-deep); }
.price-card {
  position: relative;
  background: var(--paper);
  border: 1px solid rgba(224, 154, 176, 0.28);
  border-radius: var(--radius-md);
  padding: 44px 32px 36px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.price-card.feature {
  background: linear-gradient(180deg, var(--blue-light) 0%, var(--paper) 60%);
  border-color: var(--blue);
  border-width: 2px;
}
.price-card .badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--plum);
  color: var(--paper);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.price-card .duration {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--plum-mid);
}
.price-card .amount {
  font-family: 'Playfair Display', serif;
  font-size: 3.6rem;
  font-weight: 600;
  color: var(--plum);
  line-height: 1;
  margin: 8px 0 4px;
}
.price-card .per {
  color: var(--plum-mid);
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.price-card ul {
  list-style: none;
  margin: 0 0 28px;
  padding: 20px 0 0;
  border-top: 1px dashed rgba(122, 86, 134, 0.25);
}
.price-card ul li {
  padding: 8px 0 8px 26px;
  position: relative;
  color: #4A3A48;
  font-size: 0.95rem;
}
.price-card ul li::before {
  content: "❀";
  position: absolute;
  left: 0;
  color: var(--pink-deep);
  font-size: 0.9rem;
}
.price-card.walkin {
  background: var(--lav-light);
  border-color: var(--lav-deep);
}
.price-card.walkin ul li::before { content: "✦"; color: var(--lav-deep); }
.price-card .walkin-note {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.4;
  color: var(--plum);
  margin: 12px 0 22px;
  padding-right: 4px;
  min-height: 3.2em;
  display: flex;
  align-items: center;
}

/* ----- About / split sections ----- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split-art {
  aspect-ratio: 1/1;
  border-radius: 50% 50% 50% 20%;
  background: linear-gradient(135deg, var(--lav-light), var(--pink-light));
  border: 10px solid var(--paper);
  box-shadow: var(--shadow-md), 0 0 0 1.5px var(--lav);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ----- Press / "As Seen On" logos ----- */
.press-logos {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px dashed rgba(31, 63, 78, 0.18);
}
.press-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.press-logo img {
  max-height: 100%;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.press-logo:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* ----- Review cards (pinned polaroids) ----- */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.review {
  background: var(--paper);
  padding: 30px 28px 34px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(224, 154, 176, 0.22);
  position: relative;
  transition: transform 0.3s ease;
}
.review:nth-child(1) { transform: rotate(-1.2deg); }
.review:nth-child(2) { transform: rotate(0.6deg); margin-top: 20px; }
.review:nth-child(3) { transform: rotate(-0.4deg); }
.review:hover { transform: rotate(0) translateY(-4px); box-shadow: var(--shadow-md); }
.review .pin {
  position: absolute;
  top: -10px; left: 50%;
  width: 16px; height: 16px;
  background: var(--rose);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2px 4px rgba(0,0,0,0.15), 0 0 0 3px rgba(232, 164, 184, 0.22);
}
.review .stars { color: var(--rose-deep); letter-spacing: 2px; margin-bottom: 14px; }
.review blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--plum);
  line-height: 1.45;
  margin-bottom: 18px;
}
.review .who {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--plum-mid);
  padding-top: 14px;
  border-top: 1px dashed rgba(122,86,134,0.25);
}

/* ----- Party preview ----- */
.party-preview {
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--lav-light) 100%);
  border-radius: var(--radius-md);
  padding: 68px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(224, 154, 176, 0.3);
}
.party-preview::before {
  content: "$600";
  position: absolute;
  right: -20px; top: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 12rem;
  font-weight: 700;
  color: rgba(75, 45, 82, 0.05);
  letter-spacing: -0.05em;
  pointer-events: none;
}

.party-includes {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}
.party-includes li {
  padding-left: 26px;
  position: relative;
  font-size: 0.95rem;
  color: #42323F;
}
.party-includes li::before {
  content: "♡";
  position: absolute; left: 0;
  color: var(--pink-deep);
}

/* ----- Walk-in banner ----- */
.walkin-banner {
  background: var(--plum);
  color: var(--paper);
  border-radius: var(--radius-md);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.walkin-banner h3 {
  color: var(--paper);
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.walkin-banner p { color: rgba(255,255,255,0.82); max-width: 520px; }
.walkin-banner::before {
  content: "";
  position: absolute;
  right: -80px; top: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--pink-deep) 0%, transparent 70%);
  opacity: 0.5;
}
/* Happy Hour variant — rose gradient with high-contrast white text. */
.happy-hour-banner {
  background: linear-gradient(135deg, var(--rose-deep) 0%, #B86880 100%);
}
.happy-hour-banner .eyebrow {
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.2em;
  font-size: 1rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 6px;
}
.happy-hour-banner h3 { color: #fff; }
.happy-hour-banner p { color: rgba(255,255,255,0.95); }
.happy-hour-banner p strong { color: #fff; }
.happy-hour-banner::before { display: none; }
.happy-hour-btn {
  background: #fff;
  color: var(--rose-deep);
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(31, 63, 78, 0.18);
}
.happy-hour-btn:hover {
  background: var(--rose-soft);
  color: var(--plum);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(31, 63, 78, 0.22);
}

/* ----- Session / schedule boxes ----- */
.sessions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  margin-bottom: 60px;
}
.session-card {
  background: var(--paper);
  border: 1px solid rgba(224, 154, 176, 0.28);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.session-card .tag {
  display: inline-block;
  background: var(--pink-light);
  color: var(--plum);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  align-self: flex-start;
}
.session-card ul {
  list-style: none;
  padding: 18px 0;
  border-top: 1px dashed rgba(122,86,134,0.2);
  margin-top: 16px;
  flex-grow: 1;
}
.session-card ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: #42323F;
  font-size: 0.95rem;
}
.session-card ul li::before {
  content: "✿";
  position: absolute; left: 0;
  color: var(--pink-deep);
}

/* ----- Info cards (schedule, visit tips) ----- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
/* 4-column variant — used on the membership FAQ ("Good to Know") */
.info-grid.info-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.info-card {
  padding: 32px 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(122,86,134,0.15);
  background: var(--paper);
}
.info-card.lav { background: var(--lav-light); border-color: var(--lav); }
.info-card.pink { background: var(--pink-light); border-color: var(--pink-soft); }
.info-card.sky { background: var(--blue-light); border-color: var(--blue-soft); }
.info-card.sky h4 { color: var(--blue-deep); }
.info-card h4 { color: var(--plum); margin-bottom: 10px; font-family: 'Playfair Display', serif; font-size: 1.3rem; }
.info-card p { color: var(--plum-mid); font-size: 0.95rem; }

/* ----- Schedule image slots ----- */
.schedule-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 60px;
}
/* When only one schedule photo is shown, center it and cap its width */
.schedule-photos:has(> .photo-slot:only-child) {
  grid-template-columns: minmax(0, 520px);
  justify-content: center;
}
.photo-slot {
  border-radius: var(--radius-md);
  border: 8px solid var(--paper);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  text-align: center;
}
.photo-slot img {
  width: 100%;
  display: block;
  border-radius: var(--radius-sm);
}
.schedule-month-label {
  display: block;
  margin-top: 10px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--plum-mid);
  padding-bottom: 4px;
}

/* ----- Express walk-in callout — smaller card next to the walk-ins banner ----- */
.express-callout {
  background: var(--paper);
  border: 1.5px dashed var(--blue);
  border-radius: var(--radius-md);
  padding: 22px 28px;
  margin-top: 18px;
  box-shadow: var(--shadow-sm);
}
.express-callout .eyebrow {
  color: var(--blue-deep);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  font-weight: 700;
}
.express-callout h4 {
  font-family: 'Playfair Display', serif;
  color: var(--plum);
  font-size: 1.25rem;
  margin: 6px 0 6px;
  font-weight: 600;
}
.express-callout p {
  color: var(--plum-mid);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.55;
  max-width: 720px;
}
.express-callout p strong { color: var(--rose-deep); }
.express-callout p a { color: var(--blue); }

/* ----- Data-rendered monthly schedule (replaces the old image) ----- */
.month-schedule {
  background: var(--paper);
  border: 1px solid rgba(165, 194, 206, 0.4);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin: 0 auto 28px;
  max-width: 820px;
  box-shadow: var(--shadow-sm);
}
.month-schedule-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  color: var(--plum);
  margin: 0 0 18px;
  font-weight: 600;
  border-bottom: 1px solid rgba(165, 194, 206, 0.4);
  padding-bottom: 10px;
}
.month-schedule-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.month-schedule-list li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(165, 194, 206, 0.35);
  align-items: baseline;
}
.month-schedule-list li:last-child { border-bottom: none; }
.msch-date {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--blue-deep);
  font-size: 0.85rem;
  text-transform: uppercase;
}
.msch-line {
  color: var(--plum-mid);
  font-size: 0.95rem;
  line-height: 1.55;
}
.msch-line strong { color: var(--rose-deep); font-weight: 700; }
.msch-line a { color: var(--blue); }
.msch-note {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 10px;
  background: rgba(245, 214, 223, 0.55);
  color: var(--rose-deep);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}
.msch-tbd {
  font-style: italic;
  color: var(--plum-mid);
  opacity: 0.8;
}
.msch-footnote {
  margin: 18px 0 0;
  font-size: 0.85rem;
  color: var(--plum-mid);
  font-style: italic;
  border-top: 1px solid rgba(165, 194, 206, 0.35);
  padding-top: 14px;
}
@media (max-width: 640px) {
  .month-schedule { padding: 22px 18px; }
  .month-schedule-list li { grid-template-columns: 1fr; gap: 4px; padding: 12px 0; }
  .msch-date { font-size: 0.8rem; }
}

/* ----- Party details (parties.html) ----- */
.party-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: flex-start;
  margin-bottom: 80px;
}
.party-box {
  background: var(--paper);
  border: 1px solid rgba(224,154,176,0.28);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  margin-bottom: 24px;
}
.party-box h3 {
  color: var(--plum);
  font-size: 1.45rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(122,86,134,0.25);
}
.party-box ul {
  list-style: none;
}
.party-box ul li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: 0.95rem;
  color: #42323F;
}
.party-box ul li::before {
  content: "❀";
  position: absolute; left: 0;
  color: var(--pink-deep);
}

.payment-breakdown {
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-mid) 100%);
  color: var(--paper);
  border-radius: var(--radius-md);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
}
.payment-breakdown h3 { color: var(--paper); margin-bottom: 22px; }
.payment-breakdown .row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.25);
  font-size: 1rem;
}
.payment-breakdown .row:last-of-type { border-bottom: none; padding-top: 22px; font-size: 1.2rem; font-family: 'Playfair Display', serif; }
.payment-breakdown .row .amt { font-weight: 600; }

/* ----- Floats grid (parties) ----- */
.floats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.float-card {
  background: var(--paper);
  border: 1px solid rgba(224,154,176,0.28);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
}
.float-card .ico {
  width: 68px; height: 68px;
  border-radius: 50%;
  margin: 0 auto 14px;
  background: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.float-card h4 { color: var(--plum); margin-bottom: 6px; font-family: 'Playfair Display', serif; }
.float-card p { font-size: 0.9rem; color: var(--plum-mid); }

/* ----- Policies page ----- */
.policy-section {
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px dashed rgba(122,86,134,0.22);
}
.policy-section:last-child { border-bottom: none; }
.policy-section h2 {
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 18px;
}
.policy-section h2 .num {
  font-size: 1rem;
  color: var(--pink-deep);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.18em;
  font-weight: 600;
}
.policy-list {
  list-style: none;
  margin-top: 22px;
}
.policy-list li {
  padding: 14px 0 14px 34px;
  position: relative;
  border-bottom: 1px solid rgba(224,154,176,0.15);
  color: #42323F;
}
.policy-list li:last-child { border-bottom: none; }
.policy-list li::before {
  content: "✽";
  position: absolute; left: 0; top: 12px;
  color: var(--pink-deep);
  font-size: 1.2rem;
}
.policy-list li strong { color: var(--plum); }

/* ----- Contact page ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: flex-start;
}
.contact-info { }
.contact-info .entry {
  padding: 20px 0;
  border-bottom: 1px dashed rgba(122,86,134,0.22);
}
.contact-info .entry:last-child { border-bottom: none; }
.contact-info .entry .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--plum-mid);
  display: block;
  margin-bottom: 6px;
}
.contact-info .entry .val {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--plum);
}

.contact-form {
  background: var(--paper);
  border: 1px solid rgba(224,154,176,0.28);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--plum-mid);
  margin-bottom: 8px;
  font-weight: 600;
}
.form-row input:not([type="checkbox"]),
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(224,154,176,0.4);
  border-radius: 14px;
  background: var(--bg);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--plum);
  transition: border-color 0.2s;
}
.form-row textarea { resize: vertical; min-height: 130px; }
.form-row input:not([type="checkbox"]):focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--pink-deep);
}

/* ----- FAQ strip ----- */
.faq {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.faq .q {
  background: var(--paper);
  border: 1px solid rgba(224,154,176,0.22);
  border-radius: var(--radius-sm);
  padding: 26px 24px;
}
.faq .q h4 {
  color: var(--plum);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.faq .q p { font-size: 0.9rem; color: var(--plum-mid); }

/* ----- Facts / values ----- */
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.fact {
  background: var(--paper);
  border: 1px solid rgba(224,154,176,0.22);
  border-radius: var(--radius-sm);
  padding: 26px 22px;
  text-align: center;
}
.fact .icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.fact h4 {
  font-family: 'Playfair Display', serif;
  color: var(--plum);
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.fact p {
  font-size: 0.85rem;
  color: var(--plum-mid);
  line-height: 1.5;
}

/* ----- CTA block ----- */
.cta-block {
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, var(--pink-light), var(--lav-light));
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}
.cta-block h2 { margin-bottom: 18px; }
.cta-block p { max-width: 540px; margin: 0 auto 28px; color: var(--plum-mid); }

/* ----- Footer ----- */
footer {
  margin-top: 40px;
  padding: 60px 56px 32px;
  background: #FFFFFF;
  color: var(--plum-mid);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
  border-top: 1px solid rgba(165, 194, 206, 0.35);
}
footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 10px;
  background-image: radial-gradient(circle at 8px 8px, var(--blue-soft) 4px, transparent 5px);
  background-size: 16px 10px;
  background-repeat: repeat-x;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dashed rgba(31, 63, 78, 0.15);
}
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--plum); margin-bottom: 12px; }
.footer-col h5 {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--blue);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  color: var(--plum-mid);
  font-size: 0.95rem;
  padding: 5px 0;
}
.footer-col a:hover { color: var(--blue-deep); }
.footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--plum-mid);
  opacity: 0.75;
}
.footer-bottom .staff-link {
  color: var(--plum-mid);
  text-decoration: none;
  border-bottom: 1px dotted currentColor;
  padding-bottom: 1px;
  font-size: 0.78rem;
  opacity: 0.7;
  transition: opacity 0.15s, color 0.15s;
}
.footer-bottom .staff-link:hover {
  opacity: 1;
  color: var(--blue-deep);
}

/* ----- Real photo frames ----- */
.photo-frame {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border: 10px solid var(--paper);
  box-shadow: var(--shadow-lg), 0 0 0 1.5px var(--pink-soft);
  border-radius: 260px 260px 36px 36px;
  aspect-ratio: 4 / 5;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-frame.blue-tint {
  box-shadow: var(--shadow-lg), 0 0 0 1.5px var(--blue-soft);
}
.photo-frame.circle {
  border-radius: 50% 50% 50% 20%;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-md), 0 0 0 1.5px var(--lav);
}
.photo-frame.wide {
  aspect-ratio: 5/4;
  border-radius: var(--radius-md);
}
.photo-frame.square {
  aspect-ratio: 1/1;
  border-radius: var(--radius-sm);
  border-width: 6px;
  box-shadow: var(--shadow-sm);
}

/* Hero ribbon & sticker work on photo frames too */
.photo-frame .ribbon {
  position: absolute;
  top: 24px; left: -34px;
  background: var(--rose);
  color: var(--paper);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.9rem;
  padding: 8px 44px;
  transform: rotate(-12deg);
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.04em;
  z-index: 2;
}
.photo-frame .sticker {
  position: absolute;
  bottom: 24px; right: 24px;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--lav-light);
  border: 1.5px dashed var(--lav-deep);
  color: var(--lav-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.88rem;
  line-height: 1.15;
  padding: 10px;
  transform: rotate(8deg);
  z-index: 2;
}

/* ----- Gallery ("Meet the Bunnies") ----- */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.gallery .tile {
  flex: 0 0 calc(25% - 14px);
  max-width: 220px;
  position: relative;
  border-radius: var(--radius-sm);
  overflow: visible;
  background: var(--paper);
  border: 4px solid var(--paper);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery .tile img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-sm);
  transition: transform 0.5s ease;
}
.gallery .tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery .tile:hover img { transform: scale(1.06); }
/* Tile with CTA overlay (e.g. "Book Party Now" on a gallery image) */
.gallery .tile-cta { position: relative; }
.tile-cta-btn {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--rose-deep);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(31, 63, 78, 0.32);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.tile-cta-btn:hover {
  background: var(--rose);
  color: var(--plum);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(31, 63, 78, 0.4);
}
.tile-name {
  display: block;
  text-align: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--plum-mid);
  margin-top: 8px;
}
.tile-bio {
  display: block;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--plum-mid);
  opacity: 0.78;
  margin-top: 2px;
  padding: 0 4px 6px;
  line-height: 1.35;
}
/* Slightly stronger hover lift now that bios add visual weight */
.gallery .tile { transition: transform 0.35s cubic-bezier(.2,.7,.2,1), box-shadow 0.35s ease; }
.gallery .tile:hover { transform: translateY(-6px) rotate(-0.5deg); box-shadow: var(--shadow-lg); }
.gallery .tile:hover img { transform: scale(1.08); }
.gallery .tile.wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery .tile.tall { grid-row: span 2; aspect-ratio: 1/2; }

/* ----- Featured photo strip (enclosure, etc.) ----- */
.photo-strip {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 8px solid var(--paper);
  box-shadow: var(--shadow-md), 0 0 0 1.5px var(--blue-soft);
}
.photo-strip img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
/* Square-ish variant — more pleasing proportions for portrait/close-up shots */
.photo-strip.square {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.photo-strip.square img {
  height: auto;
  aspect-ratio: 4 / 3;
}
.photo-strip .caption {
  position: absolute;
  left: 22px; bottom: 22px;
  background: var(--paper);
  padding: 10px 22px;
  border-radius: 999px;
  color: var(--blue-deep);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
}

/* ----- Parties page feature (photo + video 2-up) ----- */
.party-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.party-feature-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 8px solid var(--paper);
  box-shadow: var(--shadow-md), 0 0 0 1.5px var(--blue-soft);
  aspect-ratio: 4 / 3;
  background: var(--blue-light);
}
.party-feature-card img,
.party-feature-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.party-feature-card .caption {
  position: absolute;
  left: 18px; bottom: 18px;
  background: var(--paper);
  padding: 9px 18px;
  border-radius: 999px;
  color: var(--blue-deep);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}

/* ----- Blue accents ----- */
.brand .dot.blue {
  background: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-light);
}
.review .stars { color: var(--blue); }
.policy-section h2 .num { color: var(--blue); }
.contact-info .entry .val a,
a.link-blue { color: var(--blue); }
a.link-blue:hover { color: var(--blue-deep); }
.btn-outline.blue {
  border-color: var(--blue);
  color: var(--blue-deep);
}
.btn-outline.blue:hover {
  background: var(--blue);
  color: var(--paper);
}

/* Footer scallop strip alternates pink + blue */
footer::before {
  background-image:
    radial-gradient(circle at 8px 8px, var(--pink-deep) 4px, transparent 5px),
    radial-gradient(circle at 24px 8px, var(--blue-soft) 4px, transparent 5px);
  background-size: 32px 10px;
}

/* =========================================================
   MEMBERSHIP — sign-up page (.member-perks, .membership-grid,
   agreement box + checkbox gating) and success page
   ========================================================= */

/* Benefits grid */
.member-perks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 10px;
}
.perk-card {
  background: var(--paper);
  border: 1px solid rgba(165, 194, 206, 0.35);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.perk-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.perk-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--rose-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 14px;
}
.perk-card h4 {
  color: var(--plum);
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.perk-card p {
  color: var(--plum-mid);
  font-size: 0.93rem;
  line-height: 1.55;
}

/* Two-column layout: price card on left, signup on right */
.membership-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) 1.4fr;
  gap: 32px;
  align-items: start;
}

/* Price card — deep teal so it reads like a "hero" pricing card */
.membership-price-card {
  background: linear-gradient(155deg, var(--blue-deep) 0%, var(--plum) 100%);
  color: var(--paper);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}
.membership-price-card .eyebrow {
  color: rgba(255, 255, 255, 0.75);
}
.membership-price-card .eyebrow::before,
.membership-price-card .eyebrow::after {
  background: rgba(255, 255, 255, 0.5);
}
.mem-price {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--paper);
  font-weight: 600;
  margin-top: 14px;
  line-height: 1;
}
.mem-price span {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  margin-left: 4px;
}
.mem-price-note {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  margin-top: 10px;
}
.mem-price-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}
.mem-price-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.93rem;
  line-height: 1.5;
}
.mem-price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--rose);
  font-weight: 700;
}
.mem-price-small {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 14px;
  margin-top: 10px;
}

/* Signup column */
.membership-signup {
  background: var(--paper);
  border: 1px solid rgba(165, 194, 206, 0.35);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}
.membership-signup h3 {
  color: var(--plum);
  margin-bottom: 8px;
}
.mem-sub {
  color: var(--plum-mid);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

/* Scrollable agreement box */
.agreement-box {
  max-height: 280px;
  overflow-y: auto;
  background: var(--blue-light);
  border: 1px solid rgba(74, 122, 136, 0.22);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  color: var(--plum);
  font-size: 0.88rem;
  line-height: 1.65;
  scrollbar-width: thin;
  scrollbar-color: var(--blue-soft) transparent;
}
.agreement-box:focus {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.agreement-box::-webkit-scrollbar { width: 8px; }
.agreement-box::-webkit-scrollbar-thumb {
  background: var(--blue-soft);
  border-radius: 4px;
}
.agreement-box h4 {
  font-family: 'Playfair Display', serif;
  color: var(--plum);
  margin-bottom: 12px;
  font-size: 1.05rem;
}
.agreement-box p {
  color: var(--plum);
  margin-bottom: 12px;
  font-size: 0.88rem;
}
.agreement-box strong { color: var(--blue-deep); }

/* The checkbox that gates the checkout button */
.agreement-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 20px 0;
  padding: 16px 18px;
  background: var(--rose-soft);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s ease;
}
.agreement-check:hover { background: #F0C8D3; }
.agreement-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--blue);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}
.agreement-check span {
  color: var(--plum);
  font-size: 0.94rem;
  line-height: 1.5;
}

/* Full-width submit button */
.btn-wide {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 24px;
  font-size: 1.02rem;
}
.btn-wide:disabled {
  background: var(--blue-soft);
  color: rgba(255, 255, 255, 0.85);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
.btn-wide:disabled:hover {
  background: var(--blue-soft);
  transform: none;
}

.mem-err {
  color: #B44455;
  font-size: 0.88rem;
  margin-top: 10px;
  min-height: 1.4em;
}
.mem-fine-print {
  color: var(--plum-mid);
  font-size: 0.82rem;
  margin-top: 16px;
  line-height: 1.6;
}
.mem-fine-print a { color: var(--blue); }
.mem-fine-print a:hover { color: var(--blue-deep); }

/* =========================================================
   SUCCESS PAGE — post-checkout confirmation
   ========================================================= */
.success-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid rgba(165, 194, 206, 0.35);
  border-radius: var(--radius-md);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.success-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--rose-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  margin: 0 auto 22px;
  animation: bunnyPulse 2.4s ease-in-out infinite;
}
@keyframes bunnyPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}
.success-card h2 {
  color: var(--plum);
  margin-bottom: 10px;
}
.success-sub {
  color: var(--plum-mid);
  font-size: 1.02rem;
  margin-bottom: 32px;
}
.success-benefits,
.success-next {
  text-align: left;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  margin-top: 20px;
}
.success-benefits h3,
.success-next h3 {
  color: var(--plum);
  margin-bottom: 12px;
  font-size: 1.15rem;
}
.success-benefits ul,
.success-next ol {
  padding-left: 20px;
}
.success-benefits li,
.success-next li {
  color: var(--plum);
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.6;
}
.success-benefits li strong { color: var(--blue-deep); }
.success-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Membership responsive */
@media (max-width: 1024px) {
  .member-perks { grid-template-columns: 1fr 1fr; }
  .membership-grid { grid-template-columns: 1fr; }
  .membership-price-card { position: static; }
}
@media (max-width: 640px) {
  .member-perks { grid-template-columns: 1fr; }
  .membership-signup,
  .membership-price-card { padding: 28px 22px; }
  .success-card { padding: 36px 24px; }
  .mem-price { font-size: 2.8rem; }
}

/* ----- Utilities ----- */
.center { text-align: center; }
.mt-xl { margin-top: 72px; }
.mb-xl { margin-bottom: 72px; }

/* ----- Responsive ----- */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 60px 40px; }
  .hero-art { max-width: 480px; margin: 0 auto; }
  .pricing, .reviews, .info-grid, .floats, .faq { grid-template-columns: 1fr 1fr; }
  .info-grid.info-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .gallery .tile.wide { grid-column: span 2; }
  .gallery .tile.tall { grid-row: auto; aspect-ratio: 1/1; }
  .split, .party-split, .party-preview, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .party-feature { grid-template-columns: 1fr; gap: 20px; }
  .sessions { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .schedule-photos { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta .btn { display: none; }
  .hamburger { display: flex; }
  .nav-cta .btn-mobile-hide { display: none; }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--paper);
    padding: 24px 32px;
    gap: 16px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid rgba(202,185,235,0.35);
  }

  /* "Book a Reservation" inside the mobile menu — list item styled as a
     primary button. Hidden on desktop via the default rule below. */
  .nav-links .nav-mobile-cta { margin-top: 8px; }
  .nav-links .nav-mobile-cta a {
    display: block;
    background: var(--plum, #1F3F4E);
    color: #fff;
    text-align: center;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.02em;
  }
  .nav-links .nav-mobile-cta a::after { display: none; }
}

/* Default (desktop): hide the mobile-only CTA item entirely. */
.nav-links .nav-mobile-cta { display: none; }
@media (max-width: 768px) {
  .nav-links.open .nav-mobile-cta { display: block; }

  section { padding: 44px 32px; }
  .page-header { padding: 72px 32px 40px; }
  .hero { padding: 48px 28px 60px; }
  .frame { margin: 14px; border-radius: var(--radius-md); }

  .pricing, .reviews, .info-grid, .floats, .faq { grid-template-columns: 1fr; }
  .info-grid.info-grid-4 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .photo-strip img { height: 260px; }
  .party-includes { grid-template-columns: 1fr; }
  .party-split { gap: 28px; margin-bottom: 20px; }
  .walkin-banner { padding: 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding: 0 24px 32px; }
  footer { padding: 48px 0 24px; }
  .footer-bottom { padding: 24px 24px 0; flex-direction: column; }
  .party-preview { padding: 40px 28px; }

  /* Ribbon — bring inward so it doesn't clip against the curved frame edge */
  .hero-art .ribbon,
  .photo-frame .ribbon {
    top: 18px;
    left: -10px;
    padding: 6px 28px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2.4rem; }
  .hero-meta { gap: 20px; }
  .hero-meta div { flex-basis: 45%; }
  .facts { grid-template-columns: 1fr; }
  .hero-art { border-radius: 160px 160px 24px 24px; }
  .review:nth-child(n) { transform: none; margin-top: 0; }
  .payment-breakdown { padding: 32px 24px; }
  .nav-inner { padding: 14px 20px; }
  .brand { font-size: 1.15rem; }
}

/* ====== BOOKING EMBED (schedule.html) ====== */
#book { scroll-margin-top: 100px; }

.booking-embed-card {
  background: var(--paper, #fff);
  border: 1px solid rgba(165, 194, 206, 0.35);
  border-radius: var(--radius-md, 20px);
  padding: 24px;
  box-shadow: var(--shadow-md, 0 10px 30px rgba(31, 63, 78, 0.08));
  overflow: hidden;
  max-width: 1040px;
  margin: 0 auto;
}

.booking-embed-frame {
  position: relative;
  width: 100%;
  min-height: 900px;
  border-radius: var(--radius-sm, 14px);
  overflow: hidden;
  background: var(--blue-light, #eaf2f5);
}

.booking-embed-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 900px;
  border: 0;
  display: block;
}

.booking-embed-fallback {
  text-align: center;
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--plum-mid, #5a7a85);
}
.booking-embed-fallback a {
  color: var(--blue, #4A7A88);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(74, 122, 136, 0.35);
}
.booking-embed-fallback a:hover {
  color: var(--plum, #1F3F4E);
  border-bottom-color: var(--plum, #1F3F4E);
}

@media (max-width: 768px) {
  .booking-embed-card { padding: 14px; border-radius: 16px; }
  .booking-embed-frame,
  .booking-embed-frame iframe { min-height: 1100px; }
}

/* ====== CUSTOM BOOKING FLOW ====== */
.booking-flow { display: flex; flex-direction: column; gap: 8px; }

.booking-step-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  color: var(--plum);
  margin: 0 0 18px;
}

.booking-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.booking-option {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  text-align: left;
  padding: 22px 20px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(165, 194, 206, 0.5);
  background: var(--paper, #fff);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease;
  position: relative;
}
.booking-option:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.booking-option.is-selected {
  border-color: var(--plum);
  background: linear-gradient(180deg, var(--blue-light) 0%, var(--paper) 100%);
  box-shadow: var(--shadow-md);
}
.booking-option-highlight { border-color: var(--rose); }
.booking-option-highlight:hover { border-color: var(--rose-deep); }

.booking-option-loved {
  border-color: var(--blue);
  background: linear-gradient(180deg, var(--blue-light) 0%, var(--paper) 100%);
}
.booking-option-loved:hover { border-color: var(--blue-deep); }

.booking-option-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-deep);
  background: var(--rose-soft);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}
.booking-option-tag-loved {
  color: var(--blue-deep);
  background: var(--blue-light);
}
.booking-option-highlight .booking-option-tag {
  color: var(--paper);
  background: var(--plum);
}
.booking-option-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  color: var(--plum);
  font-weight: 600;
}
.booking-option-price {
  font-size: 1.35rem;
  color: var(--blue-deep);
  font-weight: 700;
}
.booking-option-meta {
  font-size: 0.84rem;
  color: var(--plum-mid);
  line-height: 1.4;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px 18px;
  margin-bottom: 8px;
}

.booking-field-hint {
  display: block;
  margin-top: 6px;
  color: var(--plum-mid);
  font-size: 0.82rem;
  line-height: 1.4;
}

.booking-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.booking-actions > :only-child { margin-left: 0; }

.booking-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
  margin-bottom: 8px;
}

/* Acuity-style multi-day grid */
.booking-step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.booking-step-nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue-light);
  border-radius: 999px;
  padding: 4px;
}
.booking-nav-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0;
  background: var(--paper, #fff);
  color: var(--plum);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.12s ease, background 0.12s ease, color 0.12s ease;
}
.booking-nav-btn:hover:not(:disabled) {
  background: var(--plum);
  color: #fff;
  transform: translateY(-1px);
}
.booking-nav-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.booking-nav-range {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--plum);
  letter-spacing: 0.02em;
  padding: 0 6px;
}
.booking-tz-note {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--plum-mid);
  margin: 0 0 14px;
}

.booking-day-grid {
  display: grid;
  gap: 10px;
  margin-bottom: 8px;
}
.booking-day-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.booking-day-head {
  text-align: center;
  padding: 10px 4px 12px;
  border-bottom: 1px solid rgba(165, 194, 206, 0.4);
  margin-bottom: 2px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.booking-day-weekday {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--blue-deep);
  font-size: 1rem;
  font-weight: 600;
}
.booking-day-md {
  color: var(--plum-mid);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}
.booking-day-empty {
  text-align: center;
  font-size: 0.82rem;
  color: var(--plum-mid);
  padding: 14px 8px;
  font-style: italic;
  opacity: 0.7;
}

.booking-slot {
  padding: 12px 8px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(165, 194, 206, 0.5);
  background: var(--paper, #fff);
  color: var(--plum);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease, background 0.12s ease, color 0.12s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  line-height: 1.2;
}
.booking-slot-time { font-size: 0.95rem; }
.booking-slot-meta {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--plum-mid);
}
.booking-slot:hover {
  border-color: var(--blue);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.booking-slot.is-selected {
  border-color: var(--plum);
  background: var(--plum);
  color: #fff;
}
.booking-slot.is-selected .booking-slot-meta { color: rgba(255, 255, 255, 0.75); }

@media (max-width: 720px) {
  .booking-day-grid {
    grid-template-columns: 1fr !important;
  }
  .booking-day-col { border-bottom: 1px solid rgba(165, 194, 206, 0.3); padding-bottom: 10px; }
  .booking-day-head { text-align: left; flex-direction: row; justify-content: space-between; align-items: baseline; border-bottom: 0; padding: 8px 0 4px; }
}

.booking-empty {
  padding: 24px;
  text-align: center;
  color: var(--plum-mid);
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  grid-column: 1 / -1;
}

.booking-summary {
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-bottom: 16px;
  display: grid;
  gap: 6px;
}
.booking-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.95rem;
}
.booking-summary span { color: var(--plum-mid); }
.booking-summary strong { color: var(--plum); font-weight: 600; }
.booking-summary-static {
  background: linear-gradient(135deg, var(--rose-soft) 0%, var(--blue-light) 100%);
}
.booking-summary-total {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 8px;
  margin-top: 4px;
  font-size: 1.05rem;
}
.booking-summary-total strong { font-weight: 700; }

.booking-tip {
  margin-bottom: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
}
.booking-tip-title {
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 10px;
  font-size: 0.98rem;
}
.booking-tip-sub {
  font-weight: 400;
  color: var(--plum-mid);
  font-size: 0.85rem;
  margin-left: 6px;
}
.booking-tip-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tip-option {
  flex: 1 1 auto;
  min-width: 70px;
  padding: 10px 14px;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--plum);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.15s ease;
}
.tip-option:hover {
  border-color: var(--plum);
}
.tip-option.is-selected {
  background: var(--plum);
  color: #fff;
  border-color: var(--plum);
}
.booking-tip-custom {
  margin-top: 12px;
}
.booking-tip-custom label {
  display: block;
  font-size: 0.88rem;
  color: var(--plum-mid);
  margin-bottom: 6px;
}
.booking-tip-custom-input {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  background: #fff;
  max-width: 200px;
}
.booking-tip-custom-input span {
  color: var(--plum-mid);
  font-weight: 500;
}
.booking-tip-custom-input input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 0.95rem;
  padding: 0;
  background: transparent;
}

.booking-note {
  color: var(--plum-mid);
  font-size: 0.88rem;
  margin-top: 12px;
  line-height: 1.5;
}
.booking-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--plum-mid);
  line-height: 1.5;
  cursor: pointer;
}
.booking-checkbox-label input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--plum);
  cursor: pointer;
}
.booking-note-policy {
  border-top: 1px dashed rgba(165, 194, 206, 0.6);
  padding-top: 12px;
}

.booking-error {
  background: #fdecef;
  border: 1px solid var(--rose-deep);
  color: #8a2b41;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.92rem;
  margin-top: 14px;
}

@media (max-width: 540px) {
  .booking-options { grid-template-columns: 1fr; }
  .booking-actions { flex-direction: column-reverse; }
  .booking-actions .btn { width: 100%; }
}

/* ----- Scroll progress bar (top of page) ----- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  z-index: 1000;
  pointer-events: none;
}
.scroll-progress > .bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue) 0%, var(--rose) 100%);
  transition: width 0.08s linear;
  box-shadow: 0 1px 4px rgba(31, 63, 78, 0.18);
}

/* ----- Newsletter signup section ----- */
.newsletter-section { padding: 32px 56px; }
.newsletter {
  margin: 0 auto;
  padding: 36px 28px;
  background: var(--paper);
  border: 1px solid var(--blue-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  max-width: 720px;
}
.newsletter h3 {
  margin-bottom: 8px;
  font-size: 1.6rem;
}
.newsletter p {
  color: var(--plum-mid);
  margin-bottom: 18px;
}
.newsletter form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.newsletter input[type="email"] {
  flex: 1 1 280px;
  max-width: 360px;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--blue-soft);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.newsletter input[type="email"]:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(74, 122, 136, 0.15);
}
.newsletter .btn { white-space: nowrap; }
.newsletter-status {
  display: block;
  margin-top: 12px;
  font-size: 0.92rem;
  min-height: 1.2em;
}

/* ----- Featured event announcement bar (top of every page) ----- */
.event-bar {
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #fff;
  text-align: center;
  background: linear-gradient(90deg, #C97A91 0%, #E8A4B8 50%, #C97A91 100%);
  box-shadow: 0 2px 10px rgba(31, 63, 78, 0.10);
  flex-wrap: wrap;
}
.event-bar.theme-blue {
  background: linear-gradient(90deg, var(--blue-deep) 0%, var(--blue) 50%, var(--blue-deep) 100%);
}
.event-bar.theme-green {
  background: linear-gradient(90deg, #5a7a4a 0%, #88b176 50%, #5a7a4a 100%);
}
.event-bar a.event-bar-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.96);
  color: #2C5568;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.event-bar.theme-rose a.event-bar-cta { color: #8A4A5C; }
.event-bar a.event-bar-cta:hover { background: #fff; transform: translateY(-1px); }
.event-bar .event-bar-tagline { white-space: normal; }
@media (max-width: 540px) {
  .event-bar { font-size: 0.84rem; padding: 9px 14px; gap: 10px; }
  .event-bar a.event-bar-cta { padding: 4px 10px; font-size: 0.84rem; }
}

/* ----- Featured event card (shown on schedule.html) ----- */
.featured-event {
  display: grid;
  grid-template-columns: minmax(0, 320px) 1fr;
  gap: 32px;
  align-items: center;
  margin: 24px 0 28px;
  padding: 28px;
  background: linear-gradient(135deg, #FCEEF2 0%, #FFF8FA 100%);
  border: 1px solid #F2D6DD;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.featured-event::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,164,184,0.20) 0%, transparent 70%);
  pointer-events: none;
}
.featured-event-flyer {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/5;
  background: #fff;
}
.featured-event-flyer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.featured-event-body { position: relative; z-index: 1; }
.featured-event-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #C97A91;
  margin-bottom: 10px;
}
.featured-event-title {
  font-family: 'Playfair Display', Georgia, serif;
  color: #5A2A3B;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.15;
  margin-bottom: 14px;
}
.featured-event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 0.92rem;
  color: var(--plum-mid);
  margin-bottom: 14px;
}
.featured-event-meta span { display: inline-flex; align-items: center; gap: 6px; }
.featured-event-meta b { color: var(--plum); }
.featured-event-desc {
  font-size: 0.96rem;
  color: var(--plum);
  margin-bottom: 16px;
  line-height: 1.6;
}
.featured-event-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  list-style: none;
  padding: 0;
}
.featured-event-includes li {
  background: #fff;
  border: 1px solid #F2D6DD;
  color: #8A4A5C;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
}
.featured-event .btn { background: #C97A91; color: #fff; border: 0; }
.featured-event .btn:hover { background: #B86880; }

@media (max-width: 720px) {
  .featured-event {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px;
  }
  .featured-event-flyer { max-width: 320px; margin: 0 auto; }
  .featured-event-meta, .featured-event-includes { justify-content: center; }
}

/* ----- "New Babies" gallery — same tile size as the original four ----- */
.gallery-babies .tile {
  flex: 0 0 calc(25% - 14px);
  max-width: 220px;
}

/* ----- Subtle in-section divider used between original bunnies + babies ----- */
.bunny-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 38px auto 22px;
  max-width: 720px;
  color: var(--plum-mid);
}
.bunny-divider::before,
.bunny-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74, 122, 136, 0.25), transparent);
}
.bunny-divider span {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--rose-deep);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
