

@font-face{font-family:'Nunito';src:url('fonts/nunito-var.woff2?v=2') format('woff2-variations');
  font-weight:400 800;font-style:normal;font-display:swap;}
@font-face{font-family:'Rubik';src:url('fonts/rubik-var.woff2?v=2') format('woff2-variations');
  font-weight:300 600;font-style:normal;font-display:swap;}

:root{
  
  --ground:#FFFCF9;   /* near-white, from their white bubble-letter wordmark and sign field */
  --ink:#2E1D33;      /* the ONE dark hue - the deep plum of the navy/ube box panels */
  --muted:#6B5570;
  --line:#F0E0E8;
  --panel:#FFF1F6;    /* bubblegum pink taken toward white */
  --action:#960A53;   /* deep magenta sampled from their own current box lid - CTAs ONLY */
  --action-dark:#7A0844;
  --pink:#F786AE;     /* their bubblegum pink: sprinkles, donut-hole bullets */
  
  --open:#1B7F3B;
  --closed:#B0202F;
  --wrap:1080px;
  --display:'Nunito',system-ui,-apple-system,'Segoe UI',sans-serif;
  --body:'Rubik',system-ui,-apple-system,'Segoe UI',sans-serif;
}

*{box-sizing:border-box;}
html,body{margin:0;padding:0;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto;}}
body{
  background:var(--ground);color:var(--ink);
  font-family:var(--body);font-weight:400;font-size:17px;line-height:1.45;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block;}
a{color:var(--ink);}
/* anchor jumps must clear the sticky header (qa: sticky covers content) */
section[id]{scroll-margin-top:80px;}
.wrap{max-width:var(--wrap);margin:0 auto;padding:0 20px;}
h1,h2,h3{font-family:var(--display);font-weight:700;line-height:1.15;margin:0;letter-spacing:-.01em;}

.site-header{position:sticky;top:0;z-index:50;background:var(--ground);border-bottom:1px solid var(--line);}
.header-inner{max-width:var(--wrap);margin:0 auto;padding:10px 20px;
  display:flex;align-items:center;justify-content:space-between;gap:12px;}
.wordmark{font-family:var(--display);font-weight:700;font-size:20px;letter-spacing:-.02em;
  color:var(--ink);text-decoration:none;white-space:nowrap;
  display:inline-flex;align-items:center;min-height:44px;}
.site-nav{display:none;gap:26px;align-items:center;}
.site-nav a{color:var(--muted);text-decoration:none;font-size:15px;
  display:inline-flex;align-items:center;justify-content:center;
  min-height:44px;min-width:44px;}
.site-nav a:hover{color:var(--ink);}
@media (min-width:900px){ .site-nav{display:flex;} }

.btn{display:inline-flex;align-items:center;justify-content:center;
  font-family:var(--display);font-weight:700;font-size:16px;
  border-radius:8px;text-decoration:none;border:2px solid transparent;
  padding:12px 22px;min-height:44px;transition:background .18s ease,color .18s ease;}
