/* ============================================================
   THE BUTTERCREAM FLORIST — styles.css  (v2 "champagne" revamp)
   Charcoal base · rose/blush beam hero · photo-led cards (v3 moodboard)
   No libraries, no images in CSS beyond tiny inline SVG tiles.
   ============================================================ */

:root {
  /* palette — charcoal darks, rose red / blush / peach / sage (brand moodboard) */
  --bg: #161314;
  --bg-2: #1e1a1b;
  --bg-3: #262021;
  --ink: #f8f1e4;
  --muted: #b8a9a6;
  --line: rgba(248, 241, 228, 0.09);

  --rose: #e28b97;
  --rose-2: #f7b7c1;
  --rose-deep: #b71c1c;
  --rose-glow: rgba(226, 139, 151, 0.32);

  /* supporting naturals (photo-adjacent, used sparingly) */
  --peach: #ffc8a2;
  --sage: #699276;
  --cream: #fff7e6;

  --wa: #22c05e;
  --wa-2: #3ddb7c;

  /* fully-booked / red flag — warm brick red, on-palette (no harsh magenta) */
  --danger: #d0604a;
  --danger-2: #e2896f;
  --danger-glow: rgba(208, 96, 74, 0.28);

  /* glass */
  --glass: rgba(248, 241, 228, 0.045);
  --glass-2: rgba(248, 241, 228, 0.08);
  --glass-border: rgba(248, 241, 228, 0.15);
  --glass-border-soft: rgba(248, 241, 228, 0.08);

  /* type */
  --font-display: "Playfair Display", Georgia, serif;
  --font-sans: "Montserrat", "Segoe UI", sans-serif;
  --font-hand: "Great Vibes", cursive;

  /* motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.28s;
  --t-med: 0.6s;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--rose); color: #2b1216; }

h1, h2, h3 { font-weight: 500; line-height: 1.1; }

/* film grain — the whole site sits under a faint analog texture */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: soft-light;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-size: 0.66rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--rose-deep); }
.eyebrow.centered::after { content: ""; width: 26px; height: 1px; background: var(--rose-deep); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 3.3rem);
  letter-spacing: -0.01em;
  margin: 0.45em 0 0.35em;
}
.section-title em, .it { font-style: italic; color: var(--rose-2); }
.section-sub { color: var(--muted); max-width: 56ch; font-size: 0.98rem; }

/* handwritten aside — the baker's pencil notes */
.hand {
  font-family: var(--font-hand);
  font-size: 1.7rem;
  line-height: 1.3;
  color: var(--rose-2);
  transform: rotate(-1.6deg);
  display: inline-block;
}

.wrap { width: min(1180px, 92vw); margin-inline: auto; }
section { position: relative; padding: clamp(4.5rem, 9vw, 7.5rem) 0; }

svg.ic { width: 1em; height: 1em; flex: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95em 2.1em;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-fast) var(--ease-out), box-shadow var(--t-fast) ease,
    background var(--t-fast) ease, border-color var(--t-fast) ease, filter var(--t-fast) ease;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn-glass {
  color: var(--ink);
  background: linear-gradient(180deg, rgba(248, 241, 228, 0.12), rgba(248, 241, 228, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 14px 34px -14px rgba(0, 0, 0, 0.8);
}
.btn-glass::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 246, 224, 0.25), transparent);
  transform: skewX(-18deg);
  transition: left 0.65s var(--ease-out);
}
.btn-glass:hover { transform: translateY(-3px); border-color: rgba(248, 241, 228, 0.32); }
.btn-glass:hover::after { left: 130%; }
.btn-gold {
  color: #2b1216;
  background: linear-gradient(135deg, var(--rose-2) 0%, var(--rose) 55%, var(--rose-deep) 130%);
  border-color: transparent;
  font-weight: 600;
  box-shadow: 0 16px 38px -14px var(--rose-glow), inset 0 1px 0 rgba(255, 252, 240, 0.55);
}
.btn-gold:hover { transform: translateY(-3px); filter: brightness(1.06); box-shadow: 0 22px 46px -14px rgba(226, 139, 151, 0.5); }
.btn-wa {
  color: #04200e;
  background: linear-gradient(135deg, var(--wa-2), #1eb055);
  border-color: transparent;
  font-weight: 600;
  box-shadow: 0 14px 34px -12px rgba(34, 192, 94, 0.55);
}
.btn-wa:hover { transform: translateY(-3px); }
.btn[disabled] { opacity: 0.45; pointer-events: none; }

/* ---------- intro veil (home only, pure CSS, never blocks input) ---------- */
.veil {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: grid;
  place-items: center;
  background: #120f10;
  pointer-events: none;
  animation: veil-out 0.7s ease 1.15s forwards;
}
.veil .v-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  color: var(--rose-2);
  letter-spacing: 0.04em;
  animation: veil-name 1s var(--ease-out) both;
}
.veil .v-line {
  width: 0;
  height: 1px;
  margin: 0.9rem auto 0;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
  animation: veil-line 0.9s var(--ease-out) 0.25s forwards;
}
@keyframes veil-name { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes veil-line { to { width: min(240px, 50vw); } }
@keyframes veil-out { to { opacity: 0; visibility: hidden; } }

/* ---------- nav (glass pill) ---------- */
.nav {
  position: fixed;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 0.5rem 0.6rem 0.5rem 1.05rem;
  border-radius: 999px;
  background: rgba(28, 21, 23, 0.55);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid var(--glass-border-soft);
  box-shadow: 0 18px 44px -18px rgba(0, 0, 0, 0.85);
  transition: transform 0.5s var(--ease-out), background var(--t-fast) ease;
  white-space: nowrap;
}
.nav.hidden-up { transform: translate(-50%, -170%); }
.nav.scrolled { background: rgba(25, 19, 21, 0.85); }
.nav-logo { display: flex; align-items: center; gap: 0.65rem; }
.nav-logo .mark {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--rose-2);
  border: 1px solid rgba(226, 139, 151, 0.55);
  background: radial-gradient(120% 120% at 30% 20%, rgba(226, 139, 151, 0.22), transparent 60%);
}
.nav-logo .word { display: flex; flex-direction: column; line-height: 1.15; }
.nav-logo .word .nm { font-size: 0.8rem; letter-spacing: 0.06em; font-weight: 500; }
.nav-logo .word .nm em { font-family: var(--font-display); font-style: italic; color: var(--rose-2); }
.nav-logo .word .tg { font-size: 0.52rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  padding: 0.55em 1.1em;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--t-fast) ease, background var(--t-fast) ease;
}
.nav-links a:hover { color: var(--ink); background: rgba(248, 241, 228, 0.06); }
.nav-links a.active { color: var(--ink); background: rgba(248, 241, 228, 0.09); }
.nav-links a.nav-cta {
  color: #2b1216;
  background: linear-gradient(135deg, var(--rose-2), var(--rose) 70%);
  font-weight: 600;
}
.nav-links a.nav-cta:hover { filter: brightness(1.07); background: linear-gradient(135deg, var(--rose-2), var(--rose) 70%); color: #2b1216; }

/* ---------- WhatsApp FAB ---------- */
.wa-fab {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 800;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #04200e;
  background: linear-gradient(135deg, var(--wa-2), #1eb055);
  box-shadow: 0 12px 34px -8px rgba(34, 192, 94, 0.6);
  transition: transform var(--t-fast) var(--ease-out), box-shadow var(--t-fast) ease;
}
.wa-fab:hover { transform: translateY(-4px) scale(1.05); }
.wa-fab svg { width: 27px; height: 27px; }
.wa-fab::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(34, 192, 94, 0.55);
  animation: fab-pulse 2.6s var(--ease-out) infinite;
}
@keyframes fab-pulse {
  0% { transform: scale(0.85); opacity: 0.9; }
  70%, 100% { transform: scale(1.35); opacity: 0; }
}

/* ============================================================
   HERO — glass panel over a golden light beam (pure CSS,
   transform/opacity animation only: zero network, GPU-cheap)
   ============================================================ */
.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 7.5rem 0 6rem;
  overflow: hidden;
  isolation: isolate;
  background: radial-gradient(120% 90% at 50% 0%, #221a1c 0%, var(--bg) 55%);
}

/* the beam group drifts up & down */
.beam { position: absolute; inset: 0; z-index: -1; pointer-events: none; animation: beam-drift 11s ease-in-out infinite; will-change: transform; }
@keyframes beam-drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4.5vh); }
}
/* eclipse arc: a huge dark disc whose top edge glows champagne */
.beam-arc {
  position: absolute;
  left: 50%; top: 74%;
  width: 300vmax; height: 300vmax;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #0e0b0c;
  box-shadow:
    0 -6px 18px rgba(255, 242, 240, 0.75),
    0 -22px 52px rgba(247, 183, 193, 0.45),
    0 -58px 130px rgba(226, 139, 151, 0.3),
    0 -115px 250px rgba(183, 28, 28, 0.22);
}
/* twin flares: soft ivory left, warm amber right — all in the gold family */
.beam-flare {
  position: absolute;
  width: 58vw; height: 34vh;
  top: 62%;
  border-radius: 50%;
  opacity: 0.5;
  animation: flare-breathe 8s ease-in-out infinite;
}
.beam-flare.left {
  left: -14vw;
  background: radial-gradient(closest-side, rgba(255, 216, 200, 0.42), rgba(226, 139, 151, 0.13) 55%, transparent 72%);
}
.beam-flare.right {
  right: -14vw;
  background: radial-gradient(closest-side, rgba(226, 96, 112, 0.45), rgba(183, 28, 28, 0.16) 55%, transparent 72%);
  animation-delay: -4s;
}
@keyframes flare-breathe {
  0%, 100% { opacity: 0.34; transform: scale(1); }
  50% { opacity: 0.58; transform: scale(1.07); }
}
/* soft bloom at the apex of the arc */
.beam-bloom {
  position: absolute;
  left: 50%; top: 66%;
  width: 72vw; height: 22vh;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 240, 240, 0.38), transparent 70%);
  opacity: 0.55;
}

