/* ==========================================================================
   Kukurico — public website
   Modern, responsive, animated. Red brand + handwritten accents.
   ========================================================================== */

/* ==========================================================================
   POPULAR MENU SECTION (two-column horizontal list with icon tabs)
   ========================================================================== */
.menu-popular {
  position: relative;
  padding: 110px 0 130px;
  background: #faf6f3;
  overflow: hidden;
  isolation: isolate;
}

/* Decorative scattered ingredients (left margin onion/pepper, right plate) */
.pop-deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 16px 24px rgba(0,0,0,.12));
}
.pop-deco-onion {
  width: 200px;
  left: -60px;
  top: 38%;
  transform: rotate(-12deg);
  opacity: .85;
  animation: popFloat 8s ease-in-out infinite;
}
.pop-deco-pepper {
  width: 70px;
  left: 50px;
  top: 28%;
  animation: popFloat 6s ease-in-out -1.5s infinite;
}
.pop-deco-tomato {
  width: 70px;
  left: 30px;
  bottom: 22%;
  animation: popFloat 7s ease-in-out -2.5s infinite;
}
.pop-deco-plate {
  width: 220px; height: 220px;
  border-radius: 50%;
  object-fit: cover;
  right: -110px;
  top: 8%;
  box-shadow: var(--shadow-lg);
  animation: popFloat 9s ease-in-out -1s infinite;
}
@keyframes popFloat {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-12px) rotate(2deg); }
}
.pop-deco-onion { animation-name: popFloatRot; }
@keyframes popFloatRot {
  0%, 100% { transform: translateY(0) rotate(-12deg); }
  50%      { transform: translateY(-10px) rotate(-8deg); }
}

/* Brushes */
.pop-brush {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.pop-brush-1 { top: 80px;  left: 8%;  width: 480px; height: 80px; transform: rotate(-3deg); }
.pop-brush-2 { bottom: 70px; right: 8%; width: 420px; height: 80px; transform: rotate(2deg); }

.menu-popular .container { position: relative; z-index: 1; }

/* HEAD */
.pop-head {
  text-align: center;
  margin-bottom: 28px;
  position: relative;
}
.pop-eyebrow {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--brand);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pop-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5.5vw, 68px);
  letter-spacing: 1px;
  color: var(--ink-900);
  margin-bottom: 6px;
  line-height: 1;
}
.pop-title .handwritten { font-size: .9em; }
.pop-kicker {
  display: inline-block;
  font-size: 22px;
  color: var(--brand);
  transform: rotate(-2deg);
  font-weight: 700;
}

/* TABS — circular icon tabs with handwritten underline on active */
.pop-tabs {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin: 36px auto 56px;
  position: relative;
}
.pop-tab {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 8px 6px 14px;
  position: relative;
  color: var(--ink-500);
  transition: color .2s;
}
.pop-tab-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--ink-200);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: #fff;
  transition: border-color .25s var(--ease), color .25s, background .25s, transform .25s, box-shadow .3s;
}
.pop-tab-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .2px;
  position: relative;
}
.pop-tab:hover { color: var(--brand); }
.pop-tab:hover .pop-tab-icon {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -10px rgba(220,38,38,.5);
}
.pop-tab.active { color: var(--brand); }
.pop-tab.active .pop-tab-icon {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-50);
}
/* Hand-drawn underline under active tab */
.pop-tab.active .pop-tab-label::after {
  content: "";
  position: absolute;
  left: -6px; right: -6px;
  bottom: -10px;
  height: 8px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 8' preserveAspectRatio='none'><path d='M2 5 C 30 1, 70 1, 98 4' fill='none' stroke='%23dc2626' stroke-width='2.6' stroke-linecap='round'/></svg>") no-repeat center / 100% 100%;
}

/* TWO-COLUMN LIST */
.pop-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 56px;
  margin: 0 auto;
  max-width: 1100px;
}

.pop-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  transition: background .25s, transform .25s var(--ease), box-shadow .25s;
}
.pop-item:hover {
  background: #fff;
  transform: translateX(4px);
  box-shadow: 0 14px 32px -16px rgba(11,10,10,.18);
}
.pop-item.is-collapsed { display: none; }
.pop-item.is-hidden    { display: none; }

.pop-thumb {
  width: 80px; height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--ink-100);
  flex-shrink: 0;
  position: relative;
}
.pop-thumb::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px #fff, inset 0 0 0 5px var(--ink-200);
}
.pop-item:hover .pop-thumb::after {
  box-shadow: inset 0 0 0 4px #fff, inset 0 0 0 5px var(--brand);
}
.pop-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.pop-item:hover .pop-thumb img { transform: scale(1.1); }

.pop-body {
  display: flex; flex-direction: column;
  min-width: 0;
}
.pop-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  margin-bottom: 4px;
}
.pop-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pop-dots {
  display: block;
  height: 1px;
  background-image: radial-gradient(circle, var(--ink-300) 1px, transparent 1.5px);
  background-size: 6px 6px;
  background-position: center;
  background-repeat: repeat-x;
  min-width: 24px;
  margin: 0 4px;
}
.pop-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 19px;
  letter-spacing: 1px;
  color: var(--brand);
  white-space: nowrap;
}
.pop-price small { font-size: 11px; opacity: .75; }
.pop-desc {
  font-size: 13px;
  color: var(--ink-500);
  line-height: 1.4;
}

@media (max-width: 880px) {
  .pop-list { grid-template-columns: 1fr; gap: 18px; }
  .pop-deco-onion, .pop-deco-pepper, .pop-deco-tomato, .pop-deco-plate { display: none; }
  .pop-brush-1, .pop-brush-2 { display: none; }
  .pop-tabs { gap: 16px; }
  .pop-tab-icon { width: 48px; height: 48px; font-size: 22px; }
  .pop-thumb { width: 64px; height: 64px; }
  .pop-item { grid-template-columns: 64px 1fr; gap: 14px; }
}


