/* ============================================================
   Artéteca — Pizzería Napolitana · artetecapizzeria.com
   Archetype: Editorial Dark Warm (02)
   Date: 2026-06-07
   ============================================================ */

/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0E0B09;
  --bg-2:      #15110E;
  --bg-3:      #1E1813;
  --bg-4:      #241C16;
  --cream:     #F2EBDA;
  --cream-2:   #DDD2BC;
  --cream-3:   #8B7E68;
  --gold:      #C49A5B;
  --gold-2:    #A87C3F;
  --red:       #C5301E;
  --line:      rgba(242,235,218,.1);
  --line-2:    rgba(242,235,218,.06);
  --radius:    12px;
  --radius-lg: 20px;
  --nav-h:     72px;
  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:   cubic-bezier(0.64, 0, 0.78, 0);
  --ease-io:   cubic-bezier(0.65, 0, 0.35, 1);
  --trans:     0.55s var(--ease-out);
}

html {
  font-size: 16px;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

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

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cream);
}

.section-text {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--cream-2);
  max-width: 65ch;
}

/* ── GRAIN TEXTURE ─────────────────────────────────────────── */
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.45;
  pointer-events: none;
  z-index: 3;
}

/* ── CONTAINER ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ── SECTION BASE ──────────────────────────────────────────── */
.section {
  padding-block: clamp(4rem, 10vw, 8rem);
  position: relative;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.eyebrow-num {
  font-family: 'Fraunces', serif;
  font-size: 0.75rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.eyebrow-line {
  flex: 0 0 2.5rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.eyebrow-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cream-3);
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: transform 0.3s var(--ease-out), background 0.3s, color 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(196,154,91,.35);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(242,235,218,.35);
}
.btn-ghost:hover {
  background: rgba(242,235,218,.08);
  border-color: rgba(242,235,218,.6);
  transform: translateY(-2px);
}

/* ── SPLASH ────────────────────────────────────────────────── */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out), clip-path 0.8s var(--ease-in);
  animation: splashSafety .01s 4.5s forwards;
}
@keyframes splashSafety {
  to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
}
.splash.is-out {
  opacity: 0;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
}
.splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.splash-logo {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -0.02em;
  animation: splashFade 0.8s var(--ease-out) forwards;
}
.splash-logo-img {
  width: min(200px, 55vw);
  height: auto;
  animation: splashFade 0.8s var(--ease-out) forwards;
}
@keyframes splashFade {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.splash-bar {
  width: min(200px, 50vw);
  height: 1px;
  background: rgba(242,235,218,.15);
  border-radius: 1px;
  overflow: hidden;
}
.splash-progress {
  height: 100%;
  background: var(--gold);
  width: 0;
  animation: splashLoad 1.8s var(--ease-io) 0.3s forwards;
}
@keyframes splashLoad {
  from { width: 0; }
  to   { width: 100%; }
}

/* ── NAVIGATION ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(14,11,9,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--line);
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -0.01em;
  transition: color 0.3s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo:hover { color: var(--gold); }
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
  color: var(--cream-2);
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
  transition: color 0.3s;
}
.nav-link:hover { color: var(--cream); }
.nav.is-scrolled .nav-link { text-shadow: none; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.lang-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  opacity: 0.45;
  transition: opacity 0.2s, background 0.2s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.lang-btn:hover,
.lang-btn.is-active {
  opacity: 1;
  background: rgba(242,235,218,.1);
}
.flag-senyera {
  width: 22px;
  height: 15px;
  border-radius: 2px;
  display: block;
  overflow: hidden;
  flex-shrink: 0;
}

.btn-nav-reserve {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.4rem;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: background 0.3s, transform 0.3s;
}
.btn-nav-reserve:hover {
  background: var(--cream);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 2px;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14,11,9,.45) 0%,
    rgba(14,11,9,.6) 50%,
    rgba(14,11,9,.85) 100%
  );
}
.hero-grain { z-index: 2; }

.hero-content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  padding-inline: 1.5rem;
  padding-top: var(--nav-h);
  width: 100%;
  max-width: 860px;
}

/* ── NEON QUOTE ────────────────────────────────────────────── */
.hero-neon-wrap {
  width: 100%;
}
.neon-quote {
  font-family: 'Dancing Script', 'Great Vibes', cursive;
  font-size: clamp(2.2rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.25;
  color: #FFF8E7;
  text-shadow:
    0 0 6px rgba(255,248,231,.95),
    0 0 12px rgba(255,248,231,.8),
    0 0 24px rgba(242,235,218,.6),
    0 0 48px rgba(220,200,160,.45),
    0 0 80px rgba(196,154,91,.3),
    0 0 120px rgba(196,154,91,.15);
  animation: neonPulse 4s ease-in-out infinite;
  text-wrap: balance;
}
@keyframes neonPulse {
  0%, 100% {
    text-shadow:
      0 0 6px rgba(255,248,231,.95),
      0 0 12px rgba(255,248,231,.8),
      0 0 24px rgba(242,235,218,.6),
      0 0 48px rgba(220,200,160,.45),
      0 0 80px rgba(196,154,91,.3),
      0 0 120px rgba(196,154,91,.15);
  }
  50% {
    text-shadow:
      0 0 4px rgba(255,248,231,.85),
      0 0 9px rgba(255,248,231,.65),
      0 0 18px rgba(242,235,218,.45),
      0 0 38px rgba(220,200,160,.35),
      0 0 65px rgba(196,154,91,.22),
      0 0 100px rgba(196,154,91,.1);
  }
}

/* ── HERO LOGO AREA ────────────────────────────────────────── */
.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: rgba(10, 7, 5, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 40px;
  padding: 0.75rem 2rem;
  border: 1px solid rgba(196,154,91,0.15);
}

.hero-logo-img-wrap {
  width: clamp(120px, 22vw, 180px);
  height: clamp(120px, 22vw, 180px);
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(8px, 2vw, 14px);
  box-shadow:
    0 0 0 1px rgba(196,154,91,.3),
    0 8px 40px rgba(0,0,0,.6),
    0 0 60px rgba(196,154,91,.12);
  transition: box-shadow 0.4s;
}
.hero-logo-img-wrap:hover {
  box-shadow:
    0 0 0 1px rgba(196,154,91,.5),
    0 8px 40px rgba(0,0,0,.6),
    0 0 80px rgba(196,154,91,.25);
}
.hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-logo-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1;
}
/* H1 SEO — visible but not dominant in the hero */
.hero-seo-h1 {
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 1.3vw, 0.82rem);
  font-weight: 300;
  color: var(--cream-3);
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-top: 0.6rem;
  text-align: center;
  max-width: 520px;
  opacity: 0.8;
}
.hero-tagline {
  font-size: clamp(0.75rem, 1.8vw, 0.9rem);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 500;
}
.hero-location {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--cream-3);
  letter-spacing: 0.08em;
}
.hero-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196,154,91,.5); }
  50%       { box-shadow: 0 0 0 6px rgba(196,154,91,0); }
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDrop 2.5s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  70%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ── REVEAL ANIMATION ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* Defensive: prevent invisible split-text elements */
.reveal[data-split] {
  opacity: 1;
  transform: none;
}

