/* ============================================================
   THE FROZEN FACTORY — Design System
   Kaspa's-style bold, photo-driven layout.
   Real brand colors: navy blue + red + teal drizzle + cream/kraft.
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand colors — PINK + LIGHT BLUE/CYAN (variable names kept for stability).
     --red   = pink (primary pop)   --teal/--blue = cyan / light blue (secondary)
     --navy* = deep blue anchor for dark sections */
  --navy-900: #0c2350;   /* deep blue anchor */
  --navy-800: #133472;
  --navy-700: #1c4a99;
  --navy-600: #2563b8;
  --blue:     #36b6e8;   /* light blue */
  --blue-300: #a6e2f4;   /* pale sky */
  --teal:     #25c9e6;   /* cyan (secondary main) */
  --teal-dk:  #11a0c4;
  --red:      #ff4f9c;   /* pink (primary pop) */
  --red-dk:   #e72f86;
  --kraft:    #cc9d63;

  /* Neutrals */
  --cream:   #fdf3f9;    /* soft pink-white */
  --cream-2: #f7e2f0;
  --white:   #ffffff;
  --ink:     #1b2a4d;
  --ink-soft:#5d6a88;

  /* UI */
  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 32px;
  --radius-pill: 999px;
  /* Layered, softer shadows for more believable depth */
  --shadow-sm: 0 1px 2px rgba(12,28,56,.06), 0 6px 16px rgba(12,28,56,.08);
  --shadow:    0 4px 10px rgba(12,28,56,.08), 0 18px 44px rgba(12,28,56,.16);
  --shadow-lg: 0 10px 24px rgba(12,28,56,.14), 0 36px 80px rgba(12,28,56,.30);
  /* Colored accent shadows for pops of brand depth */
  --shadow-pink: 0 14px 34px rgba(255,79,156,.40);
  --shadow-cyan: 0 14px 34px rgba(37,201,230,.38);

  /* Brand gradients (single source of truth) */
  --grad-primary: linear-gradient(135deg, #ff6aae, var(--red-dk));
  --grad-cyan:    linear-gradient(135deg, var(--teal), var(--teal-dk));
  --grad-sunset:  linear-gradient(120deg, var(--red) 0%, #ff7ab8 42%, var(--blue) 100%);
  --grad-dark:    linear-gradient(160deg, var(--navy-800), var(--navy-900));

  /* Motion */
  --ease-out:    cubic-bezier(.2,.8,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);

  /* Type */
  --font-display: 'Fredoka', 'Poppins', system-ui, sans-serif;
  --font-body: 'Poppins', system-ui, -apple-system, sans-serif;

  --max-w: 1200px;
  --nav-h: 78px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  /* soft, off-flat backdrop: faint brand-tinted glows over cream */
  background-color: var(--cream);
  background-image:
    radial-gradient(900px 600px at 100% -5%, rgba(54,182,232,.10), transparent 60%),
    radial-gradient(820px 560px at -10% 12%, rgba(255,79,156,.09), transparent 55%);
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; font-weight: 600; text-wrap: balance; }
p { text-wrap: pretty; }
::selection { background: var(--red); color: #fff; }

/* Accessible keyboard focus ring across the whole site */
:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 54px 0; }
.section--tight { padding: 38px 0; }
.text-center { text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--teal-dk);
  background: rgba(37, 201, 230, 0.14);
  box-shadow: inset 0 0 0 1px rgba(37, 201, 230, 0.28);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal); flex: none;
  box-shadow: 0 0 0 4px rgba(37, 201, 230, 0.20);
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--navy-800);
  margin-bottom: 12px;
}
/* Decorative gradient underline under centered section titles */
.text-center .section-title::after {
  content: "";
  display: block;
  width: 64px; height: 4px;
  margin: 16px auto 0;
  border-radius: var(--radius-pill);
  background: var(--grad-sunset);
}
.section-sub {
  max-width: 620px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.02rem;
}
.section-head { margin-bottom: 32px; }
.eyebrow { margin-bottom: 12px; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out), background .18s ease;
  will-change: transform;
}
/* Light sheen that sweeps across on hover */
.btn::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.45) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform .6s var(--ease-out);
}
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(1px) scale(.99); }
.btn--primary {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: var(--shadow-pink);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(255, 79, 156, 0.55); }
.btn--accent {
  background: var(--grad-cyan);
  color: var(--white);
  box-shadow: var(--shadow-cyan);
}
.btn--accent:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(37, 201, 230, 0.55); }
.btn--ghost {
  background: rgba(255,255,255,0.14);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn--ghost:hover { background: rgba(255,255,255,0.24); transform: translateY(-2px); }
.btn--outline {
  background: transparent;
  color: var(--navy-700);
  border: 2px solid var(--navy-700);
}
.btn--outline:hover { background: var(--navy-700); color: var(--white); transform: translateY(-2px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
/* ============================================================
   LOADING SCREEN (candy-rain intro)
   ============================================================ */
body.loading { overflow: hidden; }
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(255,79,156,0.45), transparent 60%),
    radial-gradient(110% 90% at 80% 100%, rgba(37,201,230,0.40), transparent 60%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
  transition: opacity .6s ease, visibility .6s ease;
}
.loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader__candy { position: absolute; inset: 0; pointer-events: none; }
.sprinkle {
  position: absolute;
  top: -10%;
  will-change: transform, opacity;
  animation: sprinkleFall linear infinite;
}

.loader__logo {
  position: relative;
  z-index: 2;
  animation: loaderPop .9s cubic-bezier(.2,.8,.25,1.25) both,
             loaderFloat 3s ease-in-out 1s infinite;
}
.loader__logo img {
  width: clamp(190px, 42vw, 360px);
  height: auto;
  filter: drop-shadow(0 14px 38px rgba(0,0,0,0.5));
}

@keyframes sprinkleFall {
  0%   { transform: translateY(-12vh) rotate(0deg);   opacity: 0; }
  12%  { opacity: 1; }
  88%  { opacity: 1; }
  100% { transform: translateY(112vh) rotate(680deg); opacity: 0; }
}
@keyframes loaderPop {
  0%   { transform: scale(.55); opacity: 0; }
  100% { transform: scale(1);   opacity: 1; }
}
@keyframes loaderFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@media (prefers-reduced-motion: reduce) {
  .loader__logo { animation: loaderPop .4s ease both; }
  .sprinkle { display: none; }
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 35, 80, 0.78);
  backdrop-filter: saturate(160%) blur(10px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 6px 24px rgba(12, 35, 80, 0.18);
  transition: background .3s ease, box-shadow .3s ease;
}
/* Solidifies once the page is scrolled */
.header.scrolled {
  background: rgba(10, 28, 66, 0.96);
  box-shadow: 0 1px 0 rgba(255,255,255,.08), 0 10px 34px rgba(12, 35, 80, 0.40);
}
/* Thin brand gradient hairline along the bottom edge */
.header::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--grad-sunset);
  opacity: .55;
}
.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 48px; width: auto; display: block; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__links a {
  color: rgba(255,255,255,0.86);
  font-weight: 500;
  font-size: 0.97rem;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.nav__links a:hover { color: var(--white); background: rgba(255,255,255,0.12); transform: translateY(-1px); }
.nav__links a.active {
  color: var(--white);
  background: var(--grad-primary);
  box-shadow: 0 6px 16px rgba(255,79,156,.45);
}

.nav__actions { display: flex; align-items: center; gap: 12px; }

/* Language toggle */
.lang-toggle {
  display: inline-flex;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-pill);
  padding: 4px;
}
.lang-toggle button {
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  transition: all .15s;
}
.lang-toggle button.active { background: var(--white); color: var(--navy-800); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__toggle span {
  width: 26px; height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.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 (photo-driven)
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 520px at 82% -10%, rgba(255,79,156,0.34), transparent 60%),
    radial-gradient(900px 520px at 0% 110%, rgba(37,201,230,0.30), transparent 55%),
    linear-gradient(160deg, var(--navy-800), var(--navy-900));
  color: var(--white);
  overflow: hidden;
}
/* Slow drifting aurora glow for depth */
.hero::before {
  content: "";
  position: absolute;
  width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
  top: -22%; right: -12%;
  background: radial-gradient(circle, rgba(255,122,184,.38), transparent 62%);
  filter: blur(8px);
  pointer-events: none;
  animation: aurora 18s ease-in-out infinite alternate;
}
@keyframes aurora {
  0%   { transform: translate(0, 0) scale(1); opacity: .85; }
  100% { transform: translate(-7%, 9%) scale(1.18); opacity: 1; }
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 44px;
  padding: 56px 0 72px;
}
.hero__title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
}
.hero__title .accent {
  background: linear-gradient(135deg, var(--teal), var(--blue-300));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__text {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin: 22px 0 32px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__stats { display: flex; gap: 34px; margin-top: 44px; }
.hero__stat strong { font-family: var(--font-display); font-size: 1.9rem; display: block; color: var(--teal); }
.hero__stat span { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* Hero photo collage */
.hero__visual { position: relative; }
.hero__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid rgba(255,255,255,0.9);
  aspect-ratio: 1 / 1;
  animation: float 7s ease-in-out infinite;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo--sm {
  position: absolute; bottom: -28px; left: -28px;
  width: 150px; aspect-ratio: 1/1; border-width: 5px;
  animation-delay: -2.5s; z-index: 2;
}
.hero__badge {
  position: absolute; top: -18px; right: 26px; z-index: 3;
  background: var(--white); color: var(--navy-800);
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  padding: 12px 18px; border-radius: var(--radius);
  box-shadow: var(--shadow); transform: rotate(6deg);
  text-align: center; line-height: 1.15;
}
/* Live "open now" indicator dot */
.hero__badge .dot {
  display: inline-block;
  width: 9px; height: 9px; border-radius: 50%;
  font-size: 0; vertical-align: middle; margin: 0 4px;
  background: #2fd07a;
  box-shadow: 0 0 0 0 rgba(47, 208, 122, .6);
  animation: livePulse 2s ease-out infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(47, 208, 122, .55); }
  70%  { box-shadow: 0 0 0 9px rgba(47, 208, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(47, 208, 122, 0); }
}
.hero__badge small { display: block; font-size: 0.72rem; color: var(--ink-soft); font-weight: 500; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.wave { display: block; width: 100%; height: auto; margin-bottom: -7px; position: relative; z-index: 1; }

/* ---- Hero video banner (full-bleed, below navbar) ---- */
.hero-video { position: relative; width: 100%; line-height: 0; background: var(--navy-900); overflow: hidden; }
.hero-video__el {
  width: 100%;
  height: clamp(240px, 46vw, 620px);
  object-fit: cover;
  display: block;
}

/* Big logo centered on the video — fades out / lifts up as the navbar logo takes over */
.hero-video__logo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity .45s ease, transform .45s ease;
}
.hero-video__logo img {
  width: clamp(200px, 36vw, 500px);
  height: auto;
  filter: drop-shadow(0 8px 28px rgba(0, 0, 0, 0.5));
}
body.nav-logo-shown .hero-video__logo {
  opacity: 0;
  transform: translateY(-16px) scale(.96);
}

/* On the home page the navbar logo stays hidden until you scroll past the video.
   Only opacity is animated so the desktop centering transform stays intact. */
body.has-hero-video .brand {
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
body.has-hero-video.nav-logo-shown .brand {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee {
  background: var(--grad-sunset);
  color: var(--white);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), inset 0 -1px 0 rgba(12,28,56,.12);
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  animation: scroll 28s linear infinite;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.marquee__track > span { opacity: 0.98; }
.marquee__track .sep { opacity: .6; font-size: .7rem; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   PHOTO CATEGORY / FAVOURITES GRID
   ============================================================ */
.cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cat {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  display: block;
}
.cat img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.cat::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,28,56,0.85) 0%, rgba(12,28,56,0.15) 55%, transparent 100%);
}
.cat:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.cat:hover img { transform: scale(1.07); }
.cat__body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 22px 24px; color: var(--white);
}
.cat__name { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; }
.cat__price { font-size: 0.92rem; opacity: 0.9; display: flex; align-items: center; gap: 8px; }
.cat__price::before { content: "→"; color: var(--teal); font-weight: 700; }

/* ============================================================
   FEATURE / SPLIT SECTIONS (with real photos)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}
.split--reverse .split__media { order: 2; }
.split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 5 / 4;
  position: relative;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media .frame-badge {
  position: absolute; bottom: 18px; left: 18px;
  background: var(--white); color: var(--navy-800);
  font-family: var(--font-display); font-weight: 600; font-size: 0.85rem;
  padding: 8px 16px; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm);
}
.split__title { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--navy-800); margin-bottom: 12px; }
.split__text { color: var(--ink-soft); font-size: 1rem; margin-bottom: 12px; }
.split ul.ticks { display: grid; gap: 10px; margin: 18px 0 26px; }
.split ul.ticks li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink); }
.split ul.ticks li::before { content: ""; flex: 0 0 18px; height: 18px; margin-top: 4px;
  border-radius: 50%; background: var(--teal); box-shadow: inset 0 0 0 4px rgba(255,255,255,0.85); }

/* ============================================================
   GALLERY (Instagram-style real photos)
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* even 3 × N grid, no orphan row */
  gap: 8px;
}
.gallery a {
  position: relative; border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 1/1; box-shadow: var(--shadow-sm);
}
.gallery a img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery a::after {
  content: "📷"; position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(12,28,56,0.0); font-size: 1.6rem; opacity: 0; transition: .25s;
}
.gallery a:hover img { transform: scale(1.08); }
.gallery a:hover::after { background: rgba(12,28,56,0.45); opacity: 1; }

/* ---------- 4-up feature blurbs ---------- */
.grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* ---------- Selected-dessert photo cards ---------- */
.dishes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.dish {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(12,28,56,.05);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.dish:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.dish__media { aspect-ratio: 1/1; overflow: hidden; }
.dish__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.dish:hover .dish__media img { transform: scale(1.08); }
.dish__body { padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.dish__name { font-family: var(--font-display); font-weight: 600; color: var(--navy-800); font-size: 1.08rem; }
.dish__price {
  font-family: var(--font-display); font-weight: 700; color: var(--red-dk);
  white-space: nowrap; font-size: .92rem;
  background: rgba(255,79,156,.12); padding: 4px 12px; border-radius: var(--radius-pill);
}

/* ---------- Pull-quote ---------- */
.quote {
  max-width: 760px; margin: 0 auto; text-align: center;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 2rem); line-height: 1.35; color: var(--navy-800);
  position: relative; padding: 0 10px;
}
.quote::before {
  content: "“"; display: block; font-size: 4rem; line-height: .8; color: var(--teal);
  margin-bottom: 8px;
}

/* ---------- Home opening-hours card ---------- */
.hours-card { max-width: 520px; margin: 0 auto; }

/* ============================================================
   ORDER / DELIVERY STRIP
   ============================================================ */
.order {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: var(--white);
}
.order__inner {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px;
}
.order h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.order p { color: rgba(255,255,255,0.8); margin-top: 8px; }
.order__partners { display: flex; flex-wrap: wrap; gap: 14px; }
.partner {
  background: var(--white);
  width: 84px; height: 84px; border-radius: 22px;
  display: grid; place-items: center; padding: 14px;
  box-shadow: var(--shadow); transition: transform .18s;
}
.partner img { max-width: 100%; max-height: 100%; object-fit: contain; }
.partner:hover { transform: translateY(-4px); }

/* ---- Order here (delivery bubbles) ---- */
.order-here {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--red) 0%, #ff7ab8 38%, var(--teal) 100%);
  padding: clamp(96px, 12vw, 150px) 0;
}
.order-here__wave {
  position: absolute; left: 0; width: 100%; height: auto;
  z-index: 3; display: block; pointer-events: none;
}
.order-here__wave--top { top: -1px; transform: scaleY(-1); }
.order-here__wave--bottom { bottom: -1px; }
/* soft glow blobs for depth */
.order-here::before,
.order-here::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.order-here::before {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255,255,255,0.45), transparent 70%);
  top: -130px; left: -70px;
}
.order-here::after {
  width: 420px; height: 420px;
  background: radial-gradient(circle, var(--blue-300), transparent 70%);
  bottom: -170px; right: -90px;
  opacity: .55;
}
.order-here__inner { position: relative; z-index: 1; text-align: center; }
.order-here__title {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 14px;
  text-shadow: 0 4px 18px rgba(12, 28, 56, 0.22);
}
.order-here__sub {
  color: rgba(255,255,255,0.95);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.5;
  max-width: 540px;
  margin: 0 auto clamp(26px, 4vw, 38px);
  text-shadow: 0 2px 10px rgba(12, 28, 56, 0.18);
}
/* Wolt order button — logo at a sensible size beside a clear CTA */
.wolt-order {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 26px 12px 14px;
  background: var(--white);
  border-radius: var(--radius-pill);
  box-shadow: 0 16px 40px rgba(12, 28, 56, 0.28);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wolt-order img { width: 46px; height: 46px; display: block; }
.wolt-order span {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy-800);
  letter-spacing: 0.01em;
}
.wolt-order:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(12, 28, 56, 0.36);
}
/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(700px 300px at 90% 0%, rgba(37,201,230,0.28), transparent 60%),
    linear-gradient(160deg, var(--navy-800), var(--navy-900));
  color: var(--white); padding: 70px 0 60px; text-align: center;
}
.menu-hero .container, .story-hero .container { position: relative; z-index: 2; }
.menu-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
.menu-hero p { color: rgba(255,255,255,0.82); margin-top: 12px; }

