/* =========================================================
   Quality Donuts — site styles (v2 — full upgrade)
   Vanilla, mobile-first, no framework
   ========================================================= */

:root {
  --cream: #FFF8EE;
  --cream-2: #FBEFD9;
  --paper: #FFFFFF;
  --ink: #2C1810;
  --ink-soft: #5A4633;
  --ink-mute: #8B7868;
  --line: rgba(44, 24, 16, 0.12);

  --pink: #FF4D8B;
  --pink-deep: #C71F5E;
  --pink-soft: #FFD2DF;
  --pink-bg: #FFEDF3;
  --yellow: #FFC93C;
  --mint: #7FCBA4;
  --teal: #2E8B8B;
  --sky: #A8D8E8;

  --donut: #E68A4A;
  --donut-deep: #8B4A2B;
  --donut-light: #FFC993;
  --choc: #4A2618;

  --shadow-1: 0 1px 2px rgba(44,24,16,.06), 0 4px 12px rgba(44,24,16,.06);
  --shadow-2: 0 8px 24px rgba(44,24,16,.10), 0 2px 4px rgba(44,24,16,.06);
  --shadow-3: 0 24px 60px rgba(44,24,16,.18);

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-pill: 999px;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-script: 'Caveat', 'Brush Script MT', cursive;

  --container: 1200px;
  --pad: clamp(20px, 5vw, 56px);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--cream);
  padding: 8px 12px; z-index: 1000;
}
.skip:focus { left: 12px; top: 12px; }

/* ---------- Background decorative sprinkles ---------- */
.bg-deco { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.bg-deco .sprk {
  position: absolute;
  width: 14px; height: 5px; border-radius: 4px;
  opacity: .35;
  animation: float 14s ease-in-out infinite;
}
.bg-deco .sprk.pink { background: var(--pink); }
.bg-deco .sprk.yellow { background: var(--yellow); }
.bg-deco .sprk.mint { background: var(--mint); }
.t1 { top: 14%; left: 4%; transform: rotate(20deg); animation-delay: 0s; }
.t2 { top: 38%; right: 6%; transform: rotate(-30deg); animation-delay: 4s; }
.t3 { top: 62%; left: 8%; transform: rotate(60deg); animation-delay: 7s; }
.t4 { top: 80%; right: 10%; transform: rotate(-15deg); animation-delay: 2s; }
.t5 { top: 22%; right: 18%; transform: rotate(45deg); animation-delay: 9s; }
@keyframes float {
  0%,100% { transform: translateY(0) rotate(20deg); }
  50% { transform: translateY(-22px) rotate(50deg); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
  position: relative;
}
.btn-lg { padding: 16px 28px; font-size: 17px; }
.btn-primary { background: var(--ink); color: var(--cream); box-shadow: var(--shadow-1); }
.btn-primary:hover { background: var(--pink); color: white; transform: translateY(-1px); box-shadow: var(--shadow-2); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--cream-2);
  padding: 6px 12px;
  border-radius: var(--r-pill);
}
.eyebrow-pink { background: var(--pink-bg); color: var(--pink-deep); }
.eyebrow-light { background: rgba(255,255,255,.10); color: var(--cream-2); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto clamp(28px, 5vw, 56px); padding: 0 var(--pad); position: relative; z-index: 1; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 14px 0 8px;
}
.section-head .sub { color: var(--ink-soft); font-size: 17px; }

main { position: relative; z-index: 1; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 24px;
  padding: 12px var(--pad);
  background: rgba(255, 248, 238, 0.92);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 22px; font-weight: 800; letter-spacing: -.01em; }
.brand em { font-style: italic; font-weight: 500; color: var(--pink); margin-left: 4px; }
.brand-mark { display: grid; place-items: center; }
.nav-links { display: flex; align-items: center; gap: 22px; margin-left: auto; font-weight: 500; font-size: 14.5px; }
.nav-links a { padding: 6px 0; position: relative; color: var(--ink-soft); }
.nav-links a:hover { color: var(--ink); }
.nav-links a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--pink); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.status { font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; color: var(--ink-soft); }
.status::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--ink-mute); }
.status.is-open { color: var(--mint); }
.status.is-open::before { background: var(--mint); box-shadow: 0 0 0 4px rgba(127,203,164,.2); animation: pulse 2s ease-in-out infinite; }
.status.is-closed { color: var(--pink); }
.status.is-closed::before { background: var(--pink); }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(127,203,164,.2); } 50% { box-shadow: 0 0 0 8px rgba(127,203,164,.05); } }

.nav-toggle { display: none; width: 40px; height: 40px; position: relative; margin-left: auto; }
.nav-toggle span { display: block; height: 2px; background: var(--ink); margin: 6px auto; width: 22px; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav-links { gap: 16px; font-size: 13.5px; }
}
@media (max-width: 980px) {
  .nav-links {
    position: fixed; inset: 64px 0 auto 0;
    flex-direction: column; gap: 0;
    padding: 16px var(--pad) 24px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-2);
    transform: translateY(-110%);
    transition: transform .3s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-cta .status { display: none; }
  .nav-cta .btn { padding: 10px 16px; font-size: 14px; }
  .nav-toggle { display: block; }
}
@media (max-width: 560px) {
  .nav-cta .btn { display: none; }
}

/* ---------- HOT NOW BAR (Krispy Kreme homage) ---------- */
.hot-bar {
  display: none; /* shown by JS when fresh-now */
  align-items: center; gap: 12px;
  padding: 10px var(--pad);
  background: linear-gradient(90deg, var(--pink-deep), var(--pink), var(--yellow));
  background-size: 200% 100%;
  animation: hot-shimmer 6s linear infinite;
  color: white;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  position: relative; z-index: 49;
}
.hot-bar.show { display: flex; }
.hot-bar .bulb {
  width: 12px; height: 12px; border-radius: 50%;
  background: #FFE266;
  box-shadow: 0 0 0 4px rgba(255,226,102,.4), 0 0 16px #FFE266;
  animation: hot-blink 1.6s ease-in-out infinite;
}
.hot-bar-cta {
  margin-left: auto;
  background: rgba(0,0,0,.3);
  padding: 6px 14px; border-radius: var(--r-pill);
  font-size: 13px;
}
.hot-bar-cta:hover { background: rgba(0,0,0,.5); }
@keyframes hot-blink { 0%,60%,100% { opacity: 1; } 30% { opacity: .35; } }
@keyframes hot-shimmer { 0% { background-position: 0 0; } 100% { background-position: 200% 0; } }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: clamp(40px, 7vw, 96px) var(--pad) clamp(60px, 8vw, 120px);
  background:
    radial-gradient(1100px 600px at 80% 0%, rgba(255,201,60,.18), transparent 60%),
    radial-gradient(800px 500px at 0% 90%, rgba(255,77,139,.12), transparent 60%),
    var(--cream);
  overflow: hidden;
}
.steam {
  position: absolute; inset: 0;
  pointer-events: none;
}
.steam span {
  position: absolute;
  bottom: -20px;
  width: 30px; height: 30px;
  background: rgba(255,255,255,.55);
  border-radius: 50%;
  filter: blur(14px);
  animation: rise 7s linear infinite;
}
.steam span:nth-child(1) { left: 18%; animation-delay: 0s; }
.steam span:nth-child(2) { left: 32%; animation-delay: 1.5s; width: 40px; height: 40px; }
.steam span:nth-child(3) { left: 48%; animation-delay: 3s; }
.steam span:nth-child(4) { left: 62%; animation-delay: 4.5s; width: 36px; height: 36px; }
.steam span:nth-child(5) { left: 78%; animation-delay: 6s; }
@keyframes rise {
  0% { transform: translateY(0) scale(.8); opacity: 0; }
  20% { opacity: .8; }
  100% { transform: translateY(-110vh) scale(1.5); opacity: 0; }
}

