/* ============================================================
   Little Lennon Play Cafe — Design System
   Shared stylesheet for all pages
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --navy: #1B3A6B;
  --navy-accent: #2E5D9F;
  --bg: #FAF8F5;
  --cream: #F3EFE8;
  --text: #4A4A4A;
  --text-soft: #6B6B6B;
  --gold: #C9A96E;
  --terracotta: #C4714F;
  --sage: #7A9E7E;
  --white: #FFFFFF;
  --border: #E8E2D7;

  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --max: 1200px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 12px rgba(27, 58, 107, 0.06);
  --shadow-md: 0 8px 32px rgba(27, 58, 107, 0.08);

  --photo-grad: linear-gradient(135deg, #E8E0D0, #D4C9B5);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--navy-accent); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(2.15rem, 4.5vw, 3.5rem); font-weight: 600; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.15rem; }
p { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 0.9rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--text-soft);
  max-width: 60ch;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.section {
  padding: clamp(6.25rem, 10vw, 8.5rem) 0;
}
.section--tight { padding: clamp(3rem, 6vw, 4.5rem) 0; }
.section--cream {
  background-color: var(--cream);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' seed='5'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.section--white { background: var(--white); }
.section--navy {
  background: var(--navy);
  color: var(--white);
}
.section--navy h1,
.section--navy h2,
.section--navy h3 { color: var(--white); }
.section--navy .eyebrow { color: var(--gold); }
.section--navy p { color: rgba(255,255,255,0.85); }
.section--navy .pullquote q { color: var(--cream); }
.section--navy .pullquote cite { color: rgba(255, 255, 255, 0.65); }

/* Full-bleed background image section (for party teaser, etc.) */
.section--hero-bg {
  position: relative;
  padding: clamp(5.5rem, 11vw, 8.5rem) 0;
  background-size: cover;
  background-position: center;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}
