/* =========================================================
   ROYALE PIZZA — Premium Cinematic Website
   ========================================================= */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --red-deep: #5C0A0A;
  --red-main: #8B0000;
  --red-bright: #B22222;
  --red-glow: #C41E3A;
  --gold: #FFD700;
  --gold-dark: #B8860B;
  --gold-pale: #FFE44D;
  --cream: #FFF8F0;
  --charcoal: #1A1210;
  --charcoal-light: #2A1E1A;
  --off-white: #F5F0EB;
  --text-primary: #1A1210;
  --text-secondary: #6B5B50;
  --text-light: #A89888;

  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body: 'Space Grotesk', system-ui, sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: auto; /* Lenis handles smooth scroll */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.6;
}

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

.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* --- Preloader --- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}
#preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-inner {
  text-align: center;
}
.preloader-crown {
  width: 60px;
  height: 48px;
  margin-bottom: 1.5rem;
  animation: preloaderFloat 2s ease-in-out infinite;
}
@keyframes preloaderFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.preloader-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 2rem;
}
.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 215, 0, 0.15);
  border-radius: 2px;
  overflow: hidden;
}
.preloader-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 2px;
  animation: preloaderFill 2s var(--ease-out-expo) forwards;
}
@keyframes preloaderFill {
  to { width: 100%; }
}

/* --- Sticky Order Button --- */
.sticky-order-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: var(--red-main);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(139, 0, 0, 0.4), 0 0 0 1px rgba(255, 215, 0, 0.15);
  transform: translateY(120px);
  transition: transform 0.5s var(--spring), background 0.3s, box-shadow 0.3s;
  will-change: transform;
}
.sticky-order-btn.visible {
  transform: translateY(0);
}
.sticky-order-btn:hover {
  background: var(--red-bright);
  box-shadow: 0 8px 40px rgba(139, 0, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.2);
}
.sticky-order-btn:active {
  transform: translateY(0) scale(0.97);
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background 0.4s, padding 0.4s var(--ease-out-expo), backdrop-filter 0.4s;
}
.navbar.scrolled {
  background: rgba(26, 18, 16, 0.92);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.08);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.nav-crown {
  width: 32px;
  height: 26px;
  transition: transform 0.3s var(--spring);
}
.nav-logo:hover .nav-crown { transform: rotate(-8deg) scale(1.1); }
.nav-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out-expo);
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.5rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--charcoal);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  border-radius: 100px;
  transition: transform 0.3s var(--spring), box-shadow 0.3s;
}
.nav-cta:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}
.nav-cta:active { transform: scale(0.97); }

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav-mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mobile-toggle.active span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem);
  gap: 0.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.3s, padding-left 0.3s;
}
.mobile-link:hover { color: var(--gold); padding-left: 0.5rem; }
.mobile-cta {
  margin-top: 0.75rem;
  text-align: center;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--charcoal) !important;
  font-weight: 700;
  border-radius: 12px;
  border-bottom: none;
  padding: 1rem;
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle { display: flex; }
}

/* --- Hero --- */
.hero {
  position: relative;
  min-h: 100dvh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  opacity: 0; /* starts hidden for cinematic fade-in */
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(26, 18, 16, 0.3) 50%, rgba(26, 18, 16, 0.85) 100%),
    linear-gradient(180deg, rgba(92, 10, 10, 0.2) 0%, transparent 40%, rgba(26, 18, 16, 0.7) 100%);
  z-index: 2;
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  opacity: 0;
  will-change: transform;
}
.particle svg {
  width: 100%;
  height: 100%;
}
.particle-1 { width: 45px; top: 15%; left: 8%; }
.particle-2 { width: 30px; top: 60%; left: 15%; }
.particle-3 { width: 55px; top: 25%; right: 10%; }
.particle-4 { width: 35px; bottom: 25%; right: 18%; }
.particle-5 { width: 25px; bottom: 35%; left: 25%; }

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
}

