:root {
  /* ---- Sunlit citrus & bloom palette ---- */
  --cream: #FFF8E4;        /* base bg, lightened Vanilla Custard */
  --cream-2: #FCE9AB;      /* Vanilla Custard — card bg */
  --cream-3: #F3DFAE;      /* Cherimoya — deeper card / borders */

  --sun: #FC8A2D;          /* Princeton Orange — primary CTA */
  --sun-deep: #E07417;     /* darker orange for hover/press */
  --tomato: #C42B34;       /* Tomato Jam — headline pop, hot drinks */
  --rose: #DC4F7C;         /* Blush Rose — badges, loyalty */
  --mango: #EAA93F;        /* Tropical Mango — build-a-drink */
  --banana: #EFCC60;       /* Banana Yellow — highlights */
  --guava: #EC7762;        /* Pink Guava — warm accents */
  --kiwi: #A9AC55;         /* Kiwi Green, deepened for contrast — cold drinks / subscription */
  --olive: #7C7818;        /* Olive, deepened for legible text-on-cream use */

  --gold: #D6A853;         /* kept from base palette */
  --peach: #E8C2A0;        /* kept from base palette */
  --slate: #5C8299;        /* kept from base palette — cool "shade" accent */

  --ink: #4A2A1E;          /* primary text — warm deep brown, not navy */
  --ink-soft: #8A5A3E;     /* secondary text, warm and soft */
  --white: #FFFFFF;

  --font-display: 'Playfair Display', serif;
  --font-body: 'Karla', sans-serif;
}

body.dark-mode {
  --cream: #24140F;
  --cream-2: #331D14;
  --cream-3: #402619;

  --sun: #FFA94D;
  --sun-deep: #FF9327;
  --tomato: #FF7A72;
  --rose: #FF8FAE;
  --mango: #FFC670;
  --banana: #FFE08A;
  --guava: #FFA48F;
  --kiwi: #D7D77E;
  --olive: #C7C468;

  --gold: #FFD48A;
  --peach: #F0C9A0;
  --slate: #86ADC2;

  --ink: #FBEEDD;
  --ink-soft: #E3B98D;
  --white: #331D14;
}

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

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
  transition: background 0.5s ease, color 0.5s ease;
  cursor: none;
}

body.loading { overflow: hidden; height: 100vh; }

a { color: inherit; text-decoration: none; }
::selection { background: var(--sun); color: var(--white); }
:focus-visible { outline: 2px solid var(--sun); outline-offset: 3px; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

/* ---------- LOADING SCREEN ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), visibility 0.7s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  position: relative;
  z-index: 1;
}

.loader-sun {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, var(--sun) 0deg 18deg, var(--banana) 18deg 36deg, var(--guava) 36deg 54deg, var(--kiwi) 54deg 72deg);
  filter: blur(60px) saturate(150%);
  opacity: 0.5;
  z-index: -1;
  animation: sun-spin 20s linear infinite;
}

.loader-cup {
  position: relative;
  width: 110px;
  height: 96px;
}

.loader-cup-svg { width: 100%; height: 100%; overflow: visible; }

.cup-outline {
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.5;
}

.cup-handle {
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.5;
}

.cup-fill {
  fill: var(--sun);
  transition: y 0.25s ease-out, height 0.25s ease-out;
}

.loader-steam {
  position: absolute;
  top: -6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rose);
  animation: steam-rise 2.6s ease-in-out infinite;
}
.loader-steam.s1 { left: 34px; animation-delay: 0s; background: var(--tomato); }
.loader-steam.s2 { left: 55px; animation-delay: 0.7s; background: var(--sun); }
.loader-steam.s3 { left: 76px; animation-delay: 1.4s; background: var(--rose); }

@keyframes steam-rise {
  0%   { transform: translate(0,0) scale(0.6); opacity: 0; }
  20%  { opacity: 0.85; }
  100% { transform: translate(6px,-46px) scale(1.4); opacity: 0; }
}

.loader-word {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.loader-word span { color: var(--tomato); font-style: italic; }

.loader-percent {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
}

/* ---------- HERO ENTRANCE (staggered once loader clears) ---------- */
.hero-eyebrow, .hero h1, .hero p, .hero-actions, .weather-strip {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
}

body.loaded .hero-eyebrow  { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
body.loaded .hero h1       { opacity: 1; transform: translateY(0); transition-delay: 0.18s; }
body.loaded .hero p        { opacity: 1; transform: translateY(0); transition-delay: 0.32s; }
body.loaded .hero-actions  { opacity: 1; transform: translateY(0); transition-delay: 0.46s; }
body.loaded .weather-strip { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }

/* ---------- CUSTOM CURSOR + SPOTLIGHT ---------- */
.cursor-dot, .cursor-ring, .spotlight {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  top: 0; left: 0;
  will-change: transform;
}

.cursor-dot {
  width: 6px; height: 6px;
  background: var(--tomato);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: background 0.4s ease;
}

.cursor-ring {
  width: 32px; height: 32px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.25s cubic-bezier(0.16,1,0.3,1), height 0.25s cubic-bezier(0.16,1,0.3,1);
}

/* The spinning citrus-gradient ring lives on pseudo-elements so its own
   rotation animation never fights with the JS-driven position transform
   set directly on .cursor-ring. */
.cursor-ring::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--sun), var(--rose), var(--kiwi), var(--banana), var(--sun));
  animation: ring-spin 5s linear infinite;
}

