/* ==========================================================================
   Strougas Pizza — Design tokens
========================================================================== */
:root {
  --red:           #dc2626;
  --red-600:       #c41f25;
  --red-700:       #a91b20;
  --red-soft:      #fee2e2;
  --red-glow:      rgba(220,38,38,.35);

  --orange:        #f97316;
  --orange-soft:   #ffedd5;

  --yellow:        #facc15;
  --yellow-soft:   #fef9c3;
  --amber:         #f59e0b;

  --cream:         #fef5ee;
  --cream-pink:    #fdeee6;       /* very light pink-cream */
  --cream-pink-2:  #fbe1d3;
  --bg:            #ffffff;

  --ink-900:       #0f172a;
  --ink-800:       #1f2937;
  --ink-700:       #334155;
  --ink-600:       #475569;
  --ink-500:       #64748b;
  --ink-400:       #94a3b8;
  --ink-300:       #cbd5e1;
  --ink-200:       #e2e8f0;
  --ink-100:       #f1f5f9;
  --ink-50:        #f8fafc;

  --dark:          #0d0d10;
  --dark-2:        #16161b;
  --dark-3:        #1f1f26;

  --green:         #10b981;
  --green-soft:    #d1fae5;

  --r-sm: 8px; --r: 14px; --r-lg: 20px; --r-xl: 28px; --r-2xl: 36px;
  --max: 1240px;

  --shadow-sm: 0 1px 3px rgba(15,23,42,.05), 0 1px 2px rgba(15,23,42,.03);
  --shadow:    0 10px 30px -10px rgba(15,23,42,.18), 0 4px 12px -4px rgba(15,23,42,.06);
  --shadow-lg: 0 30px 60px -20px rgba(15,23,42,.28), 0 14px 28px -8px rgba(15,23,42,.12);
  --shadow-red: 0 16px 36px -8px rgba(220,38,38,.45);
  --shadow-amber: 0 16px 36px -8px rgba(245,158,11,.45);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-700);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;          /* let section decorations bleed without horizontal scroll */
}
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
a { color: var(--red); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--red-700); }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 6px; }