.hero-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(24px, 5vw, 64px); align-items: center; position: relative; z-index: 1; }
.hero-copy {
  min-width: 0;
}
.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 7vw, 88px);
  line-height: .98;
  letter-spacing: -.025em;
  margin: 18px 0 22px;
}
.hero-copy h1 em { font-style: italic; font-weight: 500; color: var(--pink); display: inline-block; transform: rotate(-2deg); }
.lede { font-size: clamp(17px, 1.4vw, 20px); color: var(--ink-soft); max-width: min(540px, 100%); margin: 0 0 28px; overflow-wrap: anywhere; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero-stats { list-style: none; padding: 0; margin: 0; display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--ink); line-height: 1; }
.hero-stats span { font-size: 13px; color: var(--ink-mute); margin-top: 4px; }
.hero-copy .eyebrow sup { color: var(--pink); }

.hero-art { position: relative; aspect-ratio: 1 / 1; min-height: 320px; }
.donut { position: absolute; border-radius: 50%; box-shadow: var(--shadow-3); }
.donut::after { content: ''; position: absolute; inset: 35%; border-radius: 50%; background: var(--cream); box-shadow: inset 0 2px 6px rgba(44,24,16,.15); }
.donut-glaze { width: 58%; height: 58%; top: 8%; left: 18%; background: radial-gradient(circle at 35% 30%, #FFE0B5, #E68A4A 60%, #B5642E); animation: spin-soft 30s linear infinite; }
.donut-glaze::before { content: ''; position: absolute; inset: 6%; border-radius: 50%; background: radial-gradient(2px 2px at 30% 30%, var(--pink) 50%, transparent 51%), radial-gradient(2px 2px at 70% 25%, var(--yellow) 50%, transparent 51%), radial-gradient(2px 2px at 60% 70%, var(--mint) 50%, transparent 51%), radial-gradient(2px 2px at 25% 65%, var(--pink) 50%, transparent 51%); pointer-events: none; }
.donut-pink { width: 38%; height: 38%; bottom: 8%; left: 6%; background: radial-gradient(circle at 35% 30%, #FFC0D6, #FF4D8B 70%, #C71F5E); animation: spin-soft 24s linear infinite reverse; }
.donut-choc { width: 44%; height: 44%; right: 4%; top: 24%; background: radial-gradient(circle at 35% 30%, #6B3520, #3A1A0E 70%, #2A1209); animation: spin-soft 28s linear infinite; }
.donut-choc::before { content: ''; position: absolute; inset: 8%; border-radius: 50%; background: radial-gradient(2px 2px at 30% 30%, var(--yellow) 50%, transparent 51%), radial-gradient(2px 2px at 70% 30%, white 50%, transparent 51%), radial-gradient(2px 2px at 50% 65%, var(--pink) 50%, transparent 51%), radial-gradient(2px 2px at 80% 60%, var(--mint) 50%, transparent 51%); pointer-events: none; }
.donut-old { width: 28%; height: 28%; bottom: 16%; right: 12%; background: radial-gradient(circle at 35% 30%, #C97A3A, #8B4A2B 70%, #5A2F18); animation: spin-soft 20s linear infinite reverse; }
@keyframes spin-soft { 0% { transform: rotate(0); } 100% { transform: rotate(360deg); } }

.sprinkle { position: absolute; width: 14px; height: 5px; border-radius: 4px; transform-origin: center; }
.s1 { background: var(--pink); top: 6%; right: 14%; transform: rotate(40deg); }
.s2 { background: var(--yellow); top: 50%; right: 0; transform: rotate(-30deg); }
.s3 { background: var(--mint); bottom: 0; right: 40%; transform: rotate(70deg); }
.s4 { background: var(--pink); top: 18%; left: 0; transform: rotate(-50deg); }
.s5 { background: var(--yellow); bottom: 32%; left: 38%; transform: rotate(20deg); }

.hero-stamp {
  position: absolute; bottom: -6px; right: -6px;
  width: 110px; height: 110px;
  display: grid; place-items: center; text-align: center;
  background: var(--yellow); color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 50%;
  font-family: var(--font-script);
  font-size: 22px; line-height: 1;
  font-weight: 700;
  transform: rotate(-12deg);
  box-shadow: var(--shadow-2);
}

@media (max-width: 800px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy {
    order: 1;
    width: min(100%, 330px);
  }
  .hero-copy h1 {
    font-size: clamp(38px, 10.5vw, 46px);
  }
  .hero-copy .lede {
    max-width: 310px;
  }
  .hero-art { order: 2; max-width: 300px; min-height: 250px; margin: 20px auto 0; }
  .hero-stats { gap: 22px; }
}

.scroll-cue { position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--paper); color: var(--ink-soft); font-size: 16px; animation: bob 2.4s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }

/* ---------- DROP OF THE WEEK ---------- */
.drop {
  padding: clamp(60px, 7vw, 100px) var(--pad);
  background:
    radial-gradient(900px 400px at 50% 0%, rgba(255, 77, 139, .14), transparent 60%),
    var(--paper);
  position: relative;
}
.drop-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.drop-art {
  position: relative; aspect-ratio: 1; max-width: 480px; margin: 0 auto;
  display: grid; place-items: center;
}
.drop-spotlight {
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, var(--pink-bg), transparent 60%);
  border-radius: 50%;
  animation: pulse-bg 4s ease-in-out infinite;
}
@keyframes pulse-bg { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.06); opacity: .7; } }
.drop-donut { position: relative; z-index: 1; animation: float-soft 6s ease-in-out infinite; filter: drop-shadow(0 16px 30px rgba(199,31,94,.25)); }
@keyframes float-soft { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.drop-stamp {
  position: absolute; top: 8%; right: 4%;
  background: var(--yellow); color: var(--ink);
  font-family: var(--font-script);
  font-size: 22px; font-weight: 700;
  padding: 8px 16px; border-radius: var(--r-pill);
  border: 2px solid var(--ink);
  transform: rotate(8deg);
  box-shadow: var(--shadow-2);
  z-index: 2;
}
.drop-copy h2 { font-family: var(--font-display); font-weight: 900; font-size: clamp(32px, 5vw, 54px); line-height: 1.05; letter-spacing: -.02em; margin: 14px 0 16px; }
.drop-copy p { color: var(--ink-soft); font-size: 18px; max-width: 560px; }
.drop-meta { margin: 18px 0; color: var(--ink-soft); font-size: 15px; }
.drop-meta strong { color: var(--ink); font-size: 22px; font-family: var(--font-display); margin-right: 4px; }
.drop-divider { margin: 0 8px; opacity: .5; }
.drop-countdown {
  display: inline-flex; gap: 12px;
  padding: 14px 18px;
  background: var(--ink); color: var(--cream);
  border-radius: var(--r-md);
  margin: 4px 0 22px;
  font-variant-numeric: tabular-nums;
}
.drop-countdown span { display: flex; flex-direction: column; align-items: center; min-width: 50px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; opacity: .7; }
.drop-countdown strong { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--cream); margin-bottom: 2px; }
.drop-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.drop-next { max-width: var(--container); margin: 56px auto 0; text-align: center; }
.drop-next-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 18px; }
.drop-next-card { padding: 20px; background: var(--cream); border-radius: var(--r-lg); border: 1px dashed var(--line); }
.drop-next-card svg { width: 80px; height: 80px; margin: 0 auto 8px; opacity: .85; }
.drop-next-card h4 { font-family: var(--font-display); margin: 0 0 4px; font-size: 18px; }
.drop-next-card p { margin: 0; font-size: 14px; color: var(--ink-mute); }

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

/* ---------- FAVORITES ---------- */
.favorites { padding: clamp(60px, 7vw, 100px) var(--pad); background: var(--cream); }
.fav-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.fav-card {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  background: var(--paper);
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.fav-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.fav-card h3 { font-family: var(--font-display); font-size: 24px; font-weight: 700; margin: 0; }
.fav-card p { color: var(--ink-soft); margin: 0; font-size: 15px; }
.fav-card .price {
  align-self: flex-start;
  font-weight: 700; font-size: 14px;
  background: var(--ink); color: var(--cream);
  padding: 4px 10px; border-radius: var(--r-pill);
  margin-top: 4px;
}
.fav-img {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-md);
  position: relative; overflow: hidden;
  display: grid; place-items: center;
  background:
    radial-gradient(circle at 30% 30%, var(--cream-2), var(--cream)),
    var(--paper);
}
.fav-img svg { width: 70%; height: 70%; filter: drop-shadow(0 8px 20px rgba(44,24,16,.16)); }
.fav-tag {
  position: absolute; top: 10px; left: 10px;
  background: var(--ink); color: var(--cream);
  font-size: 11px; font-weight: 700;
  padding: 3px 8px; border-radius: var(--r-pill);
  letter-spacing: .08em;
}
.fav-tag.legendary { background: var(--pink); }
.fav-tag.savory { background: var(--mint); color: var(--ink); }

/* ---------- MENU ---------- */
.menu {
  padding: clamp(60px, 7vw, 100px) var(--pad);
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.menu-controls { max-width: var(--container); margin: 0 auto 18px; display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; }
.menu-controls input {
  font: inherit; padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--paper);
  font-size: 15px;
}
.menu-controls input:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(255,77,139,.15); }
.menu-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.menu-filters button {
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 13px; font-weight: 600;
  color: var(--ink-soft);
  transition: all .15s ease;
}
.menu-filters button:hover { color: var(--ink); border-color: var(--ink); }
.menu-filters button.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }
@media (max-width: 700px) { .menu-controls { grid-template-columns: 1fr; } }

.menu-tabs {
  max-width: var(--container);
  margin: 0 auto 32px;
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 6px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-1);
  overflow-x: auto;
}
.menu-tabs button { padding: 10px 18px; border-radius: var(--r-pill); font-weight: 600; font-size: 14px; color: var(--ink-soft); white-space: nowrap; transition: background .2s, color .2s; }
.menu-tabs button:hover { color: var(--ink); }
.menu-tabs button.active { background: var(--ink); color: var(--cream); }