/* ── SECTION VISION ────────────────────────────────────────── */
.section-vision {
  background: var(--bg-2);
}
.section-vision::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(196,154,91,.06) 0%, transparent 70%);
  pointer-events: none;
}

.vision-text {
  margin-block: 1.5rem 3rem;
}

.vision-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.pillar {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.pillar:hover {
  border-color: rgba(196,154,91,.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.pillar-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.pillar-title {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 0.6rem;
}
.pillar-text {
  font-size: 0.9rem;
  color: var(--cream-3);
  line-height: 1.6;
}

/* Stagger delays for pillars */
.pillar:nth-child(1) { transition-delay: 0ms; }
.pillar:nth-child(2) { transition-delay: 100ms; }
.pillar:nth-child(3) { transition-delay: 200ms; }

/* ── SECTION HISTORIA ──────────────────────────────────────── */
.section-historia {
  background: var(--bg);
}
.historia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.historia-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}
.historia-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.historia-img-wrap:hover .historia-img {
  transform: scale(1.04);
}
.historia-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.historia-content .section-title { max-width: 20ch; }
.historia-content .section-text { max-width: 55ch; }

/* ── SECTION CAROUSEL ──────────────────────────────────────── */
.section-carousel {
  background: var(--bg-2);
  padding-bottom: 3rem;
}
.carousel-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.carousel-intro {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--cream-2, rgba(242,235,218,0.7));
  line-height: 1.7;
  max-width: 72ch;
  margin-top: 1rem;
  margin-bottom: 2.25rem;
}
.carousel-controls {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
}
.carousel-btn svg { width: 18px; height: 18px; }
.carousel-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
  transform: scale(1.08);
}

