/* ============================================================
   DRIZZLED — playful "sticker" design system
   Matches the brand art: bubbly logo, bold chocolate-brown
   outlines (#401701), flat fills, strawberry red, bubblegum pink.
   Edit tokens in :root; everything inherits.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Nunito:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Pacifico&display=swap');

:root {
  /* Brand palette — sampled from the logo + strawberry art ---- */
  --pink:        #F998AB;   /* logo pink (primary)            */
  --pink-deep:   #F26F8C;
  --pink-light:  #FFE4EB;   /* soft section background        */
  --pink-bg:     #FFEFF3;
  --cream:       #FBF0DC;   /* logo wordmark cream            */
  --cream-bg:    #FFF9EE;
  --berry:       #E11D2B;   /* strawberry red (CTA pop)       */
  --berry-deep:  #C2121F;
  --choc:        #401701;   /* signature outline + text       */
  --choc-mid:    #6B3A14;
  --matcha:      #5E7A35;   /* leaf green                     */
  --matcha-light:#E9F0DC;

  /* Semantic --------------------------------------------- */
  --bg:        var(--cream-bg);
  --surface:   #FFFFFF;
  --text:      var(--choc);
  --text-soft: #8a6a55;
  --heading:   var(--choc);
  --line:      var(--choc);          /* outline colour       */

  /* Type ------------------------------------------------- */
  --display: 'Fredoka', system-ui, sans-serif;
  --body:    'Nunito', system-ui, sans-serif;
  --script:  'Pacifico', cursive;

  /* Rhythm ----------------------------------------------- */
  --space:   clamp(4rem, 8vw, 7.5rem);
  --gutter:  clamp(1.25rem, 5vw, 4rem);
  --maxw:    1240px;
  --radius:  20px;
  --radius-lg: 34px;
  --radius-pill: 100px;

  /* sticker shadows: soft + a hint of brown */
  --shadow-sm: 0 6px 0 -2px rgba(64,23,1,.08), 0 10px 26px -14px rgba(64,23,1,.4);
  --shadow:    0 10px 0 -3px rgba(64,23,1,.07), 0 26px 50px -22px rgba(64,23,1,.45);
  --shadow-lift: 0 16px 0 -4px rgba(64,23,1,.08), 0 40px 70px -28px rgba(64,23,1,.5);
  --ow: 2.5px;              /* outline width                  */

  --ease: cubic-bezier(.34, 1.56, .5, 1);   /* bouncy        */
  --ease-soft: cubic-bezier(.2, .7, .2, 1);
}

/* Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

body {
  font-family: var(--body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: clamp(1.02rem, .98rem + .2vw, 1.12rem);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--berry); color: #fff; }

/* Typography ------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--display); color: var(--heading); line-height: 1.05; font-weight: 600; letter-spacing: -.01em; }
h1 { font-size: clamp(2.7rem, 7vw, 5.6rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4.6vw, 3.6rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.75rem); font-weight: 600; }
p  { max-width: 60ch; }

.script { font-family: var(--script); color: var(--pink-deep); font-weight: 400; }
.eyebrow {
  font-family: var(--script); font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  color: var(--pink-deep); line-height: 1; display: inline-block;
  transform: rotate(-3deg);
}
.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .12em; font-size: .76rem; color: var(--berry);
  background: var(--pink-light); border: var(--ow) solid var(--line);
  padding: .45rem 1rem; border-radius: var(--radius-pill);
}

/* Layout ----------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--space); position: relative; }
.center { text-align: center; }
.center .kicker { justify-content: center; }
.section-head { max-width: 680px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: 1rem; }
.section-head p { color: var(--text-soft); margin-top: 1rem; }
.section-head.center p { margin-inline: auto; }

.bg-pink   { background: var(--pink-light); }
.bg-cream  { background: var(--cream-bg); }
.bg-blush  { background: var(--pink-bg); }
.bg-paper  { background: var(--surface); }
.bg-deep   { background: var(--pink); color: var(--choc); }
.bg-deep h2, .bg-deep h3 { color: var(--choc); }
.bg-choc   { background: var(--choc); color: var(--cream); }
.bg-choc h2, .bg-choc h3 { color: #fff; }
.bg-choc .kicker { background: var(--choc-mid); color: var(--cream); border-color: var(--cream); }

/* ---- Drizzle drip divider (chocolate) ---- */
.drizzle { display: block; width: 100%; height: 34px; color: var(--choc); margin-top: -1px; }
.drizzle svg { width: 100%; height: 100%; display: block; }
/* scalloped edge */
.scallop { display: block; width: 100%; height: 26px; line-height: 0; }
.scallop svg { width: 100%; height: 100%; display: block; }