:root {
  --brand: #dc2626;
  --brand-600: #b91c1c;
  --brand-700: #991b1b;
  --brand-800: #7f1d1d;
  --brand-50: #fef2f2;
  --brand-100: #fee2e2;
  --brand-200: #fecaca;
  --accent: #f59e0b;
  --accent-2: #fb923c;

  --ink-900: #0b0a0a;
  --ink-800: #1a1717;
  --ink-700: #2b2727;
  --ink-500: #6b6464;
  --ink-400: #9b9595;
  --ink-300: #d6d2d2;
  --ink-200: #ebe7e7;
  --ink-100: #f6f3f3;
  --ink-50:  #fbfafa;

  --bg:      #fbfafa;
  --bg-dark: #0b0a0a;
  --card:    #ffffff;

  --shadow-sm: 0 1px 2px rgba(15,12,12,.06), 0 1px 3px rgba(15,12,12,.04);
  --shadow-md: 0 8px 24px rgba(15,12,12,.08);
  --shadow-lg: 0 24px 60px rgba(15,12,12,.16);
  --shadow-xl: 0 40px 100px rgba(220,38,38,.18);

  --radius-sm: 10px;
  --radius:    18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --container: 1200px;
  --header-h: 76px;

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-900);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

html { scroll-behavior: smooth; }
body { overflow-x: hidden; }

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

::selection { background: var(--brand); color: #fff; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.handwritten {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -.5px;
}

.hl {
  color: var(--brand);
  position: relative;
  display: inline-block;
}
.hl::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px; bottom: -4px;
  height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'><path d='M2 9 C 40 1, 100 1, 198 7' fill='none' stroke='%23dc2626' stroke-width='3' stroke-linecap='round'/></svg>") no-repeat center / 100% 100%;
  opacity: .85;
  pointer-events: none;
}
.hl-light::after { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'><path d='M2 9 C 40 1, 100 1, 198 7' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round'/></svg>"); }
.hl-thin { color: var(--brand); }

/* ==========================================================================
   Loader
   ========================================================================== */
.loader {
  position: fixed; inset: 0;
  z-index: 9999;
  background: var(--bg-dark);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity .6s var(--ease), visibility .6s;
}
.loader.is-hidden { opacity: 0; visibility: hidden; }
.loader-mark { display: flex; align-items: center; gap: 14px; }
.loader-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 24px rgba(220,38,38,.6);
  animation: pulse 1.2s var(--ease) infinite;
}
.loader-text {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 4px;
  color: #fff;
  font-size: 24px;
}
.loader-bar {
  width: 220px; height: 2px; background: rgba(255,255,255,.1);
  border-radius: 4px; overflow: hidden;
}
.loader-bar > span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--brand), var(--accent-2));
  animation: load 1.6s var(--ease) forwards;
}
@keyframes load { to { width: 100%; } }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: .6; } }

/* ==========================================================================
   Cursor (desktop only)
   ========================================================================== */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fff;
  transition: transform .15s var(--ease-out);
}
.cursor-ring {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid #fff;
  transition: transform .25s var(--ease-out), width .25s, height .25s;
}
.cursor-ring.is-hover { width: 60px; height: 60px; border-color: #fff; }
@media (hover: none), (max-width: 900px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600; font-size: 15px;
  transition: transform .25s var(--ease), box-shadow .25s, background .25s, color .25s;
  white-space: nowrap;
  position: relative;
}
.btn-sm { padding: 10px 16px; font-size: 13.5px; }
.btn-lg { padding: 16px 26px; font-size: 16px; }

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 30px -8px rgba(220,38,38,.55);
}
.btn-primary:hover {
  background: var(--brand-700);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -8px rgba(220,38,38,.65);
}
.btn-primary .btn-arrow {
  display: inline-flex;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  align-items: center; justify-content: center;
  transition: transform .3s var(--ease);
}
.btn-primary:hover .btn-arrow { transform: translateX(4px) rotate(-15deg); }

.btn-ghost {
  color: var(--ink-900);
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(11,10,10,.08);
}
.btn-ghost:hover { background: #fff; transform: translateY(-2px); }

.btn-outline {
  color: var(--brand);
  border: 1.5px solid var(--brand);
  background: transparent;
}
.btn-outline:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }

.btn-white {
  background: #fff; color: var(--brand);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-ghost-light {
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
  background: transparent;
}
.btn-ghost-light:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }

.full { width: 100%; justify-content: center; }

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .35s var(--ease), backdrop-filter .35s, box-shadow .35s;
}
.nav.is-stuck {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(11,10,10,.05), 0 8px 24px rgba(11,10,10,.04);
}
.nav-inner {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 18px;
  color: var(--ink-900);
}
.brand-logo {
  height: 52px; width: auto;
  display: block;
  transition: transform .3s var(--ease);
}
.brand:hover .brand-logo { transform: scale(1.05) rotate(-2deg); }
.brand-logo-light {
  height: 64px;
  filter: drop-shadow(0 4px 14px rgba(220,38,38,.35));
}
/* legacy fallback (in case .brand-mark / .brand-name still used somewhere) */
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-800) 100%);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  box-shadow: 0 8px 24px -8px rgba(220,38,38,.6);
}
.brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 2px;
}

.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-link {
  padding: 8px 14px;
  font-size: 14px; font-weight: 500;
  color: var(--ink-700);
  border-radius: 999px;
  position: relative;
  transition: color .2s, background .2s;
}
.nav-link:hover { color: var(--brand); }
.nav-link.active {
  color: var(--brand);
  background: var(--brand-50);
}

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--brand-50);
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-links {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    box-shadow: 0 24px 40px rgba(11,10,10,.1);
    transform: translateY(-12px);
    opacity: 0; pointer-events: none;
    transition: opacity .25s, transform .25s var(--ease);
  }
  .nav-links.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-link { width: 100%; padding: 12px 14px; font-size: 16px; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn { display: none; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-h) + 32px);
  padding-bottom: 80px;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #0a0606;
}

/* Full-bleed background video */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
/* Dark + brand-coloured overlay so the headline copy stays readable */
.hero-bg-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(1200px 800px at 80% -10%, rgba(220,38,38,.45), transparent 60%),
    radial-gradient(900px 600px at -10% 110%, rgba(245,158,11,.25), transparent 60%),
    linear-gradient(180deg, rgba(10,6,6,.55) 0%, rgba(10,6,6,.7) 60%, rgba(10,6,6,.85) 100%);
}