.carousel-outer {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  padding-block: 0.5rem 1rem;
  overflow-y: visible;
}
.carousel-track::-webkit-scrollbar { display: none; }

.carousel-card {
  flex: 0 0 clamp(260px, 35vw, 360px);
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
  cursor: grab;
}
.carousel-card:active { cursor: grabbing; }
.carousel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}

.card-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.4s;
  filter: saturate(1.05);
}
.carousel-card:hover .card-img-wrap img {
  transform: scale(1.06);
  filter: saturate(1.18) brightness(1.05);
}

.card-caption {
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  font-style: italic;
  font-family: 'Fraunces', serif;
  color: var(--cream-3);
  letter-spacing: 0.02em;
}

.carousel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
}
.carousel-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(242,235,218,.25);
  transition: background 0.3s, transform 0.3s, width 0.3s;
  border: none;
}
.carousel-dot.is-active {
  background: var(--gold);
  width: 20px;
  border-radius: 4px;
}

/* ── SECTION SEO ───────────────────────────────────────────── */
.section-seo {
  background: var(--bg);
  border-top: 1px solid var(--line-2);
}
.seo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.seo-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.seo-content .section-text { max-width: 58ch; }

/* SEO bullets */
.seo-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: -0.5rem;
}
.seo-bullets li {
  font-size: 0.85rem;
  color: var(--cream-2);
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
}
.seo-bullets li::before {
  content: '·';
  color: var(--gold);
  font-size: 1.2em;
  line-height: 1;
  flex-shrink: 0;
}

/* SEO dual CTA row */
.seo-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}
.seo-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
}
.seo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
  filter: saturate(1.08) contrast(1.03);
}
.seo-image:hover img { transform: scale(1.04); }

/* Ambient halo behind seo section */
.section-seo::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 50%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(197,48,30,.05) 0%, transparent 70%);
  pointer-events: none;
}

/* ── RESTAURANT GALLERY ─────────────────────────────────────── */
.section-restaurant-gallery {
  background: var(--bg-3);
  overflow: hidden;
}
.restaurant-gallery-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.restaurant-gallery-note {
  font-size: 0.9rem;
  color: var(--cream-2);
  line-height: 1.7;
  margin-top: 0.75rem;
}
.restaurant-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.6rem, 1.5vw, 1rem);
}
.restaurant-gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--bg-4);
  cursor: default;
}
.restaurant-gallery-card.is-featured {
  grid-column: span 2;
}
.restaurant-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
  aspect-ratio: 3/4;
}
.restaurant-gallery-card.is-featured .restaurant-gallery-img {
  aspect-ratio: 16/9;
}
.restaurant-gallery-card:hover .restaurant-gallery-img {
  transform: scale(1.04);
}
.restaurant-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.6rem 0.85rem;
  background: linear-gradient(to top, rgba(14,11,9,.82) 0%, transparent 100%);
  font-size: 0.72rem;
  color: var(--cream-2);
  letter-spacing: 0.06em;
  font-style: italic;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s, transform 0.3s;
}
.restaurant-gallery-card:hover .restaurant-gallery-caption {
  opacity: 1;
  transform: translateY(0);
}
/* Always show caption on touch devices */
@media (hover: none) {
  .restaurant-gallery-caption { opacity: 1; transform: none; }
}
@media (max-width: 900px) {
  .restaurant-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .restaurant-gallery-card.is-featured {
    grid-column: span 2;
  }
  .restaurant-gallery-card.is-featured .restaurant-gallery-img {
    aspect-ratio: 4/3;
  }
}
@media (max-width: 480px) {
  .restaurant-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }
  .restaurant-gallery-caption { opacity: 1; transform: none; }
}

/* ── GALLERY SEE MORE ──────────────────────────────────────── */
.restaurant-gallery-card.gallery-extra {
  display: none;
}
.restaurant-gallery-grid.is-expanded .restaurant-gallery-card.gallery-extra {
  display: block;
}
.gallery-see-more-wrap {
  text-align: center;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}
.gallery-see-more-btn {
  min-width: 180px;
  transition: opacity 0.3s ease;
}