.section--hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: -1;
}
.section--hero-bg h1,
.section--hero-bg h2,
.section--hero-bg h3 { color: var(--white); }
.section--hero-bg p { color: rgba(255, 255, 255, 0.92); }
.section--hero-bg .lead { color: rgba(255, 255, 255, 0.92); }
.section--hero-bg .eyebrow { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.95rem 1.7rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition: all 0.25s ease;
  white-space: nowrap;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn--primary {
  background: var(--navy);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--navy-accent);
  color: var(--white);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--light {
  background: var(--white);
  color: var(--navy);
}
.btn--light:hover {
  background: var(--cream);
  color: var(--navy);
}
.btn--sm {
  padding: 0.65rem 1.25rem;
  font-size: 0.85rem;
}

/* Inline text link with arrow */
.link-arrow {
  font-weight: 500;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.25s ease;
}
.link-arrow:hover { border-bottom-color: var(--navy); }
.link-arrow::after {
  content: '→';
  transition: transform 0.25s ease;
}
.link-arrow:hover::after { transform: translateX(3px); }

/* ============================================================
   NAVIGATION
   Transparent over hero; solid on scroll.
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.35s ease, border-color 0.35s ease,
              backdrop-filter 0.35s ease, box-shadow 0.35s ease,
              padding 0.35s ease;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 3vw, 3rem);
  min-height: 90px;
  max-width: none;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: clamp(1.5rem, 3vw, 2.75rem);
  padding-right: clamp(1.5rem, 3vw, 2.75rem);
  transition: min-height 0.35s ease;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav__logo img {
  height: 75px;
  width: auto;
  border-radius: 50%;
  transition: height 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav__links a {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  transition: color 0.25s ease;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.2);
}
.nav__links a:hover { color: var(--white); }
.nav__links a.active { color: var(--white); }
.nav__links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav__cta .btn--primary {
  padding: 1rem 1.85rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}
.nav__cta .btn--primary:hover {
  background: var(--navy-accent);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}

/* Solid state — kicks in when scrolled past hero */
.nav.is-scrolled {
  background: rgba(250, 248, 245, 0.94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(27, 58, 107, 0.06);
}
.nav.is-scrolled .nav__inner {
  min-height: 72px;
}
.nav.is-scrolled .nav__logo img {
  height: 64px;
  box-shadow: none;
}
.nav.is-scrolled .nav__links a {
  color: var(--text);
  text-shadow: none;
}
.nav.is-scrolled .nav__links a:hover,
.nav.is-scrolled .nav__links a.active { color: var(--navy); }
.nav.is-scrolled .nav__cta .btn--primary {
  box-shadow: var(--shadow-sm);
}
.nav.is-scrolled .nav__toggle span { background: var(--navy); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.35s ease;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1100px) {
  .nav__inner { justify-content: space-between; }
  .nav__inner > nav,
  .nav__links,
  .nav__cta .btn:not(.btn--mobile-keep) {
    display: none;
  }
  .nav__toggle { display: flex; }
  .nav__logo img { height: 60px; }
  .nav.is-scrolled .nav__logo img { height: 50px; }

  .nav__mobile {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(82vw, 340px);
    background: var(--bg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: -8px 0 32px rgba(27, 58, 107, 0.1);
    z-index: 60;
  }
  .nav__mobile.is-open { transform: translateX(0); }
  .nav__mobile a {
    font-size: 1.25rem;
    font-family: var(--font-head);
    color: var(--navy);
  }
  .nav__mobile .btn { align-self: flex-start; margin-top: 1rem; }
  .nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(27, 58, 107, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 55;
  }
  .nav__overlay.is-open { opacity: 1; pointer-events: auto; }
}
@media (min-width: 1101px) { .nav__mobile, .nav__overlay { display: none; } }

/* ============================================================
   PAGE HEADER — simple cream editorial header (no hero photo)
   ============================================================ */
.page-header {
  padding: clamp(7rem, 13vw, 11rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  text-align: center;
  background: var(--bg);
}
.page-header__label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 1.5rem;
}
.page-header__title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
}
.page-header__rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  border: 0;
  margin: 2rem auto 0;
}

/* ============================================================
   HERO
   Full-screen statement. Dark diagonal gradient under white text.
   ============================================================ */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: clamp(7rem, 12vh, 10rem) 0 clamp(4rem, 8vh, 6rem);
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

/* Default headline + lead colors inside any hero */
.hero h1 { color: var(--white); }
.hero .lead { color: rgba(255, 255, 255, 0.88); }
.hero .eyebrow { color: var(--gold); }

/* Photo-placeholder hero — navy fallback + dark overlay for text legibility */
.hero--photo {
  background:
    linear-gradient(135deg, #142A4E 0%, #1B3A6B 50%, #2E5D9F 100%);
  background-size: cover;
  background-position: center;
}
.hero--photo::before {
  content: '';
  position: absolute;
  top: var(--hero-overlay-top, 0);
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(var(--hero-overlay-rgb, 15, 30, 60), var(--hero-overlay, 0.55));
  z-index: -1;
}
/* Homepage hero: lighter overlay so the warm room colors come through */
.hero--photo.hero--full { --hero-overlay: 0.38; }

/* Solid navy hero variant (parties page) */
.hero--navy {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(46, 93, 159, 0.4), transparent 60%),
    var(--navy);
}

/* Full-screen homepage hero */
.hero--full {
  min-height: 92vh;
}

.hero__inner {
  position: relative;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  z-index: 1;
}
.hero__inner--left { text-align: left; margin: 0; }

/* Make h1 inside hero MUCH bigger and bolder */
.hero h1 {
  font-size: clamp(2.8rem, 8.5vw, 6.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.25);
}

.hero .lead {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  max-width: 56ch;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
.hero__inner .lead.center-block {
  margin-left: auto;
  margin-right: auto;
}

.hero .eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.26em;
  margin-bottom: 1.4rem;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__inner--left .hero__ctas { justify-content: flex-start; }

/* Bolder, larger hero buttons */
.hero__ctas .btn {
  padding: 1.15rem 2.25rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}
.hero__ctas .btn--primary {
  background: var(--white);
  color: var(--navy);
}
.hero__ctas .btn--primary:hover {
  background: var(--cream);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}
.hero__ctas .btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
  border-width: 2px;
}
.hero__ctas .btn--outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
}
.hero__ctas .btn--light:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

@media (max-width: 640px) {
  .hero { min-height: 78vh; padding-top: 6rem; }
  .hero--full { min-height: 88vh; }
  .hero__ctas .btn { padding: 1rem 1.6rem; font-size: 0.95rem; }
}