.menu-panes {
  max-width: var(--container);
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-1);
  padding: clamp(24px, 4vw, 48px);
}
.menu-pane { display: none; }
.menu-pane.active { display: block; animation: fade .3s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.menu-pane h3 { font-family: var(--font-display); font-size: clamp(24px, 3vw, 32px); font-weight: 700; margin: 0 0 18px; }

.menu-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; }
.menu-grid li {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center; gap: 14px;
  padding: 12px;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  transition: background .15s ease, border-color .15s ease;
}
.menu-grid li:hover { background: var(--cream); border-color: var(--line); }
.menu-grid li svg { width: 56px; height: 56px; filter: drop-shadow(0 4px 8px rgba(44,24,16,.1)); }
.menu-grid li h4 { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin: 0 0 2px; }
.menu-grid li p { font-size: 13px; color: var(--ink-mute); margin: 0; }
.menu-grid li .px { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--ink); white-space: nowrap; display: flex; flex-direction: column; align-items: flex-end; }
.menu-grid li .px small { font-size: 11px; font-weight: 500; color: var(--ink-mute); margin-top: 2px; }
.menu-grid li.hidden { display: none; }

.menu-note { margin-top: 18px; color: var(--ink-soft); font-size: 14px; font-style: italic; }
.menu-note a { color: var(--pink); font-weight: 600; }
.menu-cta { max-width: var(--container); margin: 36px auto 0; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- BUILD A BOX ---------- */
.box { padding: clamp(60px, 7vw, 100px) var(--pad); background: var(--paper); }
.box-wrap { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 28px; align-items: start; }
.box-area {
  background: linear-gradient(180deg, #FFC0D6, #FFD2DF);
  border: 3px solid var(--pink-deep);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--shadow-2);
  position: sticky; top: 80px;
}
.box-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; font-family: var(--font-display); font-weight: 700; color: var(--pink-deep); font-size: 18px; }
.box-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 14px; background: rgba(255,255,255,.55); border: 2px dashed rgba(199,31,94,.4); border-radius: var(--r-md); }
.box-slot {
  aspect-ratio: 1; display: grid; place-items: center;
  background: rgba(255,255,255,.6);
  border-radius: 50%;
  border: 1px dashed rgba(199,31,94,.3);
  cursor: pointer;
  position: relative;
  transition: transform .15s ease, background .15s ease;
}
.box-slot:hover { background: rgba(255,255,255,.85); }
.box-slot.filled { background: rgba(255,255,255,.95); border-style: solid; transform: scale(1); animation: pop .25s ease; }
.box-slot svg { width: 86%; height: 86%; }
@keyframes pop { 0% { transform: scale(.5); opacity: 0; } 70% { transform: scale(1.1); opacity: 1; } 100% { transform: scale(1); } }