/* ── SECTION AWARDS ────────────────────────────────────────── */
.section-awards {
  background: var(--bg-2);
  overflow: hidden;
}
.awards-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.awards-left {
  display: flex;
  flex-direction: column;
}
.awards-intro-text {
  color: var(--cream-2);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.awards-side-text {
  color: var(--cream-3);
  font-size: 0.92rem;
  line-height: 1.7;
  border-left: 2px solid var(--gold);
  padding-left: 1.25rem;
  margin-bottom: 2.5rem;
  font-style: italic;
}
.awards-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.award-card {
  background: rgba(242,235,218,.04);
  border: 1px solid rgba(242,235,218,.12);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  transition: background 0.3s, border-color 0.3s;
}
.award-card:hover {
  background: rgba(242,235,218,.07);
  border-color: rgba(242,235,218,.22);
}
.award-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
/* Logo Ospitalità Italiana (SVG black → inverted to cream on dark bg) */
.award-logo {
  height: 52px;
  width: auto;
  filter: invert(1) brightness(0.9);
  flex-shrink: 0;
}
/* Travellers' Choice badge (PNG/WebP with transparency, already coloured) */
.award-logo-badge {
  height: 80px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}
.award-card-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.award-card-desc {
  font-size: 0.875rem;
  color: var(--cream-3);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}
.award-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.award-cta::after {
  content: '→';
  font-style: normal;
  transition: transform 0.2s;
}
.award-cta:hover {
  border-bottom-color: var(--gold);
  color: var(--cream);
}
.award-cta:hover::after { transform: translateX(3px); }

/* Awards photo column */
.awards-figure {
  position: sticky;
  top: 6rem;
  margin: 0;
}
.awards-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}
.awards-caption {
  display: block;
  margin-top: 0.9rem;
  font-size: 0.78rem;
  color: var(--cream-3);
  font-style: italic;
  text-align: center;
  line-height: 1.5;
}

/* Mobile */
@media (max-width: 900px) {
  .awards-inner {
    grid-template-columns: 1fr;
  }
  .awards-left { order: 1; }
  .awards-figure {
    position: static;
    order: 2;
    max-width: 480px;
    margin-inline: auto;
  }
}

/* ── SECTION REVIEWS ───────────────────────────────────────── */
.section-reviews {
  background: var(--bg-2);
}
.reviews-stars {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-block: 1rem 2.5rem;
}
.star {
  color: var(--gold);
  font-size: 1.4rem;
}
.reviews-avg {
  font-size: 0.8rem;
  color: var(--cream-3);
  letter-spacing: 0.08em;
  margin-left: 0.4rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.review-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.review-card:hover {
  border-color: rgba(196,154,91,.25);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  overflow: hidden;

}
.review-meta { flex: 1; }
.review-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream);
}
.review-date {
  font-size: 0.75rem;
  color: var(--cream-3);
}
.review-stars-sm {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 1px;
}
.review-text {
  font-size: 0.9rem;
  color: var(--cream-2);
  line-height: 1.65;
  font-style: italic;
}

/* Stagger for review cards */
.review-card:nth-child(1) { transition-delay: 0ms; }
.review-card:nth-child(2) { transition-delay: 80ms; }
.review-card:nth-child(3) { transition-delay: 160ms; }
.review-card:nth-child(4) { transition-delay: 240ms; }
.review-card:nth-child(5) { transition-delay: 320ms; }
.review-card:nth-child(6) { transition-delay: 400ms; }

.reviews-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.footer-top { padding-block: clamp(3rem, 8vw, 6rem); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.footer-logo-img {
  width: 100px;
  height: auto;
  margin-bottom: 0.75rem;
}
.footer-tagline {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cream-3);
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-3);
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover {
  color: var(--cream);
  border-color: rgba(242,235,218,.4);
  background: rgba(242,235,218,.08);
}

.footer-col-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cream-3);
  margin-bottom: 1.25rem;
}
.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--cream-2);
}
.footer-list a {
  color: var(--cream-2);
  transition: color 0.3s;
}
.footer-list a:hover { color: var(--gold); }
.footer-closed { color: var(--cream-3); }

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--cream-2);
  margin-bottom: 1.5rem;
}
.footer-address a {
  color: var(--cream-3);
  transition: color 0.3s;
}
.footer-address a:hover { color: var(--gold); }
.footer-reserve-btn {
  font-size: 0.8rem;
  padding: 0.7rem 1.5rem;
}

