@import url('tokens.css');

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--cream);
  background: var(--teal-darker);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* Subtle paper grain — applied to light (beige/cream) surfaces */
.grain { position: relative; }
.grain::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  opacity: .045; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   PAGE PANEL — the whole site sits inside a rounded card
   ============================================================ */
.page-frame {
  width: 100%;
  margin: 0;
  padding: 0;
}
.panel {
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  background: var(--teal-deep);
}

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: .92;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.script {
  font-family: var(--font-script);
  font-weight: 400;
  line-height: 1;
}
.eyebrow {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .26em;
  font-size: .72rem;
}

/* ============================================================
   BUTTONS  (compact, slight radius, no glow)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: var(--font-display);
  font-size: 1.18rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .62em 1.5em;
  border-radius: 10px;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
/* Neon-sign treatment — lit-tube inner rim + colored outer glow */
.btn--orange {
  background: var(--orange); color: var(--cream);
  box-shadow:
    inset 0 0 0 1.5px rgba(255, 214, 170, .65),
    0 0 10px rgba(240, 122, 42, .55),
    0 0 26px rgba(233, 103, 27, .35);
  text-shadow: 0 0 8px rgba(255, 226, 190, .55);
}
.btn--orange:hover {
  background: var(--orange-bright);
  transform: translateY(-1px);
  box-shadow:
    inset 0 0 0 1.5px rgba(255, 224, 186, .85),
    0 0 14px rgba(240, 122, 42, .75),
    0 0 38px rgba(233, 103, 27, .5);
}
.btn--teal {
  background: var(--teal-mid); color: var(--cream);
  box-shadow:
    inset 0 0 0 1.5px rgba(120, 226, 220, .5),
    0 0 10px rgba(2, 176, 171, .45),
    0 0 26px rgba(2, 176, 171, .3);
  text-shadow: 0 0 8px rgba(170, 240, 236, .45);
}
.btn--teal:hover {
  background: #237a80;
  transform: translateY(-1px);
  box-shadow:
    inset 0 0 0 1.5px rgba(150, 236, 230, .75),
    0 0 14px rgba(2, 176, 171, .65),
    0 0 38px rgba(2, 176, 171, .45);
}
.btn--lg { font-size: 1.22rem; padding: .7em 1.7em; }

/* ============================================================
   SECTION 01 — HEADER
   ============================================================ */
.site-header {
  background: var(--teal-deep);
  padding: 22px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 40px);
}
.main-nav a {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .82rem;
  color: var(--cream);
  transition: color var(--transition);
}
.main-nav a:hover { color: var(--orange-bright); }
.nav-cta { /* BOOK NOW lives at the end of the nav row */ }

.nav-toggle { display: none; }