.menu-nav {
  position: sticky; top: var(--nav-h); z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-2);
  padding: 14px 0;
}
.menu-nav__track { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px; }
.menu-nav a {
  white-space: nowrap; font-weight: 600; font-size: 0.9rem;
  padding: 8px 18px; border-radius: var(--radius-pill);
  background: var(--white); color: var(--navy-700);
  box-shadow: var(--shadow-sm); transition: all .18s var(--ease-out);
}
.menu-nav a:hover { background: var(--navy-700); color: var(--white); transform: translateY(-1px); }
.menu-nav a.active {
  background: var(--grad-primary); color: var(--white);
  box-shadow: 0 6px 16px rgba(255,79,156,.40);
}

.menu-group { padding: 40px 0 0; }
.menu-group__head { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.menu-group__emoji {
  width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center;
  font-size: 2rem; background: linear-gradient(135deg, rgba(37,201,230,0.22), rgba(255,79,156,0.18));
  box-shadow: var(--shadow-sm), inset 0 0 0 1px rgba(255,255,255,.5);
}
.menu-group h2 { font-size: 1.9rem; color: var(--navy-800); }
.menu-group__head p { color: var(--ink-soft); font-size: 0.95rem; }

.menu-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px 36px; }
.menu-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px; border-radius: 18px;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.menu-item:hover { background: rgba(255,255,255,.75); box-shadow: var(--shadow-sm); transform: translateX(3px); }
.menu-item__thumb {
  flex: none;
  width: 120px; height: 120px;
  border-radius: 18px; object-fit: cover; display: block; cursor: pointer;
  /* on-brand placeholder shown until a real photo is dropped in */
  background: linear-gradient(135deg, var(--cream-2), var(--blue-300));
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .25s ease;
}
.menu-item__thumb.is-empty { cursor: default; }
.menu-item:hover .menu-item__thumb { transform: scale(1.06); box-shadow: var(--shadow); }
.menu-item__thumb.is-empty { color: transparent; font-size: 0; }
.menu-item__body { align-self: center; }
.menu-item__name { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 1.08rem; }
.menu-item__desc { color: var(--ink-soft); font-size: 0.88rem; }
.menu-item__dots { flex: 1; align-self: flex-end; border-bottom: 2px dotted #d9bcd1; transform: translateY(-5px); }
.menu-item__price { font-family: var(--font-display); font-weight: 700; color: var(--red); white-space: nowrap; }

/* ---- Lightbox (click a menu photo to enlarge) ---- */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(12, 28, 56, 0.82);
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: min(92vw, 760px); max-height: 86vh;
  border-radius: 20px; object-fit: contain;
  box-shadow: var(--shadow-lg);
  transform: scale(.9); transition: transform .25s ease;
}
.lightbox.open .lightbox__img { transform: scale(1); }
.lightbox__close {
  position: absolute; top: 22px; right: 26px;
  width: 46px; height: 46px; border: none; border-radius: 50%;
  background: rgba(255, 255, 255, 0.16); color: #fff;
  font-size: 1.7rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.32); transform: rotate(90deg); }