/* Buttons — sticker pills ------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .95rem 1.9rem; border-radius: var(--radius-pill);
  font-family: var(--display); font-weight: 600; font-size: 1rem; letter-spacing: .01em;
  border: var(--ow) solid var(--line); min-height: 52px; color: var(--choc);
  background: var(--surface);
  box-shadow: 0 5px 0 0 var(--line);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .25s, color .25s;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 8px 0 0 var(--line); }
.btn:active { transform: translateY(2px); box-shadow: 0 2px 0 0 var(--line); }
.btn-primary { background: var(--berry); color: #fff; }
.btn-primary:hover { background: var(--berry-deep); color: #fff; }
.btn-light { background: var(--cream); color: var(--choc); }
.btn-pink  { background: var(--pink); color: var(--choc); }
.btn-ghost { background: var(--surface); color: var(--choc); }
.btn-ghost:hover { background: var(--pink-light); }
.btn-soon { background: var(--cream-bg); color: var(--text-soft); }
.btn-soon::after { content: "Soon!"; font-family: var(--body); font-weight: 800; font-size: .62rem; letter-spacing: .06em; text-transform: uppercase; background: var(--berry); color: #fff; padding: .25em .6em; border-radius: var(--radius-pill); }
.btn-block { width: 100%; justify-content: center; }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid var(--berry); outline-offset: 3px; }

.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.btn-row.center { justify-content: center; }

.link-arrow { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--display); font-weight: 600; color: var(--berry); transition: gap .3s var(--ease-soft); }
.link-arrow:hover { gap: .9rem; }

/* ============================================================
   PHOTO SLOT — playful strawberry placeholder
   Swap by replacing <span class="ph"> with <img src=... alt=...>
   ============================================================ */