.cursor-ring::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: var(--cream);
  transition: background 0.5s ease;
}

.cursor-ring.hover {
  width: 54px; height: 54px;
}

.cursor-ring.hover::after {
  background: rgba(255, 248, 228, 0.25);
}

.spotlight {
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252, 138, 45, 0.14) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 1;
}

@keyframes ring-spin {
  to { transform: rotate(360deg); }
}

@media (hover: none) {
  .cursor-dot, .cursor-ring, .spotlight { display: none; }
  body { cursor: auto; }
}

/* ---------- MARQUEE TICKER ---------- */
.marquee {
  position: relative;
  z-index: 5;
  background: var(--tomato);
  color: var(--cream-2);
  overflow: hidden;
  padding: 12px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 26s linear infinite;
}

.marquee-item {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 0 28px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 28px;
}

.marquee-item::after {
  content: '☀';
  font-style: normal;
  color: var(--banana);
  font-size: 0.9rem;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- NAV ---------- */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 248, 228, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(196, 43, 52, 0.15);
  transition: background 0.5s ease;
}

body.dark-mode header { background: rgba(36, 20, 15, 0.88); }

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  max-width: 1180px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.logo span { color: var(--tomato); font-style: italic; }

.nav-links { display: flex; gap: 36px; list-style: none; }

.nav-links a {
  font-size: 0.85rem;
  color: var(--ink-soft);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover { color: var(--tomato); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--sun);
  transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }

.moon-toggle {
  background: none;
  border: none;
  color: var(--slate);
  cursor: none;
  padding: 8px;
  transition: color 0.3s ease, transform 0.4s ease;
  margin-left: 20px;
}

.moon-toggle:hover { color: var(--rose); transform: rotate(-20deg); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 8px;
  z-index: 101;
}

.hamburger span {
  width: 24px; height: 1.5px;
  background: var(--ink);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 140px 32px 100px;
  overflow: hidden;
}

.hero-sun {
  position: absolute;
  width: 900px; height: 900px;
  top: -320px;
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, var(--sun) 0deg 18deg, var(--banana) 18deg 36deg, var(--guava) 36deg 54deg, var(--kiwi) 54deg 72deg, var(--rose) 72deg 90deg);
  filter: blur(100px) saturate(150%);
  opacity: 0.4;
  z-index: 0;
  animation: sun-spin 50s linear infinite;
}

@keyframes sun-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.4;
  z-index: 0;
  animation: blob-drift 16s ease-in-out infinite;
}

.blob-1 { width: 300px; height: 300px; background: var(--rose); bottom: -60px; left: -40px; animation-delay: 0s; }
.blob-2 { width: 260px; height: 260px; background: var(--kiwi); bottom: -80px; right: -20px; animation-delay: -6s; }

@keyframes blob-drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(30px,-24px) scale(1.08); }
  66%      { transform: translate(-24px,20px) scale(0.95); }
}

.hero-content { max-width: 700px; position: relative; z-index: 1; }

.hero-eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tomato);
  display: block;
  margin-bottom: 22px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1.05;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(100deg, var(--tomato), var(--sun) 55%, var(--rose));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  margin: 26px auto 0;
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 520px;
  line-height: 1.65;
  font-weight: 300;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(120deg, var(--sun), var(--tomato));
  color: var(--white);
  padding: 15px 32px;
  font-size: 0.88rem;
  border-radius: 40px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: none;
  box-shadow: 0 10px 24px -10px rgba(196, 43, 52, 0.45);
}