/* ---- Logo (atomic marquee tiles) ---- */
.logo { display: inline-flex; flex-direction: column; align-items: center; gap: 4px; }
.logo--sm { transform: scale(.9); transform-origin: left center; }
.logo-tiles {
  display: flex;
  align-items: flex-end;
}
.logo-tiles .tile {
  font-family: var(--font-display);
  font-size: 2.35rem;
  line-height: 1;
  color: var(--cream);
  padding: .12em .16em .06em;
  margin: 0 -1px;
  border-radius: 3px;
  box-shadow: 0 3px 4px rgba(0,0,0,.28);
  text-shadow: 0 1px 0 rgba(0,0,0,.25);
}
/* tile color + tilt rotation, alternating like the painted sign */
.tile.t-teal   { background: #1f8a8f; }
.tile.t-orange { background: var(--orange); }
.tile.t-cream  { background: var(--beige); color: #3a3024; }
.tile.t-dark   { background: #2a4d4f; }
.tile.r1 { transform: rotate(-7deg) translateY(2px); }
.tile.r2 { transform: rotate(4deg); }
.tile.r3 { transform: rotate(-3deg) translateY(1px); }
.tile.r4 { transform: rotate(6deg) translateY(2px); }
.tile.r5 { transform: rotate(-5deg); }
.tile.gap { margin-left: .26em; }

.logo-social {
  display: flex; align-items: center; gap: .5em;
  font-family: var(--font-sans);
  font-weight: 600; text-transform: uppercase;
  letter-spacing: .42em; font-size: .68rem;
  color: var(--cream); padding-left: .42em;
}
.logo-social .star { color: var(--orange); font-size: .8em; }

/* ============================================================
   APPROVED ATOMIC SPARKLE (decor-08) — used as the accent icon
   ============================================================ */
/* Thin-line 8-point burst (hero + banner). .decor handles absolute pos. */
.sparkle {
  --s: 120px;
  width: var(--s); height: var(--s);
  color: var(--cream);
}
/* ============================================================
   SECTION 02 — HERO
   ============================================================ */
.hero {
  background: var(--teal-deep);
  display: grid;
  grid-template-columns: 47% 53%;
  align-items: stretch;
  overflow: hidden;
}
.hero-left {
  padding: clamp(28px, 4vw, 64px) var(--gutter) clamp(40px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hero-headline {
  position: relative;
  margin: 8px 0 18px;
}
.hero-headline .l1 {
  display: block;
  font-family: var(--font-display);
  color: var(--cream);
  font-size: clamp(3.6rem, 7vw, 6.4rem);
  line-height: .9;
  letter-spacing: .005em;
}
/* white FUNder ALLEY lettering lifted from the logo */
.hero-headline .l2-lockup {
  margin-top: clamp(14px, 1.8vw, 26px);
  display: block;
  width: clamp(330px, 36vw, 520px);
  height: auto;
  filter: drop-shadow(0 0 18px rgba(246, 239, 228, .28));
}
.hero-headline .sparkle {
  position: absolute;
  z-index: -1; /* behind the WELCOME TO tiles */
  top: -10%; right: -7%;
  --s: clamp(54px, 7vw, 96px);
}
.hero-copy {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.15vw, 1.14rem);
  line-height: 1.65;
  color: rgba(246, 239, 228, .92);
  max-width: 54ch;
  margin: 0 0 30px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-right { position: relative; min-height: 420px; }
.hero-right .hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* left-anchored so the FUNder Alley mural panel stays in frame */
  object-position: 0% center;
  /* warm cinematic grade */
  filter: saturate(1.06) contrast(1.03) brightness(1.02);
}
/* Organic wavy left edge — the teal flows into the photo (clip keeps the right region) */
.hero-right .img-wrap {
  position: absolute; inset: 0;
  overflow: hidden;
  -webkit-clip-path: url(#heroWave);
  clip-path: url(#heroWave);
}
.hero-right .img-wrap::after { /* warm amber wash to unify with brand */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(13,90,97,.34) 0%, rgba(13,90,97,0) 24%),
              linear-gradient(0deg, rgba(217,90,26,.12), rgba(217,90,26,.12));
  mix-blend-mode: multiply;
}
/* "8 Lanes of Duckpin" round badge on the hero photo */
.lanes-badge {
  position: absolute;
  top: 8%; right: 6%;
  z-index: 2;
  width: clamp(110px, 10.5vw, 152px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--teal-darker);
  box-shadow:
    0 0 0 3px var(--cream),
    0 0 14px rgba(2, 176, 171, .45),
    0 0 30px rgba(2, 176, 171, .25);
  display: grid;
  place-content: center;
  text-align: center;
  transform: rotate(8deg);
}
.lanes-badge::before { /* inner dashed ring, ticket-stamp style */
  content: "";
  position: absolute; inset: 7px;
  border: 1.5px dashed rgba(246, 239, 228, .55);
  border-radius: 50%;
}
.lanes-badge .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 0 10px rgba(227, 169, 60, .5);
}
.lanes-badge .txt {
  font-family: var(--font-display);
  font-size: clamp(.72rem, .85vw, .88rem);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.25;
  margin-top: 4px;
}

/* ============================================================
   SECTION 03 — ACTIVITY ICON BAND
   ============================================================ */
.activities {
  background: var(--beige);
  padding: clamp(34px, 4vw, 54px) var(--gutter);
}
.activity-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
}
.activity-card {
  background: var(--cream);
  border: 1.5px solid var(--orange);
  border-radius: 14px 14px 6px 6px;
  padding: 26px 14px 20px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.activity-card:nth-child(even) { border-color: var(--teal-deep); }
.activity-card:hover { transform: translateY(-4px); box-shadow: 0 8px 18px rgba(40,40,40,.12); }
.activity-card .icon { width: 78px; height: 78px; }
.activity-card .label {
  font-family: var(--font-display);
  color: var(--teal-deep);
  font-size: 1.18rem;
  letter-spacing: .04em;
  line-height: 1.05;
}

/* ---- WELCOME hex tiles (from the entry mural) ---- */
.welcome-head {
  position: relative; z-index: 1;
  text-align: center;
  margin-bottom: clamp(28px, 3.4vw, 44px);
}
.welcome-tiles {
  display: flex;
  justify-content: center;
  gap: clamp(4px, .6vw, 8px);
}
.wtile {
  /* shadow lives on the wrapper so the clip-path doesn't cut it off */
  filter: drop-shadow(3px 4px 0 rgba(32, 32, 32, .28));
}
.wtile b {
  display: grid; place-items: center;
  width: clamp(38px, 4.4vw, 56px);
  height: clamp(52px, 5.9vw, 76px);
  clip-path: polygon(50% 0%, 100% 14%, 100% 86%, 50% 100%, 0% 86%, 0% 14%);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  color: var(--cream);
  padding-top: .08em;
}
.wt-teal b   { background: var(--teal-deep); }
.wt-gold b   { background: var(--gold); }
.wt-orange b { background: var(--orange-deep); }
/* hand-placed tilt, like the painted mural */
.wtile:nth-child(1) { transform: rotate(-6deg) translateY(3px); }
.wtile:nth-child(2) { transform: rotate(4deg)  translateY(-2px); }
.wtile:nth-child(3) { transform: rotate(-3deg) translateY(2px); }
.wtile:nth-child(4) { transform: rotate(5deg)  translateY(-3px); }
.wtile:nth-child(5) { transform: rotate(-5deg) translateY(1px); }
.wtile:nth-child(6) { transform: rotate(3deg)  translateY(-2px); }
.wtile:nth-child(7) { transform: rotate(-4deg) translateY(3px); }
.wtile:nth-child(8) { transform: rotate(5deg)  translateY(-2px); }
.wtile:nth-child(9) { transform: rotate(-5deg) translateY(2px); }
/* word gap before the TO tiles */
.wtile--sep { margin-left: clamp(10px, 1.3vw, 20px); }
.welcome-script {
  color: var(--orange);
  font-size: clamp(1.5rem, 2.3vw, 2.1rem);
  transform: rotate(-2deg);
  margin-top: 10px;
}
/* hero variant — bigger tiles, left-aligned; cream tiles replace teal
   so they read against the teal hero background */
.welcome-tiles--hero {
  justify-content: flex-start;
  gap: clamp(5px, .7vw, 10px);
  margin-bottom: 4px;
}
.welcome-tiles--hero .wtile b {
  /* sized so all nine WELCOME TO tiles fit the hero column */
  width: clamp(34px, 4vw, 54px);
  height: clamp(46px, 5.4vw, 73px);
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
}
.wt-cream b { background: var(--cream); color: var(--teal-deep); }
/* intro headline on the activities band (Eat. Play. Celebrate!) */
.intro-headline {
  font-family: var(--font-card);
  font-weight: 400;
  color: var(--teal-deep);
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.intro-headline .script {
  font-family: var(--font-script);
  text-transform: none;
  color: var(--orange);
  font-size: 1.05em;
  display: inline-block;
  transform: rotate(-3deg);
  margin-left: .12em;
}

/* ============================================================
   SECTION 04 — ENTERTAINMENT BANNER
   ============================================================ */
.banner {
  position: relative;
  min-height: clamp(300px, 34vw, 440px);
  display: grid; place-items: center;
  text-align: center;
  padding: 56px var(--gutter);
  overflow: hidden;
  background: var(--ink);
}
.banner-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.banner::before { /* darkening for legibility */
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at center, rgba(12,30,33,.45) 0%, rgba(8,20,22,.78) 100%);
}
.banner-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 26px; }
.banner-head { position: relative; }
.banner-head .l1 {
  font-family: var(--font-card);
  color: var(--cream);
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  letter-spacing: .03em;
  line-height: .92;
}
.banner-head .l2 {
  display: block;
  font-family: var(--font-script);
  color: var(--orange-bright);
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-top: -.06em;
  transform: rotate(-3deg);
}
.banner-head .sparkle { position: absolute; top: -18%; right: -14%; --s: clamp(46px, 6vw, 80px); }
/* hand-drawn underline arrow */
.banner-arrow { width: clamp(220px, 30vw, 360px); height: 40px; margin-top: -6px; color: var(--orange-bright); }

/* ============================================================
   ATOMIC BRICKS DIVIDER — retro rounded-rect pattern strip
   ============================================================ */
.bricks-strip {
  background: var(--cream);
  line-height: 0;
}
.bricks-strip svg {
  display: block;
  width: 100%;
  height: clamp(54px, 6.5vw, 88px);
}

/* ============================================================
   SECTION 05 — DUCK'S LANDING (FOOD)
   ============================================================ */
.food {
  position: relative;
  background: var(--cream);
  padding: clamp(48px, 6vw, 88px) var(--gutter);
  overflow: hidden;
}
.food-inner {
  position: relative; z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 410px) minmax(0, 640px);
  justify-content: center;
  gap: clamp(36px, 6vw, 92px);
  align-items: center;
}
.food-art {
  position: relative;
  justify-self: center;
}
.food-art::before { /* tilted gold frame behind Larry — atomic poster feel */
  content: "";
  position: absolute; inset: -12px;
  border: 3px solid var(--gold);
  border-radius: 22px;
  transform: rotate(2.2deg);
}
.food-art img {
  position: relative;
  width: 100%;
  max-width: 410px;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(32,32,32,.16);
  transform: rotate(-1.4deg);
}
.food-lockup {
  position: relative;
  margin-bottom: 8px;
  padding: 26px 36px 20px 30px;
  margin-left: -30px;
  background: url("../images/wash-brush.svg") no-repeat left center;
  background-size: min(620px, 100%) 100%;
}
.food-lockup .l1 {
  display: block;
  color: var(--teal-deep);
  font-size: clamp(2.9rem, 4.8vw, 4.6rem);
  line-height: 1.04;
  transform: rotate(-2deg);
}
.food-swash {
  display: block;
  width: min(330px, 72%);
  height: auto;
  color: var(--gold);
  margin: -4px 0 12px 10px;
  transform: rotate(-2deg);
}
.food-lockup .l2 {
  display: block;
  font-family: var(--font-display);
  color: var(--teal-deep);
  font-size: clamp(.95rem, 1.3vw, 1.2rem);
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-left: 10px;
}
.food-motto {
  color: var(--orange);
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  transform: rotate(-2deg);
  margin: 4px 0 18px;
}
.food-text {
  color: var(--teal-dark);
  font-size: 1.12rem;
  line-height: 1.65;
  max-width: 56ch;
  margin-bottom: 26px;
}
.food-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   SECTION 06 — ABOUT
   ============================================================ */
.about {
  position: relative;
  background: var(--teal-deep);
  padding: clamp(56px, 7vw, 96px) var(--gutter);
  overflow: hidden;
}
.about-inner {
  position: relative; z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.about-copy .eyebrow {
  display: block;
  color: var(--gold);
  margin-bottom: 16px;
}
.about-copy h2 {
  font-family: var(--font-card);
  color: var(--cream);
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  margin-bottom: 22px;
}
.about-copy p {
  color: rgba(246, 239, 228, .88);
  line-height: 1.65;
  max-width: 54ch;
  margin-bottom: 16px;
}
.about-copy .btn { margin-top: 12px; }
.about-photo {
  position: relative;
}
.about-photo::before { /* offset gold frame */
  content: "";
  position: absolute; inset: -12px;
  border: 3px solid var(--gold);
  border-radius: 26px;
  transform: rotate(-2deg);
}
.about-photo img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
}
.about-photo .decor { z-index: 2; }

/* ============================================================
   SECTION 07 — PARTIES
   ============================================================ */
.parties {
  position: relative;
  background: var(--cream);
  padding: clamp(46px, 5vw, 72px) var(--gutter) clamp(52px, 6vw, 84px);
  text-align: center;
  overflow: hidden;
}
.parties > *:not(.decor) { position: relative; z-index: 1; }
.parties-head {
  display: flex; align-items: center; justify-content: center; gap: 22px;
  margin-bottom: 4px;
}
.parties-sub {
  color: var(--orange);
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  transform: rotate(-2deg);
  margin-bottom: clamp(36px, 4.5vw, 56px);
}
.parties-head h2 {
  font-family: var(--font-card);
  color: var(--teal-deep);
  font-size: clamp(1.8rem, 3.4vw, 2.9rem);
  letter-spacing: .08em;
}
.parties-head .rule { height: 1px; width: clamp(40px, 8vw, 110px); background: rgba(13,90,97,.35); }
.party-grid {
  max-width: 1060px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
}
/* Retro brick cards — echo the atomic bricks divider */
.party-item {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  padding: 26px 16px 24px;
  border-radius: 22px;
  box-shadow: inset 0 0 0 1.5px var(--charcoal), 0 8px 18px rgba(32, 32, 32, .16);
  transition: transform var(--transition), box-shadow var(--transition);
}
.party-item:nth-child(odd)  { transform: rotate(-1.4deg); }
.party-item:nth-child(even) { transform: rotate(1.2deg); }
.party-item:hover {
  transform: rotate(0deg) translateY(-5px);
  box-shadow: inset 0 0 0 1.5px var(--charcoal), 0 14px 26px rgba(12, 40, 44, .3);
}
.card--orange { background: var(--orange); }
.card--teal   { background: var(--teal-deep); }
.card--gold   { background: var(--gold); }
.card--cream  { background: var(--cream); }
.party-item .icon-window {
  display: grid; place-items: center;
  width: 104px; height: 104px;
  border-radius: 18px;
  background: var(--cream);
}
.card--cream .icon-window { background: var(--beige); }
.party-item .icon { width: 62px; height: 62px; }
.party-item .label {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.12rem;
  letter-spacing: .08em;
  line-height: 1.1;
}
.card--gold .label  { color: var(--teal-darker); }
.card--cream .label { color: var(--teal-deep); }
.parties-cta {
  margin-top: clamp(44px, 5vw, 68px);
}

/* ============================================================
   SECTION 06 — FOOTER
   ============================================================ */
.site-footer {
  background: var(--teal-darker);
  padding: clamp(44px, 5vw, 64px) var(--gutter) clamp(34px, 4vw, 48px);
}
.footer-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.footer-tag {
  color: var(--gold);
  font-size: 1.55rem;
  transform: rotate(-2deg);
  margin-left: 4px;
}
.footer-heading {
  display: flex; align-items: center; gap: .55em;
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--gold);
  font-size: .98rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-star {
  width: .75em; height: 1.1em;
  flex: none;
  color: var(--orange-bright);
  fill: currentColor;
}
.footer-col ul li { margin: 0 0 .7em; }
.footer-col ul a {
  color: rgba(246, 239, 228, .85);
  font-size: .95rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--orange-bright); }
.footer-address {
  font-style: normal;
  line-height: 1.6;
}
.footer-map {
  display: block;
  color: rgba(246, 239, 228, .85);
  font-size: .95rem;
  transition: color var(--transition);
}
.footer-map:hover { color: var(--orange-bright); }
.footer-phone {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: .06em;
  color: var(--cream);
  transition: color var(--transition);
}
.footer-phone:hover { color: var(--orange-bright); }
.footer-hours {
  margin-top: 12px;
  color: rgba(246, 239, 228, .85);
  font-size: .95rem;
}
.footer-hours span {
  font-size: .82rem;
  color: rgba(246, 239, 228, .55);
}
.footer-bottom {
  max-width: var(--maxw);
  margin: clamp(36px, 4vw, 52px) auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(246, 239, 228, .16);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  color: rgba(246, 239, 228, .6);
  font-size: .85rem;
  position: relative; z-index: 1;
}
.footer-bottom-script {
  color: var(--gold);
  font-size: 1.25rem;
  transform: rotate(-2deg);
}
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--cream); color: var(--teal-darker);
  display: grid; place-items: center;
  transition: transform var(--transition), background var(--transition);
}
.footer-social a:hover { transform: translateY(-2px); background: var(--orange-bright); color: var(--cream); }
.footer-social svg { width: 20px; height: 20px; }
.footer-logo { justify-self: start; }