.tag {
  font-family: var(--font-display); font-size: 0.62rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 2px 8px; border-radius: var(--radius-pill); margin-left: 6px;
  background: var(--teal); color: var(--white);
}

/* ============================================================
   STORY PAGE
   ============================================================ */
.story-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(700px 300px at 10% 0%, rgba(255,79,156,0.26), transparent 60%),
    linear-gradient(160deg, var(--navy-800), var(--navy-900));
  color: var(--white); padding: 80px 0; text-align: center;
}
.story-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
.story-hero p { color: rgba(255,255,255,0.82); max-width: 600px; margin: 14px auto 0; }

.timeline { max-width: 760px; margin: 0 auto; position: relative; padding-left: 40px; }
.timeline::before {
  content: ""; position: absolute; left: 11px; top: 6px; bottom: 6px;
  width: 3px; background: linear-gradient(var(--red), var(--teal));
  border-radius: 2px;
}
.tl-item { position: relative; padding-bottom: 38px; }
.tl-item::before {
  content: ""; position: absolute; left: -34px; top: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--red); border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}
.tl-item h3 { color: var(--navy-800); font-size: 1.25rem; }
.tl-item .year { font-family: var(--font-display); color: var(--red); font-weight: 600; }
.tl-item p { color: var(--ink-soft); margin-top: 4px; }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
/* Generic value card (used on the Story page) */
.value {
  background: var(--white); border-radius: var(--radius); padding: 30px 22px;
  box-shadow: var(--shadow-sm); text-align: center;
  border: 1px solid rgba(12,28,56,.05);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.value:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.value__icon {
  width: 74px; height: 74px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.1rem; border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,79,156,.16), rgba(37,201,230,.18));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.6);
  transition: transform .4s var(--ease-spring);
}
.value:hover .value__icon { transform: scale(1.1) rotate(-6deg); }
.value h3 { color: var(--navy-800); margin-bottom: 8px; }
.value p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Home feature photo cards (scoped to .grid4) ---------- */
.grid4 .value {
  padding: 0; border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease,
              opacity .6s ease;
}
.grid4 .value__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.grid4 .value__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
}
.grid4 .value__icon {
  position: absolute; bottom: -26px; left: 50%; margin: 0;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; background: var(--white); box-shadow: var(--shadow-sm);
  z-index: 2; transform: translateX(-50%);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.grid4 .value__body { padding: 40px 22px 28px; }

/* Staggered entrance — the .grid4 container only triggers; the cards animate */
.grid4.reveal { opacity: 1; transform: none; }
.grid4 .value { opacity: 0; transform: translateY(28px); }
.grid4.in .value { opacity: 1; transform: translateY(0); }
.grid4.in .value:nth-child(1) { transition-delay: .05s; }
.grid4.in .value:nth-child(2) { transition-delay: .15s; }
.grid4.in .value:nth-child(3) { transition-delay: .25s; }
.grid4.in .value:nth-child(4) { transition-delay: .35s; }

/* Hover (higher specificity than the entered state so the lift always wins) */
.grid4 .value:hover,
.grid4.in .value:hover { transform: translateY(-10px); box-shadow: var(--shadow); }
.grid4 .value:hover .value__media img { transform: scale(1.09); }
.grid4 .value:hover .value__icon { transform: translateX(-50%) scale(1.12) rotate(-6deg); }

/* ============================================================
   LOCATIONS / CONTACT PAGE
   ============================================================ */
.loc-banner {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 21/9; margin-bottom: 48px; position: relative;
}
.loc-banner img { width: 100%; height: 100%; object-fit: cover; }
.loc-banner__tag {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--white); color: var(--navy-800);
  font-family: var(--font-display); font-weight: 600;
  padding: 10px 18px; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm);
}
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.info-card {
  background: var(--white); border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow-sm); margin-bottom: 24px;
  border: 1px solid rgba(12,28,56,.05);
}
.info-card h3 { color: var(--navy-800); margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.info-row { display: flex; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--cream-2); }
.info-row:last-child { border-bottom: none; }
.info-row .k { color: var(--ink-soft); min-width: 110px; font-weight: 500; }
.info-row .v { color: var(--ink); font-weight: 500; }
.info-row a:hover { color: var(--red); }