/* ============================================================
   PHOTO PLACEHOLDER
   ============================================================ */
.photo {
  background: var(--photo-grad);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(75, 75, 75, 0.55);
  font-style: italic;
  font-family: var(--font-head);
  font-size: 1.05rem;
  text-align: center;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.35), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(201, 169, 110, 0.18), transparent 55%);
  pointer-events: none;
}
.photo span { position: relative; z-index: 1; }
.photo--tall { min-height: 480px; }
.photo--wide { min-height: 380px; }
.photo--circle { border-radius: 50%; aspect-ratio: 1; min-height: 0; }

/* Real-image variant — same visual footprint as .photo, uses <img> */
.media {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
}
.media--tall { aspect-ratio: 3 / 4; }
.media--wide { aspect-ratio: 5 / 4; }
.media--square { aspect-ratio: 1; }
.media--circle { aspect-ratio: 1; border-radius: 50%; }

/* Flat cream "coming-soon" placeholder — no gradient, no overlays */
.placeholder {
  background: var(--cream);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  color: var(--gold);
  font-style: italic;
  font-family: var(--font-head);
  font-size: 1.15rem;
  aspect-ratio: 4 / 3;
}
.placeholder--tall { aspect-ratio: 3 / 4; }
.placeholder--wide { aspect-ratio: 5 / 4; }

/* ============================================================
   GRID HELPERS
   ============================================================ */
.grid { display: grid; gap: 2rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 820px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}
@media (min-width: 821px) and (max-width: 1080px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.split--reverse > :first-child { order: 2; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: 0; }
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 8px 26px rgba(27, 58, 107, 0.08);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(27, 58, 107, 0.14);
}
.card--cream { background: var(--cream); }
.card--plain { box-shadow: none; }
.card--plain::before { display: none; }
.card--plain:hover { transform: none; box-shadow: none; }

/* Navy card variant — used for pricing snapshot */
.card--navy {
  background: var(--navy);
  border-color: var(--navy-accent);
  color: var(--white);
}
.card--navy:hover {
  box-shadow: 0 16px 36px rgba(27, 58, 107, 0.25);
}
.card--navy .card__title {
  color: var(--gold);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 0.4rem;
  line-height: 1;
}
.card--navy .card__body {
  color: rgba(255, 255, 255, 0.88);
}
.card--navy .card__body small {
  color: rgba(255, 255, 255, 0.6);
}

/* Event/class card — gold accent line on top, cream background, lifted */
.card-event {
  background: var(--cream);
  padding: clamp(2.75rem, 4vw, 3.5rem) clamp(2rem, 3vw, 2.75rem);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 6px 22px rgba(27, 58, 107, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card-event::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}
.card-event:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(27, 58, 107, 0.12);
}
.card-event__icon {
  font-size: clamp(2.5rem, 3.5vw, 3.2rem);
  display: block;
  margin-bottom: 1.25rem;
  line-height: 1;
}
.card-event h3 {
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 1.85rem;
  font-weight: 600;
  margin: 0 0 0.6rem;
}
.card-event p {
  color: var(--text-soft);
  margin: 0 auto;
  font-size: 1rem;
  max-width: 36ch;
}

.card__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: inline-block;
}
.card__title {
  font-family: var(--font-head);
  color: var(--navy);
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
}
.card__body { color: var(--text-soft); margin: 0; }

/* ---------- Feature strip (3 columns) ---------- */
.feature {
  text-align: center;
  padding: clamp(2rem, 3vw, 2.75rem) clamp(1.5rem, 2.5vw, 2rem);
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 169, 110, 0.22);
  box-shadow: 0 8px 24px rgba(27, 58, 107, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(27, 58, 107, 0.1);
  border-color: rgba(201, 169, 110, 0.45);
}
.feature__icon {
  font-size: 3.4rem;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}
.feature__title {
  font-family: var(--font-head);
  color: var(--navy);
  font-size: 1.65rem;
  margin: 0 0 0.5rem;
}
.feature__body {
  color: var(--text-soft);
  max-width: 32ch;
  margin: 0 auto;
}