/* ============================================================
   DECORATIVE ATOMIC MOTIFS
   Recolorable via mask-image; placed sparsely as accents.
   Color set per-instance via `color:` (background = currentColor).
   ============================================================ */
.decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  display: block;
  fill: currentColor;
  overflow: visible;
}
.decor use { fill: currentColor; }

/* keep real content above decor in sections that carry accents */
.hero-left > :not(.decor) { position: relative; z-index: 1; }
/* center the content block within the teal panel so ultra-wide screens
   don't leave a dead gap between the text and the photo curve */
.hero-left-inner {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
}
.activities { position: relative; }
.activity-grid { position: relative; z-index: 1; }
.banner .decor { z-index: 1; }
.site-footer { position: relative; overflow: hidden; }
.footer-grid { position: relative; z-index: 1; }
.parties-head, .party-grid, .parties-cta { z-index: 1; }

@media (max-width: 620px) {
  .decor.hide-sm { display: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  /* hide inline nav, show toggle */
  .main-nav { position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
    background: var(--teal); transform: translateX(100%); transition: transform .28s ease;
    z-index: 60; padding: 90px 30px; }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 26px; }
  .nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; z-index: 61; }
  .nav-toggle span { width: 26px; height: 2px; background: var(--cream); display: block; }

  .hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 340px; order: 2; }
  .hero-right .img-wrap, .hero-right .hero-img, .hero-right .img-wrap::after { border-top-left-radius: 0; border-top-right-radius: 0; }
  .hero-left { order: 1; }

  .activity-grid { grid-template-columns: repeat(3, 1fr); }

  .food-inner { grid-template-columns: 1fr; }
  .food-art { max-width: 340px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-photo { max-width: 560px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .activity-grid { grid-template-columns: repeat(2, 1fr); }
  .party-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .footer-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 34px; }
  .footer-brand { align-items: center; }
  .footer-heading { justify-content: center; }
  .footer-bottom { justify-content: center; text-align: center; }
  .hero-cta .btn { flex: 1; }
  .logo-tiles .tile { font-size: 1.9rem; }
}

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

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .btn, .activity-card, .footer-social a { transition: none; }
}