.hours-list li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--cream-2); }
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { color: var(--ink-soft); }
.hours-list .time { font-weight: 600; color: var(--navy-700); }

.map-embed {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  min-height: 300px; border: 0; width: 100%;
}

.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-weight: 600; margin-bottom: 6px; color: var(--navy-800); font-size: 0.92rem; }
.form-field input, .form-field textarea {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-sm);
  border: 2px solid var(--cream-2); font-family: inherit; font-size: 0.98rem;
  background: var(--white); transition: border-color .15s;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--teal); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 14px; }

/* ============================================================
   NEWSLETTER + FOOTER
   ============================================================ */
.newsletter {
  background: linear-gradient(135deg, var(--red), var(--teal));
  border-radius: var(--radius-lg);
  padding: 50px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow);
}
.newsletter h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 8px; }
.newsletter p { opacity: 0.95; margin-bottom: 24px; }
.newsletter form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.newsletter input {
  flex: 1; padding: 14px 20px; border-radius: var(--radius-pill);
  border: none; font-family: inherit; font-size: 1rem;
}
.newsletter input:focus { outline: 3px solid rgba(255,255,255,0.6); }
.newsletter .btn--accent { background: var(--navy-800); box-shadow: var(--shadow); }

.footer {
  position: relative;
  background: var(--navy-900);
  color: rgba(255,255,255,0.72);
  padding: 52px 0 24px;
}
.footer::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-sunset);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 44px;
}
.footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 16px; letter-spacing: 0.04em; }
.footer a { display: block; padding: 5px 0; transition: color .15s; }
.footer a:hover { color: var(--teal); }
.footer__brand img { height: 56px; margin-bottom: 16px; }
.footer__brand p { font-size: 0.92rem; max-width: 280px; }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; padding: 0;
  background: rgba(255,255,255,0.1); font-size: 1.1rem;
  transition: background .15s, transform .15s;
}
.socials a:hover { background: var(--red); transform: translateY(-3px); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.85rem;
}