/* ============================================================
   HOURS / LOCATION
   ============================================================ */
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border: 1px solid var(--border);
  box-shadow: 0 8px 26px rgba(27, 58, 107, 0.08);
  position: relative;
  overflow: hidden;
}
.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}
.info-card__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 720px) {
  .info-card__row { grid-template-columns: 1fr; }
}
.info-card h4 {
  text-transform: uppercase;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin: 0 0 0.5rem;
  font-weight: 500;
}
.info-card p { margin: 0; }

/* Map placeholder */
.map {
  margin-top: 1.5rem;
  background: var(--photo-grad);
  border-radius: var(--radius-sm);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--navy);
  text-align: center;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}
.map::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, transparent 49%, rgba(27,58,107,0.08) 50%, transparent 51%),
    linear-gradient(90deg, transparent 49%, rgba(27,58,107,0.08) 50%, transparent 51%);
  background-size: 40px 40px;
  pointer-events: none;
}
.map__pin {
  font-size: 1.75rem;
  margin-bottom: 0.4rem;
  position: relative;
  z-index: 1;
}
.map__addr {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* ============================================================
   PRICING
   ============================================================ */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.price-table th,
.price-table td {
  padding: 1.1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.price-table th {
  background: var(--cream);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}
.price-table tr:last-child td { border-bottom: none; }
.price-table td:last-child {
  text-align: right;
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--navy);
}
.price-table .check { color: var(--gold); font-weight: 600; }

/* ============================================================
   PARTY / STEPS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: step;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: calc(1.5rem + 40px);
  left: 18%;
  right: 18%;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(201, 169, 110, 0.45) 12%, rgba(201, 169, 110, 0.45) 88%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}
.step {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
  z-index: 1;
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 24px rgba(27, 58, 107, 0.22);
  border: 2px solid var(--gold);
}
.section--navy .step__num {
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold);
  border-color: rgba(201, 169, 110, 0.5);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.step h3 { margin-bottom: 0.4rem; }
@media (max-width: 720px) {
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
}

/* Left-border accent color modifiers (works on .card and .card-event) */
.accent--terracotta { border-left: 6px solid var(--terracotta); }
.accent--sage { border-left: 6px solid var(--sage); }
.accent--gold { border-left: 6px solid var(--gold); }
.accent--navy { border-left: 6px solid var(--navy); }

/* Taller card variant */
.card--tall { padding: clamp(2.75rem, 4vw, 3.75rem) clamp(2rem, 3vw, 2.5rem); }

/* Colored stat boxes — used on Play page stats strip */
.stat-box {
  padding: clamp(2rem, 3vw, 2.5rem) clamp(1.25rem, 2vw, 1.75rem);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 10px 24px rgba(27, 58, 107, 0.12);
  color: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.stat-box:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(27, 58, 107, 0.18); }
.stat-box--terracotta { background: var(--terracotta); }
.stat-box--navy { background: var(--navy); }
.stat-box--sage { background: var(--sage); }
.stat-box--gold { background: var(--gold); }
.stat-box .stat__number { color: var(--white); margin-bottom: 0.5rem; }
.stat-box .stat__label { color: rgba(255, 255, 255, 0.88); }

/* Featured-card badge — "Most Popular" floating chip */
.badge--popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 2;
  box-shadow: 0 6px 18px rgba(27, 58, 107, 0.18);
}

/* Marquee — continuously scrolling personality strip */
.marquee {
  background: var(--gold);
  color: var(--navy);
  overflow: hidden;
  padding: 0.95rem 0;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.marquee__track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}
