/* ==========================================
   LUNA ROSSA — CASE STUDY v2
   Prefix: lr-
   Palette: dark Soul + accenti gialli Luna Rossa
   Hero centrato + glow gialli distribuiti + emoji ovunque
   ========================================== */

:root {
  --lr-red: #C0313C;
  --lr-red-dark: #8b1a22;
  --lr-red-bright: #E74C3C;
  --lr-yellow: #F4C430;
  --lr-yellow-warm: #F39C12;
  --lr-green: #6B8E4E;
  --lr-bg: #0a0a0a;
  --lr-bg-deeper: #060606;
  --lr-bg-card: #111;
  --lr-border: rgba(255,255,255,0.08);
  --lr-text: #fff;
  --lr-text-mid: #888;
  --lr-text-low: #555;
}

.lr-page { background: var(--lr-bg); color: var(--lr-text); font-family: 'Inter', sans-serif; }
.lr-page h1, .lr-page h2, .lr-page h3 { font-family: 'Inter', sans-serif; }

.lr-anim { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.lr-anim.visible { opacity: 1; transform: translateY(0); }

/* ========== UTILITY ========== */
.lr-kicker {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--lr-red);
  margin-bottom: 18px; display: inline-flex; align-items: center; gap: 8px;
}
.lr-kicker::before {
  content: ''; width: 6px; height: 6px; background: var(--lr-red); border-radius: 50%;
}

.lr-h2 {
  font-size: 48px; font-weight: 900; line-height: 1.05;
  letter-spacing: -1.5px; text-transform: lowercase;
  color: var(--lr-text); margin: 0 0 18px;
}
.lr-grad {
  background: linear-gradient(90deg, #C0392B 0%, #E74C3C 25%, #E67E22 55%, #F39C12 80%, #F1C40F 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lr-lead {
  font-size: 16px; font-weight: 400; line-height: 1.7;
  color: var(--lr-text-mid); max-width: 640px; margin: 0 auto 24px;
}

.lr-section-head { text-align: center; margin: 0 auto 36px; max-width: 820px; }

.lr-cta-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--lr-red-dark), var(--lr-red));
  color: #fff; border-radius: 100px;
  font-size: 16px; font-weight: 700;
  box-shadow: 0 6px 25px rgba(139,26,34,0.45);
  text-decoration: none; transition: transform .2s;
}
.lr-cta-pill:hover { transform: scale(1.04); }
.lr-cta-pill--big { font-size: 18px; padding: 20px 44px; }

/* ========== SECTION WRAPPER ========== */
.lr-section { position: relative; padding: 45px 0; overflow: hidden; }
.lr-section--deeper { background: var(--lr-bg-deeper); }

/* ========== GLOW (shared utilities) ========== */
.lr-glow { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.lr-glow--y-topleft {
  top: -80px; left: -100px; width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(244,196,48,0.14), transparent 70%);
}
.lr-glow--y-topright {
  top: -60px; right: -100px; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(244,196,48,0.12), transparent 70%);
}
.lr-glow--y-bottomleft {
  bottom: -100px; left: -80px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(244,196,48,0.13), transparent 70%);
}
.lr-glow--y-bottomright {
  bottom: -80px; right: -100px; width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(244,196,48,0.15), transparent 70%);
}
.lr-glow--r-right {
  top: 40%; right: -150px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(192,49,60,0.2), transparent 70%);
}
.lr-glow--r-center {
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 350px;
  background: radial-gradient(ellipse, rgba(139,26,34,0.28), transparent 70%);
}

/* ========== EMOJI SPRINKLES (sparse in ogni sezione) ========== */
@keyframes lrFloat {
  0%,100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-15px) rotate(6deg); }
}
.lr-sprinkle {
  position: absolute; font-size: 26px; opacity: 0.13;
  pointer-events: none; z-index: 1;
  animation: lrFloat 7s ease-in-out infinite;
}
.lr-sprinkle--1 { top: 15%; left: 5%; animation-delay: 0s; }
.lr-sprinkle--2 { top: 28%; right: 7%; animation-delay: 2s; font-size: 22px; }
.lr-sprinkle--3 { bottom: 22%; left: 8%; animation-delay: 1s; font-size: 24px; }
.lr-sprinkle--4 { bottom: 12%; right: 10%; animation-delay: 3s; font-size: 20px; }