.skip { position: absolute; top: -100px; left: 16px; background: var(--ink-900); color: #fff; padding: 12px 18px; border-radius: 8px; font-weight: 600; z-index: 1000; }
.skip:focus { top: 16px; color: #fff; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; position: relative; }
@media (max-width: 640px) { 
  .header .container{ padding: 0 8px; }
  .container { padding: 0 18px; }

}

/* ====== Typography ====== */
h1, h2, h3, h4 { color: var(--ink-900); margin: 0; line-height: 1.1; letter-spacing: -.02em; font-weight: 800; }
h1 { font-size: clamp(2.4rem, 6.5vw, 4.8rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.06; }
h2 { font-size: clamp(2rem, 4.6vw, 3.5rem); font-weight: 800; letter-spacing: -.025em; }
h3 { font-size: 1.35rem; font-weight: 700; letter-spacing: -.015em; }
p { margin: 0; }

.accent-red    { color: var(--red); }
.accent-yellow { color: var(--yellow); }
.accent-amber  { color: var(--amber); }

/* ====== Pill / Eyebrow ====== */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  height: 32px; padding: 0 14px;
  background: var(--red-soft); color: var(--red);
  border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: -.005em;
}
/* Decorative leading dot — only when the pill has no inline SVG icon */
.pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.pill:has(> svg)::before { display: none; }
.pill.yellow { background: rgba(250,204,21,.15); color: #b45309; }
.pill.yellow::before { background: var(--yellow); }
.pill.amber { background: rgba(245,158,11,.18); color: #b45309; }
.pill.dark { background: rgba(255,255,255,.06); color: rgba(255,255,255,.85); border: 1px solid rgba(255,255,255,.08); }
.pill.dark::before { background: var(--yellow); }
.pill.center { margin: 0 auto; }
.pill > svg { flex-shrink: 0; }

/* ====== Buttons ====== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 52px; padding: 0 26px;
  border-radius: 14px;
  border: 1.5px solid transparent;
  font-weight: 600; font-size: 15px; letter-spacing: -.005em;
  white-space: nowrap;
  transition: transform .2s var(--ease), background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-red {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-red:hover { color: #fff; box-shadow: 0 22px 44px -8px rgba(220,38,38,.55); }
.btn-white {
  background: #fff; color: var(--red);
  border-color: rgba(15,23,42,.05);
  box-shadow: var(--shadow);
}
.btn-white:hover { color: var(--red-700); }
.btn-ghost-light {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.4);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.08); color: #fff; }
.btn-outline-red {
  background: transparent; color: var(--red); border-color: var(--red);
}
.btn-outline-red:hover { background: var(--red); color: #fff; }
.btn-yellow-outline {
  background: transparent; color: var(--yellow); border-color: var(--yellow);
}
.btn-yellow-outline:hover,
.btn-yellow-outline:focus-visible { background: var(--yellow); color: var(--ink-900); border-color: var(--yellow); }
.btn-small { height: 44px; padding: 0 20px; font-size: 14px; }
.btn-large { height: 60px; padding: 0 30px; font-size: 16px; border-radius: 16px; }

/* ============================================================
   HEADER
============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.header.scrolled { border-bottom-color: var(--ink-100); box-shadow: 0 8px 24px -16px rgba(15,23,42,.18); }
.header .nav {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink-900); }
.brand img { width: 40px; height: 40px; object-fit: contain; }
/* Logo module position (wrapper added when a 'logo' module is published) — force the
   right size on whatever <img> the module outputs, so it matches the static brand. */
.brand-logo { display: inline-flex; align-items: center; }
.brand-logo img { height: 55px; width: auto; max-width: 190px; object-fit: contain; display: block; }
.brand-logo a { display: inline-flex; align-items: center; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text .a { font-weight: 800; font-size: 16px; letter-spacing: -.01em; color: var(--ink-900); }
.brand-text .b { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-500); margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; padding: 0; margin: 0; }
.nav-links a { color: var(--ink-700); font-weight: 500; font-size: 14.5px; position: relative; }
.nav-links a:hover { color: var(--red); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch {
  display: inline-flex; align-items: center; gap: 6px;
  height: 36px; padding: 0 12px;
  border-radius: 999px;
  border: 1.5px solid var(--ink-200);
  color: var(--ink-700); font-size: 12.5px; font-weight: 600; letter-spacing: .08em;
}
.lang-switch:hover { background: var(--ink-900); color: #fff; border-color: var(--ink-900); }

/* ─── Joomla Language Switcher (mod_languages) ───────────────────────────────
   Styled for BOTH module modes. Cleanest is Dropdown=No (Inline) + Show Active=No
   → one pill link to the other language (matches the original, no Bootstrap needed).
   Dropdown=Yes is fully styled too: this template carries no Bootstrap CSS, so the
   menu look + show/hide are provided here (the dropdown JS just toggles .show). */
.nav-lang .moduletable,
.nav-lang .mod-languages,
.nav-lang .mod-languages__list,
.nav-lang .mod-languages__select { margin: 0; padding: 0; }
.nav-lang .visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.nav-lang img { width: 18px; height: auto; border-radius: 2px; flex: none; }

/* The pill — inline link(s) or the dropdown toggle */
.nav-lang .mod-languages__list a,
.nav-lang .dropdown-toggle {
  display: inline-flex; align-items: center; gap: 7px;
  height: 36px; padding: 0 12px;
  border-radius: 999px;
  border: 1.5px solid var(--ink-200);
  background: transparent;
  color: var(--ink-700); font-size: 12.5px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; text-decoration: none; white-space: nowrap; line-height: 1; cursor: pointer;
}
.nav-lang .mod-languages__list { list-style: none; display: inline-flex; align-items: center; gap: 8px; }
.nav-lang .mod-languages__list li { list-style: none; margin: 0; }
.nav-lang .mod-languages__list a:hover,
.nav-lang .dropdown-toggle:hover,
.nav-lang .dropdown-toggle[aria-expanded="true"] { background: var(--ink-900); color: #fff; border-color: var(--ink-900); }

/* Dropdown caret */
.nav-lang .dropdown-toggle::after {
  content: ""; width: 6px; height: 6px; margin-left: 1px;
  border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

/* Dropdown menu — Bootstrap JS toggles .show; we supply the card + show/hide */
.nav-lang .mod-languages__select { position: relative; display: inline-flex; }
.nav-lang .dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); right: 0; left: auto; z-index: 1000;
  min-width: 150px; margin: 0; padding: 6px; list-style: none;
  background: #fff; border: 1.5px solid var(--ink-200); border-radius: 14px;
  box-shadow: 0 14px 34px rgba(0,0,0,.14);
}
.nav-lang .dropdown-menu.show { display: block; }
.nav-lang .dropdown-menu li { list-style: none; margin: 0; }
.nav-lang .dropdown-menu a {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 11px; border-radius: 9px;
  color: var(--ink-700); font-size: 13px; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; text-decoration: none;
}
.nav-lang .dropdown-menu a:hover { background: var(--ink-100); color: var(--ink-900); }
.nav-lang .dropdown-menu .lang-active a { color: var(--ink-900); cursor: default; }

/* Override mod_languages/template.css defaults (higher specificity than div.mod-languages …) */
.nav-lang .mod-languages ul.lang-block li,
.nav-lang .mod-languages ul.lang-inline li { padding: 0; }                 /* drop Joomla's .5rem 0 — the <a> handles padding */
.nav-lang .mod-languages ul li.lang-active { background-color: transparent; }  /* drop the grey #f0f0f0 */

.menu-btn { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 10px; border: 1.5px solid var(--ink-200); color: var(--ink-900); }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .menu-btn { display: inline-flex; }
  /* room for logo + language switch + order CTA + burger on narrow screens */
  .nav-actions { gap: 4px; }
  .nav-lang .dropdown-menu { right: 0; left: auto; }   /* keep the popup inside the viewport */
  .nav-lang .mod-languages__list a,
  .nav-lang .dropdown-toggle { padding: 0 8px; }
  /* keep the order CTA label visible on mobile, just compact it */
  .header .btn.btn-red { padding: 0 8px; gap: 0px; }
  .header .btn.btn-red svg {display: none;}
  .header-cta-text { font-size: 13px; }
  .header-cta-text-long { display: none; }
}
@media (min-width: 981px) {
  .header-cta-text-short { display: none; }
}

.mobile-menu {
  position: fixed; inset: 0; background: var(--ink-900); color: #fff;
  z-index: 60; padding: 100px 28px 32px;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity .3s ease, transform .3s var(--ease), visibility .3s;
  display: flex; flex-direction: column; gap: 24px;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a { color: #fff; font-size: 28px; font-weight: 700; letter-spacing: -.01em; }
.mobile-menu a:hover { color: var(--yellow); }
.mobile-menu .close {
  position: absolute; top: 22px; right: 22px;
  width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; border: 1.5px solid rgba(255,255,255,.2); color: #fff;
}
.mobile-menu .ctas { margin-top: auto; display: flex; flex-direction: column; gap: 12px; }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: min(100vh, 820px);
  padding: 120px 0 80px;
  display: flex; align-items: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
@media (max-width: 720px) { .hero { min-height: 680px; } }
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% 50%, rgba(13,13,16,.35) 0%, rgba(13,13,16,.7) 50%, rgba(13,13,16,.85) 100%),
    linear-gradient(0deg, rgba(13,13,16,.6) 0%, rgba(13,13,16,.4) 100%);
}

.hero-decor-1, .hero-decor-2 {
  position: absolute; pointer-events: none; opacity: .12; z-index: -1;
}
.hero-decor-1 { top: 70px; left: 24px; width: 60px; height: 60px; }
.hero-decor-2 { bottom: 24px; right: 24px; width: 60px; height: 60px; transform: rotate(15deg); }
.hero-decor-1 svg, .hero-decor-2 svg { width: 100%; height: 100%; color: var(--red); }

.hero-card {
  position: relative;
  max-width: 760px; width: 100%;
  margin: 0 auto;
  background: rgba(13,13,16,.42);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-2xl);
  padding: 56px 56px;
  text-align: center;
  box-shadow: 0 30px 80px -10px rgba(0,0,0,.5);
}
@media (max-width: 640px) { .hero-card { padding: 36px 28px; border-radius: var(--r-xl); } }

.hero-card .ribbon {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow); color: var(--ink-900);
  padding: 8px 18px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  box-shadow: 0 12px 24px -10px rgba(250,204,21,.6);
  white-space: nowrap;
}
.hero-card .ribbon svg { width: 14px; height: 14px; }

.hero-card h1 {
  color: #fff;
  font-weight: 800;
  margin-bottom: 0;
}
.hero-card h1 .since {
  display: block;
  margin-top: .15em;
  color: var(--yellow);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: .8em;
  letter-spacing: -.02em;
}
.hero-card .lead {
  margin: 24px auto 36px;
  max-width: 540px;
  color: rgba(255,255,255,.84);
  font-size: 1.05rem;
  line-height: 1.65;
}
.hero-card .ctas {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin-bottom: 32px;
}
.hero-card .ctas .btn-red { box-shadow: 0 12px 30px -6px rgba(220,38,38,.6); }
.hero-card .addr {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: rgba(250,204,21,.12);
  border: 1px solid rgba(250,204,21,.32);
  border-radius: 999px;
  color: var(--yellow);
  font-size: 13.5px; font-weight: 500;
}
.hero-card .addr svg { width: 14px; height: 14px; }

.hero-corner {
  position: absolute; bottom: 32px; right: 32px;
  display: flex; align-items: center; gap: 8px;
  font-size: 24px;
  opacity: .85;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.4));
}
@media (max-width: 720px) { .hero-corner { display: none; } }

/* ============================================================
   SECTION CHROME
============================================================ */
.section { padding: clamp(72px, 11vw, 130px) 0; position: relative; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head .pill { margin-bottom: 22px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--ink-500); font-size: 1.08rem; }

/* ============================================================
   TRADITION
============================================================ */
.tradition {
  background: linear-gradient(180deg, var(--cream-pink) 0%, var(--cream-pink) 70%, #fff 100%);
  position: relative;
  overflow: hidden;
}
.tradition::before {
  content: ''; position: absolute;
  top: -120px; left: -120px; width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(252,165,165,.4) 0%, transparent 70%);
  border-radius: 50%;
}
.tradition-grid {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 80px; align-items: center;
  position: relative;
}
@media (max-width: 900px) { .tradition-grid { grid-template-columns: 1fr; gap: 56px; } }

.tradition h2 { margin: 22px 0 22px; }
.tradition .lead { color: var(--ink-600); font-size: 1.05rem; margin-bottom: 32px; max-width: 56ch; }
.tradition-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 32px; }
@media (max-width: 540px) { .tradition-feats { grid-template-columns: 1fr; } }
.tradition-feat {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px;
  background: #fff;
  border-radius: var(--r);
  border: 1px solid rgba(220,38,38,.08);
  transition: transform .25s var(--ease), box-shadow .25s ease;
}
.tradition-feat:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.tradition-feat .ico {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #ef4444, #dc2626);
}
.tradition-feat .ico.amber { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.tradition-feat .t { color: var(--ink-900); font-weight: 700; font-size: 15px; margin: 2px 0 4px; }
.tradition-feat .d { color: var(--ink-500); font-size: 13px; line-height: 1.45; }

.tr-image-wrap {
  position: relative;
  /* badge sits outside the rotated/clipped card so it isn't cropped */
}
.tr-image-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--ink-100);
  box-shadow: 0 40px 80px -20px rgba(220,38,38,.45);
  isolation: isolate;
  transform: rotate(2deg);
}
.tr-image-card .photo { position: absolute; inset: 0; }
.tr-image-card .photo img { width: 100%; height: 100%; object-fit: cover; }
/* Subtle orange→red glow anchored to the bottom-right corner only */
.tr-image-card::after {
  content: '';
  position: absolute;
  right: -10%; bottom: -10%;
  width: 60%; height: 60%;
  background: radial-gradient(circle at center, rgba(239,68,68,.55) 0%, rgba(251,146,60,.35) 40%, transparent 70%);
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: multiply;
}
.tr-image-card .caption {
  position: absolute; top: 24px; left: 24px;
  color: rgba(255,255,255,.85);
  font-size: 12px; font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 2;
}
.tr-badge {
  position: absolute;
  bottom: -28px; left: 28px;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 22px 28px;
  text-align: center;
  box-shadow: 0 22px 44px -12px rgba(15,23,42,.25);
  z-index: 5;
}
.tr-badge .n { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; color: var(--red); line-height: 1; letter-spacing: -.03em; }
.tr-badge .l { color: var(--ink-600); font-size: 12px; margin-top: 6px; }

