/* ==========================================================================
   Crème Ice Cream Co. — Design tokens
   Real brand colors sampled directly from the client's own live site/logo
   (cremeicecreamco.com, Wix): bubblegum pink #FFACFA + deep forest green
   #00543D from the clover mark, cotton-candy teal/pink from their own
   hero photography. "Luxury yet approachable" — playful bubble display
   type (Baloo 2, echoes their bubble-letter wordmark) + a soft rounded
   body face (Quicksand), generous rounded corners throughout.
   ========================================================================== */

:root {
  --font-display: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Quicksand', system-ui, -apple-system, "Segoe UI", sans-serif;

  --pink: #FFACFA;
  --pink-deep: #D6399F;
  --pink-pale: #FFE3FC;
  --green: #00543D;
  --green-700: #003D2C;
  --teal: #3FBFB5;
  --teal-pale: #E3FBF8;
  --cream: #FFF6EF;
  --white: #FFFFFF;
  --ink: #17241D;
  --ink-soft: #52655B;
  --border: #F3DEF0;
  --gold: #E8B33D;

  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 48px; --sp-8: 64px; --sp-9: 96px;

  --radius: 20px;
  --radius-sm: 12px;
  --max-width: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 1.05rem;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 var(--sp-3);
  color: var(--green);
  text-wrap: balance;
}

h1 { font-size: clamp(2.3rem, 5.5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.35rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 var(--sp-4); color: var(--ink-soft); }
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--sp-5); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--green); color: #fff;
  padding: var(--sp-2) var(--sp-4); z-index: 100; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; top: 0; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  padding: 14px 30px; border-radius: 999px;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  min-height: 48px; transition: transform 0.15s ease, background 0.15s ease;
}
.btn:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; }
.btn-primary { background: var(--pink); color: var(--green-700); }
.btn-primary:hover { background: var(--pink-deep); color: #fff; transform: translateY(-1px); }
.btn-secondary { background: transparent; border-color: rgba(255,255,255,0.7); color: #fff; }
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.12); }
.btn-outline { background: transparent; border-color: var(--green); color: var(--green); }
.btn-outline:hover { background: var(--teal-pale); }

/* ---------- Header / Nav ---------- */

.site-header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 50; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding: var(--sp-3) var(--sp-5); gap: var(--sp-4); }
.brand { display: inline-flex; align-items: center; gap: var(--sp-2); text-decoration: none; }
.brand img { height: 40px; width: auto; }
.nav-toggle { display: none; background: none; border: 2px solid var(--border); border-radius: var(--radius-sm); padding: var(--sp-2) var(--sp-3); min-height: 44px; min-width: 44px; }
.main-nav ul { display: flex; gap: var(--sp-6); list-style: none; margin: 0; padding: 0; align-items: center; }
.main-nav a { text-decoration: none; color: var(--ink-soft); font-weight: 700; font-size: 0.95rem; }
.main-nav a[aria-current="page"] { color: var(--pink-deep); }
.header-cta { display: flex; align-items: center; gap: var(--sp-4); }
.header-phone { font-weight: 700; color: var(--green); text-decoration: none; white-space: nowrap; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: var(--sp-4) var(--sp-5); }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: var(--sp-4); }
  .header-phone { display: none; }
}

/* ---------- Hero ---------- */

.hero { position: relative; background: var(--green); color: #fff; padding: var(--sp-9) 0 var(--sp-8); overflow: hidden; }
.hero-bg-layer { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.4s ease;
}
.hero-bg-img.is-active { opacity: 0.62; }
.hero-bg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.62; }
.hero-bg-overlay { position: absolute; inset: 0; background: rgba(0,84,61,0.4); }
.hero .container { position: relative; z-index: 1; max-width: 780px; }
.hero h1, .hero .lede, .hero-trust-line, .hero .rating-badge, .hero-stat strong, .hero-stat span {
  text-shadow: 0 2px 10px rgba(0,0,0,0.55), 0 1px 3px rgba(0,0,0,0.6);
}
.hero .rating-badge {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: var(--gold); border: 2px solid #fff;
  padding: 13px 26px; border-radius: 999px; font-weight: 800;
  color: var(--green-700); margin-bottom: var(--sp-5); font-size: 1.05rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  text-shadow: none;
}
@media (max-width: 560px) { .hero .rating-badge { font-size: 0.92rem; padding: 11px 18px; } }
.hero h1 { color: #fff; }
.hero .lede { color: rgba(255,255,255,0.92); font-size: 1.15rem; max-width: 55ch; }
.hero-actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; margin-top: var(--sp-5); }