/* ========== HERO (CENTRATO) ========== */
.lr-hero {
  position: relative; padding: 70px 0 50px; overflow: hidden;
  text-align: center;
}
.lr-hero__glow { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.lr-hero__glow--red {
  top: -150px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(139,26,34,0.55), rgba(192,49,60,0.2) 40%, transparent 70%);
  animation: lrGlowPulse 6s ease-in-out infinite;
}
.lr-hero__glow--yellow-r {
  top: 30%; right: -150px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(244,196,48,0.18), transparent 70%);
}
.lr-hero__glow--yellow-l {
  top: 60%; left: -150px; width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(244,196,48,0.14), transparent 70%);
}
@keyframes lrGlowPulse {
  0%,100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.lr-hero__floaty-wrap { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.lr-floaty {
  position: absolute; font-size: 30px; opacity: 0.18;
  animation: lrFloat 6s ease-in-out infinite;
}
.lr-floaty--1 { top: 12%; left: 8%; animation-delay: 0s; }
.lr-floaty--2 { top: 20%; right: 10%; animation-delay: 1s; font-size: 26px; }
.lr-floaty--3 { top: 55%; left: 4%; animation-delay: 2s; }
.lr-floaty--4 { top: 65%; right: 6%; animation-delay: 0.5s; font-size: 28px; }
.lr-floaty--5 { top: 85%; left: 20%; animation-delay: 1.5s; font-size: 22px; }
.lr-floaty--6 { top: 8%; left: 45%; animation-delay: 2.5s; font-size: 22px; }
.lr-floaty--7 { top: 78%; right: 25%; animation-delay: 3s; font-size: 24px; }
.lr-floaty--8 { top: 45%; right: 3%; animation-delay: 3.5s; font-size: 20px; }

.lr-hero__content {
  position: relative; z-index: 2; max-width: 780px; margin: 0 auto;
}
.lr-hero__title {
  font-size: 62px; font-weight: 900; line-height: 1.0;
  letter-spacing: -2px; text-transform: lowercase; margin: 0 0 20px;
}
.lr-hero__lead {
  font-size: 17px; line-height: 1.7; color: var(--lr-text-mid);
  max-width: 560px; margin: 0 auto 20px;
}
.lr-hero__badges {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; justify-content: center;
}
.lr-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px; background: var(--lr-bg-card);
  border: 1px solid var(--lr-border); border-radius: 100px;
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--lr-yellow);
}
.lr-badge__icon { font-size: 16px; }
.lr-hero__kpis {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; max-width: 460px; margin: 0 auto 10px;
}
.lr-kpi {
  padding: 18px 12px; background: var(--lr-bg-card);
  border: 1px solid var(--lr-border); border-radius: 12px; text-align: center;
}
.lr-kpi__n { font-size: 28px; font-weight: 900; color: var(--lr-yellow); line-height: 1; }
.lr-kpi__s { font-size: 16px; }
.lr-kpi__l {
  font-size: 9px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--lr-text-low); margin-top: 8px; line-height: 1.3;
}

.lr-hero__photo {
  position: relative; max-width: 900px; margin: 32px auto 0;
  aspect-ratio: 16/9; border-radius: 20px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(139,26,34,0.45);
  border: 1px solid rgba(192,49,60,0.3);
  background: var(--lr-bg-card);
}
.lr-hero__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lr-hero__sticker {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--lr-bg); color: var(--lr-yellow);
  padding: 10px 16px; border-radius: 100px;
  font-size: 11px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; transform: rotate(-3deg);
  border: 1px solid var(--lr-yellow);
}

/* ========== CHI È ========== */
.lr-chi__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-bottom: 22px; position: relative; z-index: 2;
}
.lr-chi__photo {
  aspect-ratio: 1/1; border-radius: 12px; overflow: hidden;
  background: var(--lr-bg-card);
}
.lr-chi__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.lr-pills {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  position: relative; z-index: 2;
}
.lr-pill {
  padding: 10px 18px; background: var(--lr-bg-card);
  border: 1px solid var(--lr-border); border-radius: 100px;
  font-size: 13px; font-weight: 600; color: var(--lr-text);
}

/* ========== ROSARIO ========== */
.lr-rosario__layout {
  position: relative; z-index: 2; text-align: center;
  max-width: 700px; margin: 0 auto;
}
.lr-rosario__photo {
  position: relative; aspect-ratio: 4/5;
  max-width: 420px; margin: 0 auto 22px;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  background: var(--lr-bg-card);
}
.lr-rosario__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lr-rosario__sticker {
  position: absolute; bottom: 16px; left: 16px;
  background: var(--lr-red); color: #fff;
  padding: 10px 16px; border-radius: 100px;
  font-size: 11px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; transform: rotate(-3deg);
}
.lr-rosario__lead {
  font-size: 17px; line-height: 1.8; color: var(--lr-text-mid); margin: 0;
}

/* ========== LE PIZZE ========== */
.lr-pizze__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px 20px; position: relative; z-index: 2;
}
.lr-pizza { transition: transform 0.4s ease; }
.lr-pizza:hover { transform: translateY(-4px); }
.lr-pizza__photo {
  aspect-ratio: 1/1; border-radius: 12px; overflow: hidden;
  background: var(--lr-bg-card); margin-bottom: 0;
}
.lr-pizza__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ========== IL MENU ========== */
.lr-menu__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px; position: relative; z-index: 2;
}
.lr-menu__card {
  aspect-ratio: 3/4; border-radius: 12px; overflow: hidden;
  background: var(--lr-bg-card);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: transform .3s;
}
.lr-menu__card:hover { transform: translateY(-4px); }
.lr-menu__card img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ========== REEL ========== */
.lr-reel__row {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 2;
}
.lr-reel__card {
  width: 220px;
  aspect-ratio: 9/16;
  border-radius: 18px;
  overflow: hidden;
  background: var(--lr-bg-card);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  position: relative;
}
.lr-reel__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ========== SHOOTING ========== */
.lr-shooting__masonry {
  columns: 4; column-gap: 14px; position: relative; z-index: 2;
}
.lr-sh {
  break-inside: avoid; margin-bottom: 14px;
  border-radius: 10px; overflow: hidden;
  background: var(--lr-bg-card);
}
.lr-sh img { width: 100%; height: auto; display: block; }