/* decorative pizza circle in corner */
.tr-image-card .circle {
  position: absolute;
  top: -50px; right: -50px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  z-index: 1;
}

/* ============================================================
   PIZZAS / MENU
============================================================ */
.pizzas { background: #ffffff; position: relative; overflow: hidden; }
.pizzas::before {
  content: ''; position: absolute;
  top: -50px; left: -50px; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(254,215,170,.5) 0%, transparent 70%);
  border-radius: 50%;
}
.pizzas::after {
  content: ''; position: absolute;
  bottom: -50px; right: -50px; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(254,202,202,.5) 0%, transparent 70%);
  border-radius: 50%;
}

.pizza-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
@media (max-width: 880px) { .pizza-grid { grid-template-columns: 1fr; } }

.pizza-card {
  position: relative;
  background: var(--cream-pink);
  border-radius: var(--r-xl);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(220,38,38,.06);
  box-shadow: 0 2px 6px -2px rgba(15,23,42,.05);   /* resting shadow → eases up to lg on hover */
  transition: transform .45s var(--ease), box-shadow .55s var(--ease), border-color .35s ease;
  overflow: hidden;
}
.pizza-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(220,38,38,.18); }
.pizza-info { padding: 8px 4px; }
.pizza-tag {
  display: inline-flex; align-items: center; gap: 6px;
  height: 26px; padding: 0 12px;
  background: #fff; color: var(--green);
  border-radius: 999px;
  font-size: 11.5px; font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -.005em;
  box-shadow: var(--shadow-sm);
}
.pizza-tag::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.pizza-tag.popular { color: #16a34a; }
.pizza-tag.classic { color: #b45309; }
.pizza-tag.chef    { color: var(--red); }
.pizza-tag.signature { color: #7c3aed; }
.pizza-card h3 {
  color: var(--ink-900);
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.pizza-desc { color: var(--ink-600); font-size: 14.5px; line-height: 1.6; margin-bottom: 16px; }

.pizza-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.pizza-price { font-weight: 800; font-size: 1.35rem; color: var(--red); letter-spacing: -.02em; }
.pizza-stars { display: inline-flex; align-items: center; gap: 4px; color: var(--amber); }
.pizza-stars svg { width: 13px; height: 13px; }
.pizza-stars .num { color: var(--ink-500); font-size: 12.5px; margin-left: 4px; }

.pizza-image {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 36px -12px rgba(15,23,42,.18);
}
.pizza-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.pizza-card:hover .pizza-image img { transform: scale(1.05); }
.pizza-image .circle-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, transparent 60%, rgba(220,38,38,.08) 100%);
  pointer-events: none;
}

.pizza-cta-row { text-align: center; }

/* ============================================================
   MORE THAN JUST PIZZA (dark)
============================================================ */
.more {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.more::before {
  content: ''; position: absolute;
  top: 0; right: 0; width: 50%; height: 100%;
  background: radial-gradient(70% 60% at 80% 50%, rgba(220,38,38,.18) 0%, transparent 70%);
}
.more::after {
  content: ''; position: absolute;
  bottom: -100px; left: -100px; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(250,204,21,.08) 0%, transparent 70%);
}

.more-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 900px) { .more-grid { grid-template-columns: 1fr; gap: 56px; } }

.more h2 { color: #fff; margin: 22px 0 22px; }
.more h2 .em { color: var(--yellow); }
.more .lead { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-bottom: 32px; max-width: 56ch; }

.more-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 36px; }
@media (max-width: 540px) { .more-feats { grid-template-columns: 1fr; } }
.more-feat {
  display: flex; gap: 14px;
  padding: 6px 2px;
}
.more-feat .ico {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.more-feat .ico.red { background: linear-gradient(135deg, #ef4444, #b91c1c); }
.more-feat .ico.amber { background: linear-gradient(135deg, #fbbf24, #d97706); }
.more-feat .ico.green { background: linear-gradient(135deg, #34d399, #059669); }
.more-feat .ico.yellow { background: linear-gradient(135deg, #fde047, #eab308); color: var(--ink-900); }
.more-feat .t { color: #fff; font-weight: 700; font-size: 15px; margin: 4px 0 4px; }
.more-feat .d { color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.5; }

.more-stats {
  display: grid; grid-template-columns: repeat(3, auto); gap: 36px;
  padding: 24px 0 32px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.more-stat .n { font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; color: var(--yellow); line-height: 1; }
.more-stat .l { color: rgba(255,255,255,.55); font-size: 13px; margin-top: 6px; }

.more-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* right-side image */
.more-photo-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: visible;
}
.more-photo {
  position: relative;
  aspect-ratio: 1.3/1;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.5);
}
.more-photo img { width: 100%; height: 100%; object-fit: cover; }
.more-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.6) 100%);
}
.more-photo .cap {
  position: absolute; left: 24px; bottom: 24px;
  color: rgba(255,255,255,.92);
  font-size: 12.5px; font-weight: 500; letter-spacing: .08em;
}
.more-tilt-badge {
  position: absolute;
  top: 28px; right: -16px;
  background: var(--yellow);
  color: var(--ink-900);
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 12px; font-weight: 700;
  letter-spacing: -.005em;
  text-align: center;
  transform: rotate(8deg);
  box-shadow: 0 16px 36px -8px rgba(250,204,21,.5);
  max-width: 130px; line-height: 1.25;
  z-index: 3;
}
.more-tilt-badge svg { width: 18px; height: 18px; margin: 0 auto 4px; display: block; color: var(--ink-900); }

/* ============================================================
   GALLERY
============================================================ */
.gallery {
  background: var(--cream-pink);
  position: relative;
  overflow: hidden;
}
.gallery::before {
  content: ''; position: absolute;
  top: -80px; right: -80px; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(252,165,165,.45) 0%, transparent 70%);
  border-radius: 50%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
  margin-bottom: 40px;
}
.g-tile {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink-100);
  cursor: pointer;
  isolation: isolate;
  border: 0; padding: 0;
  font: inherit; color: inherit;
  text-align: left;
  width: 100%; height: 100%;
}
.g-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.g-tile:hover img { transform: scale(1.06); }
.g-tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.55) 100%);
  opacity: 0; transition: opacity .25s ease;
}
.g-tile:hover::after { opacity: 1; }
.g-tile .cap {
  position: absolute; left: 16px; bottom: 16px;
  color: #fff; font-size: 13px; font-weight: 600;
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s ease, transform .3s var(--ease);
}
.g-tile:hover .cap { opacity: 1; transform: none; }
.g-tile .ribbon {
  position: absolute; top: 14px; right: 14px;
  background: var(--red); color: #fff;
  padding: 4px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 4px;
  z-index: 2;
}
.g-tile .ribbon svg { width: 11px; height: 11px; }
.g-tile.big { grid-column: span 2; grid-row: span 2; }
.g-tile.wide { grid-column: span 2; }
@media (max-width: 880px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .g-tile.big { grid-column: span 2; grid-row: span 2; }
  .g-tile.wide { grid-column: span 2; }
}

.gallery-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 56px; }

.gallery-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 720px) { .gallery-stats { grid-template-columns: repeat(2, 1fr); } }
.g-stat {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 24px;
  text-align: center;
  box-shadow: 0 12px 30px -16px rgba(15,23,42,.18);
}
.g-stat .ico {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
}
.g-stat .ico.red { background: var(--red-soft); color: var(--red); }
.g-stat .ico.amber { background: var(--orange-soft); color: var(--orange); }
.g-stat .ico.green { background: var(--green-soft); color: var(--green); }
.g-stat .ico.yellow { background: var(--yellow-soft); color: #b45309; }
.g-stat .n { font-weight: 800; color: var(--ink-900); font-size: 1.5rem; }
.g-stat .l { font-size: 12.5px; color: var(--ink-500); margin-top: 4px; }

/* ============================================================
   LIGHTBOX
============================================================ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(8, 8, 12, .92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s;
  padding: 24px;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-figure {
  position: relative;
  max-width: min(92vw, 1100px);
  max-height: 84vh;
  display: flex; flex-direction: column; align-items: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 78vh;
  width: auto; height: auto;
  border-radius: var(--r-lg);
  box-shadow: 0 30px 80px -10px rgba(0,0,0,.8);
  background: #1a1614;
}
.lightbox-caption {
  margin-top: 18px;
  color: rgba(255,255,255,.85);
  font-size: 14.5px;
  text-align: center;
}
.lightbox-counter {
  color: rgba(255,255,255,.5);
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 6px;
}
.lightbox-btn {
  position: absolute;
  width: 52px; height: 52px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .2s var(--ease);
  z-index: 2;
}
.lightbox-btn:hover { background: rgba(255,255,255,.18); transform: scale(1.06); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { top: 50%; left: 24px; transform: translateY(-50%); }
.lightbox-next { top: 50%; right: 24px; transform: translateY(-50%); }
.lightbox-prev:hover, .lightbox-next:hover { transform: translateY(-50%) scale(1.06); }
@media (max-width: 720px) {
  .lightbox-prev { left: 12px; width: 44px; height: 44px; }
  .lightbox-next { right: 12px; width: 44px; height: 44px; }
  .lightbox-close { top: 14px; right: 14px; width: 44px; height: 44px; }
}

/* ============================================================
   REVIEWS
============================================================ */
.reviews {
  background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.reviews::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(250,204,21,.06) 0%, transparent 60%);
  border-radius: 50%;
}