.box-summary { margin: 14px 4px; display: flex; flex-wrap: wrap; gap: 10px 18px; font-size: 14px; color: var(--ink); }
.box-summary strong { font-family: var(--font-display); font-size: 17px; font-weight: 700; }
.box-summary .savings { color: var(--pink-deep); }
.box-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.box-actions .btn-ghost { background: rgba(255,255,255,.6); border-color: var(--pink-deep); color: var(--pink-deep); }
.box-actions .btn-ghost:hover { background: var(--pink-deep); color: white; }
.box-actions .btn-primary { background: var(--ink); flex: 1; }

.palette { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px; }
.palette-head { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 14px; }
.palette-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 10px; }
.palette-btn {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 10px 6px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 12px; font-weight: 600;
  color: var(--ink);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.palette-btn svg { width: 56px; height: 56px; filter: drop-shadow(0 4px 8px rgba(44,24,16,.1)); }
.palette-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-1); border-color: var(--pink); }
.palette-btn:active { transform: scale(.98); }
.palette-note { margin-top: 14px; font-size: 13px; color: var(--ink-mute); font-style: italic; }

@media (max-width: 900px) {
  .box-wrap { grid-template-columns: 1fr; }
  .box-area { position: static; }
}

/* ---------- ORDER ---------- */
.order { padding: clamp(60px, 7vw, 100px) var(--pad); background: var(--cream); }
.order-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.order-card {
  position: relative;
  display: flex; flex-direction: column; gap: 8px;
  padding: 32px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.order-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: var(--ink); }
.order-card.primary { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.order-card.primary:hover { background: var(--pink); border-color: var(--pink); }
.order-tag { position: absolute; top: 16px; right: 16px; background: var(--yellow); color: var(--ink); padding: 4px 10px; border-radius: var(--r-pill); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.order-card h3 { font-family: var(--font-display); font-size: 28px; font-weight: 700; margin: 0; }
.order-card p { margin: 0; opacity: .85; }
.order-arrow { align-self: flex-start; font-size: 24px; margin-top: 14px; transition: transform .2s ease; }
.order-card:hover .order-arrow { transform: translateX(6px); }

.order-tips { max-width: var(--container); margin: 28px auto 0; text-align: center; font-size: 15px; color: var(--ink-soft); padding: 16px 22px; background: var(--cream-2); border-radius: var(--r-md); }
.order-tips strong { color: var(--ink); }

.usual { max-width: var(--container); margin: 28px auto 0; padding: 18px 22px; background: var(--pink-bg); border: 2px dashed var(--pink); border-radius: var(--r-md); display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.usual h4 { font-family: var(--font-display); font-size: 18px; margin: 0; color: var(--pink-deep); }
.usual p { margin: 0; flex: 1; font-size: 15px; }

/* ---------- CATERING ---------- */
.catering { padding: clamp(60px, 7vw, 100px) var(--pad); background: var(--ink); color: var(--cream); position: relative; overflow: hidden; }
.catering::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(800px 400px at 80% 20%, rgba(255, 201, 60, .1), transparent 60%),
              radial-gradient(600px 400px at 0% 80%, rgba(255, 77, 139, .08), transparent 60%);
  pointer-events: none;
}
.catering-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; position: relative; z-index: 1; }
.catering-copy h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px, 4.5vw, 48px); line-height: 1.05; letter-spacing: -.02em; margin: 14px 0 18px; }
.catering-copy > p { font-size: 17px; opacity: .85; max-width: 540px; margin-bottom: 28px; }

.cater-packs { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.cater-pack {
  position: relative;
  display: block;
  padding: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.cater-pack:hover { transform: translateY(-3px); background: rgba(255,255,255,.10); border-color: var(--yellow); }
.cater-pack h4 { font-family: var(--font-display); font-size: 19px; font-weight: 700; margin: 0 0 6px; color: var(--cream); }
.cater-pack p { margin: 0 0 10px; font-size: 14px; line-height: 1.5; opacity: .8; }
.pack-price { color: var(--yellow); font-weight: 700; font-size: 16px; }
.pack-tag { position: absolute; top: -8px; right: 12px; background: var(--yellow); color: var(--ink); font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: var(--r-pill); letter-spacing: .08em; text-transform: uppercase; }
.pack-tag.pink { background: var(--pink); color: white; }

.cater-form { background: var(--cream); color: var(--ink); padding: 32px; border-radius: var(--r-lg); display: grid; gap: 14px; box-shadow: var(--shadow-3); position: sticky; top: 80px; }
.cater-form h3 { font-family: var(--font-display); font-size: 24px; font-weight: 700; margin: 0 0 4px; }
.cater-form label { display: grid; gap: 6px; font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.cater-form input, .cater-form textarea { font: inherit; color: var(--ink); padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--paper); transition: border-color .15s ease, box-shadow .15s ease; }
.cater-form input:focus, .cater-form textarea:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(255,77,139,.15); }
.cater-form .btn-primary { background: var(--pink); color: white; }
.cater-form .btn-primary:hover { background: var(--ink); }
.form-note { font-size: 13px; color: var(--ink-soft); margin: 4px 0 0; text-align: center; }
.form-note a { color: var(--pink); font-weight: 600; }

@media (max-width: 900px) { .catering-grid { grid-template-columns: 1fr; } .cater-form { position: static; } }

/* ---------- LOYALTY ---------- */
.loyalty {
  padding: clamp(60px, 7vw, 100px) var(--pad);
  background:
    radial-gradient(800px 400px at 20% 0%, rgba(255, 201, 60, .15), transparent 60%),
    var(--cream);
}
.loyalty-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.loyalty-copy h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 4vw, 44px); line-height: 1.1; letter-spacing: -.02em; margin: 14px 0 18px; }
.loyalty-perks { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.loyalty-perks li { padding: 14px 16px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); font-size: 15px; }
.loyalty-perks strong { color: var(--pink-deep); }