/* ============================================================
   SPINNING / FLOATING DECORATIONS
   ============================================================ */
@keyframes spin     { from { transform: rotate(0); }   to { transform: rotate(360deg); } }
@keyframes spin-rev { from { transform: rotate(0); }   to { transform: rotate(-360deg); } }
@keyframes bob      { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }
@keyframes wobble   { 0%,100% { transform: rotate(-7deg); } 50% { transform: rotate(7deg); } }

/* A floating wrapper (handles vertical bob) holding a spinning child (handles rotation),
   so the two transforms don't fight. */
.deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  animation: bob 6s ease-in-out infinite;
  will-change: transform;
}
.deco img, .deco svg { display: block; width: 100%; height: auto;
  filter: drop-shadow(0 12px 22px rgba(12,28,56,0.28)); }
.deco .spinner { animation: spin 16s linear infinite; transform-origin: 50% 50%; }
.deco .spinner.rev { animation: spin-rev 20s linear infinite; }
.deco .spinner.fast { animation-duration: 9s; }
.deco .spinner.slow { animation-duration: 24s; }

/* Hero cones */
.hero .deco { z-index: 1; }
.hero__inner { position: relative; z-index: 2; }
.deco--c1 { width: 92px;  top: 6%;   left: -38px;  animation-delay: -1s; }
.deco--c2 { width: 70px;  bottom: 4%; left: 44%;   animation-delay: -3s; }
.deco--c3 { width: 110px; top: 38%;  right: -46px; animation-delay: -2s; opacity: .96; }