.reviews .pill.dark { color: rgba(250,204,21,.95); background: rgba(250,204,21,.1); border-color: rgba(250,204,21,.18); }
.reviews .pill.dark::before { background: var(--yellow); }
.reviews .section-head h2 { color: #fff; }
.reviews .section-head h2 .em { color: var(--yellow); }
.reviews .section-head p { color: rgba(255,255,255,.65); }

.review-stack { position: relative; max-width: 920px; margin: 0 auto 56px; }
.review-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  display: none;
}
.review-card.is-active { display: block; }
.review-translated-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(250,204,21,.12);
  color: var(--yellow);
  border: 1px solid rgba(250,204,21,.32);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .04em;
  margin-bottom: 18px;
}
.review-toggle-orig {
  display: inline-flex; align-items: center; gap: 6px;
  margin: -8px auto 22px;
  background: transparent;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.16);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px; font-weight: 500; letter-spacing: -.005em;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.review-toggle-orig:hover { background: rgba(255,255,255,.08); color: var(--yellow); border-color: rgba(250,204,21,.5); }
.review-toggle-orig.is-showing-orig { background: rgba(250,204,21,.1); color: var(--yellow); border-color: rgba(250,204,21,.5); }
.review-card .stars { display: inline-flex; gap: 4px; margin-bottom: 22px; color: var(--yellow); }
.review-card .stars svg { width: 22px; height: 22px; }
.review-card .quote {
  color: rgba(255,255,255,.92);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  line-height: 1.55;
  margin: 0 auto 28px;
  max-width: 660px;
  letter-spacing: -.005em;
}
.review-meta { display: inline-flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  color: #fff;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.review-info { text-align: left; }
.review-info .n { color: #fff; font-weight: 700; font-size: 15px; }
.review-info .c { color: var(--yellow); font-size: 12.5px; display: inline-flex; align-items: center; gap: 4px; margin-top: 2px; }
.review-info .c svg { width: 12px; height: 12px; }
.review-info .d { color: rgba(255,255,255,.45); font-size: 12px; margin-top: 4px; }

.review-controls {
  position: absolute; left: 0; right: 0; top: 50%;
  transform: translateY(-50%);
  display: flex; justify-content: space-between;
  pointer-events: none;
  padding: 0 14px;
}
@media (max-width: 720px) { .review-controls { display: none; } }
.review-controls button {
  pointer-events: auto;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .2s var(--ease);
}
.review-controls button:hover { background: rgba(255,255,255,.16); transform: scale(1.05); }

.review-dots {
  display: flex; justify-content: center; gap: 8px;
  margin: 24px 0 0;
}
.review-dots button {
  width: 24px; height: 6px; border-radius: 999px;
  background: rgba(255,255,255,.18);
  transition: background .2s ease, width .25s ease;
}
.review-dots button.is-active { background: var(--red); width: 36px; }

.review-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-bottom: 40px;
}
@media (max-width: 720px) { .review-stats { grid-template-columns: repeat(2, 1fr); } }
.r-stat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  text-align: center;
}
.r-stat .n { color: var(--yellow); font-family: var(--font-display); font-weight: 700; font-size: 2.2rem; line-height: 1; }
.r-stat .l { color: rgba(255,255,255,.65); font-size: 12.5px; margin-top: 8px; }
.r-stat .stars { display: inline-flex; gap: 2px; margin-top: 10px; color: var(--yellow); }
.r-stat .stars svg { width: 11px; height: 11px; }