.ph {
  display: block; width: 100%; height: 100%; min-height: 100%;
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 30% 25%, #fff6, transparent 40%),
    linear-gradient(150deg, var(--pink-light), var(--cream));
}
.ph::before {  /* strawberry sticker watermark */
  content: ""; position: absolute; inset: 0;
  background: url("../img/strawberry.png") center 42% / 38% auto no-repeat;
  opacity: .85;
  filter: drop-shadow(0 8px 14px rgba(64,23,1,.18));
}
.ph::after {  /* friendly caption */
  content: "Photo coming soon"; position: absolute; left: 50%; bottom: 12%;
  transform: translateX(-50%); white-space: nowrap;
  font-family: var(--display); font-weight: 600; font-size: .8rem; color: var(--choc-mid); opacity: .75;
}
.menu-item .thumb .ph::after, .menu-item .thumb .ph { font-size: 0; }
.menu-item .thumb .ph::before { background-size: 64% auto; }
.menu-item .thumb .ph::after { display: none; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; inset: .8rem .8rem auto; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: .55rem .7rem .55rem 1rem; border-radius: var(--radius-pill);
  background: var(--cream); border: var(--ow) solid var(--line);
  box-shadow: var(--shadow-sm); transition: box-shadow .4s, transform .3s;
  max-width: calc(var(--maxw) + 4rem); margin-inline: auto;
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-logo { background: var(--pink); border: var(--ow) solid var(--line); padding: .3rem .7rem; border-radius: var(--radius-pill); display: inline-flex; transition: transform .3s var(--ease); }
.nav-logo:hover { transform: rotate(-3deg); }
.nav-logo img { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: clamp(.6rem, 1.6vw, 1.7rem); list-style: none; }
.nav-links a { font-family: var(--display); font-size: .95rem; font-weight: 500; color: var(--choc); position: relative; padding: .3rem .2rem; transition: color .25s; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 3px; border-radius: 3px; background: var(--berry); transform: scaleX(0); transition: transform .3s var(--ease); }
.nav-links a:hover { color: var(--berry); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--berry); }
.nav-cta { margin-left: .3rem; }
.nav .nav-cta .btn { padding: .6rem 1.2rem; min-height: 0; box-shadow: 0 4px 0 0 var(--line); font-size: .92rem; }
.nav-toggle { display: none; background: var(--pink-light); border: var(--ow) solid var(--line); width: 46px; height: 46px; border-radius: 50%; color: var(--choc); }
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 940px) {
  .nav-toggle { display: grid; place-items: center; position: relative; z-index: 102; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 350px);
    flex-direction: column; align-items: flex-start; gap: .3rem;
    background: var(--cream); padding: 6.5rem 1.8rem 2rem;
    transform: translateX(105%); transition: transform .5s var(--ease-soft);
    box-shadow: var(--shadow); overflow-y: auto; z-index: 101;
    border-left: var(--ow) solid var(--line); border-radius: 28px 0 0 28px;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.2rem; width: 100%; padding: .85rem .4rem; border-bottom: 2px dashed var(--pink); }
  .nav-links a::after { display: none; }
  .nav-cta { margin: 1.2rem 0 0; }
}
.nav-scrim { position: fixed; inset: 0; background: rgba(64,23,1,.4); opacity: 0; pointer-events: none; transition: opacity .4s; z-index: 99; }
.nav-scrim.show { opacity: 1; pointer-events: auto; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; padding: clamp(7rem,14vh,9rem) 0 clamp(3rem,6vw,5rem); overflow: hidden;
  background:
    radial-gradient(110% 70% at 50% 0%, #ffd7e0 0%, var(--pink) 55%, var(--pink-deep) 120%);
}
.hero::before, .hero::after { /* floating dots */
  content: ""; position: absolute; width: 100%; height: 100%; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,.5) 2.5px, transparent 3px);
  background-size: 46px 46px; opacity: .35;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem,5vw,4rem); align-items: center; position: relative; z-index: 2; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; text-align: center; } }