/* Hero text: bumped to white-on-dark since bg is now video */
.hero .hero-title { color: #fff; }
.hero .hero-sub { color: rgba(255,255,255,.78); }
.hero .hl-thin { color: #fca5a5; }
.hero .eyebrow {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
}
.hero .stat-num { color: #fff; }
.hero .stat-lbl { color: rgba(255,255,255,.6); }
.hero .hero-stats { border-top-color: rgba(255,255,255,.16); }
.hero .scroll-cue { color: rgba(255,255,255,.6); }
.hero .scroll-cue-line { background: linear-gradient(to bottom, rgba(255,255,255,.45), transparent); }
.hero .btn-ghost {
  color: #fff;
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
}
.hero .btn-ghost:hover { background: rgba(255,255,255,.18); }
.hero .cta-note { color: #fed7aa; }
.hero .hero-art-video { display: none; }   /* old right-side circle is gone */
.hero .hero-art-ring { display: none; }
.hero .hero-art-tag { display: none; }     /* float just the spices over the video */

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  pointer-events: none;
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 48px;
  min-height: calc(100vh - var(--header-h) - 112px);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(11,10,10,.06);
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  color: var(--ink-700);
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 3px rgba(22,163,74,.2);
  animation: pulse 1.6s ease-in-out infinite;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 8.5vw, 120px);
  line-height: .92;
  letter-spacing: -2px;
  margin-bottom: 28px;
  color: var(--ink-900);
}
.hero-title .t-line {
  display: block;
  overflow: hidden;
}
.hero-title .word {
  display: inline-block;
}
.hero-title .handwritten {
  font-size: .9em;
  color: var(--brand);
  margin-right: 6px;
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-700);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 56px;
}

.cta-note {
  position: relative;
  margin-left: 8px;
  color: var(--brand);
  display: inline-flex;
  align-items: flex-start;
  gap: 6px;
}
.cta-note-text {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  font-weight: 700;
  white-space: nowrap;
  transform: rotate(-4deg);
  margin-top: -8px;
}
.cta-arrow {
  width: 90px; height: 50px;
  transform: scaleX(-1) rotate(8deg) translateY(-4px);
}
.cta-arrow-path, .cta-arrow-head {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  pathLength: 1;
  animation: drawArrow 1.6s var(--ease-out) .8s forwards;
}
.cta-arrow-head { animation-delay: 1.6s; }
@keyframes drawArrow { to { stroke-dashoffset: 0; } }

.hero-stats {
  display: flex; gap: 32px;
  padding-top: 28px;
  border-top: 1px dashed rgba(11,10,10,.12);
  max-width: 540px;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  letter-spacing: 1px;
  color: var(--ink-900);
  line-height: 1;
}
.stat-lbl {
  font-size: 12.5px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* Hero art (right side: video + floating spices) */
.hero-art {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 600px;
  margin-left: auto;
}
.hero-art-ring {
  position: absolute;
  inset: -4%;
  border-radius: 50%;
  background:
    conic-gradient(from 220deg, rgba(220,38,38,.20), rgba(245,158,11,.25), rgba(220,38,38,.12) 60%, transparent 80%);
  filter: blur(50px);
  animation: spin 18s linear infinite;
  z-index: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Centerpiece video (replaces the old 3D burger) */
.hero-art-video {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(220,38,38,.18);
  z-index: 2;
  animation: float 7s ease-in-out infinite;
  background: #0a0606;
}
.hero-art-video::before {
  /* soft inner ring */
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 6px rgba(255,255,255,.06), inset 0 0 40px rgba(0,0,0,.35);
  z-index: 2;
  pointer-events: none;
}
.hero-art-video video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-14px) rotate(1.5deg); }
}

/* Floating PNG spice cluster (real PNGs with transparency) */
.spice {
  position: absolute;
  width: 64px; height: 64px;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,.28));
  animation: spiceFloat 7s ease-in-out infinite;
  user-select: none;
  will-change: transform;
}
.spice-1 { top: -2%;   left: 8%;   width: 78px; animation-duration: 6.5s; }
.spice-2 { top: 18%;   left: -8%;  width: 60px; animation-delay: -1.4s; }
.spice-3 { top: 56%;   left: -6%;  width: 72px; animation-delay: -2.1s; animation-duration: 8s; }
.spice-4 { bottom: -4%; left: 14%; width: 64px; animation-delay: -3.0s; }
.spice-5 { top: -4%;   right: 10%; width: 70px; animation-delay: -.7s; }
.spice-6 { top: 28%;   right: -8%; width: 58px; animation-delay: -2.6s; animation-duration: 9s; }
.spice-7 { bottom: 18%; right: -6%; width: 66px; animation-delay: -1.8s; }
.spice-8 { bottom: -6%; right: 18%; width: 54px; animation-delay: -3.6s; }

@keyframes spiceFloat {
  0%   { transform: translateY(0)   rotate(0deg); }
  50%  { transform: translateY(-14px) rotate(8deg); }
  100% { transform: translateY(0)   rotate(0deg); }
}

.hero-art-tag {
  position: absolute;
  background: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  box-shadow: var(--shadow-md);
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink-900);
}
.hero-art-tag i { color: var(--brand); }
.tag-1 { top: 8%; left: -8%; animation: bob 5s ease-in-out infinite; }
.tag-2 { top: 50%; right: -10%; animation: bob 6s ease-in-out -2s infinite; }
.tag-3 { bottom: 10%; left: -2%; animation: bob 5.5s ease-in-out -1s infinite; color: var(--accent); }
.tag-3 i { color: var(--accent); }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.scroll-cue {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-500);
  z-index: 3;
}
.scroll-cue-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--ink-400), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-cue-line::after {
  content: "";
  position: absolute;
  top: -20px; left: 0; right: 0;
  height: 20px;
  background: var(--brand);
  animation: cue 2s ease-in-out infinite;
}
@keyframes cue {
  0%   { transform: translateY(0); }
  100% { transform: translateY(70px); }
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 64px; }
  .hero-art { margin: 0 auto; max-width: 400px; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 32px; }
}

/* ==========================================================================
   Marquee — with BBQ video background
   ========================================================================== */