.footer-bottom {
  border-top: 1px solid var(--line-2);
  padding-block: 1.5rem;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy, .footer-credits {
  font-size: 0.78rem;
  color: var(--cream-3);
}

/* ── CUSTOM CURSOR ─────────────────────────────────────────── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s;
}
.cursor.is-ready { opacity: 1; }
.cursor-dot {
  position: fixed;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  top: -3px; left: -3px;
  will-change: transform;
}
.cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border: 1px solid rgba(196,154,91,.5);
  border-radius: 50%;
  top: -16px; left: -16px;
  will-change: transform;
  transition: width 0.3s, height 0.3s, border-color 0.3s, margin 0.3s;
}
.cursor.is-hover .cursor-ring {
  width: 48px; height: 48px;
  top: -24px; left: -24px;
  border-color: var(--gold);
}

/* ── MOBILE RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; flex-direction: column; }
  .nav-links.is-open {
    display: flex;
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: rgba(14,11,9,.97);
    backdrop-filter: blur(20px);
    padding: 2.5rem clamp(1.25rem, 5vw, 3rem);
    gap: 2rem;
    z-index: 999;
    align-items: flex-start;
    border-top: 1px solid var(--line);
  }
  .nav-links.is-open .nav-link {
    font-size: 1.1rem;
    color: var(--cream);
  }
  .nav-toggle { display: flex; }

  .historia-grid,
  .seo-grid {
    grid-template-columns: 1fr;
  }
  .historia-img-wrap {
    aspect-ratio: 16/9;
    max-height: 320px;
  }
  .seo-image { order: -1; aspect-ratio: 16/9; max-height: 280px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .hero-content { gap: 1.5rem; }
  .hero-ctas { flex-direction: column; align-items: center; width: 100%; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .btn-nav-reserve { display: none; }
  .nav-right .lang-switcher { gap: 0; }

  .vision-pillars { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .carousel-card { flex: 0 0 80vw; }

  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 440px) {
  .neon-quote { font-size: clamp(1.9rem, 8vw, 2.5rem); }
}

/* ── UTILITIES ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-line,
  .neon-quote,
  .splash-progress { animation: none; }
  .splash-progress { width: 100%; }
}

/* Print: hide decorative elements */
@media print {
  .splash, .cursor, .hero-grain, .nav, .hero-scroll { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   MENU PAGE — /carta/ · /en/menu/ · /it/carta/ · /ca/carta/
   ══════════════════════════════════════════════════════════════ */

/* ── Body override ── */
body.menu-page {
  padding-top: var(--nav-h);
}

/* Nav always solid on menu pages (no scroll-listener JS) */
body.menu-page .nav {
  background: rgba(14,11,9,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--line);
}

/* ── Breadcrumb ── */
.menu-breadcrumb { margin-bottom: 1.25rem; }
.menu-breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.menu-breadcrumb li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--text-muted); }
.menu-breadcrumb li + li::before { content: '›'; color: var(--accent); }
.menu-breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.menu-breadcrumb a:hover { color: var(--accent); }

/* ── Hero ── */
.menu-page-hero {
  background: linear-gradient(160deg, var(--bg-card) 0%, var(--bg) 100%);
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--border);
}
.menu-page-hero .page-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--accent);
  margin: 0 0 1rem;
  line-height: 1.1;
}
.menu-page-hero .page-intro {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-muted);
  max-width: 620px;
  margin: 0;
  line-height: 1.65;
}