.review-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* ============================================================
   ORANGE STRIP
============================================================ */
.strip {
  background: linear-gradient(135deg, #fb923c 0%, #ef4444 60%, #c2410c 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 26px 0;
}
.strip::after {
  content: '';
  position: absolute; right: -100px; top: 50%; transform: translateY(-50%);
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(250,204,21,.32) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.strip-inner {
  display: grid; grid-template-columns: 1.4fr auto; gap: 32px; align-items: center;
  padding: 18px 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 760px) { .strip-inner { grid-template-columns: 1fr; text-align: center; } }
.strip h2 { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 6px; }
.strip h2 .em { color: var(--yellow); }
.strip p { color: rgba(255,255,255,.88); font-size: 15px; }
.strip-ctas { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.strip-ctas .btn-white { color: var(--red); }
.strip-ctas .btn-ghost-light:hover { background: rgba(255,255,255,.18); }

/* ============================================================
   FINAL CTA (red)
============================================================ */
.final-cta {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
  color: #fff;
  position: relative;
  padding: clamp(80px, 11vw, 120px) 0;
  overflow: hidden;
}
.final-cta::before, .final-cta::after {
  content: ''; position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.final-cta::before { top: -120px; left: -120px; width: 380px; height: 380px; background: radial-gradient(circle, rgba(250,204,21,.18) 0%, transparent 65%); }
.final-cta::after { bottom: -180px; right: -120px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(254,215,170,.16) 0%, transparent 65%); }

.final-cta .container { position: relative; z-index: 1; text-align: center; }
.final-cta h2 { color: #fff; margin: 24px 0 18px; font-size: clamp(2.2rem, 5vw, 3.8rem); }
.final-cta h2 .em { color: var(--yellow); }
.final-cta .lead { color: rgba(255,255,255,.86); font-size: 1.1rem; margin: 0 auto 48px; max-width: 620px; }

.final-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  padding: 8px 18px; border-radius: 999px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .08em;
}
.final-pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); }
.final-pill:has(> svg)::before { display: none; }

.final-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  max-width: 920px; margin: 0 auto 40px;
}
@media (max-width: 800px) { .final-cards { grid-template-columns: 1fr; } }
.final-card {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-xl);
  padding: 32px 24px;
  text-align: center;
  color: #fff;                /* ensure anchor inherits white */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform .25s var(--ease), background .2s ease, border-color .2s ease;
}
.final-card:hover { color: #fff; }
.final-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.32); }
.final-card .ico {
  width: 48px; height: 48px;
  border-radius: 999px;
  background: rgba(255,255,255,.2);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.final-card .t { color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.final-card .d { color: rgba(255,255,255,.85); font-size: 13.5px; line-height: 1.55; margin-bottom: 14px; }
.final-card .cta {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--yellow); font-weight: 600; font-size: 13px;
}
.final-card .cta:hover { color: #fff; }

.final-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 32px; }
.final-actions .btn-white { color: var(--red); }
.final-actions .btn-yellow-outline { color: var(--yellow); }
.final-actions .btn-yellow-outline:hover,
.final-actions .btn-yellow-outline:focus-visible { color: var(--ink-900); }   /* keep readable when bg fills */

.final-meta {
  display: inline-flex; flex-wrap: wrap; gap: 12px 28px; justify-content: center;
  color: rgba(255,255,255,.85); font-size: 13.5px;
}
.final-meta span { display: inline-flex; align-items: center; gap: 8px; }
.final-meta svg { color: var(--yellow); width: 14px; height: 14px; }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 80px 0 32px;
  position: relative;
}
.footer::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220,38,38,.5), transparent);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer h4 {
  color: var(--red);
  font-size: 14px; font-weight: 700;
  margin-bottom: 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a, .footer ul li { color: rgba(255,255,255,.72); font-size: 14px; }
.footer ul a:hover { color: #fff; }
.footer .brand { color: #fff; }
.footer .brand-text .a { color: #fff; }
.footer .brand-text .b { color: rgba(255,255,255,.55); }
.footer-about { color: rgba(255,255,255,.55); font-size: 14px; line-height: 1.6; margin: 16px 0 18px; max-width: 32ch; }
.socials { display: flex; gap: 8px; }
.socials a {
  width: 36px; height: 36px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background .2s ease, transform .2s var(--ease);
}
.socials a.fb { background: #1877f2; }
.socials a.ph { background: var(--red); }
.socials a.ma { background: var(--ink-800); }
.socials a:hover { transform: translateY(-2px); }

.foot-contact li { display: flex; align-items: flex-start; gap: 10px; }
.foot-contact svg { color: var(--red); margin-top: 3px; flex-shrink: 0; }

.foot-hours { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.foot-hours .row { display: flex; justify-content: space-between; gap: 12px; font-size: 13.5px; }
.foot-hours .row span:first-child { color: rgba(255,255,255,.72); }
.foot-hours .row span:last-child { color: #fff; font-weight: 600; }

.foot-order {
  display: flex; gap: 12px; align-items: center;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  border-radius: var(--r);
  padding: 14px 18px;
  transition: transform .2s var(--ease);
}
.foot-order:hover { transform: translateY(-2px); color: #fff; }
.foot-order .ico {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
}
.foot-order .t { color: #fff; font-weight: 700; font-size: 14px; }
.foot-order .d { color: rgba(255,255,255,.85); font-size: 12px; }

.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
  padding-top: 24px;
  color: rgba(255,255,255,.5); font-size: 13px;
}
.footer-bottom .extra { display: flex; gap: 18px; }
.footer-bottom .extra a { color: rgba(255,255,255,.7); }
.footer-bottom .extra a:hover { color: #fff; }
.easylogic-footer-logo { display: inline-flex; align-items: center; opacity: .55; transition: opacity .2s ease; }
.easylogic-footer-logo:hover { opacity: 1; }
.easylogic-footer-logo img { height: 20px; width: auto; display: block; }

/* ============================================================
   Reveal
============================================================ */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.fade-up.in { opacity: 1; transform: none; }
[data-stagger="1"] { transition-delay: .05s; }
[data-stagger="2"] { transition-delay: .15s; }
[data-stagger="3"] { transition-delay: .25s; }
[data-stagger="4"] { transition-delay: .35s; }