.marquee {
  background: #0a0606;
  color: #fff;
  padding: 26px 0;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.marquee-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.32;
  filter: saturate(1.1) brightness(.75);
  pointer-events: none;
}
.marquee-veil {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0) 0%, rgba(10,6,6,.45) 75%),
    linear-gradient(180deg, rgba(10,6,6,.55) 0%, rgba(10,6,6,.35) 50%, rgba(10,6,6,.55) 100%);
}
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 100px;
  z-index: 3; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(to right, #0a0606, transparent); }
.marquee::after  { right: 0; background: linear-gradient(to left, #0a0606, transparent); }
.marquee-track {
  position: relative;
  z-index: 2;
  display: flex; gap: 36px; align-items: center;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 4px;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}
.marquee-track i {
  color: var(--brand); font-size: 14px;
  filter: drop-shadow(0 0 8px rgba(220,38,38,.6));
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Section base
   ========================================================================== */
.section {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 720px) { .section { padding: 80px 0; } }

.section-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--brand);
  margin-bottom: 16px;
  position: relative;
  padding-left: 36px;
}
.section-eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 24px; height: 2px;
  background: var(--brand);
  transform: translateY(-50%);
}
.section-eyebrow.light { color: rgba(255,255,255,.85); }
.section-eyebrow.light::before { background: rgba(255,255,255,.85); }

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 16px;
  color: var(--ink-900);
}
.section-title .handwritten { font-size: .95em; }

.section-lead {
  font-size: 17px;
  color: var(--ink-500);
  max-width: 600px;
}

.section-head {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 720px;
}
.section-head .section-eyebrow { padding-left: 0; }
.section-head .section-eyebrow::before { display: none; }
.section-head .section-lead { margin: 0 auto; }

/* ==========================================================================
   STORY
   ========================================================================== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
}

.story-media {
  position: relative;
  aspect-ratio: 4/5;
}
.story-media-frame {
  position: relative;
  width: 100%; height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.story-media-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.story-media:hover .story-media-frame img { transform: scale(1.05); }

.story-media-blob {
  position: absolute;
  inset: -30px -30px auto auto;
  width: 60%; height: 60%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent-2) 100%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  filter: blur(2px);
  z-index: 1;
  animation: blob 10s ease-in-out infinite;
}
@keyframes blob {
  0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  50%      { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

.story-media-stamp {
  position: absolute;
  bottom: -28px; left: -28px;
  z-index: 3;
  width: 130px; height: 130px;
  background: #fff;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  transform: rotate(-12deg);
  text-align: center;
  border: 2px dashed var(--brand-200);
}
.story-media-stamp .handwritten {
  color: var(--brand);
  font-size: 22px;
  line-height: 1;
}
.story-media-stamp strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  letter-spacing: 2px;
  color: var(--ink-900);
  line-height: 1;
  margin-top: 4px;
}

.story-points {
  margin: 28px 0 32px;
}
.story-points li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  color: var(--ink-700);
  font-weight: 500;
}
.story-points i { color: var(--brand); font-size: 20px; }

@media (max-width: 880px) {
  .story-grid { grid-template-columns: 1fr; gap: 80px; }
  .story-media { max-width: 480px; margin: 0 auto; }
}

/* ==========================================================================
   MENU
   ========================================================================== */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}
.menu-tab {
  padding: 10px 22px;
  font-size: 14px; font-weight: 600;
  color: var(--ink-700);
  background: var(--card);
  border: 1.5px solid var(--ink-200);
  border-radius: 999px;
  transition: all .25s var(--ease);
}
.menu-tab:hover { border-color: var(--brand); color: var(--brand); }
.menu-tab.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 8px 24px -8px rgba(220,38,38,.6);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 28px;
}

.menu-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--ink-200);
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
  display: flex; flex-direction: column;
}
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.menu-card.is-hidden {
  display: none;
}

.menu-card-badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  background: var(--brand);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 8px 20px -6px rgba(220,38,38,.5);
}
.menu-card-badge.badge-new { background: var(--accent); }

.menu-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ink-100);
}
.menu-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.menu-card:hover .menu-card-img img { transform: scale(1.08); }

.menu-card-body {
  padding: 22px;
  display: flex; flex-direction: column; flex: 1;
}
.menu-card-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}
.menu-card-head h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px; font-weight: 700;
  letter-spacing: -.3px;
}
.price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--brand);
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 4px;
}
.price::after {
  content: "";
  position: absolute;
  left: 0; right: 4px; bottom: -2px;
  height: 6px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 8' preserveAspectRatio='none'><path d='M2 5 C 30 1, 70 1, 98 4' fill='none' stroke='%23dc2626' stroke-width='2.4' stroke-linecap='round'/></svg>") no-repeat center / 100% 100%;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity .3s, transform .5s var(--ease-out);
}
.menu-card:hover .price::after { opacity: .8; transform: scaleX(1); }
.price small { font-size: 12px; opacity: .7; margin-left: 2px; }

.menu-card-desc {
  font-size: 14px;
  color: var(--ink-500);
  flex: 1;
  margin-bottom: 18px;
}

.menu-card-foot {
  display: flex; align-items: center; justify-content: space-between;
}
.rating {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 600;
  color: var(--ink-700);
}
.rating i { color: var(--accent); }

.menu-foot { text-align: center; margin-top: 56px; }

/* ── Menu section decoration: brushes, scribbles, handwritten kicker ──── */
.menu { position: relative; isolation: isolate; overflow: hidden; }