.btn-primary:hover {
  background: var(--cream);
  color: var(--tomato);
  border-color: var(--tomato);
  box-shadow: 0 6px 16px -8px rgba(196, 43, 52, 0.3);
}

.btn-text {
  font-size: 0.9rem;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
  background: none;
  border: none;
  cursor: none;
}

.btn-text:hover { color: var(--tomato); }

.weather-strip {
  margin-top: 56px;
  background: var(--cream-2);
  border: 1px solid rgba(196, 43, 52, 0.22);
  border-radius: 40px;
  padding: 12px 26px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.weather-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sun);
  flex-shrink: 0;
  animation: pulse-dot 2.2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(252, 138, 45, 0.5); }
  50%      { box-shadow: 0 0 0 5px rgba(252, 138, 45, 0); }
}

/* ---------- SECTION SHARED ---------- */
section { padding: 120px 0; position: relative; }

.section-head { margin-bottom: 50px; text-align: center; }

.section-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent, var(--tomato));
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
}

#menu         { --accent: var(--rose); }
#build        { --accent: var(--mango); }
#subscription { --accent: var(--kiwi); }
#loyalty      { --accent: var(--tomato); }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- MENU ---------- */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 50px;
}

.menu-tab {
  background: none;
  border: 1.5px solid rgba(196, 43, 52, 0.3);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 10px 24px;
  border-radius: 30px;
  cursor: none;
  transition: all 0.3s ease;
}

.menu-tab.active { background: var(--tomato); color: var(--white); border-color: var(--tomato); }
.menu-tab.active[data-cat="cold"] { background: var(--kiwi); border-color: var(--kiwi); }
.menu-tab.active[data-cat="food"] { background: var(--mango); border-color: var(--mango); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.menu-card {
  background: var(--cream-2);
  border: 1px solid rgba(196, 43, 52, 0.14);
  border-top: 4px solid var(--card-accent, var(--tomato));
  border-radius: 18px;
  padding: 34px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease;
  animation: card-float 6s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * -0.9s);
}

.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 40px -20px rgba(74, 42, 30, 0.25);
}

@keyframes card-float {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -8px; }
}

@media (prefers-reduced-motion: reduce) {
  .menu-card { animation: none; }
}

.menu-card-icon {
  font-size: 2.6rem;
  display: inline-block;
  margin-bottom: 18px;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.menu-card:hover .menu-card-icon { transform: rotate(18deg) scale(1.1); }

.menu-card-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.menu-card-desc {
  font-size: 0.85rem;
  color: var(--ink-soft);
  min-height: 40px;
}

.menu-card-price {
  margin-top: 16px;
  font-family: var(--font-display);
  color: var(--card-accent, var(--tomato));
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.menu-card:hover .menu-card-price { opacity: 1; transform: translateY(0); }

/* ---------- BUILD YOUR DRINK ---------- */
.build-wrap {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
  background: var(--cream-2);
  border-radius: 24px;
  padding: 50px;
}

.build-preview {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 900px;
}

.cup-card {
  position: relative;
  width: 100%;
  max-width: 240px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 30px 60px -30px rgba(196, 43, 52, 0.3);
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
  transform-style: preserve-3d;
}

.cup-card:hover {
  box-shadow: 0 40px 70px -28px rgba(196, 43, 52, 0.4);
}

.cup-illustration {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: opacity 0.35s ease;
}

.cup-illustration.fade { opacity: 0; }

.cup-tint {
  position: absolute;
  inset: 0;
  mix-blend-mode: soft-light;
  opacity: 0.6;
  transition: background 0.4s ease, opacity 0.4s ease;
  pointer-events: none;
}

.cup-card-label {
  position: absolute;
  left: 14px; bottom: 14px;
  background: rgba(255, 248, 228, 0.9);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.95rem;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: capitalize;
}

.build-row { margin-bottom: 26px; }

.build-row label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  margin-bottom: 10px;
  display: block;
}

.pill-group { display: flex; flex-wrap: wrap; gap: 10px; }

.pill {
  background: var(--white);
  border: 1px solid rgba(196, 43, 52, 0.25);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 0.82rem;
  padding: 9px 18px;
  border-radius: 20px;
  cursor: none;
  transition: all 0.25s ease;
}

.pill:hover { border-color: var(--tomato); color: var(--ink); }

.pill.active { color: var(--white); border-color: transparent; }
.pill-group[data-group="coffee"] .pill.active { background: var(--tomato); box-shadow: 0 6px 14px -6px rgba(196,43,52,0.5); }
.pill-group[data-group="milk"] .pill.active   { background: var(--kiwi);  box-shadow: 0 6px 14px -6px rgba(169,172,85,0.5); }
.pill-group[data-group="syrup"] .pill.active  { background: var(--rose);  box-shadow: 0 6px 14px -6px rgba(220,79,124,0.5); }
.pill-group[data-group="size"] .pill.active   { background: var(--mango); box-shadow: 0 6px 14px -6px rgba(234,169,63,0.5); }
.pill-group[data-sub] .pill.active { background: var(--kiwi); color: var(--white); border-color: transparent; }

.build-summary {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(196, 43, 52, 0.2);
}

.build-summary-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.build-summary-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ink);
  transition: color 0.3s ease;
}