/* ============================================================
   BRAND LOGO IMAGE (replaces the tile-block wordmark)
   ============================================================ */
.logo.logo--mark { display: inline-flex; align-items: center; gap: 0; }
.logo.logo--mark .logo-img { display: block; height: 68px; width: auto; }
.logo.logo--sm.logo--mark .logo-img { height: 56px; }

/* ============================================================
   INNER PAGES — shared page hero, feature rows, menu, packages,
   FAQ accordion, contact form
   ============================================================ */
.main-nav a[aria-current="page"] { color: var(--orange-bright); }

.page-hero {
  position: relative;
  background: var(--teal-deep);
  text-align: center;
  padding: clamp(48px, 6vw, 84px) var(--gutter) clamp(44px, 5vw, 72px);
  overflow: hidden;
}
.page-hero > :not(.decor) { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--gold); display: block; margin-bottom: 12px; }
.page-hero h1 {
  font-family: var(--font-card);
  font-weight: 400;
  color: var(--cream);
  font-size: clamp(2.5rem, 5.4vw, 4.4rem);
  line-height: .95;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.page-hero .script-sub {
  display: block;
  font-family: var(--font-script);
  color: var(--orange-bright);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  transform: rotate(-2deg);
  margin-top: .3em;
}
.page-hero .lede {
  color: rgba(246, 239, 228, .88);
  max-width: 62ch;
  margin: 18px auto 0;
  line-height: 1.65;
}

/* ---- Feature rows (entertainment) ---- */
.feature {
  position: relative;
  padding: clamp(48px, 6vw, 84px) var(--gutter);
  overflow: hidden;
}
.feature--light { background: var(--cream); }
.feature--teal  { background: var(--teal-deep); }
.feature--gold  { background: var(--gold); }
.feature--gold .feature-copy .eyebrow { color: var(--teal-deep); }
.feature--gold .feature-copy h2 { color: var(--teal-deep); }
.feature--gold .feature-copy p { color: rgba(32, 32, 32, .82); }
.feature--gold .badge { border-color: var(--teal-deep); color: var(--teal-deep); }
.feature--gold .badge--loud {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  color: var(--cream);
  font-weight: 700;
}
.feature--gold .feature-media::before { border-color: var(--teal-deep); }
.feature-inner {
  position: relative; z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.feature--flip .feature-inner { grid-template-columns: .95fr 1.05fr; }
.feature--flip .feature-copy { order: 2; }
.feature--flip .feature-media { order: 1; }
.feature-copy .eyebrow { display: block; color: var(--orange); margin-bottom: 12px; }
.feature--teal .feature-copy .eyebrow { color: var(--gold); }
.feature-copy h2 {
  font-family: var(--font-card);
  font-weight: 400;
  color: var(--teal-deep);
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: 1;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.feature--teal .feature-copy h2 { color: var(--cream); }
.feature-copy p {
  color: var(--teal-dark);
  line-height: 1.65;
  max-width: 56ch;
  margin-bottom: 14px;
}
.feature--teal .feature-copy p { color: rgba(246, 239, 228, .88); }
.feature-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 6px 0 20px; }
.badge {
  font-family: var(--font-display);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .45em 1em;
  border-radius: 999px;
  border: 1.5px solid var(--orange);
  color: var(--orange-deep);
}
.feature--teal .badge { border-color: var(--gold); color: var(--gold); }
/* filled attention badge — "no real axes" */
.badge--loud,
.feature--teal .badge--loud {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--teal-deep);
  font-weight: 700;
}
/* larger Laser-Tron eyebrow so the digital-targets point can't be missed */
.eyebrow--lg {
  font-size: 1.05rem;
  letter-spacing: .3em;
  color: var(--gold);
}
.feature-media { position: relative; }
.feature-media::before {
  content: "";
  position: absolute; inset: -12px;
  border: 3px solid var(--gold);
  border-radius: 24px;
  transform: rotate(-1.6deg);
}
.feature--flip .feature-media::before { transform: rotate(1.6deg); }
.feature-media img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
}
.feature-media--art::before { border-color: var(--gold); }
.feature-media--art { background: var(--cream); border-radius: 18px; }
.feature-media--art img {
  aspect-ratio: auto;
  object-fit: contain;
  background: var(--cream);
  mix-blend-mode: multiply; /* white art backgrounds melt into the cream card */
}
.feature-note {
  font-size: .88rem;
  color: rgba(13, 90, 97, .75);
  font-style: italic;
}
.feature--teal .feature-note { color: rgba(246, 239, 228, .6); }
.feature-note a {
  color: var(--orange-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---- Menu page ---- */
.menu-intro {
  position: relative;
  background: var(--cream);
  padding: clamp(40px, 5vw, 64px) var(--gutter) clamp(24px, 3vw, 40px);
  text-align: center;
  overflow: hidden;
}
.menu-intro > :not(.decor) { position: relative; z-index: 1; }
.menu-strip {
  max-width: 980px;
  margin: 0 auto;
  border: 3px solid var(--gold);
  border-radius: 22px;
  transform: rotate(-.8deg);
  overflow: hidden;
}
.menu-strip img { width: 100%; display: block; }
.menu-strip--foot { margin-top: clamp(20px, 2.6vw, 32px); transform: rotate(.8deg); }
.menu-note {
  margin: 18px auto 0;
  max-width: 60ch;
  color: var(--teal-dark);
  font-size: .95rem;
}
.bar-menu {
  position: relative;
  background: var(--cream);
  padding: clamp(20px, 2.4vw, 30px) var(--gutter) clamp(40px, 6vw, 72px);
  overflow: hidden;
}
.bar-menu > :not(.decor) { position: relative; z-index: 1; }
.bar-menu .section-head { margin-bottom: clamp(24px, 3vw, 40px); }
.bar-lower {
  max-width: 1500px; margin: 0 auto;
  display: grid; grid-template-columns: 1.35fr 1fr;
  gap: clamp(20px, 2.6vw, 32px); align-items: stretch;
}
.bar-blurb { color: var(--teal-dark); line-height: 1.6; margin-top: 4px; }
.bar-item {
  display: grid; grid-template-columns: minmax(120px, max-content) 1fr;
  gap: 2px 18px; align-items: baseline;
  padding: 7px 0; border-bottom: 1px dotted rgba(38, 41, 43, .18);
}
.bar-item:last-of-type { border-bottom: none; }
.bar-name {
  font-weight: 700; color: var(--charcoal);
  letter-spacing: .02em; text-transform: uppercase; font-size: .95rem;
}
.bar-desc { color: var(--teal-dark); font-size: .92rem; }
.bar-note { margin-top: 14px; color: var(--teal-dark); font-size: .92rem; }
.bar-note strong { color: var(--orange-deep); }
@media (max-width: 900px) {
  .bar-lower { grid-template-columns: 1fr; }
}
.menu-note strong { color: var(--orange-deep); }
.menu-wrap {
  position: relative;
  background: var(--cream);
  padding: clamp(28px, 4vw, 48px) var(--gutter) clamp(20px, 2.4vw, 30px);
  overflow: hidden;
}
.menu-grid {
  position: relative; z-index: 1;
  max-width: 1500px;
  margin: 0 auto;
  columns: 2;
  column-gap: clamp(20px, 2.6vw, 40px);
}
.menu-cat {
  break-inside: avoid;
  background: var(--cream);
  border-radius: 20px;
  box-shadow: inset 0 0 0 1.5px var(--charcoal), 0 8px 18px rgba(32, 32, 32, .1);
  padding: 26px 26px 22px;
}
.menu-cat > h3 {
  display: flex; align-items: center; gap: .5em;
  font-family: var(--font-card);
  font-weight: 400;
  color: var(--orange-deep);
  font-size: 1.5rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.menu-cat > h3 .footer-star { color: var(--teal-deep); }
.menu-cat .cat-sub {
  font-family: var(--font-script);
  color: var(--teal-mid);
  font-size: 1.25rem;
  margin-bottom: 14px;
}
.menu-item { display: flex; align-items: baseline; gap: 8px; padding: 7px 0; }
.menu-item .name { font-weight: 700; color: var(--teal-dark); }
.menu-item .dots { flex: 1; border-bottom: 2px dotted rgba(13, 90, 97, .35); transform: translateY(-4px); }
.menu-item .price {
  font-family: var(--font-display);
  color: var(--orange-deep);
  white-space: nowrap;
}
.menu-item-desc {
  font-size: .88rem;
  color: rgba(16, 62, 70, .75);
  margin: -4px 0 6px;
  max-width: 46ch;
}
.menu-cat-art { margin: 14px -8px -6px; }
.menu-cat-art img { width: 100%; border-radius: 12px; }
.menu-list-plain { columns: 2; column-gap: 20px; }
.menu-list-plain li { padding: 4px 0; color: var(--teal-dark); font-size: .95rem; break-inside: avoid; }

/* ============================================================
   MENU — reference "menu-board" layout: category quick-nav,
   3-column top block, 4-column secondary block, foot CTA.
   Cream surface + existing type/color/decor retained.
   ============================================================ */
.menu-grid-3,
.menu-grid-4,
.menu-foot-row {
  position: relative; z-index: 1;
  max-width: 1500px; margin: 0 auto clamp(20px, 2.6vw, 32px);
}

/* grids */
.menu-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.6vw, 32px); align-items: stretch; }
.menu-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 2.6vw, 32px); align-items: stretch; }
.menu-col { display: flex; flex-direction: column; gap: clamp(20px, 2.6vw, 32px); }
.menu-col > .menu-cat { flex: 1 1 auto; }