.menu-brush {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.menu-brush-1 {
  top: 80px; left: -80px;
  width: 480px; height: 80px;
  transform: rotate(-6deg);
}
.menu-brush-2 {
  bottom: 120px; right: -60px;
  width: 420px; height: 80px;
  transform: rotate(4deg);
}
.menu-scribble {
  position: absolute;
  top: 32px; right: 8%;
  width: 110px; height: 110px;
  z-index: 0;
  pointer-events: none;
  animation: scribbleSpin 22s linear infinite;
}
@keyframes scribbleSpin { to { transform: rotate(360deg); } }

.menu .container { position: relative; z-index: 1; }

.menu-kicker {
  display: block;
  font-size: 28px;
  color: var(--brand);
  transform: rotate(-2deg);
  margin-bottom: 4px;
  font-weight: 700;
}

/* Handwritten note + arrow pointing at the tabs */
.menu-tabs-note {
  display: inline-flex;
  align-items: flex-end;
  gap: 4px;
  margin: 18px auto 0;
  color: var(--brand);
  position: relative;
  transform: translateX(-90px);
}
.menu-tabs-note-text {
  font-size: 22px;
  font-weight: 700;
  white-space: nowrap;
  transform: rotate(-4deg);
  margin-bottom: -4px;
}
.menu-tabs-arrow {
  width: 90px; height: 50px;
  transform: rotate(8deg);
}
.menu-tabs-arrow path {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
}
.menu .reveal.is-visible .menu-tabs-arrow path {
  animation: drawTabsArrow 1.4s var(--ease-out) .3s forwards;
}
.menu .reveal.is-visible .menu-tabs-arrow path:last-child {
  animation-delay: 1.1s;
}
@keyframes drawTabsArrow { to { stroke-dashoffset: 0; } }

@media (max-width: 720px) {
  .menu-tabs-note { transform: none; margin-top: 12px; }
  .menu-brush-1, .menu-brush-2, .menu-scribble { display: none; }
}

/* Hide cards past the visible limit (set by JS via data attribute on #menuGrid) */
.menu-card.is-collapsed { display: none; }

/* Hand-drawn "show more" trigger */
.show-more {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand);
  padding: 14px 8px;
  position: relative;
  transition: transform .25s var(--ease);
}
.show-more:hover { transform: translateX(6px); }
.show-more-text {
  font-family: 'Caveat', cursive;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  transform: rotate(-3deg);
  display: inline-block;
}
.show-more-arrow {
  width: 110px;
  height: 40px;
  margin: 0 -6px;
  transform: rotate(2deg);
}
.show-more-stroke,
.show-more-head {
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  animation: drawShowMore 1.6s var(--ease-out) .3s forwards;
}
.show-more-head { animation-delay: 1.2s; }
@keyframes drawShowMore { to { stroke-dashoffset: 0; } }
.show-more-count {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  background: var(--brand-50);
  color: var(--brand);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1.5px dashed var(--brand-200);
}
.show-more-count::before { content: attr(data-text); }
.show-more.is-expanded .show-more-text::after { content: " less"; }
.show-more.is-expanded .show-more-arrow { transform: rotate(180deg); }

/* ==========================================================================
   WHY US
   ========================================================================== */
.why { background: var(--ink-50); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--ink-200);
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
  position: relative;
  overflow: hidden;
}

/* Photo variant — image strip on top, text below */
.why-card-photo { padding: 0; overflow: hidden; }
.why-card-photo h3 { padding: 22px 24px 4px; margin-bottom: 4px; }
.why-card-photo p { padding: 0 24px 26px; color: var(--ink-500); font-size: 14.5px; }

.why-card-img {
  position: relative;
  aspect-ratio: 4/2.5;
  overflow: hidden;
  background: var(--ink-100);
}
.why-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.why-card-photo:hover .why-card-img img { transform: scale(1.06); }
.why-card-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11,10,10,.35) 100%);
}
.why-card-tag {
  position: absolute;
  top: 14px; right: 14px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: 0 8px 20px -6px rgba(220,38,38,.65);
  z-index: 2;
  transition: transform .35s var(--ease), background .25s;
}
.why-card-photo:hover .why-card-tag {
  transform: rotate(-12deg) scale(1.05);
  background: var(--brand-700);
}

/* Hand-drawn stroke at bottom of icon cards */
.why-card-stroke {
  position: absolute;
  left: 28px; right: 28px; bottom: 18px;
  width: calc(100% - 56px); height: 8px;
  opacity: .6;
}

/* Accent (handwritten note in corner) variant */
.why-card-accent { background: linear-gradient(135deg, var(--brand-50) 0%, #fff 60%); }
.why-card-handwritten {
  position: absolute;
  bottom: 16px; right: 22px;
  font-size: 22px;
  color: var(--brand);
  transform: rotate(-3deg);
  font-weight: 700;
  pointer-events: none;
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transform: translateX(-100%);
  transition: transform .5s var(--ease);
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.why-card:hover::before { transform: translateX(0); }

.why-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--brand-50);
  color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
  transition: transform .4s var(--ease), background .3s;
}
.why-card:hover .why-icon {
  background: var(--brand);
  color: #fff;
  transform: rotate(-8deg) scale(1.05);
}
.why-card h3 {
  font-size: 18px; font-weight: 700;
  margin-bottom: 8px;
}
.why-card p {
  color: var(--ink-500);
  font-size: 14.5px;
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.g-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: block;
}
.g-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,10,10,.6) 100%);
  opacity: 0;
  transition: opacity .35s;
}
.g-item:hover::after { opacity: 1; }
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.g-item:hover img { transform: scale(1.1); }

.g-1 { grid-column: span 2; grid-row: span 2; }
.g-4 { grid-column: span 2; }
@media (max-width: 880px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .g-1 { grid-column: span 2; grid-row: span 1; }
  .g-4 { grid-column: span 2; }
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.t-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.t-card {
  background: var(--card);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .35s var(--ease), box-shadow .35s;
  position: relative;
}
.t-card::before {
  content: "“";
  position: absolute;
  top: 8px; right: 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 100px;
  line-height: 1;
  color: var(--brand-100);
}
.t-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.t-stars { color: var(--accent); margin-bottom: 14px; }
.t-card blockquote {
  font-size: 16px; line-height: 1.6;
  color: var(--ink-800);
  font-style: italic;
  margin-bottom: 22px;
}
.t-card figcaption {
  display: flex; align-items: center; gap: 12px;
}
.t-card figcaption img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.t-card figcaption strong {
  display: block; font-size: 14.5px;
}
.t-card figcaption span {
  font-size: 12.5px; color: var(--ink-500);
}

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band {
  padding: 80px 0;
}
.cta-band-inner {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-800) 100%);
  border-radius: var(--radius-xl);
  padding: 64px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band-inner::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,.12), transparent 60%);
  border-radius: 50%;
}
.cta-band-inner::after {
  content: "";
  position: absolute;
  bottom: -200px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,.18), transparent 60%);
  border-radius: 50%;
}
.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 12px;
  position: relative;
}
.cta-lead {
  color: rgba(255,255,255,.85);
  max-width: 460px;
  position: relative;
}
.cta-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: flex-end;
  position: relative;
}
@media (max-width: 880px) {
  .cta-band-inner { padding: 40px; grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-list {
  margin: 28px 0 32px;
  display: grid; gap: 20px;
}
.contact-list li {
  display: flex; gap: 16px;
  align-items: flex-start;
}
.contact-list i {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--brand-50);
  color: var(--brand);
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.contact-list strong {
  display: block;
  font-size: 14px;
  color: var(--ink-900);
  margin-bottom: 2px;
}
.contact-list span {
  color: var(--ink-500);
  font-size: 14px;
}

.socials { display: flex; gap: 10px; }
.socials a {
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1.5px solid var(--ink-200);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-700);
  font-size: 18px;
  transition: all .25s var(--ease);
}
.socials a:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  transform: translateY(-3px);
}