.hero-crown-wrap {
  margin-bottom: 2rem;
  opacity: 0;
  transform: scale(0.7);
}
.hero-crown {
  width: clamp(80px, 12vw, 130px);
  height: auto;
  filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.4));
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero-title-line {
  display: block;
  font-size: clamp(3.5rem, 10vw, 8rem);
  opacity: 0;
  transform: translateY(40px);
}
.hero-title-line-2 {
  font-size: clamp(4rem, 12vw, 9.5rem);
  background: linear-gradient(135deg, var(--gold-pale), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.accent-u {
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(0.9375rem, 1.8vw, 1.25rem);
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 2.5rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--charcoal);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.25), 0 0 0 1px rgba(255, 215, 0, 0.3);
  transition: transform 0.4s var(--spring), box-shadow 0.4s;
  opacity: 0;
  transform: translateY(30px);
}
.hero-cta:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 44px rgba(255, 215, 0, 0.4), 0 0 60px rgba(255, 215, 0, 0.15);
}
.hero-cta:active { transform: scale(0.97); }
.hero-cta svg {
  transition: transform 0.3s var(--spring);
}
.hero-cta:hover svg { transform: translateX(4px); }

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
}
.hero-scroll-indicator span {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, rgba(255, 215, 0, 0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* --- Section Tags & Titles --- */
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
}
.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.25rem;
  height: 1.5px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--charcoal);
}
.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--red-main), var(--red-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--text-secondary);
  max-width: 55ch;
  line-height: 1.7;
  margin-top: 1.25rem;
}

/* --- Promo Section --- */
.section-promo {
  background: var(--cream);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.promo-banner {
  display: block;
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  box-shadow: 0 12px 40px rgba(26, 18, 16, 0.1);
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s;
}
.promo-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(26, 18, 16, 0.15), 0 0 0 2px rgba(255, 215, 0, 0.2);
}
.promo-banner:active { transform: scale(0.99); }

.promo-banner img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 14 / 5;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}
.promo-banner:hover img { transform: scale(1.03); }

.promo-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(92, 10, 10, 0.15) 0%, transparent 60%);
  display: flex;
  align-items: flex-start;
  padding: clamp(1rem, 2.5vw, 1.5rem);
}

.promo-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.4rem 1rem;
  background: var(--red-main);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(139, 0, 0, 0.35);
  animation: promoPulse 2s ease-in-out infinite;
}
@keyframes promoPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(139, 0, 0, 0.35); }
  50% { box-shadow: 0 4px 24px rgba(139, 0, 0, 0.55), 0 0 12px rgba(255, 215, 0, 0.15); }
}

.promo-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.promo-card {
  display: block;
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(26, 18, 16, 0.08);
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s;
}
.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26, 18, 16, 0.14), 0 0 0 2px rgba(255, 215, 0, 0.2);
}
.promo-card:active { transform: scale(0.98); }

.promo-card img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 68 / 50;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}
.promo-card:hover img { transform: scale(1.04); }

.promo-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(92, 10, 10, 0.12) 0%, transparent 50%);
  display: flex;
  align-items: flex-start;
  padding: clamp(0.75rem, 2vw, 1.25rem);
}

@media (max-width: 640px) {
  .promo-duo { grid-template-columns: 1fr; }
  .promo-banner img { aspect-ratio: 16 / 9; }
  .promo-card img { aspect-ratio: 16 / 9; }
}

/* Keep pizza-price & add-btn for horizontal menu */
.pizza-price {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--red-main);
}
.pizza-price::before {
  content: '\20AC';
  font-size: 0.875em;
  margin-right: 0.125rem;
}
.pizza-add-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--charcoal);
  color: #fff;
  transition: background 0.3s, transform 0.3s var(--spring), box-shadow 0.3s;
}
.pizza-add-btn:hover {
  background: var(--red-main);
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(139, 0, 0, 0.3);
}
.pizza-add-btn:active { transform: scale(0.92); }
.pizza-add-btn.mini { width: 36px; height: 36px; }