.build-summary-value.pulse { animation: value-pulse 0.4s ease; }

@keyframes value-pulse {
  0%   { transform: scale(1); color: var(--sun); }
  50%  { transform: scale(1.12); color: var(--tomato); }
  100% { transform: scale(1); color: var(--ink); }
}

/* ---------- SUBSCRIPTION ---------- */
.sub-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}

.sub-box-visual {
  text-align: center;
  position: sticky;
  top: 140px;
}

.sub-box {
  width: 220px;
  height: 220px;
  margin: 0 auto;
  border: 2px solid var(--olive);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sub-box-fill {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0%;
  background: linear-gradient(180deg, var(--banana), var(--kiwi));
  transition: height 0.6s cubic-bezier(0.16,1,0.3,1);
}

.sub-box-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
  position: relative;
  z-index: 2;
  background: rgba(255, 248, 228, 0.82);
  padding: 6px 14px;
  border-radius: 20px;
}

.sub-summary {
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* ---------- LOYALTY PUNCH CARD ---------- */
.punch-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--cream-2);
  border: 1px dashed var(--tomato);
  border-radius: 20px;
  padding: 34px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.punch-slot {
  aspect-ratio: 1;
  border: 1.5px dashed rgba(196, 43, 52, 0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.punch-slot.filled {
  border-style: solid;
  border-color: var(--tomato);
  background: linear-gradient(135deg, var(--sun), var(--tomato));
  transform: scale(1.05);
  animation: punch-in 0.4s ease;
}

@keyframes punch-in {
  0% { transform: scale(0.4) rotate(-20deg); opacity: 0; }
  100% { transform: scale(1.05) rotate(0); opacity: 1; }
}

.punch-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 30px;
}

.punch-note {
  text-align: center;
  margin-top: 16px;
  color: var(--tomato);
  font-size: 0.9rem;
  min-height: 20px;
}

/* ---------- EASTER EGGS ---------- */
.egg-row { padding: 60px 0; }

.egg-container {
  display: flex;
  justify-content: center;
  gap: 100px;
}

.egg {
  position: relative;
  font-size: 2.4rem;
  cursor: none;
  transition: transform 0.3s ease;
}

.egg:hover { transform: scale(1.1); }

.cat-peek {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  font-size: 1.6rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.plant-egg:hover .cat-peek { opacity: 1; transform: translateX(-50%) translateY(0); }

.steam-burst {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  width: 6px; height: 6px;
  pointer-events: none;
}

.steam-burst.active::before,
.steam-burst.active::after {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  background: var(--rose);
  border-radius: 50%;
  animation: burst 0.8s ease-out forwards;
}
.steam-burst.active::after { animation-delay: 0.15s; background: var(--sun); }

@keyframes burst {
  0% { transform: translate(0,0) scale(0.5); opacity: 0.9; }
  100% { transform: translate(var(--dx, 20px), -60px) scale(1.6); opacity: 0; }
}

.discount-popup {
  position: absolute;
  top: -50px; left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--tomato);
  color: var(--cream);
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.78rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.discount-popup.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- FOOTER ---------- */
footer { padding: 70px 0 36px; border-top: 1px solid rgba(196, 43, 52, 0.2); background: var(--cream-2); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 14px; }
.footer-logo span { color: var(--tomato); font-style: italic; }

.footer-desc { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.6; max-width: 280px; }

.footer-heading {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sun);
  margin-bottom: 18px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--ink-soft); font-size: 0.9rem; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--tomato); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(196, 43, 52, 0.18);
  font-size: 0.8rem;
  color: var(--ink-soft);
  flex-wrap: wrap;
  gap: 10px;
}