/* kids-menu table */
.kids-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.kids-table th {
  text-align: left; font-family: var(--font-sans); font-size: .68rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--teal-mid);
  padding: 4px 10px 8px 0; border-bottom: 1.5px solid rgba(38, 41, 43, .2);
}
.kids-table th:last-child { text-align: right; padding-right: 0; }
.kids-table td {
  padding: 9px 12px 9px 0; vertical-align: top; font-size: .95rem;
  color: var(--teal-dark); border-bottom: 1px dotted rgba(38, 41, 43, .2);
}
.kids-table td:first-child { font-weight: 700; color: var(--charcoal); }
.kids-table td:last-child {
  text-align: right; padding-right: 0; white-space: nowrap;
  color: var(--orange-deep); font-weight: 700;
}
.kids-table tr:last-child td { border-bottom: none; }

/* kids sweet finishes sub-card */
.menu-cat--kids-sweet { text-align: center; }
.menu-cat--kids-sweet h4 {
  font-family: var(--font-card); font-weight: 400; color: var(--teal-deep);
  letter-spacing: .05em; text-transform: uppercase; font-size: 1.05rem; margin-bottom: 8px;
}
.menu-cat--kids-sweet p { color: var(--teal-dark); font-size: .95rem; }
.menu-cat--kids-sweet strong { color: var(--orange-deep); white-space: nowrap; }