.hero-logo { width: min(380px, 70vw); margin-bottom: 1.4rem; filter: drop-shadow(0 14px 26px rgba(64,23,1,.28)); }
@media (max-width: 900px) { .hero-logo { margin-inline: auto; } }
.hero h1 { color: var(--choc); }
.hero h1 .pop { color: #fff; -webkit-text-stroke: 3px var(--choc); paint-order: stroke fill; }
.hero-lede { color: var(--choc); font-size: clamp(1.05rem,1.6vw,1.3rem); max-width: 46ch; margin: 1.4rem 0 2rem; font-weight: 600; }
@media (max-width: 900px) { .hero-lede { margin-inline: auto; } .hero .btn-row { justify-content: center; } }
.hero-badges { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
@media (max-width: 900px) { .hero-badges { justify-content: center; } }

/* the playful art panel on the right */
.hero-art { position: relative; aspect-ratio: 1/1; display: grid; place-items: center; }
.hero-plate {
  width: 86%; aspect-ratio: 1/1; border-radius: 50%;
  background: var(--cream); border: var(--ow) solid var(--line);
  box-shadow: var(--shadow); display: grid; place-items: center; position: relative;
}
.hero-plate::before { content: ""; position: absolute; inset: 9%; border-radius: 50%; border: 2.5px dashed var(--pink-deep); }
.hero-plate img { width: 56%; animation: bob 5s ease-in-out infinite; filter: drop-shadow(0 12px 18px rgba(64,23,1,.25)); }
.hero-sticker { position: absolute; filter: drop-shadow(0 8px 12px rgba(64,23,1,.25)); }
.hero-sticker.a { width: 26%; top: -2%; right: 4%; animation: bob 6s ease-in-out infinite; }
.hero-sticker.b { width: 20%; bottom: 2%; left: -2%; animation: bob 7s ease-in-out infinite reverse; }
@keyframes bob { 0%,100%{ transform: translateY(0) rotate(-6deg);} 50%{ transform: translateY(-16px) rotate(6deg);} }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { overflow: hidden; background: var(--choc); color: var(--cream); padding-block: .85rem; border-block: var(--ow) solid var(--line); }
.marquee-track { display: inline-flex; gap: 2rem; white-space: nowrap; animation: marquee 32s linear infinite; will-change: transform; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span { font-family: var(--display); font-weight: 600; font-size: clamp(1.05rem,2vw,1.5rem); display: inline-flex; align-items: center; gap: 2rem; }
.marquee span::after { content: "🍓"; font-size: .9em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   CAROUSEL — playful product cards
   ============================================================ */
.carousel { position: relative; }
.carousel-track { display: flex; gap: clamp(1.1rem,2vw,1.7rem); overflow-x: auto; scroll-snap-type: x mandatory; padding: 1rem var(--gutter) 1.6rem; scrollbar-width: none; }
.carousel-track::-webkit-scrollbar { display: none; }
.product { scroll-snap-align: center; flex: 0 0 min(80vw, 330px); background: var(--surface); border: var(--ow) solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.product:hover { transform: translateY(-8px) rotate(-1deg); box-shadow: var(--shadow-lift); }
.product-img { aspect-ratio: 1/1; position: relative; overflow: hidden; border-bottom: var(--ow) solid var(--line); }
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-tag { position: absolute; top: .9rem; left: .9rem; z-index: 2; background: var(--berry); color: #fff; font-family: var(--display); font-weight: 600; font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; padding: .4rem .85rem; border-radius: var(--radius-pill); border: 2px solid var(--line); }
.product-body { padding: 1.3rem 1.4rem 1.6rem; }
.product-body h3 { font-size: 1.4rem; }
.product-body p { color: var(--text-soft); font-size: .92rem; font-weight: 600; margin-top: .35rem; }
.product-price { display: inline-block; margin-top: .9rem; font-family: var(--display); font-weight: 600; color: #fff; background: var(--matcha); border: 2px solid var(--line); padding: .15rem .7rem; border-radius: var(--radius-pill); font-size: 1rem; }

.carousel-nav { display: flex; gap: .8rem; justify-content: center; margin-top: 1.4rem; }
.carousel-nav button { width: 56px; height: 56px; border-radius: 50%; border: var(--ow) solid var(--line); background: var(--cream); color: var(--choc); display: grid; place-items: center; box-shadow: 0 4px 0 0 var(--line); transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .25s; }
.carousel-nav button:hover { background: var(--pink); transform: translateY(-2px); box-shadow: 0 6px 0 0 var(--line); }
.carousel-nav button:active { transform: translateY(2px); box-shadow: 0 2px 0 0 var(--line); }
.carousel-nav svg { width: 24px; height: 24px; }

/* ============================================================
   SPLIT BLOCKS
   ============================================================ */
.split { display: grid; gap: clamp(2rem,5vw,4.5rem); align-items: center; grid-template-columns: 1fr 1fr; }
.split.reverse .split-media { order: 2; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } .split.reverse .split-media { order: 0; } }
.split-media { aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; background: var(--pink-light); border: var(--ow) solid var(--line); box-shadow: var(--shadow); position: relative; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-text .eyebrow { margin-bottom: .4rem; }
.split-text p { color: var(--text-soft); margin-top: 1.1rem; }
.split-text .btn-row { margin-top: 1.8rem; }

/* FEATURE CARDS (playful) — used by .pills markup ------- */
.pills { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 760px) { .pills { grid-template-columns: 1fr; } }
.pill { background: var(--surface); border: var(--ow) solid var(--line); border-radius: var(--radius-lg); padding: 2rem 1.7rem; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.pill:nth-child(2) { background: var(--pink-light); }
.pill:nth-child(3) { background: var(--matcha-light); }
.pill:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: var(--shadow); }
.pill-ico { display: grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; background: var(--cream); border: var(--ow) solid var(--line); color: var(--berry); margin-bottom: 1.1rem; }
.pill-ico svg { width: 30px; height: 30px; }
.pill h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.pill p { color: var(--text-soft); font-size: .95rem; font-weight: 600; }

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-nav { position: sticky; top: 76px; z-index: 40; }
.menu-nav ul { display: flex; gap: .6rem; list-style: none; overflow-x: auto; padding: .9rem var(--gutter); scrollbar-width: none; max-width: var(--maxw); margin-inline: auto; }
.menu-nav ul::-webkit-scrollbar { display: none; }
.menu-nav a { white-space: nowrap; font-family: var(--display); font-weight: 500; font-size: .85rem; color: var(--choc); padding: .45rem 1rem; border-radius: var(--radius-pill); border: 2px solid transparent; transition: background .25s, border-color .25s; }
.menu-nav a:hover { background: var(--pink-light); border-color: var(--line); }

.menu-group { margin-bottom: clamp(3rem,6vw,5rem); scroll-margin-top: 150px; }
.menu-group-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.menu-group-head h2 { white-space: nowrap; }
.menu-group-head .rule { flex: 1; height: 3px; border-radius: 3px; background: repeating-linear-gradient(90deg, var(--pink) 0 14px, transparent 14px 24px); }
.menu-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem 2.5rem; }
@media (max-width: 720px) { .menu-items { grid-template-columns: 1fr; } }
.menu-item { display: grid; grid-template-columns: 76px 1fr; gap: 1.1rem; align-items: start; background: var(--surface); border: var(--ow) solid var(--line); border-radius: var(--radius); padding: .9rem 1.1rem .9rem .9rem; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease); }
.menu-item:hover { transform: translateY(-3px); }
.menu-item .thumb { width: 76px; height: 76px; border-radius: 14px; overflow: hidden; border: 2px solid var(--line); }
.menu-item .thumb img { width: 100%; height: 100%; object-fit: cover; }
.menu-item .dots { display: none; }
.menu-item-head { display: flex; align-items: baseline; justify-content: space-between; gap: .6rem; }
.menu-item h3 { font-size: 1.12rem; }
.menu-item .price { font-family: var(--display); font-weight: 600; color: var(--matcha); white-space: nowrap; }
.menu-item p { font-size: .86rem; color: var(--text-soft); font-weight: 600; margin-top: .25rem; }
.tag-veg { font-family: var(--display); font-size: .58rem; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: var(--matcha); border-radius: var(--radius-pill); padding: .12em .6em; margin-left: .4rem; vertical-align: middle; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-filter { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 2.5rem; }
.gallery-filter button { border: var(--ow) solid var(--line); background: var(--surface); color: var(--choc); font-family: var(--display); font-weight: 500; padding: .55rem 1.2rem; border-radius: var(--radius-pill); font-size: .85rem; box-shadow: 0 3px 0 0 var(--line); transition: background .25s, transform .15s; }
.gallery-filter button:hover { background: var(--pink-light); }
.gallery-filter button[aria-pressed="true"] { background: var(--berry); color: #fff; }
.masonry { columns: 3 250px; column-gap: 1.3rem; }
.masonry .tile { break-inside: avoid; margin-bottom: 1.3rem; border-radius: var(--radius-lg); overflow: hidden; background: var(--pink-light); border: var(--ow) solid var(--line); position: relative; aspect-ratio: 3/4; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease); }
.masonry .tile:nth-child(3n+1) { aspect-ratio: 1/1; }
.masonry .tile:nth-child(4n) { aspect-ratio: 4/5; }
.masonry .tile:hover { transform: translateY(-5px) rotate(-1deg); }
.masonry .tile img { width: 100%; height: 100%; object-fit: cover; }
.masonry .tile .cap { position: absolute; inset: auto .6rem .6rem; padding: .55rem .9rem; background: var(--cream); border: 2px solid var(--line); border-radius: var(--radius-pill); color: var(--choc); font-family: var(--display); font-weight: 500; font-size: .72rem; opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s; z-index: 3; }
.masonry .tile:hover .cap { opacity: 1; transform: none; }

/* ============================================================
   LOCATIONS
   ============================================================ */
.loc-card { background: var(--surface); border: var(--ow) solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.loc-grid { display: grid; grid-template-columns: 1.1fr .9fr; }
@media (max-width: 800px) { .loc-grid { grid-template-columns: 1fr; } }
.loc-map { min-height: 360px; position: relative; border-right: var(--ow) solid var(--line); }
@media (max-width: 800px) { .loc-map { border-right: 0; border-bottom: var(--ow) solid var(--line); } }
.loc-map iframe { width: 100%; height: 100%; border: 0; min-height: 360px; display: block; }
.loc-info { padding: clamp(1.8rem,4vw,3rem); }
.loc-status { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--display); font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; color: #fff; background: var(--matcha); border: 2px solid var(--line); padding: .3rem .9rem; border-radius: var(--radius-pill); margin-bottom: 1.2rem; }
.loc-status .dot { width: 9px; height: 9px; border-radius: 50%; background: #fff; animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(255,255,255,.7);} 70%{box-shadow:0 0 0 8px rgba(255,255,255,0);} 100%{box-shadow:0 0 0 0 rgba(255,255,255,0);} }
.loc-detail { display: flex; gap: .9rem; align-items: flex-start; margin-bottom: 1.1rem; }
.loc-detail svg { width: 24px; height: 24px; color: var(--berry); flex: none; margin-top: .1rem; }
.loc-detail strong { display: block; color: var(--choc); font-family: var(--display); font-weight: 600; }
.loc-detail span { color: var(--text-soft); font-size: .9rem; font-weight: 600; }
.hours { list-style: none; }
.hours li { display: flex; justify-content: space-between; padding: .55rem 0; border-bottom: 2px dashed var(--pink); font-weight: 600; }
.hours li:last-child { border-bottom: 0; }
.hours li span:last-child { color: var(--text-soft); }
.loc-future { border: var(--ow) dashed var(--pink-deep); border-radius: var(--radius-lg); padding: clamp(2rem,5vw,3rem); text-align: center; color: var(--choc-mid); background: var(--pink-bg); }

/* ============================================================
   FORMS
   ============================================================ */
.form-card { background: var(--surface); border: var(--ow) solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.8rem,4vw,3rem); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--display); font-size: .85rem; font-weight: 500; color: var(--choc); }
.field label .req { color: var(--berry); }
.field input, .field select, .field textarea { font: inherit; font-weight: 600; font-size: 1rem; padding: .85rem 1rem; border-radius: 14px; border: var(--ow) solid var(--line); background: var(--cream-bg); color: var(--choc); transition: border-color .25s, box-shadow .25s; min-height: 50px; width: 100%; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--berry); box-shadow: 0 0 0 4px rgba(225,29,43,.15); }
.field .err { font-size: .78rem; color: var(--berry); font-weight: 700; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--berry); }
.field.invalid .err { display: block; }
.form-note { font-size: .82rem; color: var(--text-soft); font-weight: 600; margin-top: 1.1rem; }
.form-success { display: none; text-align: center; padding: 2rem 1rem; }
.form-success.show { display: block; }
.form-success svg { width: 64px; height: 64px; color: var(--matcha); margin: 0 auto 1rem; }

/* ============================================================
   NEWSLETTER / SOCIAL
   ============================================================ */
.signup { text-align: center; }
.signup-form { display: flex; gap: .7rem; max-width: 480px; margin: 1.8rem auto 0; flex-wrap: wrap; justify-content: center; }
.signup-form input { flex: 1 1 220px; padding: .9rem 1.3rem; border-radius: var(--radius-pill); border: var(--ow) solid var(--line); background: var(--surface); font: inherit; font-weight: 600; color: var(--choc); min-height: 52px; }
.signup-form input:focus { outline: none; box-shadow: 0 0 0 4px rgba(255,255,255,.5); }
.signup .toggle { display: inline-flex; gap: 1.4rem; margin-top: 1.2rem; font-family: var(--display); font-weight: 500; font-size: .9rem; }
.signup .toggle label { display: inline-flex; gap: .4rem; align-items: center; cursor: pointer; }

.socials { display: flex; gap: .8rem; justify-content: center; }
.socials a { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; background: var(--cream); border: var(--ow) solid var(--line); color: var(--choc); box-shadow: 0 4px 0 0 var(--line); transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .25s, color .25s; }
.socials a:hover { background: var(--berry); color: #fff; transform: translateY(-3px) rotate(-6deg); box-shadow: 0 7px 0 0 var(--line); }
.socials svg { width: 24px; height: 24px; }

/* ============================================================
   PAGE HEADER (interior)
   ============================================================ */
.page-head { padding: clamp(8rem,15vh,11rem) 0 clamp(3rem,6vw,4.5rem); text-align: center; position: relative; overflow: hidden;
  background: radial-gradient(115% 90% at 50% 0%, #ffd7e0, var(--pink) 80%); }
.page-head .wrap { position: relative; z-index: 2; }
.page-head h1 { color: var(--choc); }
.page-head p { color: var(--choc); font-weight: 600; max-width: 52ch; margin: 1rem auto 0; }
.page-head .eyebrow { color: var(--berry); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--choc); color: #f3d9c4; padding: clamp(3.5rem,6vw,5rem) 0 2rem; }
.footer a { color: #f3d9c4; transition: color .25s; }
.footer a:hover { color: var(--pink); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 2.5rem; }
@media (max-width: 820px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .script { font-size: 2.8rem; color: var(--pink); display: block; line-height: 1.1; }
.footer-brand p { font-size: .92rem; opacity: .85; margin-top: .8rem; font-weight: 500; max-width: 38ch; }
.footer h4 { color: var(--cream); font-family: var(--display); font-weight: 600; font-size: .95rem; margin-bottom: 1rem; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; font-size: .92rem; font-weight: 600; }
.footer .socials { justify-content: flex-start; margin-top: .3rem; }
.footer .socials a { background: var(--choc-mid); border-color: #f3d9c4; color: #f3d9c4; box-shadow: none; }
.footer .socials a:hover { background: var(--pink); color: var(--choc); }
.footer-bottom { border-top: 2px dashed var(--choc-mid); margin-top: 3rem; padding-top: 1.6rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .85rem; font-weight: 600; opacity: .85; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px) scale(.98); transition: opacity .7s var(--ease-soft), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* CTA banner ------------------------------------------- */
.cta-banner { text-align: center; }
.cta-banner h2 { max-width: 18ch; margin-inline: auto; }
.cta-banner p { margin: 1rem auto 2rem; font-weight: 600; }
.cta-banner .btn-row { justify-content: center; }