/* ── Disclaimer ── */
.menu-disclaimer {
  background: rgba(255,255,255,0.03);
  border-left: 3px solid var(--accent);
  border-radius: 0 6px 6px 0;
  padding: 0.9rem 1.2rem;
  margin: 2rem 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.menu-disclaimer p { margin: 0; }

/* ── NordQR top buttons ── */
.menu-nordqr-top {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 0;
}

/* ── Sticky category nav ── */
.menu-cat-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.menu-cat-nav .container {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.menu-cat-nav .container::-webkit-scrollbar { display: none; }
.menu-cat-link {
  display: inline-block;
  padding: 0.85rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.menu-cat-link:hover,
.menu-cat-link.is-active { color: var(--accent); border-bottom-color: var(--accent); }

/* ── Main layout ── */
.menu-main {
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

/* ── Menu section ── */
.menu-section {
  margin-bottom: clamp(3rem, 6vw, 5rem);
  scroll-margin-top: calc(var(--nav-h) + 60px);
}
.menu-section-header { margin-bottom: 1.5rem; border-bottom: 1px solid var(--border); padding-bottom: 1rem; }
.menu-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--accent);
  margin: 0 0 0.5rem;
}
.menu-section-intro {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 680px;
  margin: 0.5rem 0 0;
}

/* ── Menu items grid ── */
.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 380px), 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

/* ── Menu item card ── */
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--bg-card);
  transition: background 0.15s;
}
.menu-item:hover { background: rgba(255,255,255,0.04); }
.menu-item-body { flex: 1; min-width: 0; }
.menu-item-name {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 0.3rem;
  line-height: 1.3;
}
.menu-item-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 0 0.4rem;
}
.menu-item-allergens {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.35rem;
}
.allergen-prefix {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-right: 0.1rem;
}
.allergen-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: rgba(var(--accent-rgb, 210,160,100), 0.12);
  border: 1px solid rgba(var(--accent-rgb, 210,160,100), 0.35);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--accent);
  cursor: default;
  line-height: 1;
  pointer-events: none;
}
.menu-item-price {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  padding-top: 0.1rem;
}
.menu-price {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

/* ── CTA banner ── */
.menu-cta-banner {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  margin: 2rem 0 3rem;
}
.menu-cta-banner p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.menu-cta-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Allergen note ── */
.menu-allergen-note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1rem 1.2rem;
  margin: 2.5rem 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.menu-allergen-icon {
  flex-shrink: 0;
  margin-top: 0.1rem;
  opacity: 0.6;
  color: var(--accent);
}

/* ── Allergen legend ── */
.menu-allergen-legend {
  margin-top: 2.5rem;
  padding: 1.5rem 1.75rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.menu-allergen-legend-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1rem;
}
.menu-allergen-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 0.45rem 2rem;
}
.menu-allergen-list li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.allergen-legend-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: rgba(var(--accent-rgb, 210,160,100), 0.10);
  border: 1px solid rgba(var(--accent-rgb, 210,160,100), 0.30);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .menu-items-grid { grid-template-columns: 1fr; }
  .menu-cat-link { padding: 0.75rem 0.85rem; font-size: 0.78rem; }
  .menu-page-hero .page-h1 { font-size: 2rem; }
  .menu-nordqr-top { flex-direction: column; }
  .menu-nordqr-top .btn { width: 100%; justify-content: center; text-align: center; }
}

@media (max-width: 440px) {
  .menu-item { padding: 0.9rem 1rem; }
  .menu-section-title { font-size: 1.4rem; }
}

/* ═══════════════════════════════════════════════════════════
   LANDING PAGES — body.landing-page
   ═══════════════════════════════════════════════════════════ */

/* Nav always solid on landing pages */
body.landing-page .nav {
  background: rgba(14,11,9,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--line);
}

/* ── Hero ── */
.lp-hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.lp-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lp-hero-bg {
  display: block;
  width: 100%;
  height: 100%;
}

.lp-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.lp-hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  background: linear-gradient(
    to bottom,
    rgba(14,11,9,0.55) 0%,
    rgba(14,11,9,0.70) 60%,
    rgba(14,11,9,0.85) 100%
  );
  padding: 7rem 0 4rem;
}

.lp-hero-inner {
  max-width: 680px;
}

.lp-eyebrow {
  font-family: var(--font-serif);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.lp-h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--light);
  line-height: 1.08;
  margin-bottom: 1.2rem;
}

.lp-hero-intro {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(245,238,230,0.88);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 2.4rem;
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── Sections shared ── */
.lp-section {
  padding: 5rem 0;
}

.lp-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.lp-section-eyebrow {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.lp-section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--light);
  line-height: 1.12;
  margin-bottom: 1.2rem;
}

.lp-section-body {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.3vw, 1.06rem);
  color: var(--text-muted);
  line-height: 1.72;
}

.lp-section-body--centered {
  text-align: center;
}