.loyalty-card {
  background: linear-gradient(135deg, var(--pink-deep), var(--pink));
  color: white;
  padding: 32px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-3);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.loyalty-card::before {
  content: ''; position: absolute; inset: -50% -10% auto auto;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.1);
}
.loyalty-stamp {
  display: inline-block;
  background: var(--yellow); color: var(--ink);
  padding: 4px 12px; border-radius: var(--r-pill);
  font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 18px;
}
.loyalty-card h3 { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 38px); font-weight: 800; margin: 0 0 14px; line-height: 1.1; }
.loyalty-card h3 em { font-family: var(--font-script); font-style: normal; font-size: 1.2em; color: var(--yellow); }
.loyalty-card h3 a { color: var(--yellow); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }
.loyalty-card p { margin: 0 0 14px; opacity: .9; }
.loyalty-progress { display: flex; justify-content: center; gap: 6px; margin: 18px 0 14px; flex-wrap: wrap; }
.loyalty-progress .dot { width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,.25); }
.loyalty-progress .dot.free { width: auto; padding: 4px 10px; border-radius: var(--r-pill); background: var(--yellow); color: var(--ink); font-size: 11px; font-weight: 800; letter-spacing: .1em; align-self: center; }
.loyalty-foot { font-size: 11px; opacity: .65; margin: 0; }

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