/* Section accent cones (placed inside a positioned .has-deco container) */
.has-deco { position: relative; }
.has-deco > .container { position: relative; z-index: 2; }
.deco--tl { width: 84px;  top: -26px;  left: 12px; }
.deco--tr { width: 96px;  top: -34px;  right: 14px; }
.deco--br { width: 80px;  bottom: -24px; right: 30px; }

/* Spinning milkshake accent in the order strip */
.order .order__inner { position: relative; }
.deco--shake { width: 64px; top: -14px; right: -6px; opacity: .9; }
.deco--shake img { filter: drop-shadow(0 8px 14px rgba(0,0,0,0.25)) brightness(0) invert(1); }

/* Hero badge gentle wobble */
.hero__badge { animation: wobble 5s ease-in-out infinite; transform-origin: bottom center; }

/* Delivery partner badge spins its icon on hover */
.partner img { transition: transform .5s ease; }
.partner:hover img { transform: rotate(360deg); }

/* ---- Floating dessert doodles (scattered background decorations) ---- */
@keyframes floatTreat {
  0%, 100% { transform: translateY(0) rotate(-7deg); }
  50%      { transform: translateY(-22px) rotate(7deg); }
}
@keyframes floatTreatRev {
  0%, 100% { transform: translateY(0) rotate(7deg); }
  50%      { transform: translateY(-18px) rotate(-8deg); }
}
.deco--treat {
  z-index: 1;
  opacity: .2;
  animation: floatTreat 9s ease-in-out infinite;
}
.deco--treat.t-rev  { animation-name: floatTreatRev; }
.deco--treat.t-slow { animation-duration: 13s; }
.deco--treat.t-fast { animation-duration: 7s; }
.deco--treat img { filter: drop-shadow(0 12px 18px rgba(12, 28, 56, 0.16)); }
/* a touch more presence on the dark / coloured sections */
.hero .deco--treat,
.band .deco--treat,
.menu-hero .deco--treat,
.story-hero .deco--treat { opacity: .26; }

@media (max-width: 760px) {
  .deco--c1, .deco--c3, .deco--tr, .deco--br { display: none; }
  .deco--c2 { width: 56px; }
  /* keep the page calm on phones */
  .deco--treat { display: none; }
}

/* ============================================================
   KASPA'S-STYLE ALIGNMENT (full-bleed blocks, bands, carousel)
   ============================================================ */
/* Punchy uppercase headings */
.hero__title, .section-title, .menu-hero h1, .story-hero h1,
.splitfb__inner h2, .band__head h2, .order h2 {
  text-transform: uppercase;
  letter-spacing: 0.005em;
  font-weight: 700;
}
/* Pill buttons, Kaspa's style */
.btn { text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; }
.btn--dark {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(12,28,56,0.4);
}
.btn--dark:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(12,28,56,0.5); }

/* Centered logo nav (desktop) */
@media (min-width: 761px) {
  .nav { position: relative; }
  .brand { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }
}

/* Subtle chevron pattern (Kaspa's text-half backdrop) */
.chevron {
  background-color: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='42'%3E%3Cpath d='M0 32 L42 6 L84 32' fill='none' stroke='%23f3d6e7' stroke-width='7'/%3E%3C/svg%3E");
  background-size: 84px 42px;
}