/* ── Section 1: Alma — media + text split ── */
.lp-section--alma {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.lp-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.lp-section-inner--media-left .lp-section-media { order: -1; }

.lp-section-media {
  border-radius: 4px;
  overflow: hidden;
}

.lp-media-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.lp-section-text {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.lp-section-text .lp-section-title { margin-bottom: 0; }
.lp-section-text .lp-section-body  { margin-bottom: 0.4rem; }

/* ── Section 2: Food grid ── */
.lp-section--grid {
  background: var(--bg);
}

/* Feature badge cards (pizzeria pages) */
.lp-feature-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.8rem;
}

.lp-feature-card {
  background: rgba(196, 154, 79, 0.12);
  border: 1px solid rgba(196, 154, 79, 0.55);
  border-radius: 999px;
  color: #d4a85a;
  font-size: 0.8rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.38rem 1.1rem;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 0 12px rgba(196, 154, 79, 0.08), inset 0 1px 0 rgba(255, 220, 140, 0.12);
}

.lp-food-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.lp-grid-item {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.lp-grid-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.lp-grid-item:hover .lp-grid-img {
  transform: scale(1.04);
}

.lp-grid-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.6rem 0.8rem;
  background: linear-gradient(transparent, rgba(14,11,9,0.88));
  font-family: var(--font-serif);
  font-size: 0.82rem;
  color: var(--light);
  letter-spacing: 0.02em;
}

.lp-grid-cta {
  text-align: center;
}

/* ── Section 3: Location split ── */
.lp-section--location {
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.lp-location-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.lp-location-media-wrap {
  overflow: hidden;
  position: relative;
}

.lp-location-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-location-text-wrap {
  background: var(--surface);
  display: flex;
  align-items: center;
}

.lp-location-text {
  padding: 4rem 3rem 4rem 4rem;
  max-width: 480px;
}

.lp-address {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 1.8rem;
}

.lp-address a {
  color: var(--accent);
  text-decoration: none;
}

.lp-address a:hover {
  text-decoration: underline;
}

/* ── Section 4: Awards ── */
.lp-section--awards {
  background: var(--bg);
}

.lp-awards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.lp-award {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.lp-award-media {
  height: 260px;
  overflow: hidden;
}

.lp-award-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.lp-award:hover .lp-award-photo {
  transform: scale(1.03);
}

.lp-award-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.lp-award-logo {
  width: 140px;
  height: auto;
  display: block;
}

.lp-award-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--light);
  margin: 0;
}

.lp-award-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.lp-award-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--accent);
  text-decoration: none;
  margin-top: auto;
}

.lp-award-link:hover {
  text-decoration: underline;
}

/* ── CTA Banner ── */
.lp-cta-banner {
  background: linear-gradient(135deg, rgba(176,110,54,0.18) 0%, rgba(14,11,9,1) 60%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 5rem 0;
}

.lp-cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.lp-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--light);
  margin-bottom: 1rem;
}

.lp-cta-body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2.4rem;
}

.lp-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ── FAQ ── */
.lp-faq {
  background: var(--surface);
  padding: 5rem 0;
  border-top: 1px solid var(--line);
}

.lp-faq .lp-section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.lp-faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lp-faq-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.lp-faq-q {
  display: block;
  width: 100%;
  padding: 1.2rem 3rem 1.2rem 1.6rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--light);
  cursor: pointer;
  list-style: none;
  position: relative;
}

.lp-faq-q::-webkit-details-marker { display: none; }

.lp-faq-q::after {
  content: '+';
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 300;
  line-height: 1;
  transition: transform 0.25s ease;
}

.lp-faq-item[open] .lp-faq-q::after {
  transform: translateY(-50%) rotate(45deg);
}

.lp-faq-a {
  padding: 0 1.6rem 1.4rem;
}

.lp-faq-a p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.72;
  margin: 0;
}

/* ── Landing page responsive ── */
@media (max-width: 900px) {
  .lp-section-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .lp-section-inner--media-left .lp-section-media { order: 0; }
  .lp-food-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-location-split { grid-template-columns: 1fr; }
  .lp-location-media-wrap { height: 320px; }
  .lp-location-text { padding: 3rem 1.5rem; max-width: 100%; }
  .lp-awards-grid { grid-template-columns: 1fr; }
  .lp-award-media { height: 220px; }
}

@media (max-width: 600px) {
  .lp-hero { min-height: 90svh; }
  .lp-hero-overlay { padding: 6rem 0 3rem; }
  .lp-h1 { font-size: 2rem; }
  .lp-hero-actions { flex-direction: column; }
  .lp-hero-actions .btn { width: 100%; text-align: center; justify-content: center; }
  .lp-section { padding: 3.5rem 0; }
  .lp-food-grid { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
  .lp-cta-actions { flex-direction: column; align-items: center; }
  .lp-cta-actions .btn { width: 100%; justify-content: center; text-align: center; }
  .lp-faq-q { font-size: 0.95rem; }
}
