/* =========================================================
   FroYo Bliss — Design System
   Fonts: Baloo 2 (playful display) + Nunito (body)
   ========================================================= */

:root {
  /* Brand rainbow palette (from logo & cup packaging) */
  --c-green: #3ec24a;
  --c-green-dark: #2fa23a;
  --c-yellow: #ffcc33;
  --c-orange: #ff8f1f;
  --c-orange-dark: #f2760a;
  --c-red: #ff4d4d;
  --c-pink: #ff5fa0;
  --c-blue: #29abe2;
  --c-purple: #b96be0;
  --c-maroon: #7a2331;

  /* Neutrals */
  --c-cream: #fff8ec;
  --c-cream-2: #fff2da;
  --c-mint: #e9fbf5;
  --c-pink-tint: #fff0f6;
  --c-dark: #2e1f17;
  --c-dark-2: #4a3527;
  --c-brown-bg: #2a1c14;
  --c-white: #ffffff;
  --c-line: rgba(46, 31, 23, 0.1);

  /* Gradients */
  --grad-hero: linear-gradient(135deg, #ffd24d 0%, #ff9d1f 45%, #ff5f9d 100%);
  --grad-warm: linear-gradient(135deg, #fff2da 0%, #ffe2b8 100%);
  --grad-cta: linear-gradient(120deg, #ff8f1f 0%, #ff5f9d 100%);
  --grad-mint: linear-gradient(135deg, #eafcf6 0%, #cdf3e6 100%);

  /* Type */
  --font-display: "Baloo 2", "Nunito", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, -apple-system, sans-serif;

  /* Shape & motion */
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --radius-pill: 999px;
  --shadow-soft: 0 10px 30px rgba(46, 31, 23, 0.1);
  --shadow-lift: 0 20px 45px rgba(46, 31, 23, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--c-dark);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0 0 .5em;
  line-height: 1.12;
  color: var(--c-dark);
}
p { line-height: 1.65; margin: 0 0 1em; color: var(--c-dark-2); }
button { font-family: inherit; cursor: pointer; }
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
section { position: relative; }

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--c-orange-dark);
  background: #fff0da;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.eyebrow.on-dark { background: rgba(255,255,255,.12); color: #ffd98a; }
.section-title { font-size: clamp(2rem, 4vw, 2.9rem); max-width: 700px; }
.section-sub { font-size: 1.1rem; max-width: 620px; color: var(--c-dark-2); }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.text-white { color: #fff !important; }
.text-white p, .text-white h1, .text-white h2, .text-white h3 { color: #fff; }

.rainbow-word span:nth-child(6n+1) { color: var(--c-green); }
.rainbow-word span:nth-child(6n+2) { color: var(--c-blue); }
.rainbow-word span:nth-child(6n+3) { color: var(--c-red); }
.rainbow-word span:nth-child(6n+4) { color: var(--c-orange); }
.rainbow-word span:nth-child(6n+5) { color: var(--c-pink); }
.rainbow-word span:nth-child(6n+6) { color: var(--c-purple); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  border: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: 0 12px 24px rgba(255, 95, 157, 0.35);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 30px rgba(255, 95, 157, 0.45); }
.btn-outline {
  background: transparent;
  color: var(--c-dark);
  border: 2.5px solid var(--c-dark);
}
.btn-outline:hover { background: var(--c-dark); color: #fff; transform: translateY(-3px); }
.btn-outline.on-dark { border-color: #fff; color: #fff; }
.btn-outline.on-dark:hover { background: #fff; color: var(--c-dark); }
.btn-light {
  background: #fff;
  color: var(--c-orange-dark);
  box-shadow: var(--shadow-soft);
}
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 248, 236, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-line);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(46,31,23,.08); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  height: 34px;
  width: auto;
  display: block;
}
.footer-about .logo img { height: 38px; }
.logo .tag {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--c-dark-2);
  margin-left: 8px;
  align-self: center;
  background: var(--c-mint);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links {
  display: flex;
  gap: 30px;
}
.nav-links a {
  font-weight: 700;
  font-size: .98rem;
  color: var(--c-dark-2);
  position: relative;
  padding: 6px 2px;
  transition: color .2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  border-radius: 3px;
  background: var(--grad-cta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav-links a:hover { color: var(--c-orange-dark); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--c-orange-dark); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: var(--c-dark);
  transition: all .3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--grad-hero);
  overflow: hidden;
  padding: 70px 0 120px;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .35;
}
.hero::before {
  width: 380px; height: 380px;
  background: #fff;
  top: -160px; left: -120px;
  opacity: .18;
}
.hero::after {
  width: 260px; height: 260px;
  background: #fff;
  bottom: -110px; right: 6%;
  opacity: .15;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.85);
  color: var(--c-maroon);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .04em;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
  box-shadow: var(--shadow-soft);
}
.hero h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.2rem);
  color: #fff;
  text-shadow: 0 6px 24px rgba(122, 35, 49, .25);
}
.hero h1 em {
  font-style: normal;
  color: #fff;
  -webkit-text-stroke: 1px rgba(122,35,49,.15);
}
.hero p.lead {
  font-size: 1.2rem;
  color: rgba(255,255,255,.95);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-stats { display: flex; gap: 34px; flex-wrap: wrap; }
.hero-stats div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #fff;
}
.hero-stats div span { color: rgba(255,255,255,.9); font-size: .88rem; font-weight: 700; }

.hero-visual { position: relative; }
.hero-visual img {
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(122, 35, 49, .35);
  transform: rotate(2deg);
  transition: transform .5s var(--ease);
}
.hero-visual:hover img { transform: rotate(0deg) scale(1.02); }
.float-card {
  position: absolute;
  background: #fff;
  border-radius: 20px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lift);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  animation: floaty 4s ease-in-out infinite;
}
.hero-visual .float-card.c1 { top: 6%; right: -6%; animation-delay: .3s; }
.hero-visual .float-card.c2 { bottom: 8%; left: -8%; animation-delay: 1s; }
.float-card .dot {
  width: 34px; height: 34px; border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.wave-divider {
  position: absolute;
  bottom: -1px; left: 0; width: 100%;
  line-height: 0;
  z-index: 3;
}
.wave-divider svg { width: 100%; height: auto; display: block; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--c-dark);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 40px;
  animation: scroll-left 26s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 700;
  color: #ffd98a;
  font-size: 1rem;
  letter-spacing: .03em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Generic section paddings ---------- */
.section { padding: 100px 0; }
.section.tight { padding: 70px 0; }
.section.bg-cream { background: var(--c-cream); }
.section.bg-mint { background: var(--c-mint); }
.section.bg-pink { background: var(--c-pink-tint); }
.section.bg-dark { background: var(--c-brown-bg); }
.section.bg-white { background: #fff; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Feature / value cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.value-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 34px 28px;
  box-shadow: var(--shadow-soft);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  border: 1px solid var(--c-line);
}
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.value-card .icon {
  width: 56px; height: 56px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.value-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.value-card p { margin-bottom: 0; font-size: .96rem; }

.icon.bg-green { background: #e3f8e6; }
.icon.bg-orange { background: #fff0da; }
.icon.bg-pink { background: #ffe4ef; }
.icon.bg-blue { background: #e2f4fd; }
.icon.bg-purple { background: #f4e6fb; }
.icon.bg-yellow { background: #fff6db; }

/* ---------- About split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lift); }
.split-media .badge-pill {
  position: absolute;
  bottom: -22px; left: -22px;
  background: #fff;
  border-radius: 20px;
  padding: 16px 22px;
  box-shadow: var(--shadow-lift);
  display: flex; align-items: center; gap: 12px;
}
.badge-pill .num { font-family: var(--font-display); font-size: 1.6rem; color: var(--c-orange-dark); }
.badge-pill .lbl { font-size: .8rem; font-weight: 700; color: var(--c-dark-2); line-height: 1.2; }

.check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
  font-weight: 700;
  color: var(--c-dark);
}
.check-list li .tick {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--c-green);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  margin-top: 2px;
}
.check-list li span.desc { display: block; font-weight: 400; color: var(--c-dark-2); margin-top: 4px; font-size: .93rem; }

/* ---------- Flavor cards ---------- */
.flavor-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.flavor-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  border: 1px solid var(--c-line);
}
.flavor-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.flavor-card .swatch {
  height: 130px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 2.2rem;
  overflow: hidden;
  position: relative;
}
.flavor-card .swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform .4s var(--ease);
}
.flavor-card:hover .swatch img { transform: scale(1.06); }
.flavor-card .swatch.photo { padding: 0; }

/* Flavor of the week feature */
.fotw {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 44px;
  background: linear-gradient(135deg, #eafcf6 0%, #d9f4ec 100%);
  border-radius: var(--radius-lg);
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--c-line);
}
.fotw-media { position: relative; }
.fotw-media img { border-radius: var(--radius-md); box-shadow: var(--shadow-soft); width: 100%; display: block; }
.fotw-copy { padding: 20px 34px 20px 0; }
.fotw-copy h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
@media (max-width: 860px) {
  .fotw { grid-template-columns: 1fr; padding: 20px; }
  .fotw-copy { padding: 10px 4px 24px; }
}
.flavor-card .info { padding: 18px 20px 22px; }
.flavor-card h4 { font-size: 1.05rem; margin-bottom: 6px; }
.flavor-card p { font-size: .85rem; margin-bottom: 0; }
.flavor-card .tags { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.flavor-card .tags span {
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  background: var(--c-mint);
  color: var(--c-green-dark);
}
.flavor-card .tags span.veg { background: #fdeee0; color: var(--c-orange-dark); }
.flavor-card .tags span.new { background: #ffe4ef; color: var(--c-pink); }

/* Filter tabs */
.tabs { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.tab-btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--c-line);
  background: #fff;
  color: var(--c-dark-2);
  transition: all .25s ease;
}
.tab-btn:hover { border-color: var(--c-orange); color: var(--c-orange-dark); }
.tab-btn.active {
  background: var(--grad-cta);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(255,95,157,.3);
}
.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fadein .4s ease; }
@keyframes fadein { from { opacity: 0; transform: translateY(10px);} to {opacity:1; transform: translateY(0);} }

/* ---------- Promo banner image cards ---------- */
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.promo-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
  aspect-ratio: 4 / 5;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.promo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.promo-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Uniform gallery photo tiles */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.gallery-tile {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 5;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.gallery-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 1080px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.step {
  position: relative;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 24px 26px;
  box-shadow: var(--shadow-soft);
}
.step .step-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: transparent;
  -webkit-text-stroke: 2px var(--c-orange);
  margin-bottom: 10px;
  display: block;
}
.step h4 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: .9rem; margin-bottom: 0; }

/* ---------- Toppings pills ---------- */
.pill-cloud { display: flex; flex-wrap: wrap; gap: 12px; }
.pill-cloud span {
  background: #fff;
  border: 2px solid var(--c-line);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: .9rem;
  color: var(--c-dark-2);
  transition: all .2s ease;
}
.pill-cloud span:hover { border-color: var(--c-orange); color: var(--c-orange-dark); background: #fff6ea; }

/* ---------- Testimonials ---------- */
.testi-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--c-line);
}
.testi-card .stars { color: var(--c-yellow); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-card p.quote { font-style: italic; font-size: 1rem; color: var(--c-dark-2); }
.testi-card .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testi-card .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: #fff;
}
.testi-card .who strong { display: block; font-size: .92rem; }
.testi-card .who span { font-size: .78rem; color: var(--c-dark-2); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--grad-cta);
  border-radius: var(--radius-lg);
  padding: 64px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  color: #fff;
  box-shadow: var(--shadow-lift);
}
.cta-banner h2 { color: #fff; margin-bottom: 8px; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.cta-banner p { color: rgba(255,255,255,.9); margin-bottom: 0; }

/* ---------- Location / contact ---------- */
.info-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 26px 28px;
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.info-card .icon {
  flex: none;
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.info-card h4 { margin-bottom: 4px; font-size: 1.05rem; }
.info-card p { margin-bottom: 0; font-size: .92rem; }

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--c-line);
}
.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; }

/* Contact form */
.contact-form { background: #fff; border-radius: var(--radius-md); padding: 36px; box-shadow: var(--shadow-soft); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 700; font-size: .88rem; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 13px 16px;
  border-radius: 14px;
  border: 2px solid var(--c-line);
  font-family: var(--font-body);
  font-size: .95rem;
  transition: border-color .2s ease;
  background: #fffdf9;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--c-orange);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--c-brown-bg); color: #f4e9dd; padding: 80px 0 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-about p { color: rgba(244,233,221,.75); font-size: .93rem; max-width: 300px; }
.footer-col h5 {
  font-family: var(--font-display);
  color: #ffd98a;
  font-size: .95rem;
  margin-bottom: 18px;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  color: rgba(244,233,221,.8);
  font-size: .93rem;
  transition: color .2s ease;
}
.footer-col ul li a:hover { color: #ffd98a; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s ease;
  font-size: 1.05rem;
}
.footer-social a:hover { background: var(--grad-cta); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .84rem;
  color: rgba(244,233,221,.6);
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--grad-hero);
  padding: 150px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 3.6rem); }
.page-hero p { color: rgba(255,255,255,.95); font-size: 1.15rem; max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: inline-flex; gap: 8px; align-items: center;
  font-weight: 700; font-size: .85rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 18px;
}

/* ---------- Menu hero (dynamic, meniu.html only) ---------- */
#menu-tabs { scroll-margin-top: 96px; }
.menu-hero {
  position: relative;
  background: var(--grad-hero);
  overflow: hidden;
  padding: 150px 0 120px;
}
.menu-hero::before, .menu-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #fff;
}
.menu-hero::before { width: 340px; height: 340px; top: -150px; left: -110px; opacity: .16; }
.menu-hero::after { width: 260px; height: 260px; bottom: -100px; right: 6%; opacity: .14; }
.menu-hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 44px;
  position: relative;
  z-index: 2;
}
.menu-hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  color: #fff;
  line-height: 1.08;
  text-shadow: 0 6px 24px rgba(122,35,49,.25);
  margin: 0 0 16px;
}
.menu-hero-copy h1 em {
  font-style: normal;
  -webkit-text-stroke: 1px rgba(122,35,49,.15);
}
.menu-hero-copy p.lead {
  color: rgba(255,255,255,.95);
  font-size: 1.14rem;
  max-width: 460px;
  margin-bottom: 26px;
}
.menu-hero-quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.94);
  color: var(--c-dark-2);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.chip-orange:hover { background: #fff1de; }
.chip-pink:hover { background: #ffe7f1; }
.chip-blue:hover { background: #e2f5fd; }
.chip-green:hover { background: #e6f9ed; }

.menu-hero-visual { position: relative; height: 440px; }
.menu-hero-main {
  position: absolute;
  top: 0; right: 4%;
  width: 70%;
  height: 88%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(122,35,49,.35);
  transform: rotate(3deg);
  transition: transform .5s var(--ease);
}
.menu-hero-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.menu-hero-visual:hover .menu-hero-main { transform: rotate(0deg) scale(1.02); }
.menu-hero-float {
  position: absolute;
  width: 38%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 5px solid #fff;
  animation: floaty 4s ease-in-out infinite;
}
.menu-hero-float img { width: 100%; height: 100%; object-fit: cover; display: block; }
.menu-hero-float.f1 { top: 2%; left: 0; animation-delay: .2s; }
.menu-hero-float.f2 { bottom: 4%; left: 10%; animation-delay: 1.1s; }
.menu-hero-badge-card {
  position: absolute;
  bottom: 10%;
  right: 2%;
  z-index: 3;
  animation: floaty 4s ease-in-out infinite;
  animation-delay: .7s;
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 460px; margin: 0 auto; }
  .split { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .flavor-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .menu-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .menu-hero-copy p.lead { max-width: 100%; margin-left: auto; margin-right: auto; }
  .menu-hero-quicklinks { justify-content: center; }
  .menu-hero-copy .hero-stats { justify-content: center; }
  .menu-hero-visual { order: -1; max-width: 420px; margin: 0 auto 10px; height: 380px; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--c-cream);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    box-shadow: var(--shadow-soft);
    border-bottom: 1px solid var(--c-line);
  }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .container { padding: 0 18px; }
  .section { padding: 70px 0; }
  .grid-3, .grid-4, .grid-2, .promo-grid { grid-template-columns: 1fr; }
  .flavor-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .cta-banner { padding: 44px 26px; flex-direction: column; text-align: center; }
  .hero { padding: 50px 0 90px; }
  .hero-stats { gap: 22px; }
  .split-media .badge-pill { left: 10px; bottom: -18px; padding: 12px 16px; }
  .page-hero { padding: 130px 0 70px; }
  .menu-hero { padding: 120px 0 90px; }
  .menu-hero-visual { height: 300px; max-width: 300px; }
  .menu-hero-copy h1 br { display: none; }
}