/* Full-bleed alternating split */
.splitfb { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.splitfb__media { position: relative; min-height: 440px; overflow: hidden; }
.splitfb__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.splitfb__media:hover img { transform: scale(1.05); }
.splitfb__media .frame-badge { position: absolute; bottom: 20px; left: 20px; z-index: 2; }
.splitfb__text { display: flex; align-items: center; justify-content: center; padding: clamp(44px,6vw,88px) clamp(24px,5vw,72px); }
.splitfb__inner { max-width: 520px; text-align: center; }
.splitfb__inner h2 { color: var(--red); font-size: clamp(1.6rem,3vw,2.4rem); margin-bottom: 18px; line-height: 1.08; }
.splitfb__inner p { color: var(--ink-soft); margin-bottom: 16px; font-size: 1.02rem; }
.splitfb--reverse .splitfb__media { order: 2; }
/* zoom-reveal for full-bleed media */
.splitfb__media.zoom-reveal img { transform: scale(1.16); }
.splitfb__media.zoom-reveal.in img { transform: scale(1); }

/* Full-width colour band */
.band { background: linear-gradient(135deg, var(--red), var(--red-dk)); color: var(--white); }
.band--navy { background: linear-gradient(160deg, var(--navy-800), var(--navy-900)); }
.band .section-title, .band .section-sub { color: var(--white); }
.band__head { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.band__head h2 { color: var(--white); font-size: clamp(1.7rem,3.4vw,2.5rem); }
.band__ig {
  width: 46px; height: 46px; border-radius: 13px; flex: 0 0 auto;
  display: grid; place-items: center; color: var(--white);
  border: 3px solid var(--white);
}
.band__ig svg { width: 24px; height: 24px; }

/* Tight 4-up Instagram grid */
.iggrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.iggrid a { position: relative; aspect-ratio: 1/1; overflow: hidden; border-radius: 12px; }
.iggrid img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.iggrid a::after {
  content: ""; position: absolute; inset: 0; background: rgba(12,28,56,0); transition: .25s;
}
.iggrid a:hover img { transform: scale(1.08); }
.iggrid a:hover::after { background: rgba(12,28,56,0.25); }

/* Product carousel */
.carousel { position: relative; margin-top: 8px; }
.carousel__track {
  display: flex; gap: 16px; overflow-x: auto; padding: 6px 2px 14px;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  scrollbar-width: none; -ms-overflow-style: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track > .dish {
  scroll-snap-align: center; flex: 0 0 clamp(220px, 30%, 290px);
}
.carousel__btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 50px; height: 50px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.5rem; line-height: 1;
  background: rgba(255,255,255,0.18); border: 2px solid rgba(255,255,255,0.85); color: var(--white);
  transition: background .15s, color .15s, transform .15s;
}
.carousel__btn:hover { background: var(--white); color: var(--red); }
.carousel__btn.prev { left: -14px; }
.carousel__btn.next { right: -14px; }

@media (max-width: 760px) {
  .splitfb { grid-template-columns: 1fr; }
  .splitfb--reverse .splitfb__media { order: 0; }
  .splitfb__media { min-height: 280px; }
  .iggrid { grid-template-columns: repeat(2, 1fr); }
  .carousel__btn.prev { left: 2px; } .carousel__btn.next { right: 2px; }
  .carousel__track > .dish { flex-basis: 70%; }
}

/* ============================================================
   PHOTO MOTION (new real photos)
   ============================================================ */
/* Slow "Ken Burns" drift on the hero photo */
@keyframes kenburns { 0% { transform: scale(1); } 100% { transform: scale(1.1); } }
.hero__photo img.kenburns { animation: kenburns 16s ease-in-out infinite alternate; }

/* Photos gently zoom on hover */
.split__media img { transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.split__media:hover img { transform: scale(1.05); }

/* Scroll-triggered "zoom reveal": image starts pushed-in, settles as it enters view */
.zoom-reveal { overflow: hidden; }
.zoom-reveal img { transform: scale(1.18); transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.zoom-reveal.in img { transform: scale(1); }
.zoom-reveal:hover img { transform: scale(1.05); }

/* Focus crops for portrait people-shots placed in landscape frames */
.pf-faces { object-position: center 20%; }
.pf-mid   { object-position: center 32%; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; padding: 56px 0 70px; }
  .hero__visual { max-width: 440px; margin-top: 10px; }
  .cats { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .grid4, .dishes { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  /* Shorter bar + smaller logo so the navbar fits comfortably on phones */
  :root { --nav-h: 62px; }
  .brand img { height: 38px; }
  .nav { gap: 10px; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--navy-800);
    padding: 12px 20px max(20px, env(safe-area-inset-bottom));
    transform: translateY(-150%);
    transition: transform .3s ease;
    box-shadow: var(--shadow);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: 14px; border-radius: var(--radius-sm); font-size: 1rem; }
  /* Compact actions so the navbar fits on phones */
  .nav__actions { gap: 8px; }
  .nav__actions .btn--primary { padding: 9px 16px; font-size: 0.8rem; }
  .split, .loc-grid { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse .split__media { order: 0; }
  .menu-items { grid-template-columns: 1fr; }
  .order__inner { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .hero__stats { gap: 22px; }
  .newsletter { padding: 36px 24px; }
  .newsletter form { flex-direction: column; }
  .newsletter input, .newsletter form .btn { width: 100%; justify-content: center; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 44px 0; }
  .section--tight { padding: 32px 0; }
}
@media (max-width: 440px) {
  .cats { grid-template-columns: 1fr; }
  .grid4, .dishes { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .brand img { height: 34px; }
  .nav__actions { gap: 6px; }
  .nav__actions .btn--primary { padding: 8px 13px; font-size: 0.74rem; letter-spacing: 0.02em; }
  .lang-toggle button { padding: 5px 9px; font-size: 0.74rem; }
  .nav__toggle { padding: 6px; }
}

/* ============================================================
   FINISHING TOUCHES (2026 design uplift)
   ============================================================ */
/* Scroll-to-top button (injected by main.js) */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-primary); color: #fff;
  font-size: 1.35rem; line-height: 1;
  box-shadow: var(--shadow-pink);
  opacity: 0; visibility: hidden; transform: translateY(16px) scale(.9);
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out), box-shadow .2s ease;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { transform: translateY(-3px); box-shadow: 0 20px 42px rgba(255,79,156,.55); }

/* Lift the brand logo a touch and add a soft halo */
.brand img { transition: transform .25s var(--ease-out), filter .25s ease; }
.brand:hover img { transform: scale(1.05); filter: drop-shadow(0 6px 14px rgba(255,79,156,.45)); }

/* Crisper delivery bubbles + partner tiles on hover */
.partner { border: 1px solid rgba(12,28,56,.05); }

/* Quote mark uses the brand gradient */
.quote::before {
  background: var(--grad-sunset);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Footer social buttons get a springy hover */
.socials a { transition: background .18s ease, transform .25s var(--ease-spring); }
.socials a:hover { transform: translateY(-3px) scale(1.06); }

/* ============================================================
   SCROLL EXPERIENCE — progress, entrance, reveals, parallax
   ============================================================ */

/* ---- Top scroll-progress bar ---- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 4px;
  transform: scaleX(0); transform-origin: 0 50%;
  background: var(--grad-sunset);
  box-shadow: 0 1px 8px rgba(255, 79, 156, .45);
  z-index: 200; pointer-events: none;
}
/* Where supported, drive it natively off the scroll timeline (off main thread) */
@supports (animation-timeline: scroll()) {
  .scroll-progress {
    animation: progressGrow linear both;
    animation-timeline: scroll(root block);
  }
}
@keyframes progressGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ---- Directional / scaled reveal variants (IntersectionObserver toggles .in) ---- */
.reveal-left  { transform: translateX(-48px); }
.reveal-right { transform: translateX(48px); }
.reveal-scale { transform: scale(.92); }
.reveal-up-lg { transform: translateY(64px); }
.reveal.in    { opacity: 1; transform: none; }

/* ---- Staggered children — JS adds .in to .stagger when it enters view ---- */
.stagger > * {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.stagger.in > * { opacity: 1; transform: none; }
.stagger.in > *:nth-child(1) { transition-delay: .04s; }
.stagger.in > *:nth-child(2) { transition-delay: .11s; }
.stagger.in > *:nth-child(3) { transition-delay: .18s; }
.stagger.in > *:nth-child(4) { transition-delay: .25s; }
.stagger.in > *:nth-child(5) { transition-delay: .32s; }
.stagger.in > *:nth-child(6) { transition-delay: .39s; }
.stagger.in > *:nth-child(7) { transition-delay: .46s; }
.stagger.in > *:nth-child(8) { transition-delay: .53s; }
.stagger.in > *:nth-child(n+9) { transition-delay: .6s; }
/* keep card hover lift working after a staggered reveal settles */
.stagger.in > .value:hover { transform: translateY(-8px); box-shadow: var(--shadow); }

/* ---- Continuous parallax pan on large scenic images (progressive enhancement) ---- */
@keyframes mediaPan {
  from { object-position: center 34%; }
  to   { object-position: center 66%; }
}
@supports (animation-timeline: view()) {
  .parallax-media {
    animation: mediaPan linear both;
    animation-timeline: view();
    will-change: object-position;
  }
}

/* ---- Cinematic hero entrance (on load) ---- */
@keyframes heroRise {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}
@keyframes heroPop {
  from { opacity: 0; transform: translateY(44px) scale(.95); }
  to   { opacity: 1; transform: none; }
}
.hero__inner > div > .eyebrow,
.hero__inner > div > .hero__title,
.hero__inner > div > .hero__text,
.hero__inner > div > .hero__cta {
  opacity: 0; animation: heroRise .8s var(--ease-out) forwards;
}
.hero__inner > div > .eyebrow     { animation-delay: .10s; }
.hero__inner > div > .hero__title { animation-delay: .22s; }
.hero__inner > div > .hero__text  { animation-delay: .36s; }
.hero__inner > div > .hero__cta   { animation-delay: .50s; }
.hero__visual { opacity: 0; animation: heroPop 1s var(--ease-out) .38s forwards; }

/* ---- Bouncing scroll cue at the foot of the hero ---- */
.scroll-cue {
  position: absolute; left: 50%; bottom: clamp(64px, 7vw, 130px); z-index: 3;
  transform: translateX(-50%);
  width: 26px; height: 42px; border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, .7);
  display: grid; justify-items: center;
  opacity: 0; animation: heroRise .8s var(--ease-out) .9s forwards;
}
.scroll-cue::before {
  content: ""; width: 4px; height: 8px; margin-top: 7px; border-radius: 3px;
  background: #fff; animation: cueDrop 1.6s var(--ease-out) infinite;
}
@keyframes cueDrop {
  0%   { transform: translateY(0); opacity: 0; }
  30%  { opacity: 1; }
  72%  { transform: translateY(13px); opacity: 0; }
  100% { opacity: 0; }
}
@media (max-width: 760px) { .scroll-cue { display: none; } }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; scroll-behavior: auto; }
  .reveal, .stagger > * { opacity: 1; transform: none; }
  .hero__inner > div > *, .hero__visual, .scroll-cue { opacity: 1 !important; transform: none !important; }
  .zoom-reveal img, .hero__photo img.kenburns { transform: none !important; }
  .scroll-progress { display: none; }
  .to-top { transition: opacity .2s ease; }
}