.contact-form {
  background: var(--card);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-200);
  box-shadow: var(--shadow-md);
  display: grid; gap: 16px;
}
.contact-form h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.contact-form .row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.contact-form label {
  display: flex; flex-direction: column; gap: 6px;
}
.contact-form label.full { grid-column: 1 / -1; }
.contact-form span {
  font-size: 12px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink-500);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1.5px solid var(--ink-200);
  border-radius: 10px;
  background: var(--ink-50);
  color: var(--ink-900);
  outline: none;
  transition: border-color .2s, background .2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--brand);
  background: #fff;
}

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form .row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.75);
  padding: 80px 0 32px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

/* Fire glow at the bottom-center of the footer (sides + top stay dark) */
.footer-fire {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(640px, 70%);
  height: 220px;
  z-index: 0;
  pointer-events: none;
  /* mask so only bottom-center is visible — feathers out to the sides + top */
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 50% 100%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse 70% 90% at 50% 100%, #000 30%, transparent 75%);
}
.footer-fire::before {
  /* CSS-only fire glow that always shows, even if fire.gif is missing */
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 90% at 50% 110%, rgba(251,146,60,.55), transparent 60%),
    radial-gradient(ellipse 80% 70% at 50% 100%, rgba(220,38,38,.45), transparent 65%),
    radial-gradient(ellipse 40% 50% at 50% 100%, rgba(253,224,71,.40), transparent 70%);
  filter: blur(8px);
  animation: flicker 2.4s ease-in-out infinite;
  z-index: 0;
}
.footer-fire img {
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  mix-blend-mode: screen;
  z-index: 1;
}
@keyframes flicker {
  0%,100% { opacity: .9; transform: scale(1); }
  35%     { opacity: 1;   transform: scale(1.04) translateY(-2px); }
  65%     { opacity: .85; transform: scale(.98)  translateY(2px); }
}
.footer-content { position: relative; z-index: 2; }
.brand-light { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p {
  margin-top: 16px;
  color: rgba(255,255,255,.55);
  font-size: 14.5px;
}
.footer h4 {
  color: #fff;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer ul li {
  margin-bottom: 10px;
}
.footer ul a {
  color: rgba(255,255,255,.6);
  font-size: 14.5px;
  transition: color .2s;
}
.footer ul a:hover { color: var(--brand); }

.muted { color: rgba(255,255,255,.45); font-size: 13.5px; }

.newsletter {
  display: flex; gap: 8px;
  margin-top: 12px;
}
.newsletter input {
  flex: 1;
  padding: 12px 14px;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  outline: none;
  font-family: inherit;
}
.newsletter input::placeholder { color: rgba(255,255,255,.4); }
.newsletter input:focus { border-color: var(--brand); }
.newsletter button {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--brand);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.newsletter button:hover { background: var(--brand-700); transform: translateY(-2px); }

.footer-foot {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Reveal animations (initial state — JS toggles .is-visible)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  will-change: transform, opacity;
}
.reveal[data-reveal="left"]  { transform: translateX(-60px); }
.reveal[data-reveal="right"] { transform: translateX(60px); }
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   v2 — CHALKBOARD MENU POSTER
   ========================================================================== */

.menu-board {
  position: relative;
  padding: 96px 0 120px;
  isolation: isolate;
  overflow: hidden;
  color: #f4ecd8;
  background:
    radial-gradient(900px 600px at 50% 0%, rgba(220,38,38,.10), transparent 60%),
    radial-gradient(900px 600px at 50% 100%, rgba(245,158,11,.08), transparent 60%),
    linear-gradient(180deg, #1a1413 0%, #14100f 60%, #0e0c0b 100%);
}

/* Chalk grain texture (svg noise overlay) */
.menu-board::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .12 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .55;
  mix-blend-mode: overlay;
}

/* Outer gold double-frame */
.menu-board::after {
  content: "";
  position: absolute; inset: 28px;
  z-index: 1;
  pointer-events: none;
  border: 2px solid rgba(232, 200, 122, 0.32);
  border-radius: 4px;
  box-shadow: inset 0 0 0 6px transparent, 0 0 0 4px transparent;
}

.board-container {
  position: relative;
  z-index: 3;
  text-align: center;
}

/* Decorative corner herbs/spices */
.board-corner {
  position: absolute;
  width: 110px; height: 110px;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.4));
}
.board-corner-tl { top: 22px;  left: 22px;  transform: rotate(-12deg); }
.board-corner-tr { top: 22px;  right: 22px; transform: rotate(20deg) scaleX(-1); }
.board-corner-bl { bottom: 22px; left: 22px;  transform: rotate(160deg); }
.board-corner-br { bottom: 22px; right: 22px; transform: rotate(-160deg) scaleX(-1); }

/* HEADER */
.board-head {
  margin-bottom: 56px;
  position: relative;
}
.board-utensils {
  display: inline-flex;
  width: 70px; height: 70px;
  align-items: center; justify-content: center;
  border: 2px solid rgba(232, 200, 122, 0.32);
  border-radius: 50%;
  font-size: 32px;
  color: #e8c87a;
  margin-bottom: 18px;
  position: relative;
}
.board-utensils::before,
.board-utensils::after {
  content: "";
  position: absolute;
  width: 32px; height: 2px;
  background: rgba(232, 200, 122, 0.32);
}
.board-utensils::before { left: -42px; }
.board-utensils::after  { right: -42px; }