/* floating petals (tiny, cheap) */
.petal {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 60% 40% 55% 45%;
  background: linear-gradient(135deg, var(--rose-2), transparent 80%);
  opacity: 0.35;
  animation: petal-float 14s ease-in-out infinite;
}
.petal:nth-child(1) { left: 12%; top: 24%; animation-delay: 0s; }
.petal:nth-child(2) { left: 84%; top: 18%; animation-delay: -4s; background: linear-gradient(135deg, var(--cream), transparent 80%); }
.petal:nth-child(3) { left: 70%; top: 66%; animation-delay: -8s; background: linear-gradient(135deg, var(--peach), transparent 80%); }
.petal:nth-child(4) { left: 22%; top: 72%; animation-delay: -11s; background: linear-gradient(135deg, var(--sage), transparent 80%); }
@keyframes petal-float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(2.2vw, -3.5vh) rotate(120deg); }
  66% { transform: translate(-1.6vw, 2.5vh) rotate(260deg); }
}

/* the glass panel (double border) */
.hero-panel {
  position: relative;
  isolation: isolate;
  width: min(880px, 92vw);
  padding: clamp(2.8rem, 6vw, 5rem) clamp(1.4rem, 5vw, 4rem);
  text-align: center;
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(248, 241, 228, 0.05), rgba(248, 241, 228, 0.012));
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.9);
  animation: panel-in 1.1s var(--ease-out) backwards;
}
/* blur on its own layer behind content (Chromium text-compositing bug) */
.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}
.hero-panel::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(226, 139, 151, 0.16);
  border-radius: 3px;
  pointer-events: none;
}
@keyframes panel-in {
  from { opacity: 0; transform: translateY(34px) scale(0.985); }
  to { opacity: 1; transform: none; }
}

.hero-logo {
  display: block;
  width: min(235px, 58vw);
  height: auto;
  margin: 0 auto 1.1rem;
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(ellipse 95% 95% at 50% 50%, #000 55%, transparent 100%);
  mask-image: radial-gradient(ellipse 95% 95% at 50% 50%, #000 55%, transparent 100%);
  animation: rise-in 0.9s var(--ease-out) 0.15s both;
}
.hero-eyebrow {
  font-size: 0.64rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  animation: rise-in 0.9s var(--ease-out) 0.25s both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 5.6rem);
  font-weight: 550;
  letter-spacing: -0.015em;
  line-height: 1.04;
  margin: 0.35em 0 0.3em;
}
/* word-by-word rise — each word gets its own delay via --wd */
.hero-title .w {
  display: inline-block;
  animation: word-in 0.85s var(--ease-out) both;
  animation-delay: var(--wd, 0.4s);
}
@keyframes word-in {
  from { opacity: 0; transform: translateY(0.55em) rotate(1.2deg); }
  to { opacity: 1; transform: none; }
}
.hero-title .bloom-word {
  font-style: italic;
  background: linear-gradient(100deg, var(--rose-deep) 5%, var(--rose-2) 45%, var(--rose) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 100%;
  animation: word-in 0.85s var(--ease-out) both, sheen 8s ease-in-out 1.6s infinite;
  animation-delay: var(--wd, 0.4s), 1.6s;
}
@keyframes sheen {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero-sub {
  max-width: 54ch;
  margin-inline: auto;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  animation: rise-in 0.9s var(--ease-out) 0.85s both;
}
.hero-note {
  margin-top: 1.3rem;
  animation: rise-in 0.9s var(--ease-out) 1s both;
}
.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  margin-top: 1.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: #8fb59b;
  animation: rise-in 0.9s var(--ease-out) 1.1s both;
}
.hero-status .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 3px rgba(105, 146, 118, 0.3);
  animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(105, 146, 118, 0.3); }
  50% { box-shadow: 0 0 0 7px rgba(105, 146, 118, 0.06); }
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.7rem;
  animation: rise-in 0.9s var(--ease-out) 1.25s both;
}
@keyframes rise-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

.scroll-cue {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.58rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
  animation: rise-in 1s var(--ease-out) 1.6s backwards;
}
.scroll-cue::after {
  content: "";
  width: 1px; height: 34px;
  background: linear-gradient(var(--rose), transparent);
  animation: cue-drop 1.8s ease-in-out infinite;
}
@keyframes cue-drop {
  0% { transform: scaleY(0); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* piped buttercream edge — scalloped shells along the hero's hem */
.piped-edge {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 24px;
  z-index: 2;
  background: radial-gradient(circle 15px at 14px 26px, var(--bg-2) 96%, transparent);
  background-size: 28px 24px;
  background-repeat: repeat-x;
  pointer-events: none;
}

/* ---------- scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
  transition-delay: var(--d, 0s);
}
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- marquee ticker ---------- */
.ticker {
  overflow: hidden;
  border-block: 1px solid rgba(226, 139, 151, 0.18);
  padding: 1.05rem 0;
  background:
    repeating-linear-gradient(135deg, rgba(247, 183, 193, 0.05) 0 16px, rgba(247, 183, 193, 0) 16px 32px),
    var(--bg-2);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-run 32s linear infinite;
}
.ticker-track > span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 2.8rem;
  padding-right: 2.8rem;
  white-space: nowrap;
}
.ticker svg { width: 13px; height: 13px; color: var(--rose-deep); }
@keyframes ticker-run { to { transform: translateX(-50%); } }

/* ============================================================
   COLLECTION GLIMPSE — photo-led cards
   ============================================================ */
.glimpse-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.4rem; margin-bottom: 2.6rem; }
.glimpse-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}
.flavor-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--glass-border-soft);
  background: var(--bg-2);
  display: block;
  transition: transform 0.5s var(--ease-out), border-color 0.4s ease, box-shadow 0.5s ease;
}
.flavor-card:hover {
  transform: translateY(-10px);
  border-color: rgba(226, 139, 151, 0.4);
  box-shadow: 0 30px 60px -28px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(226, 139, 151, 0.12);
}
/* subtle alternating tilt so the shelf feels hand-set */
.glimpse-grid .flavor-card:nth-child(odd) { rotate: -0.5deg; }
.glimpse-grid .flavor-card:nth-child(even) { rotate: 0.45deg; }
.glimpse-grid .flavor-card:hover { rotate: 0deg; }

.flavor-media {
  position: relative;
  aspect-ratio: 4 / 4.4;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 10%, var(--ph-a, #33291d) 0%, var(--ph-b, #201812) 70%);
}
/* placeholder monogram (shown until a photo lands) */
.flavor-media .mono {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3.1rem;
  color: rgba(226, 139, 151, 0.5);
}
.flavor-media .mono::after {
  content: "photo coming soon";
  position: absolute;
  left: 0; right: 0; bottom: 12px;
  text-align: center;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.56rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(248, 241, 228, 0.4);
}
/* piped swirl watermark behind the monogram */
.flavor-media .mono::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e28b97' stroke-width='1.1' stroke-linecap='round'%3E%3Cpath d='M5.5 19.5h13M7 16h10M8.5 12.5h7M10.5 9h3M12 5.5v.01'/%3E%3C/svg%3E")
    center 42% / 4.4rem no-repeat;
  opacity: 0.16;
}
.flavor-media.has-img .mono { display: none; }
.flavor-media img {
  position: absolute;
  top: -7%; left: 0;
  width: 100%; height: 114%;
  object-fit: cover;
  transform: translate3d(0, var(--py, 0px), 0);
  transition: transform 0.9s var(--ease-out);
}
.flavor-card:hover .flavor-media img { transform: translate3d(0, var(--py, 0px), 0) scale(1.06); }
/* caption gradient over the photo's lower third */
.flavor-media::after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(180deg, transparent, rgba(16, 12, 13, 0.82));
  pointer-events: none;
}
.flavor-media .num {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 0.5em 1em;
  border-radius: 999px;
  color: var(--rose-2);
  background: rgba(16, 12, 13, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(226, 139, 151, 0.25);
}
.flavor-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 1.05rem 1.15rem 1.15rem;
}
.flavor-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}
.flavor-body h3 em { font-style: italic; color: var(--rose-2); }
.flavor-body p {
  color: rgba(248, 241, 228, 0.78);
  font-size: 0.78rem;
  line-height: 1.5;
  margin-top: 0.3rem;
  max-width: 24ch;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}