/* --- Horizontal Scroll Menu --- */
.section-hmenu {
  background: var(--charcoal);
  padding: clamp(5rem, 10vw, 8rem) 0;
  overflow: hidden;
}
.section-hmenu .section-title { color: #fff; }

.hmenu-header {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  margin-bottom: 3rem;
}

.hmenu-track-wrapper {
  overflow: hidden;
  position: relative;
}
.hmenu-track-wrapper::before,
.hmenu-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.hmenu-track-wrapper::before { left: 0; background: linear-gradient(90deg, var(--charcoal), transparent); }
.hmenu-track-wrapper::after { right: 0; background: linear-gradient(270deg, var(--charcoal), transparent); }

.hmenu-track {
  display: flex;
  gap: 1.5rem;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  will-change: transform;
}

.hmenu-item {
  flex-shrink: 0;
  width: 300px;
  background: var(--charcoal-light);
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.5s var(--ease-out-expo), border-color 0.4s;
}
.hmenu-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 0, 0.2);
}
.hmenu-item-img {
  aspect-ratio: 1;
  overflow: hidden;
}
.hmenu-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}
.hmenu-item:hover .hmenu-item-img img { transform: scale(1.08); }

.hmenu-item-info {
  padding: 1.25rem;
}
.hmenu-item-info h4 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.375rem;
}
.hmenu-item-info p {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.hmenu-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hmenu-item-bottom .pizza-price { color: var(--gold); font-size: 1.125rem; }
.hmenu-item-bottom .pizza-add-btn { background: var(--red-main); }
.hmenu-item-bottom .pizza-add-btn:hover { background: var(--red-bright); }

/* --- Story Section --- */
.section-story {
  position: relative;
  padding: clamp(5rem, 12vw, 10rem) 0;
  background: var(--cream);
  overflow: hidden;
}
.story-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.story-bg-texture {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(139, 0, 0, 0.015) 40px, rgba(139, 0, 0, 0.015) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(139, 0, 0, 0.015) 40px, rgba(139, 0, 0, 0.015) 41px);
}

.story-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.story-visual {
  position: relative;
}
.story-img-wrap {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.story-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.story-img-wrap:hover img { transform: scale(1.05); }

.story-img-frame {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 1.5rem;
  pointer-events: none;
}

.story-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--charcoal);
  color: var(--gold);
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  box-shadow: 0 12px 40px rgba(26, 18, 16, 0.25);
}
.story-crown { width: 28px; height: 22px; }

.story-content { position: relative; z-index: 1; }

.story-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  margin-bottom: 2rem;
}
.story-line { display: block; }
.story-line-accent {
  background: linear-gradient(135deg, var(--red-main), var(--red-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.story-text { margin-bottom: 2.5rem; }
.story-text p {
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  max-width: 58ch;
}

.story-stats {
  display: flex;
  gap: 2.5rem;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--red-main);
  line-height: 1;
}
.stat-unit {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--gold-dark);
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-visual { order: -1; max-width: 400px; }
  .story-badge { bottom: -1rem; right: 0; }
  .story-stats { gap: 1.5rem; }
}

/* --- Social Proof --- */
.section-proof {
  background: var(--charcoal);
  padding: clamp(5rem, 12vw, 10rem) 0;
}
.section-proof .section-title { color: #fff; }
.section-proof .section-title em {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.proof-header { margin-bottom: 4rem; }

.proof-counters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
  flex-wrap: wrap;
}
.counter { text-align: center; }
.counter-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.counter-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--gold);
}
.counter-label {
  font-size: 0.8125rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
}
.counter-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--charcoal-light);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.25rem;
  padding: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.4s var(--ease-out-expo), border-color 0.3s;
}
.review-card:hover {
  border-color: rgba(255, 215, 0, 0.15);
  transform: translateY(-2px);
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}
.review-stars svg { width: 16px; height: 16px; }

.review-text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
}
.review-name {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
}
.review-date {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.125rem;
}

/* --- Final CTA --- */
.section-cta {
  position: relative;
  padding: clamp(6rem, 14vw, 12rem) 0;
  background: linear-gradient(165deg, var(--red-deep) 0%, var(--red-main) 50%, var(--charcoal) 100%);
  overflow: hidden;
  text-align: center;
}
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: ctaGlowPulse 4s ease-in-out infinite;
}
@keyframes ctaGlowPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.cta-inner { position: relative; z-index: 2; }