.board-welcome {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 4px;
  font-size: 18px;
  color: #e8c87a;
  margin-bottom: 12px;
}

.board-title {
  font-size: clamp(56px, 9vw, 120px);
  line-height: .9;
  margin: 0;
}
.board-title-1 {
  display: block;
  color: #f5e6c8;
  font-size: 1em;
  font-style: italic;
  text-shadow: 0 2px 0 rgba(0,0,0,.35), 0 6px 18px rgba(0,0,0,.45);
}
.board-title-2 {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: .65em;
  letter-spacing: 6px;
  color: #f5e6c8;
  margin-top: -.15em;
  text-shadow: 0 2px 0 rgba(0,0,0,.35);
}

/* TASTY & FRESH ribbon */
.board-ribbon {
  position: relative;
  display: inline-block;
  margin-top: 18px;
  background: #e8c87a;
  color: #1a1413;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 4px;
  font-size: 18px;
  padding: 12px 38px;
  box-shadow: 0 8px 16px rgba(0,0,0,.35);
}
.board-ribbon::before,
.board-ribbon::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 18px;
  background: #e8c87a;
}
.board-ribbon::before {
  left: -16px;
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
}
.board-ribbon::after {
  right: -16px;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}
.board-ribbon span { position: relative; z-index: 1; }

/* GRID OF 4 PANELS */
.board-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 80px;
  text-align: left;
  position: relative;
  padding: 24px 16px;
}
/* Subtle dashed divider lines between the four panels */
.board-grid::before,
.board-grid::after {
  content: "";
  position: absolute;
  background-image: linear-gradient(to right, rgba(232, 200, 122, 0.25) 50%, transparent 50%);
  background-size: 12px 1px;
  background-repeat: repeat-x;
  pointer-events: none;
}
.board-grid::before {
  /* horizontal line splitting top/bottom rows */
  left: 4%; right: 4%;
  top: 50%;
  height: 1px;
}
.board-grid::after {
  /* vertical line splitting left/right cols */
  top: 4%; bottom: 4%;
  left: 50%;
  width: 1px;
  background-image: linear-gradient(to bottom, rgba(232, 200, 122, 0.25) 50%, transparent 50%);
  background-size: 1px 12px;
  background-repeat: repeat-y;
}

.board-panel {
  position: relative;
  padding: 14px 22px;
}

/* Category header with bracket dashes */
.board-cat {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 6px;
  font-size: 26px;
  color: #e8c87a;
  margin: 0 0 22px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}
.board-cat span {
  position: relative;
}
.board-cat::before,
.board-cat::after {
  content: "=";
  font-size: 22px;
  color: rgba(232, 200, 122, 0.7);
}

.board-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.board-items li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 16.5px;
  color: #f4ecd8;
  font-weight: 500;
}
.board-items li i {
  color: #e8c87a;
  font-size: 14px;
  flex-shrink: 0;
}
.board-items .bi-name { white-space: nowrap; }
.board-items .bi-dots {
  flex: 1;
  border-bottom: 1.5px dotted rgba(232, 200, 122, 0.40);
  transform: translateY(-4px);
}
.board-items em {
  font-style: normal;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  font-size: 18px;
  color: #f5e6c8;
}
.board-items em small { font-size: 11px; opacity: .7; }

/* Floating food image per panel */
.board-food {
  position: absolute;
  width: 220px; height: auto;
  z-index: 4;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.55));
  transition: transform .5s var(--ease);
  user-select: none;
  pointer-events: none;
}
.board-food.is-fallback {
  width: 200px; height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #e8c87a;
}
.board-panel:hover .board-food { transform: translateY(-6px) rotate(-2deg); }

.board-food-starters { top: -10px;   right: -50px; transform: rotate(8deg); width: 240px; }
.board-food-mains    { bottom: -20px; right: -40px; transform: rotate(-6deg); width: 220px; }
.board-food-burgers  { top: -10px;   right: -50px; transform: rotate(-8deg); width: 230px; }
.board-food-desserts { bottom: -20px; right: -40px; transform: rotate(6deg); width: 210px; }

/* BOTTOM "BEST FOOD IN TOWN!" banner */
.board-banner {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 6px;
  font-size: 32px;
  color: #e8c87a;
}
.board-banner-side {
  display: inline-block;
  width: 80px; height: 1px;
  background: rgba(232, 200, 122, 0.5);
}
.board-banner-text {
  text-shadow: 0 2px 0 rgba(0,0,0,.35);
}

.board-foot {
  margin-top: 18px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 3px;
  font-size: 14px;
  color: rgba(232, 200, 122, 0.7);
}

/* "see full menu" arrow link adapts to dark bg */
.menu-board .show-more { color: #e8c87a; }
.menu-board .show-more-count { background: rgba(232, 200, 122, 0.10); border-color: rgba(232, 200, 122, 0.4); color: #e8c87a; }

/* Responsive */
@media (max-width: 880px) {
  .board-grid { grid-template-columns: 1fr; gap: 48px; padding: 12px 0; }
  .board-grid::before,
  .board-grid::after { display: none; }
  .board-corner { width: 70px; height: 70px; }
  .board-food { width: 140px !important; right: -10px !important; }
  .board-banner { font-size: 24px; gap: 10px; letter-spacing: 4px; }
  .board-banner-side { width: 30px; }
  .menu-board::after { inset: 12px; }
}

/* ==========================================================================
   v2 — WHY KUKURICO (image hero + cards)
   ========================================================================== */
.why-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.4fr;
  gap: 60px;
  align-items: stretch;
}

.why-feature {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  min-height: 540px;
}
.why-feature-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 540px;
  box-shadow: var(--shadow-lg);
}
.why-feature-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,10,10,0) 35%, rgba(11,10,10,.8) 100%);
}
.why-feature-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.why-feature:hover .why-feature-img img { transform: scale(1.06); }

.why-feature-overlay {
  position: absolute;
  left: 28px; right: 28px; bottom: 28px;
  color: #fff;
  z-index: 2;
}
.why-feature-eyebrow {
  display: block;
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: #e8c87a;
  margin-bottom: 6px;
  transform: rotate(-2deg);
}
.why-feature-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.05;
  letter-spacing: -.5px;
  margin: 0;
  color: #fff;
}
.why-feature-title em {
  font-family: 'Caveat', cursive;
  font-style: normal;
  font-weight: 700;
  color: var(--brand);
  font-size: 1.05em;
}