/* ========== CTA ========== */
.lr-cta-section { padding: 70px 0; }
.lr-cta__glow-red {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 800px; height: 400px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(139,26,34,0.4), transparent 70%);
  pointer-events: none; animation: lrGlowPulse 6s ease-in-out infinite; z-index: 0;
}
.lr-cta__box {
  position: relative; z-index: 2; text-align: center;
  max-width: 820px; margin: 0 auto;
}
.lr-cta__box .lr-kicker { color: var(--lr-yellow); }
.lr-cta__box .lr-kicker::before { background: var(--lr-yellow); }

/* ==========================================
   BAGLIORI ARANCIONI DIETRO I MEDIA (v2)
   Tecnica box-shadow multipli — funziona sempre
   ========================================== */

.lr-hero__photo {
  box-shadow:
    0 0 60px 8px rgba(243,156,18,0.18),
    0 0 120px 20px rgba(230,126,34,0.1),
    0 30px 80px rgba(139,26,34,0.35);
}

.lr-rosario__photo {
  box-shadow:
    0 0 50px 8px rgba(243,156,18,0.2),
    0 0 100px 20px rgba(230,126,34,0.11),
    0 20px 60px rgba(0,0,0,0.5);
}

.lr-chi__photo {
  box-shadow:
    0 0 30px 4px rgba(243,156,18,0.16),
    0 0 60px 12px rgba(230,126,34,0.09);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.lr-chi__photo:hover {
  box-shadow:
    0 0 40px 6px rgba(243,156,18,0.28),
    0 0 80px 16px rgba(230,126,34,0.16);
  transform: translateY(-4px);
}

.lr-pizza__photo {
  box-shadow:
    0 0 30px 4px rgba(243,156,18,0.16),
    0 0 60px 12px rgba(230,126,34,0.09);
  transition: box-shadow 0.4s ease;
}
.lr-pizza:hover .lr-pizza__photo {
  box-shadow:
    0 0 40px 6px rgba(243,156,18,0.28),
    0 0 80px 16px rgba(230,126,34,0.16);
}

.lr-menu__card {
  box-shadow:
    0 0 40px 6px rgba(243,156,18,0.18),
    0 0 80px 16px rgba(230,126,34,0.1),
    0 10px 30px rgba(0,0,0,0.4);
  transition: box-shadow 0.4s ease, transform 0.3s;
}
.lr-menu__card:hover {
  box-shadow:
    0 0 55px 10px rgba(243,156,18,0.3),
    0 0 100px 22px rgba(230,126,34,0.18),
    0 10px 30px rgba(0,0,0,0.4);
}

.lr-reel__card {
  box-shadow:
    0 0 45px 8px rgba(243,156,18,0.2),
    0 0 90px 18px rgba(230,126,34,0.12),
    0 20px 50px rgba(0,0,0,0.5);
  transition: box-shadow 0.4s ease;
}
.lr-reel__card:hover {
  box-shadow:
    0 0 60px 12px rgba(243,156,18,0.32),
    0 0 110px 25px rgba(230,126,34,0.2),
    0 20px 50px rgba(0,0,0,0.5);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .lr-pizze__grid, .lr-chi__grid, .lr-menu__grid { grid-template-columns: repeat(2, 1fr); }
  .lr-shooting__masonry { columns: 3; }
  .lr-hero__title { font-size: 52px; }
  .lr-h2 { font-size: 40px; }
}
@media (max-width: 768px) {
  .lr-hero { padding: 45px 0 32px; }
  .lr-hero__title { font-size: 40px; }
  .lr-h2 { font-size: 32px; }
  .lr-chi__grid { grid-template-columns: repeat(2, 1fr); }
  .lr-shooting__masonry { columns: 2; }
  .lr-reel__row {
    flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start;
    padding: 0 20px; scrollbar-width: none;
  }
  .lr-reel__row::-webkit-scrollbar { display: none; }
  .lr-reel__card { flex-shrink: 0; width: 200px; }
  .lr-hero__kpis { max-width: 100%; }
  .lr-rosario__lead { font-size: 15px; }
  .lr-hero__photo { aspect-ratio: 4/3; margin-top: 40px; }
}
@media (max-width: 480px) {
  .lr-hero__title { font-size: 32px; }
  .lr-h2 { font-size: 26px; }
  .lr-menu__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .lr-pizze__grid { grid-template-columns: 1fr 1fr; gap: 18px 12px; }
  .lr-shooting__masonry { columns: 1; }
  .lr-reel__card { width: 180px; }
  .lr-sprinkle { font-size: 18px !important; }
  .lr-floaty { font-size: 22px !important; }
}