.flavor-body .arrow {
  flex: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--rose-2);
  border: 1px solid rgba(226, 139, 151, 0.45);
  background: rgba(16, 12, 13, 0.45);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: transform 0.4s var(--ease-out), background 0.3s ease, color 0.3s ease;
}
.flavor-body .arrow svg { width: 15px; height: 15px; }
.flavor-card:hover .arrow { transform: translateX(4px); background: var(--rose); color: #2b1216; }

/* per-card accent cycle — blush, peach, cream, sage (full moodboard) */
.glimpse-grid .flavor-card:nth-child(2) .num,
.glimpse-grid .flavor-card:nth-child(2) .arrow { color: #ffd9bd; border-color: rgba(255, 200, 162, 0.45); }
.glimpse-grid .flavor-card:nth-child(2):hover .arrow { background: var(--peach); color: #2b1216; }
.glimpse-grid .flavor-card:nth-child(3) .num,
.glimpse-grid .flavor-card:nth-child(3) .arrow { color: var(--cream); border-color: rgba(255, 247, 230, 0.4); }
.glimpse-grid .flavor-card:nth-child(3):hover .arrow { background: var(--cream); color: #2b1216; }
.glimpse-grid .flavor-card:nth-child(4) .num,
.glimpse-grid .flavor-card:nth-child(4) .arrow { color: #b9d8c2; border-color: rgba(105, 146, 118, 0.55); }
.glimpse-grid .flavor-card:nth-child(4):hover .arrow { background: #8fb59b; color: #2b1216; }

/* warm placeholder tints per flavour family (no pink, no purple) */
.fc-pista   { --ph-a: #303522; --ph-b: #191c12; }
.fc-choco   { --ph-a: #3a2a1c; --ph-b: #1c130c; }
.fc-straw   { --ph-a: #40251c; --ph-b: #1d110c; }
.fc-matcha  { --ph-a: #2c3620; --ph-b: #151a0f; }
.fc-lemon   { --ph-a: #423a1e; --ph-b: #1e1a0e; }
.fc-rasp    { --ph-a: #3e221a; --ph-b: #1c100b; }
.fc-ferrero { --ph-a: #38291a; --ph-b: #180f08; }
.fc-rasmalai{ --ph-a: #413621; --ph-b: #1d180e; }

/* ============================================================
   STORY — the baker's note
   ============================================================ */
.story { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%); text-align: center; }
.story-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.6vw, 4rem);
  line-height: 1.12;
  margin: 0.5em 0 0.4em;
}
.story-title .row { display: block; }
.story-copy { color: var(--muted); max-width: 58ch; margin: 0 auto; font-size: 1rem; }
.story .it { color: #a3c9af; }
.bakers-note {
  position: relative;
  width: min(560px, 92vw);
  margin: 3rem auto 0;
  padding: 2rem 2.2rem 1.8rem;
  border: 1px solid rgba(183, 28, 28, 0.16);
  border-radius: 4px;
  background: url("../images/texture-cream.webp") center / 260px repeat, #fff7e6;
  box-shadow: 0 22px 50px -22px rgba(0, 0, 0, 0.75);
  rotate: -0.8deg;
  text-align: left;
}
.bakers-note::before {
  /* washi tape */
  content: "";
  position: absolute;
  top: -12px; left: 50%;
  width: 92px; height: 24px;
  transform: translateX(-50%) rotate(-2deg);
  background: repeating-linear-gradient(90deg, rgba(247, 183, 193, 0.92) 0 9px, rgba(255, 247, 230, 0.92) 9px 18px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  border-left: 1px dashed rgba(16, 12, 13, 0.3);
  border-right: 1px dashed rgba(16, 12, 13, 0.3);
}
.bakers-note p { font-family: var(--font-hand); font-size: 1.8rem; line-height: 1.45; color: #45272c; transform: rotate(0.3deg); }
.bakers-note .sign { display: block; text-align: right; color: #b71c1c; margin-top: 0.4rem; font-size: 2rem; }

/* ---------- process strip ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
  text-align: left;
}
.step {
  position: relative;
  padding: 1.7rem 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--glass-border-soft);
  background: var(--glass);
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), border-color 0.35s ease;
}
.step:hover { transform: translateY(-8px); border-color: rgba(226, 139, 151, 0.35); }
.step .n {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.4rem;
  background: linear-gradient(135deg, var(--rose-2), var(--rose-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.step:nth-child(2) .n { background: linear-gradient(135deg, #ffd9bd, #e0956a); -webkit-background-clip: text; background-clip: text; }
.step:nth-child(3) .n { background: linear-gradient(135deg, #fff7e6, #e8cfa8); -webkit-background-clip: text; background-clip: text; }
.step:nth-child(4) .n { background: linear-gradient(135deg, #b9d8c2, #699276); -webkit-background-clip: text; background-clip: text; }
.step h3 { font-size: 1rem; margin: 0.65rem 0 0.4rem; font-weight: 600; letter-spacing: 0.02em; }
.step p { color: var(--muted); font-size: 0.84rem; }
.step::after {
  content: "";
  position: absolute;
  inset: auto -30% -55% -30%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(226, 139, 151, 0.13), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.step:hover::after { opacity: 1; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-top: 3rem;
}
.review {
  padding: 1.9rem 1.7rem;
  border-radius: 18px;
  border: 1px solid var(--glass-border-soft);
  background: linear-gradient(180deg, rgba(248, 241, 228, 0.05), rgba(248, 241, 228, 0.015));
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s ease, border-color 0.35s ease;
}
.review:nth-child(2) { rotate: 0.5deg; }
.review:nth-child(3) { rotate: -0.4deg; }
.review:hover { transform: translateY(-8px); rotate: 0deg; border-color: rgba(226, 139, 151, 0.3); box-shadow: 0 26px 60px -30px rgba(0, 0, 0, 0.9); }
.review .stars { display: flex; gap: 0.25em; color: var(--rose); }
.review .stars svg { width: 14px; height: 14px; }
.review blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 0.95rem 0 1.2rem;
  color: var(--ink);
}
.review .who { display: flex; align-items: center; gap: 0.8rem; }
.review .who .ava {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--rose-2);
  border: 1px solid rgba(226, 139, 151, 0.45);
  background: radial-gradient(120% 120% at 30% 20%, rgba(226, 139, 151, 0.2), transparent 65%);
}
.review:nth-child(2) .ava { color: #ffd9bd; border-color: rgba(255, 200, 162, 0.5); }
.review:nth-child(3) .ava { color: #b9d8c2; border-color: rgba(105, 146, 118, 0.55); }
.review .who b { display: block; font-size: 0.88rem; font-weight: 600; }
.review .who small { color: var(--muted); font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; }

/* ---------- WhatsApp banner ---------- */
.wa-banner {
  border-radius: 22px;
  border: 1px solid rgba(183, 28, 28, 0.35);
  background:
    radial-gradient(90% 160% at 12% 0%, rgba(61, 219, 124, 0.12), transparent 55%),
    radial-gradient(90% 160% at 88% 100%, rgba(255, 200, 162, 0.1), transparent 55%),
    linear-gradient(180deg, rgba(20, 14, 15, 0.52), rgba(20, 14, 15, 0.68)),
    url("../images/texture-velvet.webp") center / 380px repeat;
  padding: clamp(2.4rem, 6vw, 4rem);
  text-align: center;
}
.wa-banner .section-title { margin-top: 0.3em; }
.wa-banner .section-title em { color: #e0565f; }
.wa-banner p { color: var(--muted); max-width: 54ch; margin: 0 auto 1.8rem; }
.wa-banner .fine { font-size: 0.76rem; letter-spacing: 0.08em; color: var(--muted); margin-top: 1.2rem; }

/* ---------- footer ---------- */
footer {
  border-top: 1px solid rgba(226, 139, 151, 0.16);
  padding: 3.2rem 0 2.2rem;
  background:
    linear-gradient(rgba(18, 15, 16, 0.7), rgba(18, 15, 16, 0.8)),
    url("../images/pattern-roses.webp") center / 340px repeat;
}
.foot-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; margin-bottom: 2.4rem; }
.foot-brand { max-width: 36ch; }
.foot-brand .word { font-family: var(--font-display); font-size: 1.3rem; }
.foot-brand .word em { font-style: italic; color: var(--rose-2); }
.foot-brand p { color: var(--muted); font-size: 0.85rem; margin-top: 0.6rem; }
.foot-col h4 { font-size: 0.64rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.9rem; font-weight: 500; }
.foot-col a, .foot-col span { display: block; color: var(--muted); font-size: 0.86rem; padding: 0.22em 0; transition: color var(--t-fast) ease; }
.foot-col a:hover { color: var(--rose-2); }
.foot-base {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.8rem;
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
  font-size: 0.76rem;
  color: var(--muted);
}
.foot-base em { font-family: var(--font-display); font-style: italic; color: var(--rose-2); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 9.5rem 0 4.5rem;
  text-align: center;
  background: radial-gradient(120% 100% at 50% 0%, #221a1c 0%, var(--bg) 60%);
}
.page-hero .beam { opacity: 0.5; }
.page-hero .beam-arc { top: 122%; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.3rem, 5.4vw, 3.8rem); }
.page-hero h1 em { font-style: italic; color: var(--rose-2); }
.page-hero p { color: var(--muted); max-width: 58ch; margin: 1rem auto 0; }

/* ---------- choose (book now) — photo-led ---------- */
.choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.choose-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--glass-border-soft);
  min-height: clamp(300px, 42vw, 420px);
  display: flex;
  align-items: flex-end;
  transition: transform 0.5s var(--ease-out), border-color 0.4s ease, box-shadow 0.5s ease;
}
.choose-card:hover {
  transform: translateY(-9px);
  border-color: rgba(226, 139, 151, 0.45);
  box-shadow: 0 36px 80px -34px rgba(0, 0, 0, 0.95);
}
.choose-card img {
  position: absolute;
  top: -7%; left: 0;
  width: 100%; height: 114%;
  object-fit: cover;
  z-index: -2;
  transform: translate3d(0, var(--py, 0px), 0);
  transition: transform 0.9s var(--ease-out);
}
.choose-card:hover img { transform: translate3d(0, var(--py, 0px), 0) scale(1.05); }
.choose-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(200deg, rgba(16, 12, 13, 0.05) 30%, rgba(16, 12, 13, 0.88) 82%);
}
.choose-card .cc-num {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 0.55em 1.1em;
  border-radius: 999px;
  color: var(--rose-2);
  background: rgba(16, 12, 13, 0.5);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(226, 139, 151, 0.3);
}
.choose-card .cc-body { padding: 1.6rem 1.7rem 1.7rem; width: 100%; display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.choose-card h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 500; }
.choose-card h2 em { font-style: italic; color: var(--rose-2); }
.choose-card p { color: rgba(248, 241, 228, 0.8); font-size: 0.85rem; max-width: 34ch; margin-top: 0.4rem; }
.choose-card .arrow {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--rose-2);
  border: 1px solid rgba(226, 139, 151, 0.45);
  background: rgba(16, 12, 13, 0.45);
  transition: transform 0.4s var(--ease-out), background 0.3s ease, color 0.3s ease;
}
.choose-card .arrow svg { width: 17px; height: 17px; }
.choose-card:hover .arrow { transform: translateX(5px); background: var(--rose); color: #2b1216; }

/* ---------- menu pages ---------- */
.menu-note {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0 0 2.6rem;
  padding: 1rem 1.3rem;
  border-radius: 14px;
  border: 1px dashed rgba(226, 139, 151, 0.4);
  background: rgba(226, 139, 151, 0.05);
  color: var(--muted);
  font-size: 0.86rem;
}
.menu-note .spark { color: var(--rose); display: grid; place-items: center; }
.menu-note .spark svg { width: 20px; height: 20px; }
.menu-note b { color: var(--rose-2); font-weight: 500; }
.menu-note a { color: var(--rose-2); border-bottom: 1px dotted var(--rose-deep); }

.menu-cat {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin: 2.6rem 0 1.2rem;
}
.menu-cat:first-of-type { margin-top: 0; }
.menu-cat h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--rose-2);
  white-space: nowrap;
}
.menu-cat .rule { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(226, 139, 151, 0.35), transparent); }
#menuRoot .menu-cat:nth-child(8n+3) h2 { color: #ffd9bd; }
#menuRoot .menu-cat:nth-child(8n+3) .rule { background: linear-gradient(90deg, rgba(255, 200, 162, 0.4), transparent); }
#menuRoot .menu-cat:nth-child(8n+5) h2 { color: #b9d8c2; }
#menuRoot .menu-cat:nth-child(8n+5) .rule { background: linear-gradient(90deg, rgba(105, 146, 118, 0.5), transparent); }
#menuRoot .menu-cat:nth-child(8n+7) h2 { color: var(--cream); }
#menuRoot .menu-cat:nth-child(8n+7) .rule { background: linear-gradient(90deg, rgba(255, 247, 230, 0.35), transparent); }
.menu-cat small { font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.menu-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border-soft);
  background: var(--bg-2);
  text-align: left;
  color: var(--ink);
  padding: 0;
  transition: transform 0.4s var(--ease-out), border-color 0.3s ease, box-shadow 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
}
.menu-item:hover { transform: translateY(-7px); border-color: rgba(226, 139, 151, 0.4); }
.menu-item .flavor-media { aspect-ratio: 4 / 3.1; }
.menu-item .flavor-media::after { content: none; }
.menu-item .flavor-media .mono { font-size: 2.2rem; }
.menu-item .flavor-media .mono::before { background-size: 3.2rem; background-position: center 38%; }
.menu-item .flavor-media .mono::after { bottom: 8px; font-size: 0.5rem; letter-spacing: 0.24em; }
.menu-item .mi-body { padding: 0.85rem 1rem 1rem; }
.menu-item .mi-body h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; letter-spacing: 0.01em; }
.menu-item .mi-body small { color: var(--muted); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; }
.menu-item .tick {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 3;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #2b1216;
  background: linear-gradient(135deg, var(--rose-2), var(--rose));
  box-shadow: 0 6px 18px -6px rgba(226, 139, 151, 0.7);
  opacity: 0;
  transform: scale(0.4) rotate(-30deg);
  transition: opacity 0.3s ease, transform 0.45s var(--ease-out);
}
.menu-item .tick svg { width: 14px; height: 14px; }
.menu-item.selected {
  border-color: rgba(226, 139, 151, 0.75);
  box-shadow: 0 0 0 1.5px rgba(226, 139, 151, 0.55), 0 26px 60px -30px rgba(0, 0, 0, 0.9);
  transform: translateY(-7px);
}
.menu-item.selected .tick { opacity: 1; transform: scale(1) rotate(0deg); }
.menu-grid.locked .menu-item:not(.selected) { opacity: 0.4; filter: saturate(0.5); }
.menu-grid.locked .menu-item:not(.selected):hover { opacity: 0.75; transform: translateY(-3px); }

/* sticky continue bar */
.order-bar {
  position: fixed;
  left: 50%; bottom: 20px;
  transform: translate(-50%, 150%);
  z-index: 850;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.8rem 0.9rem 0.8rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(226, 139, 151, 0.35);
  background: rgba(25, 19, 21, 0.85);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.95);
  transition: transform 0.55s var(--ease-out);
  max-width: 92vw;
}
.order-bar.show { transform: translate(-50%, 0); }
.order-bar .label { font-size: 0.78rem; color: var(--muted); white-space: nowrap; }
.order-bar .label b { color: var(--rose-2); font-weight: 500; font-family: var(--font-display); font-style: italic; font-size: 0.95rem; letter-spacing: 0.02em; }
.order-bar .btn { padding: 0.75em 1.6em; font-size: 0.78rem; white-space: nowrap; }

/* ============================================================
   ORDER FORM
   ============================================================ */
.order-wrap { width: min(760px, 92vw); margin-inline: auto; }
.order-form {
  border-radius: 22px;
  border: 1px solid var(--glass-border-soft);
  background: linear-gradient(180deg, rgba(248, 241, 228, 0.045), rgba(248, 241, 228, 0.012));
  padding: clamp(1.8rem, 4.5vw, 3.2rem);
}
.base-chip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  padding: 1.05rem 1.3rem;
  margin-bottom: 2.2rem;
  border-radius: 14px;
  border: 1px solid rgba(105, 146, 118, 0.5);
  background: rgba(105, 146, 118, 0.08);
}
.base-chip .lock { color: #8fb59b; display: grid; place-items: center; }
.base-chip .lock svg { width: 20px; height: 20px; }
.base-chip .txt { font-size: 0.85rem; color: var(--muted); }
.base-chip .txt b { color: #b9d8c2; font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 1.1rem; letter-spacing: 0.02em; display: block; }
.base-chip a { margin-left: auto; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--rose); border-bottom: 1px dotted var(--rose-deep); padding-bottom: 2px; }

.fgroup { margin-bottom: 1.9rem; }
.fgroup > label, .fgroup > .glabel {
  display: block;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.65rem;
}
.fgroup input[type="text"], .fgroup input[type="tel"], .fgroup input[type="email"],
.fgroup input[type="date"], .fgroup select, .fgroup textarea {
  width: 100%;
  padding: 0.95em 1.1em;
  border-radius: 12px;
  border: 1px solid var(--glass-border-soft);
  background: rgba(248, 241, 228, 0.04);
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color var(--t-fast) ease, background var(--t-fast) ease, box-shadow var(--t-fast) ease;
}
.fgroup select option { background: var(--bg-2); color: var(--ink); }
.fgroup input:focus, .fgroup select:focus, .fgroup textarea:focus {
  outline: none;
  border-color: var(--rose);
  background-color: rgba(248, 241, 228, 0.06);
  box-shadow: 0 0 0 3px rgba(226, 139, 151, 0.18);
}
.fgroup input[type="date"] { color-scheme: dark; }
.fgroup textarea { min-height: 130px; resize: vertical; }

/* dropdowns — dressed as a house control: serif value, gold hairline,
   ringed chevron chip that fills gold on focus (same motif as card arrows) */
.fgroup select {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  color-scheme: dark;
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: 0.015em;
  border-color: rgba(226, 139, 151, 0.28);
  background-color: rgba(226, 139, 151, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 250, 235, 0.07);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28'%3E%3Ccircle cx='14' cy='14' r='13' fill='%23171310' fill-opacity='0.55' stroke='%23e28b97' stroke-opacity='0.5'/%3E%3Cpath d='M9.5 12.2l4.5 4.4 4.5-4.4' fill='none' stroke='%23e28b97' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.55em center;
  background-size: 30px;
  padding-right: 3.4em;
  transition: border-color var(--t-fast) ease, background-color var(--t-fast) ease,
    box-shadow var(--t-fast) ease;
}
.fgroup select:hover {
  border-color: rgba(226, 139, 151, 0.6);
  background-color: rgba(226, 139, 151, 0.08);
}
.fgroup select:focus {
  background-color: rgba(226, 139, 151, 0.07);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28'%3E%3Ccircle cx='14' cy='14' r='13' fill='%23e28b97' stroke='%23f7b7c1'/%3E%3Cpath d='M9.5 12.2l4.5 4.4 4.5-4.4' fill='none' stroke='%232b1216' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
/* still sitting on its "Select…" placeholder → quieter, sans, italic */
.fgroup select:has(option[value=""]:checked) {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-style: italic;
}
/* the native option list: dark panel, sans, no inherited serif italics */
.fgroup select option {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg-2);
}

/* helper row under a field: guidance left, live word count right */
.field-hint {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-top: 0.55rem;
  font-size: 0.73rem;
  line-height: 1.55;
  color: var(--muted);
}
.field-hint .wc { white-space: nowrap; letter-spacing: 0.06em; }
.field-hint .wc b { color: var(--rose-2); font-weight: 500; }
.field-hint .wc.over, .field-hint .wc.over b { color: #e08a6a; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.pills { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pills label { position: relative; }
.pills input { position: absolute; opacity: 0; pointer-events: none; }
.pills .pill {
  display: inline-block;
  padding: 0.62em 1.25em;
  border-radius: 999px;
  border: 1px solid var(--glass-border-soft);
  background: rgba(248, 241, 228, 0.035);
  font-size: 0.83rem;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--t-fast) ease;
  user-select: none;
}
.pills .pill:hover { border-color: rgba(226, 139, 151, 0.45); color: var(--ink); transform: translateY(-2px); }
.pills input:checked + .pill {
  color: #2b1216;
  background: linear-gradient(135deg, var(--rose-2), var(--rose));
  border-color: transparent;
  font-weight: 600;
}
.pills input:focus-visible + .pill { box-shadow: 0 0 0 3px rgba(226, 139, 151, 0.4); }

.order-submit { width: 100%; justify-content: center; padding: 1.15em 2em; font-size: 0.92rem; margin-top: 0.4rem; }
.form-note { text-align: center; font-size: 0.75rem; color: var(--muted); margin-top: 1.1rem; }

/* success overlay */
.success-veil {
  position: fixed;
  inset: 0;
  z-index: 950;
  display: grid;
  place-items: center;
  background: rgba(14, 10, 11, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.success-veil.show { opacity: 1; pointer-events: auto; }
.success-card {
  text-align: center;
  padding: 3rem 2.6rem;
  border-radius: 22px;
  border: 1px solid var(--glass-border);
  background: linear-gradient(180deg, rgba(248, 241, 228, 0.06), rgba(248, 241, 228, 0.02));
  width: min(430px, 90vw);
  transform: translateY(26px) scale(0.96);
  transition: transform 0.6s var(--ease-out);
}
.success-veil.show .success-card { transform: none; }
.success-card .ring {
  width: 76px; height: 76px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #2b1216;
  background: linear-gradient(135deg, var(--rose-2), var(--rose));
  box-shadow: 0 14px 40px -10px rgba(226, 139, 151, 0.55);
  animation: pop-in 0.7s var(--ease-out) 0.15s both;
}
.success-card .ring svg { width: 30px; height: 30px; }
@keyframes pop-in {
  0% { transform: scale(0); }
  70% { transform: scale(1.12); }
  100% { transform: scale(1); }
}
.success-card h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 0.5rem; }
.success-card p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.6rem; }

/* ============================================================
   BOOKING — mini calendar + fulfilment (pickup / delivery)
   ============================================================ */
.book-block {
  border-radius: 18px;
  border: 1px solid var(--glass-border-soft);
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(226, 139, 151, 0.06), transparent 60%),
    linear-gradient(180deg, rgba(248, 241, 228, 0.04), rgba(248, 241, 228, 0.012));
  padding: clamp(1.2rem, 3vw, 1.7rem);
}

/* ---- calendar ---- */
.calendar { position: relative; }
.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.cal-title {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.cal-title span { color: var(--rose-2); font-style: italic; }
.cal-nav { display: flex; gap: 0.45rem; }
.cal-nav button {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--rose-2);
  border: 1px solid rgba(226, 139, 151, 0.4);
  background: rgba(16, 12, 13, 0.4);
  transition: background var(--t-fast) ease, color var(--t-fast) ease,
    transform var(--t-fast) var(--ease-out), opacity var(--t-fast) ease;
}
.cal-nav button svg { width: 16px; height: 16px; }
.cal-nav button:hover:not(:disabled) { background: var(--rose); color: #2b1216; transform: translateY(-2px); }
.cal-nav button:disabled { opacity: 0.28; cursor: not-allowed; }

.cal-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}
.cal-dow span {
  text-align: center;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-deep);
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.4rem;
}
.cal-day {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: rgba(248, 241, 228, 0.04);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-variant-numeric: tabular-nums;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background var(--t-fast) ease, border-color var(--t-fast) ease,
    color var(--t-fast) ease, transform var(--t-fast) var(--ease-out), box-shadow var(--t-fast) ease;
}
.cal-day.is-blank { background: none; border: none; cursor: default; }
.cal-day.is-available:hover {
  border-color: rgba(226, 139, 151, 0.55);
  background: rgba(226, 139, 151, 0.1);
  transform: translateY(-2px);
}
.cal-day.is-muted {
  color: rgba(179, 164, 142, 0.4);
  background: rgba(248, 241, 228, 0.02);
  cursor: not-allowed;
}
/* fully booked → red flag */
.cal-day.is-booked {
  color: var(--danger-2);
  background: rgba(208, 96, 74, 0.1);
  border-color: rgba(208, 96, 74, 0.35);
  cursor: not-allowed;
}
.cal-day.is-booked::after {
  content: "";
  position: absolute;
  left: 22%; right: 22%; bottom: 6px;
  height: 2px;
  border-radius: 2px;
  background: var(--danger);
}
.cal-day.is-selected {
  color: #2b1216;
  font-weight: 600;
  background: linear-gradient(135deg, var(--rose-2), var(--rose));
  border-color: transparent;
  box-shadow: 0 10px 26px -10px var(--rose-glow);
  transform: translateY(-1px);
}
.cal-day.is-today:not(.is-selected)::before {
  content: "";
  position: absolute;
  top: 6px; right: 6px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rose);
}
.cal-day:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(226, 139, 151, 0.4); }

.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-top: 1rem;
  font-size: 0.72rem;
  color: var(--muted);
}
.cal-legend span { display: inline-flex; align-items: center; gap: 0.45em; }
.cal-legend i {
  width: 13px; height: 13px;
  border-radius: 4px;
  flex: none;
}
.cal-legend i.av { background: rgba(226, 139, 151, 0.16); border: 1px solid rgba(226, 139, 151, 0.5); }
.cal-legend i.sel { background: linear-gradient(135deg, var(--rose-2), var(--rose)); }
.cal-legend i.bk { background: rgba(208, 96, 74, 0.18); border: 1px solid rgba(208, 96, 74, 0.5); }

.cal-picked {
  margin-top: 1.1rem;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(105, 146, 118, 0.45);
  background: rgba(105, 146, 118, 0.07);
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.cal-picked svg { width: 17px; height: 17px; color: #8fb59b; flex: none; }
.cal-picked b { color: #b9d8c2; font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 1.02rem; }
.cal-loading { text-align: center; color: var(--muted); font-size: 0.8rem; padding: 0.6rem 0; }
.date-error {
  margin-top: 0.8rem;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(208, 96, 74, 0.4);
  background: rgba(208, 96, 74, 0.08);
  color: var(--danger-2);
  font-size: 0.82rem;
}

/* ---- fulfilment: segmented pickup / delivery ---- */
.segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.4rem;
  border-radius: 14px;
  border: 1px solid var(--glass-border-soft);
  background: rgba(16, 12, 13, 0.32);
}
.segmented label { position: relative; }
.segmented input { position: absolute; opacity: 0; pointer-events: none; }
.segmented .seg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 0.85em 1em;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--t-fast) ease;
}
.segmented .seg svg { width: 18px; height: 18px; }
.segmented .seg:hover { color: var(--ink); background: rgba(248, 241, 228, 0.04); }
.segmented input:checked + .seg {
  color: #2b1216;
  background: linear-gradient(135deg, var(--rose-2), var(--rose));
  box-shadow: 0 10px 24px -12px var(--rose-glow), inset 0 1px 0 rgba(255, 252, 240, 0.5);
}
.segmented input:focus-visible + .seg { box-shadow: 0 0 0 3px rgba(226, 139, 151, 0.4); }

/* reveal panel shared by pickup card + delivery address */
.fulfil-panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.5s var(--ease-out), opacity 0.4s ease, margin-top 0.4s ease;
}
.fulfil-panel.show { max-height: 420px; opacity: 1; margin-top: 1.1rem; }