.marquee__set {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  white-space: nowrap;
}
.marquee__set li::after {
  content: '·';
  margin-left: 2rem;
  opacity: 0.55;
}
.marquee__set li:last-child::after { display: none; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* Stats strip — bold navy numbers, gold labels */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.stat__number {
  font-family: var(--font-head);
  font-size: clamp(2.75rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  margin: 0 0 0.6rem;
}
.stat__label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

/* Banner text — large italic Cormorant for "moment" strips */
.banner-text {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.banner-text p {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-style: italic;
  color: var(--navy);
  line-height: 1.3;
  margin: 0;
}
.banner-text--lined::before,
.banner-text--lined::after {
  content: '';
  display: block;
  width: 60%;
  max-width: 220px;
  height: 1px;
  background: rgba(201, 169, 110, 0.55);
  margin: 0 auto;
}
.banner-text--lined::before { margin-bottom: 1.75rem; }
.banner-text--lined::after { margin-top: 1.75rem; }

/* Gold pill badge */
.badge--gold {
  display: inline-block;
  background: rgba(201, 169, 110, 0.16);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 169, 110, 0.35);
  margin-top: 1rem;
}

/* ============================================================
   ACCORDION (FAQ / Policies)
   ============================================================ */
.accordion {
  border-top: 1px solid var(--border);
}
.accordion__item {
  border-bottom: 1px solid var(--border);
  padding: 0 1.25rem;
  transition: background 0.2s ease;
}
.accordion__item:nth-child(even) {
  background: rgba(243, 239, 232, 0.5);
}
.accordion__btn {
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--navy);
  background: none;
}
.accordion__btn::after {
  content: '+';
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.accordion__item.is-open .accordion__btn::after {
  content: '−';
}
.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion__panel-inner {
  padding: 0 0 1.4rem;
  color: var(--text-soft);
  max-width: 70ch;
}

/* ============================================================
   FORMS
   ============================================================ */
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.field label {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 500;
}
.field input,
.field textarea,
.field select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27, 58, 107, 0.12);
}
.field textarea { resize: vertical; min-height: 140px; }

/* Inline email signup */
.signup {
  display: flex;
  gap: 0.6rem;
  max-width: 480px;
  margin: 1.5rem auto 0;
}
.signup--left { margin-left: 0; margin-right: 0; }
.signup input {
  flex: 1;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.signup input:focus { outline: none; border-color: var(--navy); }
@media (max-width: 540px) {
  .signup { flex-direction: column; }
  .signup .btn { width: 100%; }
}

/* ============================================================
   PULL QUOTE
   ============================================================ */
.pullquote {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) 0;
}
.pullquote q {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-style: italic;
  color: var(--navy);
  line-height: 1.3;
  display: block;
  quotes: '"' '"';
}
.pullquote q::before { content: open-quote; }
.pullquote q::after { content: close-quote; }
.pullquote cite {
  display: block;
  margin-top: 1.25rem;
  font-style: normal;
  color: var(--text-soft);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Editorial pull-quote variant — big decorative " above, bold italic quote */
.pullquote--editorial {
  position: relative;
  max-width: 920px;
  padding-top: clamp(1rem, 3vw, 2rem);
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
}
.pullquote--editorial::before {
  content: '\201C';
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--font-head);
  font-size: clamp(6rem, 11vw, 8.5rem);
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  opacity: 0.32;
  line-height: 0.85;
  margin-bottom: 0.5rem;
  pointer-events: none;
}
.pullquote--editorial q {
  font-size: clamp(1.85rem, 3.6vw, 2.6rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.25;
}
.pullquote--editorial q::before,
.pullquote--editorial q::after {
  content: '';
}
.pullquote--editorial cite {
  margin-top: 2rem;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
}
.section--navy .pullquote--editorial cite { color: var(--gold); }

/* Mobile: tighten the navy quote section so the mark + quote feel centered */
@media (max-width: 720px) {
  .section--navy:has(.pullquote--editorial) {
    padding-top: 2rem;
  }
  .pullquote--editorial::before {
    font-size: 3rem;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #1E3A6E;
  color: rgba(255, 255, 255, 0.85);
  padding: clamp(3rem, 6vw, 4.5rem) 0 1.5rem;
  border-top: 2px solid var(--gold);
}
.footer a { color: rgba(255,255,255,0.85); }
.footer a:hover { color: var(--gold); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 820px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 540px) {
  .footer__grid { grid-template-columns: 1fr; }
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer__logo img {
  height: 60px;
  width: auto;
  border-radius: 50%;
}
.footer__tag {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--white);
  margin: 0;
}
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin: 0 0 1rem;
  font-weight: 500;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.95rem;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.center { text-align: center; }
.center-block { margin-left: auto; margin-right: auto; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.75rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.25rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.75rem; }
.mb-2 { margin-bottom: 1.5rem; }
.mb-3 { margin-bottom: 2.25rem; }
.maxw-prose { max-width: 65ch; }