/* foot row: sweet finishes + tagline CTA */
.menu-foot-row { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(20px, 2.6vw, 32px); align-items: stretch; }
.menu-cta {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px;
  background: var(--teal-deep); color: var(--cream);
  border-radius: 20px; padding: 28px 34px;
  box-shadow: inset 0 0 0 1.5px var(--charcoal), 0 8px 18px rgba(32, 32, 32, .1);
}
.menu-cta .cta-l { border-right: 1.5px solid rgba(246, 239, 228, .35); padding-right: 24px; }
.menu-cta .cta-l .footer-star { width: 30px; height: 30px; margin-bottom: 6px; }
.menu-cta .cta-l b {
  display: block; font-family: var(--font-script); font-weight: 400;
  color: var(--cream); font-size: 1.7rem; line-height: 1; margin-bottom: 8px;
}
.menu-cta .cta-l span { color: rgba(246, 239, 228, .9); font-size: .98rem; }
.menu-cta .cta-r { display: flex; align-items: center; gap: 14px; }
.menu-cta .cta-r p { font-family: var(--font-script); color: var(--gold); font-size: 1.5rem; line-height: 1.2; }
.menu-cta .cta-r .footer-star { width: 34px; height: 34px; flex: none; }

@media (max-width: 1080px) {
  .menu-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .menu-grid-3 { grid-template-columns: 1fr; }
  .menu-foot-row { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .menu-grid-4 { grid-template-columns: 1fr; }
  .menu-cta { grid-template-columns: 1fr; }
  .menu-cta .cta-l { border-right: none; border-bottom: 1.5px solid rgba(246, 239, 228, .35); padding-right: 0; padding-bottom: 16px; }
}

/* ---- Events / packages ---- */
.packages {
  position: relative;
  background: var(--teal-deep);
  padding: clamp(48px, 6vw, 84px) var(--gutter);
  overflow: hidden;
}
.packages > :not(.decor) { position: relative; z-index: 1; }
.packages--cream { background: var(--cream); }
.section-head { text-align: center; margin-bottom: clamp(34px, 4vw, 54px); }
.section-head .eyebrow { display: block; color: var(--gold); margin-bottom: 10px; }
.section-head h2 {
  font-family: var(--font-card);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  letter-spacing: .06em;
  color: var(--cream);
  text-transform: uppercase;
}
.section-head .script-sub {
  display: block;
  font-family: var(--font-script);
  color: var(--orange-bright);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  transform: rotate(-2deg);
}
.section-head--dark h2 { color: var(--teal-deep); }
.section-head--dark .eyebrow { color: var(--orange); }
.section-head--dark .script-sub { color: var(--orange); }
.package-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
}
.package {
  display: flex; flex-direction: column;
  background: var(--cream);
  border-radius: 20px;
  box-shadow: inset 0 0 0 1.5px var(--charcoal), 0 10px 22px rgba(8, 28, 31, .28);
  overflow: hidden;
}
.package-head {
  padding: 18px 20px 14px;
  color: var(--cream);
  text-align: center;
}
.package-head .num {
  display: inline-grid; place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(246, 239, 228, .92);
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.package-head h3 {
  font-family: var(--font-card);
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  line-height: 1.05;
}
.package-head .tag { font-size: .85rem; opacity: .92; display: block; margin-top: 4px; }
.pkg--orange .package-head { background: var(--orange); }
.pkg--orange .package-head .num { color: var(--orange-deep); }
.pkg--teal .package-head { background: var(--teal-mid); }
.pkg--teal .package-head .num { color: var(--teal-deep); }
.pkg--gold .package-head { background: var(--gold); color: var(--teal-darker); }
.pkg--gold .package-head .num { color: var(--gold-deep); }
.pkg--dark .package-head { background: var(--teal-darker); }
.pkg--dark .package-head .num { color: var(--teal-darker); }
.package-body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.package-price {
  margin: 0 0 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(38, 41, 43, .14);
  border-bottom: 1px solid rgba(38, 41, 43, .14);
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}
.pp-tier { display: flex; flex-direction: column; gap: 3px; }
.pp-amt {
  font-family: var(--font-display);
  color: var(--orange-deep);
  font-size: 1.55rem;
  line-height: 1;
}
.pp-note {
  font-family: var(--font-sans);
  color: var(--teal-dark);
  font-size: .82rem;
  letter-spacing: .03em;
  line-height: 1.35;
}
.pp-note b { color: var(--teal-deep); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.package-body ul { flex: 1; margin-bottom: 12px; }
.package-body li {
  position: relative;
  padding: 5px 0 5px 22px;
  font-size: .92rem;
  color: var(--teal-dark);
  line-height: 1.4;
}
.package-body li::before {
  content: "";
  position: absolute; left: 0; top: 11px;
  width: 12px; height: 12px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 302.15 654.64'%3E%3Cpath d='M302.15,327.32s-93.26-3.59-122.99,60.84c-29.74,64.43-28.08,266.49-28.08,266.49,0,0,1.66-202.06-28.08-266.49C93.26,323.73,0,327.32,0,327.32c0,0,93.26,3.59,123-60.84C152.73,202.06,151.07,0,151.07,0c0,0-1.66,202.06,28.08,266.48,29.73,64.43,122.99,60.84,122.99,60.84h0Z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 302.15 654.64'%3E%3Cpath d='M302.15,327.32s-93.26-3.59-122.99,60.84c-29.74,64.43-28.08,266.49-28.08,266.49,0,0,1.66-202.06-28.08-266.49C93.26,323.73,0,327.32,0,327.32c0,0,93.26,3.59,123-60.84C152.73,202.06,151.07,0,151.07,0c0,0-1.66,202.06,28.08,266.48,29.73,64.43,122.99,60.84,122.99,60.84h0Z'/%3E%3C/svg%3E") center/contain no-repeat;
  color: var(--orange);
}
.package-min {
  text-align: center;
  font-size: .82rem;
  color: rgba(16, 62, 70, .7);
  border-top: 1px dashed rgba(13, 90, 97, .3);
  padding-top: 10px;
}
.packages-foot {
  max-width: 860px;
  margin: clamp(28px, 3.4vw, 44px) auto 0;
  text-align: center;
  color: rgba(246, 239, 228, .8);
  font-size: .92rem;
  line-height: 1.7;
}

/* ---- Occasions chips ---- */
.occasions {
  position: relative;
  background: var(--cream);
  padding: clamp(48px, 6vw, 80px) var(--gutter);
  overflow: hidden;
  text-align: center;
}
.occasions > :not(.decor) { position: relative; z-index: 1; }
.occasion-grid {
  max-width: 980px;
  margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 14px;
}
.occasion {
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .8em 1.4em;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1.5px var(--charcoal);
  background: var(--cream);
  color: var(--teal-deep);
}
.occasion:nth-child(4n+1) { background: var(--orange); color: var(--cream); }
.occasion:nth-child(4n+3) { background: var(--gold); color: var(--teal-darker); }

/* ---- FAQ ---- */
.faq {
  position: relative;
  background: var(--cream);
  padding: clamp(48px, 6vw, 80px) var(--gutter);
  overflow: hidden;
}
.faq > :not(.decor) { position: relative; z-index: 1; }
.faq-list {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  align-items: start;
}
@media (max-width: 760px) {
  .faq-list { grid-template-columns: 1fr; max-width: 640px; }
}
.faq-item {
  background: var(--cream);
  border-radius: 16px;
  box-shadow: inset 0 0 0 1.5px var(--charcoal), 0 6px 14px rgba(32, 32, 32, .08);
  overflow: hidden;
}
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: .04em;
  color: var(--teal-deep);
  text-transform: uppercase;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--orange);
  flex: none;
  transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a {
  padding: 0 22px 20px;
  color: var(--teal-dark);
  line-height: 1.65;
  max-width: 65ch;
}

/* ---- Contact ---- */
.contact-wrap {
  position: relative;
  background: var(--cream);
  padding: clamp(48px, 6vw, 84px) var(--gutter);
  overflow: hidden;
}
.contact-grid {
  position: relative; z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.contact-card {
  background: var(--cream);
  border-radius: 20px;
  box-shadow: inset 0 0 0 1.5px var(--charcoal), 0 10px 22px rgba(32, 32, 32, .1);
  padding: clamp(24px, 3vw, 40px);
}
.contact-card h2 {
  font-family: var(--font-card);
  font-weight: 400;
  color: var(--teal-deep);
  font-size: 1.6rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.contact-card .script-sub {
  font-family: var(--font-script);
  color: var(--orange);
  font-size: 1.5rem;
  display: block;
  transform: rotate(-1.5deg);
  margin-bottom: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { margin-bottom: 14px; }
.form-field label {
  display: block;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font: inherit;
  color: var(--teal-dark);
  background: #fdfaf3;
  border: 1.5px solid rgba(13, 90, 97, .4);
  border-radius: 10px;
  padding: .65em .9em;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--orange);
  outline-offset: 1px;
  border-color: var(--orange);
}
.form-disclaimer { font-size: .8rem; color: rgba(16, 62, 70, .65); margin: 10px 0 16px; }
.contact-info-card h3 {
  font-family: var(--font-card);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin: 18px 0 6px;
}
.contact-info-card h3:first-of-type { margin-top: 0; }
.contact-info-card p, .contact-info-card a { color: var(--teal-dark); line-height: 1.6; }
.contact-info-card a:hover { color: var(--orange-deep); }
.contact-info-card .big-phone {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--teal-deep);
  display: inline-block;
}

@media (max-width: 980px) {
  .feature-inner, .feature--flip .feature-inner { grid-template-columns: 1fr; }
  .feature--flip .feature-copy { order: 1; }
  .feature--flip .feature-media { order: 2; }
  .menu-grid { columns: 1; }
  .package-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .package-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .menu-list-plain { columns: 1; }
}

/* ============================================================
   WATERCOLOR WASHES — light paper blooms on cream/beige surfaces,
   deeper mottle on teal surfaces (matches client's watercolor art).
   Kept last so section `background:` shorthands don't override.
   ============================================================ */
.activities,
.bricks-strip {
  background-image: url("../images/wash-paper.svg");
  background-size: cover;
  background-position: center;
}
.food {
  background-image: url("../images/wash-menu.svg");
  background-size: cover;
  background-position: center;
}
.hero,
.site-footer,
.page-hero,
.feature--teal,
.packages {
  background-image: url("../images/wash-teal.svg");
  background-size: cover;
  background-position: center;
}
.feature--light,
.menu-intro,
.menu-wrap,
.occasions,
.faq,
.contact-wrap {
  background-image: url("../images/wash-paper.svg");
  background-size: cover;
  background-position: center;
}
.about {
  background-image: url("../images/wash-teal-deep.svg");
  background-size: cover;
  background-position: center;
}
.feature--gold {
  background-image: url("../images/wash-gold.svg");
  background-size: cover;
  background-position: center;
}
.packages--cream {
  background-image: url("../images/wash-paper.svg");
  background-size: cover;
  background-position: center;
}
.parties {
  background-image: url("../images/wash-menu.svg");
  background-size: cover;
  background-position: center;
}