.pickup-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.3rem;
  border-radius: 14px;
  border: 1px solid rgba(226, 139, 151, 0.28);
  background: rgba(226, 139, 151, 0.05);
}
.pickup-card .pin {
  width: 44px; height: 44px;
  border-radius: 50%;
  flex: none;
  display: grid; place-items: center;
  color: var(--rose-2);
  border: 1px solid rgba(226, 139, 151, 0.45);
  background: radial-gradient(120% 120% at 30% 20%, rgba(226, 139, 151, 0.2), transparent 65%);
}
.pickup-card .pin svg { width: 22px; height: 22px; }
.pickup-card .addr { flex: 1 1 220px; }
.pickup-card .addr .k { font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--rose); font-weight: 600; }
.pickup-card .addr .v { font-size: 0.9rem; color: var(--ink); margin-top: 0.2rem; line-height: 1.5; }
.pickup-card .maps-btn { flex: none; padding: 0.8em 1.4em; font-size: 0.8rem; }

.fulfil-panel .panel-label {
  display: block;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.65rem;
}

/* ============================================================
   PALETTE BLOBS — parallax colour accents (JS drives --py)
   ============================================================ */
.has-blobs { overflow: hidden; }
.has-blobs > .wrap { position: relative; z-index: 1; }
.blobs { position: absolute; inset: 0; pointer-events: none; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.32;
  transform: translate3d(0, var(--py, 0px), 0);
  will-change: transform;
}
.blob-rose  { background: radial-gradient(circle, rgba(183, 28, 28, 0.6), transparent 70%); }
.blob-blush { background: radial-gradient(circle, rgba(247, 183, 193, 0.5), transparent 70%); }
.blob-peach { background: radial-gradient(circle, rgba(255, 200, 162, 0.5), transparent 70%); }
.blob-sage  { background: radial-gradient(circle, rgba(105, 146, 118, 0.6), transparent 70%); }
@media (max-width: 640px) { .blob { filter: blur(46px); opacity: 0.42; } }