/* ---------- DAY IN THE LIFE ---------- */
.day { padding: clamp(60px, 7vw, 100px) var(--pad); background: var(--paper); }
.timeline {
  list-style: none; padding: 0; margin: 0;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  position: relative;
}
.timeline li {
  position: relative;
  padding: 18px 18px 18px 18px;
  background: var(--cream);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  border-left: 4px solid var(--pink);
}
.timeline li.hot { background: linear-gradient(135deg, #FFE0B5, #FFC993); border-left-color: var(--ink); }
.timeline .t {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800; font-size: 14px;
  color: var(--pink-deep);
  background: white;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  margin-bottom: 8px;
}
.timeline li.hot .t { background: var(--ink); color: var(--yellow); }
.timeline h4 { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin: 0 0 4px; }
.timeline p { margin: 0; font-size: 14px; color: var(--ink-soft); }

/* ---------- STORY ---------- */
.story { padding: clamp(60px, 7vw, 100px) var(--pad); background: var(--cream); }
.story-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.story-art { position: relative; aspect-ratio: 4 / 5; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-3); }
.story-photo { position: absolute; inset: 0; background:
  linear-gradient(180deg, transparent 60%, rgba(0,0,0,.4)),
  radial-gradient(ellipse at 50% 30%, #FFE0B5 0%, transparent 50%),
  linear-gradient(135deg, #C97A3A, #8B4A2B 60%, #4A2618);
}
.story-photo::before { content: ''; position: absolute; inset: 50% 0 0 0; background: repeating-linear-gradient(90deg, #8B3A20 0 60px, #6B2A18 60px 64px), repeating-linear-gradient(0deg, transparent 0 30px, #4A1A0E 30px 32px); opacity: .55; }
.story-photo::after { content: 'QUALITY DONUTS'; position: absolute; top: 18%; left: 50%; transform: translateX(-50%); font-family: var(--font-display); font-size: 22px; font-weight: 800; letter-spacing: .04em; color: var(--ink); background: var(--yellow); padding: 8px 18px; border: 3px solid var(--ink); white-space: nowrap; }
.story-stamp { position: absolute; bottom: 18px; right: 18px; background: var(--cream); color: var(--ink); font-family: var(--font-script); font-style: italic; font-weight: 700; padding: 8px 14px; border-radius: var(--r-pill); font-size: 18px; }
.story-tape {
  position: absolute;
  width: 90px; height: 26px;
  background: rgba(255, 226, 102, .65);
  border: 1px solid rgba(180, 140, 30, .3);
  z-index: 2;
}
.tape-l { top: -10px; left: 22px; transform: rotate(-8deg); }
.tape-r { top: -10px; right: 22px; transform: rotate(6deg); }

.story-copy h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 4vw, 44px); line-height: 1.1; letter-spacing: -.02em; margin: 14px 0 18px; }
.story-copy p { font-size: 17px; color: var(--ink-soft); margin: 0 0 14px; max-width: 580px; }
.signature { font-family: var(--font-script); font-size: 28px; color: var(--ink) !important; margin-top: 18px !important; }
@media (max-width: 800px) { .story-grid { grid-template-columns: 1fr; } .story-art { max-width: 380px; margin: 0 auto; } }

/* ---------- GALLERY ---------- */
.gallery { padding: clamp(60px, 7vw, 100px) var(--pad); background: var(--paper); }
.gallery-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 8px; }
.gallery-tile {
  aspect-ratio: 1;
  border-radius: var(--r-md);
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease;
}
.gallery-tile:hover { transform: scale(1.04); }
.gallery-tile svg { width: 70%; height: 70%; filter: drop-shadow(0 6px 14px rgba(44,24,16,.18)); }
.gallery-tile.g1 { background: linear-gradient(135deg, #FFE0B5, #FFC993); }
.gallery-tile.g2 { background: linear-gradient(135deg, #FFC0D6, #FFD2DF); }
.gallery-tile.g3 { background: linear-gradient(135deg, #FFE266, #FFC93C); }
.gallery-tile.g4 { background: linear-gradient(135deg, #C97A3A, #8B4A2B); }
.gallery-tile.g5 { background: linear-gradient(135deg, #FFE0B5, #FFC0D6); }
.gallery-tile.g6 { background: linear-gradient(135deg, #FFC993, #FF8AB0); }
.gallery-tile.g7 { background: linear-gradient(135deg, #F5E5C8, #FFE0B5); }
.gallery-tile.g8 { background: linear-gradient(135deg, #7FCBA4, #2E8B8B); }

/* ---------- EVENTS ---------- */
.events { padding: clamp(60px, 7vw, 100px) var(--pad); background: var(--cream-2); }
.event-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.event-card {
  position: relative;
  padding: 26px;
  background: var(--paper);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.event-tag { display: inline-block; background: var(--pink); color: white; padding: 4px 10px; border-radius: var(--r-pill); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; }
.event-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin: 0 0 8px; }
.event-card p { margin: 0; color: var(--ink-soft); font-size: 15px; }

/* ---------- REVIEWS / PRESS ---------- */
.reviews { padding: clamp(60px, 7vw, 100px) var(--pad); background: var(--paper); }
.review-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.review { margin: 0; padding: 28px; background: var(--cream); border-radius: var(--r-lg); border: 1px solid var(--line); position: relative; }
.review::before { content: '"'; position: absolute; top: 6px; left: 18px; font-family: var(--font-display); font-size: 80px; line-height: 1; color: var(--pink-soft); }
.review p { font-family: var(--font-display); font-size: 18px; line-height: 1.45; margin: 0 0 16px; position: relative; }
.review cite { font-style: normal; font-size: 13px; font-weight: 600; color: var(--ink-mute); }
.review-cta { text-align: center; margin: 32px 0 36px; font-size: 15px; color: var(--ink-soft); }
.review-cta a { color: var(--pink); font-weight: 700; }
.press {
  max-width: var(--container); margin: 0 auto;
  text-align: center;
  padding: 28px 0;
  border-top: 1px dashed var(--line);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 22px;
}
.press-label { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); }
.press-logo { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 18px; color: var(--ink-soft); opacity: .65; }
.press-foot { font-size: 11px; color: var(--ink-mute); width: 100%; opacity: .8; }

/* ---------- VISIT ---------- */
.visit { padding: clamp(60px, 7vw, 100px) var(--pad); background: var(--cream-2); }
.visit-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(28px, 5vw, 56px); align-items: stretch; }
.visit-info { display: grid; gap: 22px; }
.visit-block { background: var(--paper); padding: 22px 24px; border-radius: var(--r-lg); border: 1px solid var(--line); }
.visit-block h3 { font-family: var(--font-display); font-size: 22px; margin: 0 0 10px; }
.visit-block p { margin: 0 0 10px; color: var(--ink-soft); }
.visit-block a { color: var(--pink); font-weight: 600; }
.hours-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.hours-list li { display: flex; justify-content: space-between; font-size: 15px; padding: 4px 0; }
.hours-list li.today { font-weight: 700; color: var(--ink); background: var(--cream); padding: 6px 10px; margin: 0 -10px; border-radius: var(--r-sm); }
.hours-note { margin: 10px 0 0 !important; font-size: 12px; color: var(--ink-mute) !important; }
.visit-map { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-2); min-height: 380px; background: var(--ink-mute); }
.visit-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; }
@media (max-width: 800px) { .visit-grid { grid-template-columns: 1fr; } }

/* ---------- LOCAL SEO ---------- */
.local-seo { padding: 32px var(--pad); background: var(--cream); }
.local-seo p { max-width: 920px; margin: 0 auto; font-size: 14px; color: var(--ink-mute); line-height: 1.7; text-align: center; }

/* ---------- CTA BAND ---------- */
.cta-band { padding: clamp(60px, 7vw, 100px) var(--pad); text-align: center; background: radial-gradient(800px 300px at 50% 0%, rgba(255,201,60,.3), transparent 60%), var(--pink); color: white; position: relative; overflow: hidden; }
.cta-band::before, .cta-band::after { content: ''; position: absolute; width: 200px; height: 200px; border-radius: 50%; background: rgba(255,255,255,.06); }
.cta-band::before { top: -60px; left: -60px; }
.cta-band::after { bottom: -60px; right: -60px; }
.cta-band h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(32px, 5vw, 56px); letter-spacing: -.02em; line-height: 1; margin: 0 0 28px; position: relative; z-index: 1; }
.cta-band h2 em { font-style: italic; font-weight: 500; color: var(--yellow); }
.cta-band-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; position: relative; z-index: 1; }
.cta-band .btn-primary { background: var(--ink); color: var(--cream); }
.cta-band .btn-primary:hover { background: white; color: var(--ink); }
.cta-band .btn-ghost { border-color: white; color: white; }
.cta-band .btn-ghost:hover { background: white; color: var(--pink); }

/* ---------- FOOTER ---------- */
.footer { background: var(--ink); color: var(--cream-2); padding: clamp(48px, 6vw, 80px) var(--pad) 100px; }
.footer-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.10); }
.footer-brand { font-size: 26px; }
.footer-brand em { color: var(--yellow); }
.footer h4 { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin: 0 0 10px; color: var(--cream); }
.footer p { margin: 4px 0; font-size: 14px; opacity: .8; }
.footer a { color: var(--cream); border-bottom: 1px solid rgba(255,255,255,.2); transition: color .2s, border-color .2s; }
.footer a:hover { color: var(--yellow); border-color: var(--yellow); }
.footer-social a { font-family: var(--font-script); font-size: 18px; color: var(--pink); border-bottom: none; }
.footer-copy { max-width: var(--container); margin: 24px auto 0; font-size: 12px; opacity: .6; text-align: center; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }

/* ---------- LIVE ORDER TICKER ---------- */
.ticker {
  position: fixed; left: 12px; bottom: 12px;
  background: var(--ink); color: var(--cream);
  padding: 10px 14px;
  border-radius: var(--r-pill);
  font-size: 13px;
  display: none; align-items: center; gap: 10px;
  box-shadow: var(--shadow-3);
  z-index: 55;
  max-width: 360px;
  animation: ticker-in .4s ease;
}
.ticker.show { display: flex; }
.ticker-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); animation: pulse 2s ease-in-out infinite; }
.ticker-text { flex: 1; }
.ticker-close { width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,.15); display: grid; place-items: center; font-size: 14px; color: var(--cream); }
.ticker-close:hover { background: rgba(255,255,255,.25); }
@keyframes ticker-in { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@media (max-width: 700px) { .ticker { left: 12px; bottom: 78px; max-width: calc(100% - 24px); } }

/* ---------- MOBILE BAR ---------- */
.mobile-bar { display: none; position: fixed; left: 12px; right: 12px; bottom: 12px; background: var(--ink); color: var(--cream); padding: 8px; border-radius: var(--r-pill); box-shadow: var(--shadow-3); z-index: 60; justify-content: space-around; gap: 4px; }
.mobile-bar a { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 8px; border-radius: var(--r-pill); font-size: 11px; font-weight: 600; color: var(--cream); }
.mobile-bar a.mobile-primary { background: var(--pink); }
.mobile-bar a:hover { background: rgba(255,255,255,.10); }
.mobile-bar a.mobile-primary:hover { background: var(--yellow); color: var(--ink); }
@media (max-width: 700px) {
  .mobile-bar {
    display: flex;
    right: auto;
    width: min(330px, calc(100vw - 24px));
  }
  body { padding-bottom: 80px; }
}

/* =========================================================
   ADDITIONS — chat, modal, banner, trivia, heritage, futuristic
   ========================================================= */

/* ---------- WELCOME BACK BANNER ---------- */
.welcome-back {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 10px 18px;
  background: linear-gradient(90deg, #FFE266, #FFC93C);
  color: var(--ink);
  font-size: 14px; font-weight: 600;
  border-bottom: 1px solid rgba(44,24,16,.1);
  position: relative; z-index: 49;
}
.welcome-back .wb-text { flex: 1; }
.welcome-back .wb-cta {
  background: var(--ink); color: var(--cream);
  padding: 6px 14px; border-radius: var(--r-pill);
  font-size: 13px;
}
.welcome-back .wb-cta:hover { background: var(--pink); }
.wb-close { width: 26px; height: 26px; border-radius: 50%; background: rgba(0,0,0,.1); }
.wb-close:hover { background: rgba(0,0,0,.2); }

/* ---------- FIRST-TIME OFFER MODAL ---------- */
.modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 20px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(20,10,5,.55); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); animation: modal-fade .25s ease; }
@keyframes modal-fade { from { opacity: 0; } to { opacity: 1; } }
.modal-card {
  position: relative;
  max-width: 480px; width: 100%;
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-3);
  text-align: center;
  animation: modal-pop .3s ease;
}
@keyframes modal-pop { from { opacity: 0; transform: translateY(20px) scale(.96); } to { opacity: 1; transform: none; } }
.modal-card::before {
  content: ''; position: absolute; inset: -3px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--pink), var(--yellow), var(--mint), var(--pink));
  background-size: 300% 300%;
  animation: gradient-spin 8s linear infinite;
  z-index: -1;
}
@keyframes gradient-spin { 0% { background-position: 0% 50%; } 100% { background-position: 300% 50%; } }
.modal-close { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; border-radius: 50%; background: rgba(44,24,16,.08); font-size: 22px; line-height: 1; }
.modal-close:hover { background: var(--ink); color: var(--cream); }
.modal-tag { display: inline-block; background: var(--pink-bg); color: var(--pink-deep); font-weight: 700; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; padding: 4px 12px; border-radius: var(--r-pill); margin-bottom: 14px; }
.modal-card h3 { font-family: var(--font-display); font-size: clamp(26px, 4vw, 34px); font-weight: 800; line-height: 1.1; margin: 0 0 14px; }
.modal-card p { color: var(--ink-soft); margin: 0 0 18px; }
.modal-code {
  display: inline-flex; flex-direction: column; align-items: center;
  padding: 14px 28px;
  background: var(--ink); color: var(--yellow);
  border-radius: var(--r-md);
  margin-bottom: 22px;
  cursor: pointer;
  font-variant-numeric: tabular-nums;
  border: 2px dashed rgba(255,201,60,.5);
  transition: transform .15s ease;
}
.modal-code:hover { transform: scale(1.04); }
.modal-code strong { font-family: var(--font-display); font-size: 32px; font-weight: 900; letter-spacing: .14em; }
.modal-code span { font-size: 11px; color: var(--cream-2); margin-top: 4px; opacity: .7; }
.modal-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.modal-foot { font-size: 12px; color: var(--ink-mute); margin-top: 16px !important; }
.modal-foot a { color: var(--pink); }

/* ---------- TRIVIA TICKER ---------- */
.trivia {
  display: flex; align-items: center; gap: 18px;
  padding: 8px var(--pad);
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
  position: relative; z-index: 48;
  overflow: hidden;
}
.trivia-label {
  display: inline-flex; align-items: center; gap: 6px;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 700; font-style: italic;
  color: var(--yellow);
  font-size: 14px;
}
.trivia-pin { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); animation: pulse 2s ease-in-out infinite; box-shadow: 0 0 10px var(--yellow); }
.trivia-track {
  flex: 1; overflow: hidden; position: relative;
  white-space: nowrap;
  display: flex;
  gap: 60px;
}
.trivia-track span {
  display: inline-block;
  flex-shrink: 0;
  animation: marquee 60s linear infinite;
  opacity: .9;
}
@keyframes marquee { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
.trivia-track span:nth-child(1) { animation-delay: 0s; }
.trivia-track span:nth-child(2) { animation-delay: -8s; }
.trivia-track span:nth-child(3) { animation-delay: -16s; }
.trivia-track span:nth-child(4) { animation-delay: -24s; }
.trivia-track span:nth-child(5) { animation-delay: -32s; }
.trivia-track span:nth-child(6) { animation-delay: -40s; }
.trivia-track span:nth-child(7) { animation-delay: -48s; }
.trivia-track span:nth-child(8) { animation-delay: -56s; }
.shop-note .trivia-track {
  display: block;
  overflow: visible;
  white-space: normal;
}
.shop-note .trivia-track span {
  animation: none;
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  white-space: normal;
}
@media (max-width: 700px) {
  .trivia { font-size: 12px; padding: 7px 12px; }
  .trivia-label { font-size: 13px; }
  .shop-note {
    display: block;
    line-height: 1.35;
  }
  .shop-note .trivia-label {
    display: inline-flex;
    margin: 0 8px 2px 0;
  }
  .shop-note .trivia-track {
    display: block;
    margin-top: 2px;
  }
}

/* ---------- HERO TRUST PILLS ---------- */
.hero-trust { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 22px; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: rgba(255,255,255,.6);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 12px; font-weight: 600;
  color: var(--ink-soft);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.trust-pill strong { color: var(--pink-deep); }

/* ---------- DROP SCARCITY BAR ---------- */
.drop-bar {
  width: 100%; height: 6px;
  background: rgba(199, 31, 94, .12);
  border-radius: var(--r-pill);
  overflow: hidden;
  margin: 6px 0 22px;
}
.drop-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--yellow));
  border-radius: var(--r-pill);
  width: 28%;
  transition: width .8s ease;
  box-shadow: 0 0 12px rgba(255, 201, 60, .5);
}

/* ---------- "SELLING FAST" badge on fav cards ---------- */
.fav-fast {
  position: absolute; top: 10px; right: 10px;
  background: var(--pink-deep); color: white;
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
  padding: 3px 8px; border-radius: var(--r-pill);
  animation: pulse-fast 2s ease-in-out infinite;
  box-shadow: 0 4px 10px rgba(199,31,94,.3);
}
@keyframes pulse-fast { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }

/* ---------- OAKLAND HERITAGE ---------- */
.heritage {
  position: relative;
  padding: clamp(60px, 7vw, 100px) var(--pad);
  background:
    radial-gradient(900px 500px at 80% 20%, rgba(255, 77, 139, .08), transparent 60%),
    radial-gradient(700px 400px at 0% 80%, rgba(127, 203, 164, .08), transparent 60%),
    linear-gradient(180deg, #1A0F08, #2C1810);
  color: var(--cream);
  overflow: hidden;
}
.constellation {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: .4;
  pointer-events: none;
}
.heritage-grid {
  position: relative; z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.eyebrow-glow {
  background: rgba(255, 201, 60, .15);
  color: var(--yellow);
  text-shadow: 0 0 12px rgba(255, 201, 60, .4);
}
.heritage-copy h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -.025em;
  margin: 14px 0 22px;
  background: linear-gradient(135deg, var(--cream), var(--yellow), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.heritage-copy h2 em { font-style: italic; font-weight: 500; -webkit-text-fill-color: var(--yellow); }
.heritage-copy > p { font-size: 17px; opacity: .85; max-width: 540px; margin-bottom: 14px; }
.heritage-quote {
  margin-top: 28px;
  padding: 22px 26px;
  border-left: 4px solid var(--pink);
  background: rgba(255,255,255,.04);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.heritage-quote p { font-family: var(--font-display); font-style: italic; font-size: 22px; margin: 0 0 6px; }
.heritage-quote cite { font-style: normal; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; opacity: .6; }
.heritage-counter {
  margin-top: 14px !important;
  font-family: var(--font-script) !important;
  font-style: normal !important;
  font-size: 28px !important;
  color: var(--yellow);
}
.heritage-sig { font-family: var(--font-body); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; opacity: .6; display: block; }

.heritage-figures {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.heritage-figures::before {
  content: '';
  position: absolute; inset: -2px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, transparent, rgba(255, 77, 139, .4), transparent);
  z-index: -1;
  opacity: .5;
}
.heritage-figures .eyebrow { background: rgba(255,201,60,.15); color: var(--yellow); }
.figure-list {
  list-style: none; padding: 0; margin: 18px 0 14px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px 18px;
}
.figure-list li {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  position: relative;
  padding-left: 14px;
  opacity: .92;
}
.figure-list li::before {
  content: '★';
  position: absolute; left: 0; top: 1px;
  color: var(--yellow);
  font-size: 10px;
}
.figure-foot { margin: 0; font-size: 13px; opacity: .6; font-style: italic; font-family: var(--font-script); font-size: 18px; }
@media (max-width: 800px) {
  .heritage-grid { grid-template-columns: 1fr; }
  .figure-list { grid-template-columns: 1fr; }
}

.bay-bridge {
  position: relative; z-index: 1;
  max-width: var(--container);
  margin: 56px auto 0;
  text-align: center;
}
.bay-bridge svg {
  width: 100%; max-height: 80px;
  color: var(--yellow);
  opacity: .5;
}
.bay-label {
  display: inline-block;
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream-2);
  opacity: .6;
}

/* ---------- CHAT FAB ---------- */
.chat-fab {
  position: fixed; right: 16px; bottom: 16px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  display: grid; place-items: center;
  box-shadow: 0 12px 32px rgba(199, 31, 94, .4), 0 0 0 0 rgba(255, 77, 139, .4);
  z-index: 70;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.chat-fab:hover { transform: scale(1.06); box-shadow: 0 16px 40px rgba(199, 31, 94, .5); }
.chat-fab-glow {
  position: absolute; inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--yellow), var(--mint), var(--pink));
  background-size: 300% 300%;
  animation: gradient-spin 6s linear infinite;
  z-index: -1;
  opacity: .7;
  filter: blur(6px);
}
.chat-fab-badge {
  position: absolute; top: -2px; right: -2px;
  min-width: 22px; height: 22px;
  background: var(--yellow); color: var(--ink);
  font-size: 11px; font-weight: 800;
  border-radius: var(--r-pill);
  padding: 0 6px;
  display: grid; place-items: center;
  border: 2px solid var(--paper);
  animation: pulse-fast 1.6s ease-in-out infinite;
}
@media (max-width: 700px) {
  .chat-fab { right: 12px; bottom: 84px; }
}

/* ---------- CHAT PANEL ---------- */
.chat-panel {
  position: fixed; right: 16px; bottom: 86px;
  width: 380px; max-width: calc(100vw - 32px);
  height: 580px; max-height: calc(100vh - 110px);
  background: var(--cream);
  border-radius: var(--r-lg);
  box-shadow: 0 32px 80px rgba(44,24,16,.3), 0 0 0 1px var(--line);
  display: flex; flex-direction: column;
  overflow: hidden;
  z-index: 80;
  animation: chat-in .3s ease;
}
@keyframes chat-in { from { opacity: 0; transform: translateY(20px) scale(.96); } to { opacity: 1; transform: none; } }
@media (max-width: 700px) {
  .chat-panel {
    inset: 0; right: 0; bottom: 0; left: 0;
    width: 100%; max-width: 100%;
    height: 100%; max-height: 100%;
    border-radius: 0;
  }
}

.chat-head {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--pink-deep), var(--pink));
  color: white;
}
.chat-avatar { position: relative; }
.chat-avatar svg { display: block; border-radius: 50%; box-shadow: 0 0 0 3px rgba(255,255,255,.3); }
.chat-online {
  position: absolute; right: -2px; bottom: -2px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--mint);
  border: 2px solid var(--pink-deep);
  box-shadow: 0 0 8px var(--mint);
}
.chat-id { flex: 1; line-height: 1.1; }
.chat-id strong { font-family: var(--font-display); font-size: 18px; font-weight: 800; display: block; }
.chat-id span { font-size: 11px; opacity: .85; }
.chat-close { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.15); font-size: 22px; color: white; line-height: 1; }
.chat-close:hover { background: rgba(255,255,255,.3); }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 201, 60, .08), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(127, 203, 164, .08), transparent 50%),
    var(--cream);
  display: flex; flex-direction: column; gap: 10px;
  scroll-behavior: smooth;
}
.chat-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.45;
  animation: msg-in .25s ease;
}
@keyframes msg-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.chat-msg.bot {
  background: var(--paper);
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.chat-msg.bot strong { color: var(--pink-deep); }
.chat-msg.user {
  background: var(--pink);
  color: white;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.chat-msg.typing {
  display: flex; gap: 3px;
  padding: 12px 16px;
}
.chat-msg.typing span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ink-mute);
  animation: typing 1.2s ease-in-out infinite;
}
.chat-msg.typing span:nth-child(2) { animation-delay: .15s; }
.chat-msg.typing span:nth-child(3) { animation-delay: .3s; }
@keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity: .5; } 30% { transform: translateY(-4px); opacity: 1; } }

.chat-msg .chat-cta {
  display: inline-block;
  margin-top: 8px;
  background: var(--ink);
  color: var(--cream);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.chat-msg .chat-cta:hover { background: var(--pink); }

.chat-quick {
  display: flex; gap: 6px; flex-wrap: wrap;
  padding: 0 14px 10px;
  background: var(--cream);
}
.chat-quick button {
  padding: 7px 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 12px;
  color: var(--ink);
  font-weight: 600;
  transition: all .15s ease;
}
.chat-quick button:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.chat-input {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.chat-input input {
  flex: 1;
  font: inherit;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--cream);
  font-size: 14px;
}
.chat-input input:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(255,77,139,.15); }
.chat-input button {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--pink);
  color: white;
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background .15s ease, transform .15s ease;
}
.chat-input button:hover { background: var(--pink-deep); transform: scale(1.08); }
.chat-foot {
  font-size: 11px;
  color: var(--ink-mute);
  text-align: center;
  padding: 6px 14px 10px;
  margin: 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.chat-foot a { color: var(--pink); font-weight: 600; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