/* Stat badge */
.why-stat {
  position: absolute;
  top: -22px; right: -22px;
  z-index: 3;
  width: 130px; height: 130px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  box-shadow: 0 18px 40px -10px rgba(220,38,38,.6);
  border: 3px dashed rgba(255,255,255,.3);
  transform: rotate(8deg);
  animation: statBob 5s ease-in-out infinite;
}
@keyframes statBob {
  0%, 100% { transform: rotate(8deg) translateY(0); }
  50%      { transform: rotate(6deg) translateY(-6px); }
}
.why-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  line-height: 1;
}
.why-stat-num span {
  font-size: 14px;
  letter-spacing: 1px;
  margin-left: 4px;
  vertical-align: super;
}
.why-stat-lbl {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: .9;
}

/* Floating spices around feature */
.why-feature-spice {
  position: absolute;
  width: 56px; height: 56px;
  z-index: 4;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.3));
  animation: spiceFloat 7s ease-in-out infinite;
}
.why-feature-spice-1 { bottom: -16px; left: -18px; animation-delay: -1s; }
.why-feature-spice-2 { top:    36%;   right: -20px; width: 48px; animation-delay: -3s; }

.why-content { display: flex; flex-direction: column; gap: 28px; }
.why-content .section-title { margin-top: 12px; }

.why .why-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

@media (max-width: 980px) {
  .why-layout { grid-template-columns: 1fr; gap: 40px; }
  .why-feature, .why-feature-img { min-height: 380px; }
  .why-stat { top: -16px; right: 16px; width: 110px; height: 110px; }
}
@media (max-width: 600px) {
  .why .why-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   v2 — FOOTER (icon row + 3D food centerpiece + bottom strip)
   ========================================================================== */
.footer-v2 {
  position: relative;
  padding: 220px 0 24px;     /* extra top padding so the centred 3D plate has room */
  background: #050202;
  color: rgba(255,255,255,.75);
  overflow: hidden;
  isolation: isolate;
}
.footer-v2::before {
  /* subtle red haze sitting bottom-center, just so the dark feels alive */
  content: "";
  position: absolute;
  left: 50%; bottom: -120px;
  transform: translateX(-50%);
  width: 80%; height: 360px;
  background: radial-gradient(ellipse at center, rgba(220,38,38,.18), transparent 60%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}

.footer-v2 .footer-content { position: relative; z-index: 2; }

.footer-confetti {
  position: absolute;
  width: 32px; height: 32px;
  z-index: 1;
  pointer-events: none;
  opacity: .7;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.4));
}
.footer-confetti-1 { top: 18%; left: 8%;  width: 28px; transform: rotate(-15deg); }
.footer-confetti-2 { top: 28%; right: 10%; width: 36px; transform: rotate(20deg); }
.footer-confetti-3 { bottom: 32%; left: 14%; width: 30px; transform: rotate(40deg); }
.footer-confetti-4 { top: 60%; right: 6%; width: 24px; transform: rotate(-30deg); }

/* Icon contact row */
.footer-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  margin-bottom: 56px;
}
.footer-icon-card {
  padding: 12px 18px;
  border-right: 1px dashed rgba(255,255,255,.08);
}
.footer-icon-card:last-child { border-right: 0; }

.footer-icon {
  width: 60px; height: 60px;
  margin: 0 auto 14px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--brand);
  font-size: 24px;
  transition: all .25s var(--ease);
}
.footer-icon-card:hover .footer-icon {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  transform: translateY(-3px);
}
.footer-icon-card h4 {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}
.footer-icon-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}

/* Big 3D food centerpiece — pinned to the TOP centre of the dark footer */
.footer-hero {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -38%);   /* lift so the plate emerges out of the footer */
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: clamp(280px, 42vw, 480px);
  pointer-events: none;
}
.footer-hero-glow {
  position: absolute;
  left: 50%; bottom: -40px;
  transform: translateX(-50%);
  width: 100%; height: 220px;
  background:
    radial-gradient(ellipse 60% 60% at 50% 100%, rgba(245,158,11,.40), transparent 60%),
    radial-gradient(ellipse 80% 70% at 50% 100%, rgba(220,38,38,.40), transparent 65%);
  filter: blur(28px);
  z-index: 0;
  pointer-events: none;
  animation: heroPulse 4s ease-in-out infinite;
}
@keyframes heroPulse {
  0%, 100% { opacity: .9; transform: translateX(-50%) scale(1); }
  50%      { opacity: 1;   transform: translateX(-50%) scale(1.04); }
}

.footer-hero-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 40px 50px rgba(0,0,0,.6)) drop-shadow(0 0 60px rgba(220,38,38,.3));
  animation: footerFloat 6s ease-in-out infinite;
  user-select: none;
  pointer-events: none;
}
.footer-hero-img.is-fallback {
  border-radius: 50%;
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
  max-width: 360px;
  height: auto;
  border: 6px solid rgba(232, 200, 122, 0.4);
}

@media (max-width: 720px) {
  .footer-v2 { padding-top: 180px; }
  .footer-hero { transform: translate(-50%, -32%); width: 280px; }
}
@keyframes footerFloat {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-10px) rotate(1.5deg); }
}

/* Bottom bar */
.footer-v2 .footer-foot {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
}
.footer-v2 .footer-foot > span:first-child { justify-self: start; }

.footer-foot-brand .brand-logo {
  height: 56px;
  filter: drop-shadow(0 4px 14px rgba(220,38,38,.35));
}

.footer-foot-socials {
  display: inline-flex;
  gap: 8px;
  justify-self: end;
}
.footer-foot-socials a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.65);
  font-size: 15px;
  transition: all .2s var(--ease);
}
.footer-foot-socials a:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 880px) {
  .footer-icons { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer-icon-card { border-right: 0; border-bottom: 1px dashed rgba(255,255,255,.08); padding-bottom: 18px; }
  .footer-icon-card:nth-last-child(-n+2) { border-bottom: 0; }
  .footer-v2 .footer-foot { grid-template-columns: 1fr; text-align: center; }
  .footer-v2 .footer-foot > * { justify-self: center !important; }
}