/* ============================================================
   BOLD PASS — moodboard colours & textures, turned up
   ============================================================ */
/* stronger colour blobs */
.blob { opacity: 0.55; filter: blur(58px); }

/* candy-stripe ribbon, clearly visible; separators cycle the palette */
.ticker {
  border-block: 1px solid rgba(226, 139, 151, 0.35);
  background:
    repeating-linear-gradient(135deg, rgba(247, 183, 193, 0.16) 0 18px, rgba(247, 183, 193, 0.02) 18px 36px),
    #1e1a1b;
}
.ticker-track > span { color: #e3d2d0; }
.ticker-track > span svg:nth-of-type(4n+1) { color: #e0566a; }
.ticker-track > span svg:nth-of-type(4n+2) { color: var(--peach); }
.ticker-track > span svg:nth-of-type(4n+3) { color: var(--rose-2); }
.ticker-track > span svg:nth-of-type(4n)   { color: #8fb59b; }

/* section colour identities — rose, peach, sage, mixed */
#cakes.has-blobs {
  background:
    radial-gradient(90% 70% at 88% 0%, rgba(183, 28, 28, 0.16), transparent 55%),
    linear-gradient(180deg, #1d1416 0%, var(--bg) 85%);
}
#cupcakes.has-blobs {
  background:
    radial-gradient(90% 70% at 10% 8%, rgba(255, 200, 162, 0.14), transparent 55%),
    linear-gradient(180deg, #211914 0%, var(--bg) 85%);
}
.story.has-blobs {
  background:
    radial-gradient(80% 80% at 82% 12%, rgba(105, 146, 118, 0.2), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, #1a231d 50%, var(--bg) 100%);
}
section.has-blobs:has(.reviews-grid) {
  background:
    radial-gradient(80% 60% at 8% 0%, rgba(255, 200, 162, 0.13), transparent 55%),
    radial-gradient(70% 55% at 94% 95%, rgba(247, 183, 193, 0.13), transparent 60%);
}

/* headline + eyebrow accents per section */
#cakes .section-title em { color: #ec7d8d; }
#cupcakes .section-title em { color: var(--peach); }
#cupcakes .eyebrow { color: #f2b48e; }
#cupcakes .eyebrow::before { background: #c98d66; }
.story .eyebrow { color: #a3c9af; }
.story .eyebrow::before, .story .eyebrow::after { background: #6f9a7d; }

/* per-card flavour-name accents */
.glimpse-grid .flavor-card:nth-child(2) h3 em { color: #ffd9bd; }
.glimpse-grid .flavor-card:nth-child(3) h3 em { color: var(--cream); }
.glimpse-grid .flavor-card:nth-child(4) h3 em { color: #b9d8c2; }

/* primary CTAs go full rose-red with cream text */
.btn-gold {
  color: var(--cream);
  background: linear-gradient(135deg, #d5455a 0%, #b71c1c 100%);
  box-shadow: 0 16px 38px -14px rgba(183, 28, 28, 0.6), inset 0 1px 0 rgba(255, 235, 235, 0.28);
}
.btn-gold:hover { filter: brightness(1.1); box-shadow: 0 22px 46px -14px rgba(183, 28, 28, 0.65); }
.nav-links a.nav-cta { color: var(--cream); background: linear-gradient(135deg, #d5455a, #b71c1c); }
.nav-links a.nav-cta:hover { filter: brightness(1.12); background: linear-gradient(135deg, #d5455a, #b71c1c); color: var(--cream); }
.success-card .ring { color: var(--cream); background: linear-gradient(135deg, #d5455a, #b71c1c); box-shadow: 0 14px 40px -10px rgba(183, 28, 28, 0.6); }

/* bigger, brighter floating petals */
.petal { width: 14px; height: 14px; opacity: 0.55; }

/* candy-striped edge on the kitchen notes */
.menu-note {
  padding-left: 1.9rem;
  background:
    repeating-linear-gradient(135deg, rgba(247, 183, 193, 0.9) 0 8px, rgba(255, 247, 230, 0.9) 8px 16px) left center / 8px 100% no-repeat,
    rgba(226, 139, 151, 0.07);
}

/* inner-page heroes: floral pattern glowing behind the beam */
.page-hero {
  background:
    linear-gradient(rgba(22, 19, 20, 0.86), rgba(22, 19, 20, 0.9)),
    url("../images/pattern-roses.webp") center / 320px repeat;
}

/* book page: second choose-card wears peach */
.choose-card:nth-child(2) .cc-num,
.choose-card:nth-child(2) .arrow { color: #ffd9bd; border-color: rgba(255, 200, 162, 0.5); }
.choose-card:nth-child(2):hover .arrow { background: var(--peach); color: #2b1216; }

/* ============================================================
   v4 CREAM & SAGE PASS — light theme everywhere below the hero.
   Heroes (home + inner pages) stay dark islands; the ticker and
   WhatsApp banner wear the red velvet texture; story + footer
   go sage green. Token flip first, then per-component repairs.
   ============================================================ */
:root {
  --bg: #fbf3df;
  --bg-2: #fffaf0;
  --bg-3: #f3e6cb;
  --ink: #2e1a1d;
  --muted: #6f5c56;
  --line: rgba(46, 26, 29, 0.14);
  --glass: rgba(255, 255, 255, 0.55);
  --glass-2: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(46, 26, 29, 0.18);
  --glass-border-soft: rgba(46, 26, 29, 0.1);
}

/* accents tuned for charcoal step down to legible roses on cream */
.eyebrow { color: var(--rose-deep); }
.section-title em, .it { color: #c1364a; }
.hand { color: #b3323f; }

/* glass buttons become frosted cream */
.btn-glass {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.45));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 14px 34px -14px rgba(46, 26, 29, 0.32);
}
.btn-glass:hover { border-color: rgba(46, 26, 29, 0.3); }

/* nav pill: cream glass on every page */
.nav {
  background: rgba(255, 247, 230, 0.78);
  border-color: rgba(46, 26, 29, 0.12);
  box-shadow: 0 18px 44px -18px rgba(46, 26, 29, 0.4);
}
.nav.scrolled { background: rgba(255, 249, 238, 0.94); }
.nav-links a:hover { color: var(--ink); background: rgba(46, 26, 29, 0.06); }
.nav-links a.active { color: var(--ink); background: rgba(46, 26, 29, 0.09); }
.nav-logo .mark {
  color: #b3323f;
  border-color: rgba(183, 28, 28, 0.4);
  background: radial-gradient(120% 120% at 30% 20%, rgba(226, 139, 151, 0.25), transparent 60%);
}
.nav-logo .word .nm em { color: #b3323f; }

/* ---- red velvet ribbon: the ticker under the hero ---- */
.ticker {
  border-block: 1px solid rgba(96, 12, 16, 0.6);
  background:
    repeating-linear-gradient(135deg, rgba(255, 247, 230, 0.13) 0 18px, rgba(255, 247, 230, 0.02) 18px 36px),
    linear-gradient(rgba(114, 15, 18, 0.42), rgba(84, 9, 12, 0.58)),
    url("../images/texture-velvet.webp") center / 380px repeat;
}
.ticker-track > span { color: #ffe9dc; }
.ticker-track > span svg:nth-of-type(4n+1) { color: #ffd9bd; }
.ticker-track > span svg:nth-of-type(4n+2) { color: var(--cream); }
.ticker-track > span svg:nth-of-type(4n+3) { color: var(--rose-2); }
.ticker-track > span svg:nth-of-type(4n)   { color: #b9d8c2; }
/* hero hem scallops bite into the velvet ribbon below */
.piped-edge {
  background: radial-gradient(circle 15px at 14px 26px, #641114 96%, transparent);
  background-size: 28px 24px;
  background-repeat: repeat-x;
}

/* ---- section washes on cream ---- */
#cakes.has-blobs {
  background:
    radial-gradient(90% 70% at 88% 0%, rgba(183, 28, 28, 0.08), transparent 55%),
    linear-gradient(180deg, #fdeee6 0%, var(--bg) 85%);
}
#cupcakes.has-blobs {
  background:
    radial-gradient(90% 70% at 10% 8%, rgba(255, 200, 162, 0.28), transparent 55%),
    linear-gradient(180deg, #fdf0dd 0%, var(--bg) 85%);
}
section.has-blobs:has(.reviews-grid) {
  background:
    radial-gradient(80% 60% at 8% 0%, rgba(255, 200, 162, 0.22), transparent 55%),
    radial-gradient(70% 55% at 94% 95%, rgba(247, 183, 193, 0.24), transparent 60%);
}
#cakes .section-title em { color: #c1364a; }
#cupcakes .section-title em { color: #c06a35; }
#cupcakes .eyebrow { color: #a95f30; }
#cupcakes .eyebrow::before { background: #a95f30; }

/* ---- story section goes deep sage ---- */
.story {
  --ink: #fff7e6;
  --muted: #dbe6dc;
  --line: rgba(255, 247, 230, 0.14);
  --glass: rgba(255, 247, 230, 0.07);
  --glass-2: rgba(255, 247, 230, 0.12);
  --glass-border: rgba(255, 247, 230, 0.22);
  --glass-border-soft: rgba(255, 247, 230, 0.14);
  color: var(--ink);
}
.story.has-blobs {
  background:
    radial-gradient(80% 80% at 82% 12%, rgba(255, 247, 230, 0.09), transparent 60%),
    linear-gradient(180deg, #547a62 0%, #43614e 55%, #50745e 100%);
}
.story .eyebrow { color: #cfe3d4; }
.story .eyebrow::before, .story .eyebrow::after { background: #a3c9af; }
.story .it { color: #cfe3d4; }

/* ---- reviews: white cards on the peach wash ---- */
.review {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.55));
  border-color: rgba(46, 26, 29, 0.1);
}
.review:hover { border-color: rgba(183, 28, 28, 0.3); box-shadow: 0 26px 60px -30px rgba(46, 26, 29, 0.35); }
.review .stars { color: #d5455a; }
.review .who .ava { color: #b3323f; border-color: rgba(183, 28, 28, 0.35); }
.review:nth-child(2) .ava { color: #c06a35; border-color: rgba(192, 106, 53, 0.4); }
.review:nth-child(3) .ava { color: #4f7a5e; border-color: rgba(79, 122, 94, 0.45); }

/* photo cards: soften the charcoal-era hover shadows */
.flavor-card:hover { box-shadow: 0 30px 60px -28px rgba(46, 26, 29, 0.4), 0 0 0 1px rgba(226, 139, 151, 0.2); }
.choose-card:hover { box-shadow: 0 36px 80px -34px rgba(46, 26, 29, 0.45); }
/* captions sit over photo scrims — keep them cream, not page ink */
.flavor-body h3, .choose-card h2 { color: #fff7e6; }

/* ---- WhatsApp banner: velvet uncovered ---- */
.wa-banner {
  --ink: #fff7e6;
  --muted: #f0d9cd;
  color: var(--ink);
  border: 1px solid rgba(84, 9, 12, 0.55);
  background:
    radial-gradient(90% 160% at 12% 0%, rgba(61, 219, 124, 0.1), transparent 55%),
    linear-gradient(180deg, rgba(84, 10, 13, 0.34), rgba(58, 6, 9, 0.52)),
    url("../images/texture-velvet.webp") center / 380px repeat;
  box-shadow: 0 34px 80px -36px rgba(114, 15, 18, 0.6);
}
.wa-banner .section-title em { color: var(--peach); }
.wa-banner .eyebrow { color: var(--rose-2); }
.wa-banner .eyebrow::before, .wa-banner .eyebrow.centered::after { background: rgba(255, 247, 230, 0.55); }

/* ---- footer goes deep sage over the rose pattern ---- */
footer {
  --ink: #fff7e6;
  --muted: #cfdcd2;
  --line: rgba(255, 247, 230, 0.16);
  color: var(--ink);
  border-top: 1px solid rgba(255, 247, 230, 0.14);
  background:
    linear-gradient(rgba(52, 74, 60, 0.9), rgba(43, 62, 50, 0.94)),
    url("../images/pattern-roses.webp") center / 340px repeat;
}
footer .foot-col h4 { color: var(--rose-2); }

/* ---- menu pages ---- */
.menu-note b, .menu-note a { color: #b3323f; }
.menu-note .spark { color: #b71c1c; }
.menu-cat h2 { color: #b3323f; }
.menu-cat .rule { background: linear-gradient(90deg, rgba(183, 28, 28, 0.35), transparent); }
#menuRoot .menu-cat:nth-child(8n+3) h2 { color: #b06531; }
#menuRoot .menu-cat:nth-child(8n+3) .rule { background: linear-gradient(90deg, rgba(176, 101, 49, 0.45), transparent); }
#menuRoot .menu-cat:nth-child(8n+5) h2 { color: #47705a; }
#menuRoot .menu-cat:nth-child(8n+5) .rule { background: linear-gradient(90deg, rgba(71, 112, 90, 0.5), transparent); }
#menuRoot .menu-cat:nth-child(8n+7) h2 { color: #9a7b3f; }
#menuRoot .menu-cat:nth-child(8n+7) .rule { background: linear-gradient(90deg, rgba(154, 123, 63, 0.45), transparent); }
.menu-item.selected {
  border-color: rgba(183, 28, 28, 0.55);
  box-shadow: 0 0 0 1.5px rgba(183, 28, 28, 0.45), 0 26px 60px -30px rgba(46, 26, 29, 0.35);
}
.order-bar {
  background: rgba(255, 247, 230, 0.92);
  border-color: rgba(183, 28, 28, 0.3);
  box-shadow: 0 24px 60px -20px rgba(46, 26, 29, 0.45);
}
.order-bar .label b { color: #b3323f; }

/* ---- order form ---- */
.order-form {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.4));
  box-shadow: 0 30px 70px -40px rgba(46, 26, 29, 0.3);
}
.base-chip { border-color: rgba(105, 146, 118, 0.55); background: rgba(105, 146, 118, 0.12); }
.base-chip .lock { color: #4f7a5e; }
.base-chip .txt b { color: #3c644c; }
.base-chip a { color: #b3323f; }
.fgroup > label, .fgroup > .glabel { color: #b3323f; }
.fgroup input[type="text"], .fgroup input[type="tel"], .fgroup input[type="email"],
.fgroup input[type="date"], .fgroup textarea {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(46, 26, 29, 0.16);
}
.fgroup input:focus, .fgroup select:focus, .fgroup textarea:focus {
  border-color: #c1364a;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 3px rgba(183, 28, 28, 0.12);
}
.fgroup input[type="date"] { color-scheme: light; }
.fgroup select {
  color-scheme: light;
  border-color: rgba(183, 28, 28, 0.3);
  background-color: rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28'%3E%3Ccircle cx='14' cy='14' r='13' fill='%23fff7e6' fill-opacity='0.92' stroke='%23b71c1c' stroke-opacity='0.45'/%3E%3Cpath d='M9.5 12.2l4.5 4.4 4.5-4.4' fill='none' stroke='%23b71c1c' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.fgroup select:hover { border-color: rgba(183, 28, 28, 0.55); background-color: rgba(255, 255, 255, 0.85); }
.fgroup select:focus {
  background-color: rgba(255, 255, 255, 0.9);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28'%3E%3Ccircle cx='14' cy='14' r='13' fill='%23b71c1c' stroke='%23d5455a'/%3E%3Cpath d='M9.5 12.2l4.5 4.4 4.5-4.4' fill='none' stroke='%23fff7e6' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.field-hint .wc b { color: #b3323f; }
.field-hint .wc.over, .field-hint .wc.over b { color: #b4532f; }
.pills .pill { background: rgba(255, 255, 255, 0.6); }
.pills .pill:hover { border-color: rgba(183, 28, 28, 0.4); }
.success-veil { background: rgba(46, 26, 29, 0.55); }
.success-card {
  background: linear-gradient(180deg, #fffdf6, #fdf3e0);
  border-color: rgba(46, 26, 29, 0.14);
  box-shadow: 0 40px 90px -40px rgba(46, 26, 29, 0.5);
}

/* ---- booking calendar + fulfilment ---- */
.book-block {
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(183, 28, 28, 0.05), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.4));
}
.cal-title span { color: #b3323f; }
.cal-nav button { color: #b3323f; border-color: rgba(183, 28, 28, 0.35); background: rgba(255, 255, 255, 0.6); }
.cal-day { background: rgba(46, 26, 29, 0.05); }
.cal-day.is-available:hover { border-color: rgba(183, 28, 28, 0.4); background: rgba(226, 139, 151, 0.18); }
.cal-day.is-muted { color: rgba(46, 26, 29, 0.32); background: rgba(46, 26, 29, 0.03); }
.cal-day.is-booked { color: #a83e24; background: rgba(208, 96, 74, 0.12); border-color: rgba(208, 96, 74, 0.45); }
.cal-legend i.av { background: rgba(226, 139, 151, 0.25); border-color: rgba(183, 28, 28, 0.4); }
.cal-picked { border-color: rgba(105, 146, 118, 0.55); background: rgba(105, 146, 118, 0.12); }
.cal-picked svg { color: #4f7a5e; }
.cal-picked b { color: #3c644c; }
.date-error { color: #a83e24; background: rgba(208, 96, 74, 0.1); }
.segmented { background: rgba(46, 26, 29, 0.06); }
.segmented .seg:hover { color: var(--ink); background: rgba(255, 255, 255, 0.6); }
.pickup-card { border-color: rgba(183, 28, 28, 0.3); background: rgba(255, 255, 255, 0.55); }
.pickup-card .pin { color: #b3323f; border-color: rgba(183, 28, 28, 0.4); }
.pickup-card .addr .k { color: #b3323f; }
.fulfil-panel .panel-label { color: #b3323f; }

/* ============================================================
   v5 CREAM HERO + MOTION PASS — heroes go cream daylight,
   reviews get a peach bed with strong parallax, the story's
   glow spots brighten and multiply, menus get ambient motion.
   ============================================================ */

/* ---- home hero: cream daylight, rose sunrise beam ---- */
.hero {
  background: radial-gradient(120% 90% at 50% 0%, #fff3da 0%, #fbf3df 55%);
}
.beam-arc {
  background: #fdeed9;
  box-shadow:
    0 -6px 18px rgba(213, 69, 90, 0.5),
    0 -22px 52px rgba(226, 139, 151, 0.5),
    0 -58px 130px rgba(247, 183, 193, 0.6),
    0 -115px 250px rgba(255, 200, 162, 0.55);
}
.beam-flare.left { background: radial-gradient(closest-side, rgba(255, 176, 122, 0.5), rgba(255, 200, 162, 0.16) 55%, transparent 72%); }
.beam-flare.right { background: radial-gradient(closest-side, rgba(213, 69, 90, 0.42), rgba(183, 28, 28, 0.12) 55%, transparent 72%); }
.beam-bloom { background: radial-gradient(closest-side, rgba(247, 183, 193, 0.55), transparent 70%); }
.petal { opacity: 0.75; }
.petal:nth-child(2) { background: linear-gradient(135deg, var(--rose), transparent 80%); }
.hero-panel {
  border-color: rgba(46, 26, 29, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.34));
  box-shadow: 0 40px 90px -40px rgba(46, 26, 29, 0.38);
}
.hero-panel::after { border-color: rgba(183, 28, 28, 0.2); }
.hero-logo {
  mix-blend-mode: normal;
  -webkit-mask-image: none;
  mask-image: none;
  filter: drop-shadow(0 10px 26px rgba(183, 28, 28, 0.2));
}
.hero-eyebrow { color: var(--rose-deep); }
.hero-title .bloom-word {
  background-image: linear-gradient(100deg, #8f1220 5%, #d5455a 45%, #c1364a 80%);
}
.hero-status { color: #47705a; }
.veil { background: #fff4dd; }
.veil .v-name { color: #b3323f; }

/* inner-page heroes: cream over the faint rose wallpaper */
.page-hero {
  background:
    linear-gradient(rgba(255, 247, 230, 0.9), rgba(251, 243, 223, 0.93)),
    url("../images/pattern-roses.webp") center / 320px repeat;
}
.page-hero h1 em { color: #c1364a; }
.page-hero .beam { opacity: 0.65; }

/* ---- reviews: peach bed + strong parallax ---- */
section.has-blobs:has(.reviews-grid) {
  background:
    radial-gradient(85% 70% at 10% 0%, rgba(255, 255, 255, 0.4), transparent 55%),
    radial-gradient(70% 55% at 94% 95%, rgba(247, 183, 193, 0.35), transparent 60%),
    linear-gradient(180deg, #ffd9b8 0%, #ffc8a2 55%, #fbd4b4 100%);
}
.reviews-grid .review { transform: translate3d(0, var(--py, 0px), 0); }
.reviews-grid .review:hover { transform: translate3d(0, var(--py, 0px), 0) translateY(-8px); }

/* ---- glow spots: cream blobs + brighter story ---- */
.blob-cream { background: radial-gradient(circle, rgba(255, 247, 230, 0.8), transparent 70%); }
.story .blob { opacity: 0.85; filter: blur(50px); }

/* ---- menu pages: ambient parallax + hand-set cards ---- */
.menu-grid .menu-item:nth-child(odd) { rotate: -0.4deg; }
.menu-grid .menu-item:nth-child(even) { rotate: 0.35deg; }
.menu-grid .menu-item:hover { rotate: 0deg; }
.menu-item:hover .flavor-media img { transform: translate3d(0, var(--py, 0px), 0) scale(1.08); }
@media (max-width: 640px) {
  .menu-grid .menu-item { rotate: 0deg; }
}

/* ============================================================
   v6 CART PASS — multi-bake orders (max 7) + little extras
   with quantities. House style: white rows, serif flavour
   names, rose accents, sage count chip (red at the cap).
   ============================================================ */
.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.65rem;
}
.cart-head .glabel { margin-bottom: 0; }
.cap-count {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #3c644c;
  padding: 0.35em 0.9em;
  border-radius: 999px;
  border: 1px solid rgba(105, 146, 118, 0.5);
  background: rgba(105, 146, 118, 0.12);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  transition: color var(--t-fast) ease, border-color var(--t-fast) ease, background var(--t-fast) ease;
}
.cap-count.at-cap { color: #a83e24; border-color: rgba(208, 96, 74, 0.5); background: rgba(208, 96, 74, 0.1); }

.cart { display: grid; gap: 0.6rem; }
.cart-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.75rem 0.9rem 0.75rem 1.05rem;
  border-radius: 14px;
  border: 1px solid rgba(46, 26, 29, 0.12);
  background: rgba(255, 255, 255, 0.65);
}
.cart-row .ci-ic { color: #b3323f; display: grid; place-items: center; flex: none; }
.cart-row .ci-ic svg { width: 20px; height: 20px; }
.cart-row .ci-txt { flex: 1; min-width: 0; }
.cart-row .ci-txt b {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.25;
}
.cart-row .ci-txt small { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.cart-empty {
  padding: 1rem 1.2rem;
  border-radius: 14px;
  border: 1px dashed rgba(183, 28, 28, 0.35);
  background: rgba(226, 139, 151, 0.06);
  font-size: 0.85rem;
  color: var(--muted);
}
.cart-empty a { color: #b3323f; border-bottom: 1px dotted var(--rose-deep); }
.cart-empty[hidden] { display: none; }
.cart-note {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: #a83e24;
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(208, 96, 74, 0.4);
  background: rgba(208, 96, 74, 0.08);
}

.stepper { display: flex; align-items: center; gap: 0.15rem; flex: none; }
.stepper .st-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #b3323f;
  border: 1px solid rgba(183, 28, 28, 0.35);
  background: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1;
  padding: 0;
  transition: background var(--t-fast) ease, color var(--t-fast) ease,
    transform var(--t-fast) var(--ease-out), opacity var(--t-fast) ease;
}
.stepper .st-btn:hover:not(:disabled) { background: var(--rose); color: #2b1216; transform: translateY(-1px); }
.stepper .st-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.stepper .st-qty { min-width: 2em; text-align: center; font-variant-numeric: tabular-nums; font-weight: 600; font-size: 0.95rem; }

.ci-remove {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--muted);
  border: 1px solid transparent;
  background: none;
  padding: 0;
  transition: color var(--t-fast) ease, border-color var(--t-fast) ease, background var(--t-fast) ease;
}
.ci-remove:hover { color: #a83e24; border-color: rgba(208, 96, 74, 0.45); background: rgba(208, 96, 74, 0.08); }
.ci-remove svg { width: 14px; height: 14px; }

.add-bake { margin-top: 0.9rem; font-size: 0.8rem; padding: 0.8em 1.5em; }
.add-bake[disabled], .add-bake.is-disabled { opacity: 0.45; pointer-events: none; }

/* "order so far" strip — shown on the book + menu pages */
.cart-summary {
  margin: 0 0 2.4rem;
  padding: 1.1rem 1.3rem;
  border-radius: 16px;
  border: 1px solid rgba(105, 146, 118, 0.5);
  background: rgba(105, 146, 118, 0.1);
}
.cart-summary[hidden] { display: none; }
.cart-summary .sum-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}
.cart-summary .sum-title {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #3c644c;
}
.cart-summary .sum-count {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #3c644c;
  padding: 0.32em 0.9em;
  border-radius: 999px;
  border: 1px solid rgba(105, 146, 118, 0.5);
  background: rgba(255, 255, 255, 0.55);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.cart-summary .sum-count.at-cap { color: #a83e24; border-color: rgba(208, 96, 74, 0.5); background: rgba(208, 96, 74, 0.12); }
.cart-summary .sum-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cart-summary .sum-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45em;
  padding: 0.45em 0.95em;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(46, 26, 29, 0.1);
}
.cart-summary .sum-chip b {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--ink);
}
.cart-summary .sum-chip small { font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.cart-summary .sum-foot { margin-top: 0.9rem; font-size: 0.8rem; color: var(--muted); }
.cart-summary .sum-foot a { color: #b3323f; border-bottom: 1px dotted var(--rose-deep); }
.bake-picker {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(183, 28, 28, 0.25);
  background: rgba(255, 255, 255, 0.55);
}
.bake-picker[hidden] { display: none; }
.bake-picker .btn { justify-content: center; font-size: 0.8rem; padding: 0.85em 1.4em; }

.extras { display: grid; gap: 0.55rem; }
.extra-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.6rem 0.9rem 0.6rem 1.05rem;
  border-radius: 12px;
  border: 1px solid rgba(46, 26, 29, 0.1);
  background: rgba(255, 255, 255, 0.5);
  transition: border-color var(--t-fast) ease, background var(--t-fast) ease;
}
.extra-row .xr-name { flex: 1; font-size: 0.88rem; color: var(--muted); transition: color var(--t-fast) ease; }
.extra-row.picked { border-color: rgba(105, 146, 118, 0.55); background: rgba(105, 146, 118, 0.1); }
.extra-row.picked .xr-name { color: var(--ink); font-weight: 500; }
.extra-row.picked .st-qty { color: #3c644c; }

@media (max-width: 640px) {
  .cart-row { gap: 0.55rem; padding: 0.7rem 0.7rem 0.7rem 0.85rem; }
  .cart-row .ci-txt b { font-size: 0.98rem; }
  .stepper .st-btn { width: 34px; height: 34px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1020px) {
  .glimpse-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav { gap: 0.4rem; padding-left: 0.8rem; top: 12px; }
  .nav-logo .word { display: none; }
  .nav-links a { padding: 0.5em 0.85em; font-size: 0.66rem; }
  .glimpse-grid { grid-template-columns: 1fr; }
  .glimpse-grid .flavor-card { rotate: 0deg; }
  .menu-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .steps, .reviews-grid, .choose-grid, .frow { grid-template-columns: 1fr; }
  .review, .review:nth-child(2), .review:nth-child(3) { rotate: 0deg; }
  .order-bar { width: 92vw; justify-content: space-between; gap: 0.7rem; padding-left: 1.1rem; }
  .order-bar .label { font-size: 0.72rem; }
  .wa-fab { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .beam-flare { width: 90vw; }
  .bakers-note { rotate: 0deg; }
  .cal-day { min-height: 40px; font-size: 0.88rem; }
  .cal-grid, .cal-dow { gap: 0.3rem; }
  .pickup-card { flex-direction: column; align-items: flex-start; }
  .pickup-card .maps-btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.001s !important; }
  html { scroll-behavior: auto; }
  .veil { display: none; }
}