.cta-crown {
  width: clamp(60px, 8vw, 100px);
  height: auto;
  margin: 0 auto 2rem;
  opacity: 0.3;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1.5rem;
}
.cta-title span { display: block; }
.cta-title-accent {
  background: linear-gradient(135deg, var(--gold-pale), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-desc {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: rgba(255, 255, 255, 0.65);
  max-width: 52ch;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1.125rem 2.5rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--charcoal);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
  transition: transform 0.4s var(--spring), box-shadow 0.4s;
}
.cta-btn-primary:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 48px rgba(255, 215, 0, 0.45);
}
.cta-btn-primary:active { transform: scale(0.97); }
.cta-btn-primary svg { transition: transform 0.3s var(--spring); }
.cta-btn-primary:hover svg { transform: translateX(4px); }

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.0625rem 2rem;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 100px;
  transition: border-color 0.3s, color 0.3s, transform 0.3s var(--spring);
}
.cta-btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}
.cta-btn-secondary:active { transform: scale(0.97); }

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.03em;
}
.trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.4);
}

/* --- Footer --- */
.footer {
  background: var(--charcoal);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}
.footer-logo span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--gold);
}
.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 35ch;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-light);
  padding: 0.375rem 0;
  transition: color 0.3s, padding-left 0.3s;
}
.footer-col a:hover { color: var(--gold); padding-left: 0.25rem; }
.footer-col p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* --- Pizza Modal --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(26, 18, 16, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #fff;
  border-radius: 1.5rem;
  max-width: 560px;
  width: 100%;
  overflow: hidden;
  transform: translateY(24px) scale(0.96);
  transition: transform 0.5s var(--ease-out-expo);
}
.modal-overlay.open .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 18, 16, 0.6);
  color: #fff;
  border-radius: 50%;
  z-index: 5;
  transition: background 0.3s, transform 0.3s;
}
.modal-close:hover { background: var(--red-main); transform: rotate(90deg); }

.modal-img {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  position: relative;
}

.modal-info { padding: 2rem; }
.modal-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.modal-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.modal-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background: var(--cream);
  border-radius: 1rem;
}
.modal-detail {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.modal-detail svg { color: var(--red-main); flex-shrink: 0; }

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--red-main);
}
.modal-price::before { content: '\20AC'; font-size: 0.8em; margin-right: 0.125rem; }

.modal-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--red-main);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 100px;
  transition: background 0.3s, transform 0.3s var(--spring), box-shadow 0.3s;
}
.modal-add-btn:hover {
  background: var(--red-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(139, 0, 0, 0.3);
}
.modal-add-btn:active { transform: scale(0.97); }

/* --- Cinematic Section Transitions --- */

/* Clip-path reveal masks */
.section-reveal {
  clip-path: inset(0 0 100% 0);
}
.section-reveal.revealed {
  clip-path: inset(0 0 0% 0);
}

/* Section dividers — decorative line between sections */
.section-divider {
  position: relative;
  overflow: hidden;
}
.section-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 1.2s var(--ease-out-expo);
  z-index: 5;
}
.section-divider.divider-active::before {
  width: 60%;
}

/* Curtain wipe for dark→light transitions */
.curtain-wrap {
  position: relative;
  overflow: hidden;
}
.curtain-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--charcoal);
  transform-origin: top;
  z-index: 3;
  pointer-events: none;
}

/* Horizontal line grow (for section tags) */
.tag-reveal .section-tag::before {
  width: 0;
  transition: width 0.8s var(--ease-out-expo) 0.3s;
}
.tag-reveal.active .section-tag::before {
  width: 1.25rem;
}

/* Scale-in container */
.scale-in {
  transform: scale(0.92);
  opacity: 0;
  transition: transform 1s var(--ease-out-expo), opacity 0.8s ease;
}
.scale-in.in-view {
  transform: scale(1);
  opacity: 1;
}

/* Stagger children reveal helper */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
}

/* --- Utility --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