.btn-primary{background:var(--action);color:#fff;}
.btn-primary:hover{background:var(--action-dark);}
.btn-secondary{background:transparent;color:var(--action);border-color:var(--action);}
.btn-secondary:hover{background:color-mix(in srgb,var(--action) 8%,transparent);}
.btn-header{padding:10px 20px;font-size:15px;white-space:nowrap;min-width:120px;}
a:focus-visible,button:focus-visible,summary:focus-visible{outline:3px solid var(--action);outline-offset:2px;}

.hero-cta{display:flex;flex-direction:column;gap:10px;margin:18px 0 20px;}
.hero-cta .btn{width:100%;}
@media (min-width:600px){ .hero-cta{flex-direction:row;} .hero-cta .btn{width:auto;} }

.hours-status{display:flex;align-items:center;gap:8px;font-weight:700;margin:0 0 6px;}
.dot{width:10px;height:10px;border-radius:50%;background:var(--muted);flex:none;}
.dot.open{background:var(--open);}
.dot.closed{background:var(--closed);}
.hours-table{display:grid;grid-template-columns:auto auto;gap:2px 18px;justify-content:start;
  margin:0;font-size:15px;color:var(--muted);}
.hours-table dt{font-weight:500;}
.hours-table dd{margin:0;}

/* ---------- hero ---------- */
.hero{padding:22px 0 8px;}
.hero-grid{display:grid;gap:20px;}
@media (min-width:900px){ .hero-grid{grid-template-columns:1.05fr .95fr;align-items:center;gap:44px;}
  .hero{padding:34px 0 8px;} }
.eyebrow{font-family:var(--display);font-weight:700;font-size:12px;letter-spacing:.12em;
  text-transform:uppercase;color:var(--muted);margin:0 0 10px;}
h1{font-size:clamp(28px,6.7vw,50px);margin:0 0 12px;}
.sub{font-size:18px;color:var(--muted);margin:0;max-width:34em;}

.gallery-grid{display:grid;grid-template-columns:1fr;gap:14px;}
@media (min-width:600px){ .gallery-grid{grid-template-columns:1fr 1fr;} }
@media (min-width:760px){ .gallery-grid{grid-template-columns:1fr 1fr 1fr;} }

/* ---------- reveal-on-scroll (script.js adds .visible; content visible without JS,
   and with ?noanim=1 or prefers-reduced-motion nothing moves) ---------- */
html.js .reveal{opacity:0;transform:translateY(14px);transition:opacity .3s ease,transform .3s ease;}
html.js .reveal.visible,html.js.noanim .reveal{opacity:1;transform:none;transition:none;}
@media (prefers-reduced-motion:reduce){ html.js .reveal{opacity:1;transform:none;transition:none;} }

/* ---------- footer ---------- */
.site-footer{border-top:1px solid var(--line);margin-top:48px;padding:22px 0 30px;
  color:var(--muted);font-size:14px;}
.site-footer a{display:inline-flex;align-items:center;min-height:44px;} /* qa: 44px tap floor */

/* ═══════════════════════════════════════════════════════════════════════════
   PER-BUSINESS STYLES BELOW THIS LINE — sections, cards, panels, the signature
   element, everything §3/§5 decides for THIS business. Written fresh each build.
═══════════════════════════════════════════════════════════════════════════ */

/* ---------- section rhythm ---------- */
section{padding:34px 0;}
@media (min-width:760px){ section{padding:48px 0;} }
.hero{padding:22px 0 8px;}
@media (min-width:900px){ .hero{padding:34px 0 8px;} }
h2{font-size:clamp(23px,5.2vw,32px);margin:0 0 14px;}

/* ---------- first screen ---------- */
.hero-photo img{border-radius:16px;}
@media (min-width:900px){ .hero-photo img{max-height:540px;width:auto;margin-left:auto;} }
.hours{margin-top:2px;}

/* ---------- proof strip: quiet, light ground, no band ---------- */
.proof{padding:16px 0 6px;}
.proof-quote{margin:0;max-width:30em;border-left:3px solid var(--pink);padding-left:16px;}
.proof-quote p{font-family:var(--display);font-weight:700;
  font-size:clamp(19px,4.3vw,23px);line-height:1.32;margin:0 0 8px;color:var(--ink);}
.proof-quote cite{font-style:normal;font-size:14px;color:var(--muted);
  text-transform:uppercase;letter-spacing:.07em;}

/* ---------- menu: the site's one signature element is the sprinkle strip,
   drawn from the confetti pattern on their own counter wrap, boxes and tissue ---------- */
.menu-panel{position:relative;background:var(--panel);border:1px solid var(--line);
  border-radius:20px;padding:34px 20px 26px;overflow:hidden;}
@media (min-width:760px){ .menu-panel{padding:40px 34px 32px;} }
.sprinkles{position:absolute;top:0;left:0;width:100%;height:14px;display:block;}
.menu-intro{margin:0 0 20px;font-size:16px;color:var(--muted);max-width:34em;}
.menu-list{list-style:none;margin:0 0 24px;padding:0;display:grid;gap:0;}
@media (min-width:760px){ .menu-list{grid-template-columns:1fr 1fr;column-gap:44px;} }
.menu-list li{position:relative;display:flex;flex-wrap:wrap;align-items:baseline;
  padding:11px 0 11px 26px;border-bottom:1px solid rgba(46,29,51,.07);}
.menu-list li::before{content:"";position:absolute;left:0;top:1.05em;
  width:11px;height:11px;border-radius:50%;border:3px solid var(--pink);}
.menu-name{font-family:var(--display);font-weight:700;font-size:17px;color:var(--ink);}
.menu-price{font-size:16px;color:var(--muted);}
.menu-price::before{content:"\00B7";color:var(--pink);margin:0 8px;font-weight:700;}
.menu-cta{margin:0;}
@media (max-width:599px){ .menu-cta .btn{width:100%;} }

/* ---------- gallery: whole objects FIT inside the tile, never cropped ---------- */
.tile{background:#FFFFFF;border:1px solid var(--line);border-radius:14px;
  aspect-ratio:1/1;display:flex;align-items:center;justify-content:center;
  padding:8px;overflow:hidden;}
.tile img{max-width:100%;max-height:100%;width:auto;height:auto;border-radius:8px;}

/* ---------- about ---------- */
.about-grid{display:grid;gap:20px;}
@media (min-width:820px){ .about-grid{grid-template-columns:.95fr 1.05fr;
  gap:40px;align-items:center;} }
.about-photo img{border-radius:14px;}
.about-text p{margin:0 0 12px;font-size:17px;max-width:34em;}
.about-text p:last-child{margin-bottom:0;}

/* ---------- reviews ---------- */
.review-grid{display:grid;gap:14px;}
@media (min-width:700px){ .review-grid{grid-template-columns:1fr 1fr;} }
@media (min-width:900px){ .review-grid{grid-template-columns:1fr 1fr 1fr;} }
.review-card{margin:0;background:var(--panel);border:1px solid var(--line);
  border-radius:14px;padding:18px 18px 16px;display:flex;flex-direction:column;}
.review-card p{margin:0 0 10px;font-size:16px;line-height:1.5;}
.review-card cite{margin-top:auto;font-style:normal;font-size:14px;color:var(--muted);
  text-transform:uppercase;letter-spacing:.06em;}

/* ---------- FAQ ---------- */
.faq details{border-bottom:1px solid var(--line);}
.faq details:first-of-type{border-top:1px solid var(--line);}
.faq summary{font-family:var(--display);font-weight:700;font-size:17px;
  padding:13px 34px 13px 0;min-height:44px;display:flex;align-items:center;
  cursor:pointer;list-style:none;position:relative;}
.faq summary::-webkit-details-marker{display:none;}
.faq summary::after{content:"+";position:absolute;right:6px;top:50%;
  transform:translateY(-50%);font-size:22px;line-height:1;color:var(--muted);}
.faq details[open] summary::after{content:"\2013";}
.faq details p{margin:0 0 16px;font-size:16px;max-width:34em;}

/* ---------- final CTA: the ask only ---------- */
.final-cta{text-align:center;}
.final-line{font-size:18px;color:var(--muted);margin:0 auto 20px;max-width:26em;}
.final-buttons{max-width:420px;margin:0 auto;justify-content:center;}

/* ---------- footer ---------- */
.footer-name{font-family:var(--display);font-weight:700;font-size:18px;
  color:var(--ink);margin:0 0 4px;}
.footer-facts{margin:0;}
.footer-facts dt{font-family:var(--display);font-weight:700;font-size:14px;
  color:var(--ink);margin-top:10px;}
.footer-facts dd{margin:0;font-size:15px;}
.site-footer a{color:var(--muted);}
.site-footer a:hover{color:var(--ink);}