/* ---------- Order links (Pickup=ChowNow, Delivery=DoorDash — separate platforms, see order-links-note) ---------- */
.order-links { display: flex; gap: var(--sp-4); flex-wrap: wrap; align-items: center; }
.order-links-note { font-size: 0.85rem; color: var(--ink-soft); margin-top: var(--sp-2); }
.header-gift { font-weight: 700; color: var(--pink-deep); font-size: 0.92rem; white-space: nowrap; }
.header-gift:hover { color: var(--pink); }
.hero-trust-line { color: #fff; font-size: 0.9rem; margin: var(--sp-4) 0 0; opacity: 0.85; }
.hero-stats {
  display: flex; gap: var(--sp-7); flex-wrap: wrap; margin-top: var(--sp-7);
  border-top: 1px solid rgba(255,255,255,0.25); padding-top: var(--sp-6);
}
.hero-stat strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 2.1rem; color: var(--pink); }
.hero-stat span { color: #fff; font-size: 0.9rem; opacity: 0.85; }

/* ---------- Sections ---------- */

.section { padding: var(--sp-8) 0; }
.section-alt { background: var(--cream); }
.section-teal { background: var(--teal-pale); }
.section-head { max-width: 62ch; margin-bottom: var(--sp-6); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow { font-family: var(--font-display); color: var(--pink-deep); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.85rem; }

/* ---------- Flavor grid (Menu) ---------- */

.flavor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.flavor-card { background: var(--white); border: 2px solid var(--border); border-radius: var(--radius); padding: var(--sp-5); }
.flavor-card.accent-pink { border-color: var(--pink); }
.flavor-card.accent-teal { border-color: var(--teal); }
.flavor-card.accent-green { border-color: var(--green); }
.flavor-card h3 { font-size: 1.1rem; margin-bottom: var(--sp-2); }
.flavor-card p { margin-bottom: 0; font-size: 0.95rem; }
.flavor-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; padding: 3px 10px; border-radius: 999px; margin-bottom: var(--sp-3); }
.flavor-tag.dairy-free { background: var(--teal-pale); color: var(--teal); }
.flavor-tag.signature { background: var(--pink-pale); color: var(--pink-deep); }

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

/* ---------- Award / trust strip ---------- */

.award-strip {
  background: var(--pink-pale); border: 2px dashed var(--pink);
  border-radius: var(--radius); padding: var(--sp-6);
  text-align: center; max-width: 720px; margin: 0 auto;
}
.award-strip img {
  max-width: 320px; margin: 0 auto var(--sp-4); border-radius: var(--radius-sm);
  cursor: zoom-in; position: relative; z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.award-strip img:hover, .award-strip img:focus-visible {
  transform: scale(2);
  box-shadow: 0 20px 45px rgba(0,0,0,0.32);
  z-index: 5;
}
.award-strip h3 { margin-bottom: var(--sp-2); }
.award-strip p { margin-bottom: 0; }

@media (prefers-reduced-motion: reduce) {
  .award-strip img { transition: none; }
  .award-strip img:hover, .award-strip img:focus-visible { transform: none; }
}

/* ---------- Google review badge (stand-in placement, real rating pending at intake) ---------- */

.google-badge {
  position: fixed; left: var(--sp-4); bottom: var(--sp-4); z-index: 40;
  display: flex; align-items: center; gap: var(--sp-3);
  background: var(--white); border: 2px solid var(--border); border-radius: var(--radius-sm);
  padding: var(--sp-3) var(--sp-4); box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  text-decoration: none; color: var(--ink); transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.google-badge:hover, .google-badge:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}
.google-badge svg { width: 26px; height: 26px; flex-shrink: 0; }
.google-badge-text { display: flex; flex-direction: column; line-height: 1.25; }
.google-badge-title { font-weight: 700; font-size: 0.85rem; }
.google-badge-stars { color: var(--border); font-size: 0.85rem; letter-spacing: 1px; }
.google-badge-sub { font-size: 0.7rem; color: var(--ink-soft); font-style: italic; }

@media (max-width: 640px) {
  /* Fixed position risks overlapping the tall mobile hero (address line/stats)
     before the visitor scrolls — render in normal flow at the end of the page instead. */
  .google-badge {
    position: static; left: auto; bottom: auto;
    width: fit-content; margin: var(--sp-6) auto; padding: var(--sp-2) var(--sp-3);
  }
  .google-badge-sub { display: none; }
}

/* ---------- CTA banner ---------- */

.cta-banner { background: var(--pink); color: var(--green-700); padding: var(--sp-7) 0; text-align: center; }
.cta-banner h2 { color: var(--green-700); }
.cta-banner p { color: var(--green-700); opacity: 0.85; }
.cta-banner .btn-row { display: flex; justify-content: center; gap: var(--sp-4); flex-wrap: wrap; }
.cta-banner .btn-primary { background: var(--green); color: #fff; }
.cta-banner .btn-primary:hover { background: var(--green-700); }

/* ---------- Owner CTA (Stripe) ---------- */

.owner-cta { background: var(--cream); border-top: 2px dashed var(--border); border-bottom: 2px dashed var(--border); }
.owner-cta-row { display: flex; align-items: center; gap: var(--sp-7); }
.owner-cta-logo { flex: 0 0 200px; }
.owner-cta-logo img {
  width: 100%; height: auto; display: block;
  filter: drop-shadow(0 10px 14px rgba(0, 84, 61, 0.18)) drop-shadow(0 2px 4px rgba(0, 84, 61, 0.12));
}
.owner-cta-copy { flex: 1; }
.owner-cta-copy .eyebrow { margin: 0 0 var(--sp-2); }
.owner-cta-copy h2 { margin: 0 0 var(--sp-3); }
.owner-cta-copy p { margin: 0 0 var(--sp-4); }
.owner-cta-copy p:last-child { margin-bottom: 0; }
@media (max-width: 720px) {
  .owner-cta-row { flex-direction: column; align-items: flex-start; }
  .owner-cta-logo { flex-basis: auto; width: 150px; }
}

/* ---------- Page hero (interior pages) ---------- */

.page-hero { background: var(--green); color: #fff; padding: var(--sp-7) 0 var(--sp-8); }
.page-hero .container { max-width: 780px; }
.page-hero h1 { color: #fff; }
.page-hero .lede { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 55ch; margin-bottom: 0; }
.page-hero .breadcrumbs { color: rgba(255,255,255,0.6); padding: 0 0 var(--sp-4); }
.page-hero .breadcrumbs a { color: rgba(255,255,255,0.8); }

.page-hero-split { display: flex; align-items: center; gap: var(--sp-8); }
.page-hero-split .split-copy { flex: 1; }
.page-hero-split .split-visual { flex: 0 0 280px; text-align: center; }
.page-hero-split .split-visual img { max-width: 100%; }
@media (max-width: 780px) { .page-hero-split { flex-direction: column; text-align: center; } .page-hero-split .split-visual { flex-basis: auto; width: 180px; } }

/* ---------- Breadcrumbs ---------- */

.breadcrumbs { font-size: 0.85rem; color: var(--ink-soft); padding: var(--sp-4) 0 0; }
.breadcrumbs a { color: var(--ink-soft); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }

/* ---------- About page ---------- */

.story-row { display: flex; align-items: center; gap: var(--sp-7); }
.story-row .story-visual { flex: 0 0 240px; text-align: center; }
.story-row .story-copy { flex: 1; }
@media (max-width: 780px) { .story-row { flex-direction: column; } .story-row .story-visual { flex-basis: auto; width: 160px; } }

.area-list { display: flex; flex-wrap: wrap; gap: var(--sp-3); list-style: none; padding: 0; margin: 0; }
.area-list li { background: var(--green); color: #fff; padding: var(--sp-2) var(--sp-4); border-radius: 999px; font-weight: 700; font-size: 0.85rem; }

/* ---------- Contact page ---------- */

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-7); }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form { display: flex; flex-direction: column; gap: var(--sp-4); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
label { font-weight: 700; font-size: 0.85rem; display: block; margin-bottom: var(--sp-1); color: var(--green); }
input, textarea, select { width: 100%; padding: 12px 14px; border: 2px solid var(--border); border-radius: var(--radius-sm); font-family: inherit; font-size: 1rem; }
input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 3px solid var(--green); outline-offset: 1px; }
textarea { resize: vertical; min-height: 120px; }
.timeline-note { font-size: 0.9rem; color: var(--ink-soft); margin-top: calc(var(--sp-4) * -1); }
.form-reassurance { font-size: 0.85rem; color: var(--ink-soft); text-align: center; margin: 0; }
.form-status { font-size: 0.9rem; min-height: 1.2em; }
.form-status.success { color: #157a3d; }
.form-status.error { color: #b3261e; }
.map-embed { border: 0; width: 100%; aspect-ratio: 4/3; border-radius: var(--radius); }

/* ---------- Footer ---------- */

.site-footer { background: var(--green-700); color: rgba(255,255,255,0.75); padding: var(--sp-7) 0 var(--sp-5); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--sp-6); margin-bottom: var(--sp-6); }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-family: var(--font-display); font-size: 1.05rem; margin-bottom: var(--sp-3); }
.site-footer a { color: rgba(255,255,255,0.75); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: var(--sp-4); font-size: 0.85rem; text-align: center; }
.footer-bottom a { text-decoration: underline; }

/* ---------- Real photo grid (interior/product shots) ---------- */

.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
.photo-card { border-radius: var(--radius); overflow: hidden; border: 2px solid var(--border); position: relative; }
.photo-card img { display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.photo-card figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: var(--sp-3) var(--sp-4); font-size: 0.85rem; font-weight: 700; color: #fff; background: linear-gradient(0deg, rgba(0,84,61,0.85), rgba(0,84,61,0)); }
.photo-card.wide img { aspect-ratio: 16/9; }
@media (max-width: 860px) { .photo-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .photo-grid { grid-template-columns: 1fr; } }

/* ---------- Reviews ---------- */

.review-carousel { position: relative; }
.review-track {
  display: flex; gap: var(--sp-5); overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 4px 4px var(--sp-4);
  scrollbar-width: none; -ms-overflow-style: none;
}
.review-track::-webkit-scrollbar { display: none; }
.review-card {
  scroll-snap-align: start; flex: 0 0 calc(33.333% - var(--sp-5) * 2 / 3);
  background: var(--white); border: 2px solid var(--border); border-radius: var(--radius);
  padding: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-3);
}
.review-card .stars { color: var(--gold); letter-spacing: 2px; font-size: 0.95rem; }
.review-card blockquote { margin: 0; font-size: 1rem; line-height: 1.5; }
.review-card cite { font-style: normal; font-weight: 700; color: var(--green); font-size: 0.9rem; }
.review-card .review-source { color: var(--ink-soft); font-size: 0.8rem; }

.carousel-controls { display: flex; align-items: center; justify-content: center; gap: var(--sp-4); margin-top: var(--sp-2); }
.carousel-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--pink);
  background: var(--white); color: var(--pink-deep); font-size: 1.1rem; cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.carousel-btn:hover { background: var(--pink); color: #fff; }
.carousel-btn:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dots .dot {
  width: 9px; height: 9px; border-radius: 50%; border: none; padding: 0;
  background: var(--border); cursor: pointer;
}
.carousel-dots .dot.active { background: var(--pink-deep); }

@media (max-width: 860px) { .review-card { flex: 0 0 calc(50% - var(--sp-5) / 2); } }
@media (max-width: 560px) { .review-card { flex: 0 0 88%; } }

/* ---------- Real menu / pricing table ---------- */

/* Flavor lineup as color-coded chip groups — one accent per category,
   reusing the site's own sampled palette rather than adding new colors. */
.flavor-category { margin-bottom: var(--sp-6); }
.flavor-category-head {
  display: flex; align-items: baseline; gap: var(--sp-3); margin-bottom: var(--sp-3);
}
.flavor-category-head h3 { margin: 0; font-size: 1.15rem; }
.flavor-count {
  font-family: var(--font-body); font-weight: 700; font-size: 0.78rem;
  color: var(--ink-soft); background: var(--cream); border-radius: 999px;
  padding: 2px 10px; white-space: nowrap;
}
.chip-wrap { display: flex; flex-wrap: wrap; gap: 10px; }
.flavor-chip {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.92rem; font-weight: 600; padding: 8px 16px;
  border-radius: 999px; border: 2px solid transparent; line-height: 1.1;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.flavor-chip:hover { transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,0.12); }
@media (prefers-reduced-motion: reduce) {
  .flavor-chip { transition: none; }
  .flavor-chip:hover { transform: none; box-shadow: none; }
}
.flavor-chip .chip-star { font-size: 0.75em; font-weight: 800; opacity: 0.85; }

.flavor-chip.cat-icecream { background: var(--green); color: #fff; }
.flavor-chip.cat-seasonal { background: var(--pink-pale); color: var(--pink-deep); border-color: var(--pink); }
.flavor-chip.cat-italian { background: var(--teal-pale); color: #1f7168; border-color: var(--teal); }
.flavor-chip.cat-dairyfree { background: #FBF0D9; color: #8A6111; border-color: var(--gold); }

.flavor-legend {
  display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem;
  color: var(--ink-soft); margin-top: var(--sp-2);
}
.flavor-legend .chip-star { color: var(--pink-deep); font-weight: 800; }

.price-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; border: 2px solid var(--border); }
.price-table th { background: var(--green); color: #fff; text-align: left; padding: 10px 16px; font-family: var(--font-display); font-size: 0.95rem; }
.price-table td { padding: 10px 16px; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.price-table tr:last-child td { border-bottom: none; }
.price-table td.price { text-align: right; font-weight: 700; color: var(--green); white-space: nowrap; }
.price-table caption { text-align: left; font-family: var(--font-display); font-size: 1.05rem; color: var(--green); padding: 4px var(--sp-4) var(--sp-3); caption-side: top; }
.price-grid-2col { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-6); margin-bottom: var(--sp-6); }
@media (max-width: 640px) { .price-grid-2col { grid-template-columns: 1fr; gap: var(--sp-4); } }
.menu-footnote { font-size: 0.8rem; color: var(--ink-soft); margin-top: var(--sp-2); }

/* ---------- Menu board (old-time soda-fountain signage + iOS grouped-list polish) ---------- */

.menu-board {
  position: relative;
  background: linear-gradient(160deg, var(--pink-pale) 0%, var(--cream) 45%, var(--teal-pale) 100%);
  border-radius: var(--radius);
  padding: var(--sp-7) var(--sp-6) var(--sp-6);
}
.menu-board::before {
  content: ""; position: absolute; top: -14px; left: var(--sp-5); right: var(--sp-5); height: 22px;
  background: var(--pink);
  -webkit-mask-image: radial-gradient(circle at 11px 11px, transparent 11px, black 12px);
  mask-image: radial-gradient(circle at 11px 11px, transparent 11px, black 12px);
  -webkit-mask-size: 22px 22px; mask-size: 22px 22px;
  -webkit-mask-repeat: repeat-x; mask-repeat: repeat-x;
}
.menu-board-head { text-align: center; margin-bottom: var(--sp-6); }
.menu-board-eyebrow {
  font-family: var(--font-display); font-weight: 700; color: var(--pink-deep);
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.8rem;
}
.menu-board-head h2 { color: var(--green); text-shadow: 3px 3px 0 rgba(255,255,255,0.6); margin-top: var(--sp-1); }

.price-grid-2col.menu-board-grid { gap: var(--sp-5); margin-bottom: var(--sp-5); }

.menu-panel {
  background: var(--white); border-radius: var(--radius); padding: var(--sp-5) 0 var(--sp-2);
  box-shadow: 0 10px 30px rgba(0,84,61,0.08);
  border: 2px solid var(--border);
}
.menu-panel.accent-pink { border-color: var(--pink); }
.menu-panel.accent-teal { border-color: var(--teal); }
.menu-panel.accent-gold { border-color: var(--gold); }
.menu-panel-full { margin-top: 0; }

.menu-panel-title {
  font-family: var(--font-display); font-weight: 800; font-size: 1.35rem;
  text-align: center; color: var(--green); text-shadow: 2px 2px 0 var(--pink-pale);
  margin: 0 var(--sp-5) var(--sp-4); padding-bottom: var(--sp-3);
  border-bottom: 2px dashed var(--border);
}
.menu-panel.accent-teal .menu-panel-title { text-shadow: 2px 2px 0 var(--teal-pale); }
.menu-panel.accent-gold .menu-panel-title { text-shadow: 2px 2px 0 #FBF0D9; }

.menu-panel .price-table { border: none; border-radius: 0; background: transparent; }
.menu-panel .price-table td { padding: 13px var(--sp-5); border-bottom: 1px solid var(--border); transition: background-color 0.15s ease; }
.menu-panel .price-table tr:last-child td { border-bottom: none; }
.menu-panel .price-table tr:hover td { background-color: var(--cream); }
.menu-panel .price-table td.price { font-variant-numeric: tabular-nums; }

.toppings-strip { margin-top: var(--sp-6); text-align: center; }
.toppings-label { display: block; font-family: var(--font-display); font-weight: 700; color: var(--green); font-size: 0.95rem; margin-bottom: var(--sp-3); }
.toppings-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.topping-chip { font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); background: var(--white); border: 1px solid var(--border); padding: 5px 12px; border-radius: 999px; }

@media (prefers-reduced-motion: reduce) {
  .menu-panel .price-table td { transition: none; }
}

@media (max-width: 640px) {
  .menu-board { padding: var(--sp-6) var(--sp-4) var(--sp-5); }
  .menu-board::before { left: var(--sp-3); right: var(--sp-3); }
  .menu-panel-title { font-size: 1.15rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--sp-3); }
.faq-item { background: var(--white); border: 2px solid var(--border); border-radius: var(--radius-sm); padding: var(--sp-4) var(--sp-5); }
.faq-item summary {
  font-family: var(--font-display); font-weight: 700; color: var(--green); cursor: pointer;
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.4rem; color: var(--pink-deep); flex-shrink: 0; line-height: 1;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin: var(--sp-3) 0 0; color: var(--ink-soft); }
