/* ==========================================================================
   CSS CUSTOM VARIABLES & RESET
   ========================================================================== */
:root {
  --rosso: #8B1A1A;
  --rosso-vivo: #c0392b;
  --oro: #c9a84c;
  --nero: #0a0a0a;
  --nero-soft: #111111;
  --grigio-scuro: #1a1a1a;
  --grigio: #2a2a2a;
  --testo: #e8e2d9;
  --testo-soft: #a09585;
  --bianco: #f5f0eb;
  --font-title: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
}

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

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

body {
  background: var(--nero);
  color: var(--testo);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  cursor: default;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   SCROLLBAR & UTILITIES
   ========================================================================== */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--nero);
}

::-webkit-scrollbar-thumb {
  background: var(--rosso);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--rosso-vivo);
}

.text-highlight {
  color: var(--rosso-vivo);
  font-style: italic;
}

.divider-line {
  width: 80px;
  height: 1px;
  background: var(--rosso);
  margin: 2rem 0;
  transition: width 0.5s ease;
}

section:hover .divider-line {
  width: 120px;
}

/* ==========================================================================
   AGE GATE
   ========================================================================== */
#age-gate {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 2rem;
  transition: opacity 0.6s ease;
}

.age-logo {
  height: 120px;
  margin-bottom: 2.5rem;
  filter: drop-shadow(0 0 20px rgba(139,26,26,0.3));
}

.age-title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--bianco);
  margin-bottom: 0.5rem;
}

.age-sub {
  font-size: 13px;
  color: var(--testo-soft);
  letter-spacing: 0.15em;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.age-question {
  font-size: 18px;
  color: var(--testo);
  margin-bottom: 2rem;
  font-weight: 400;
}

.age-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.age-btn-yes {
  background: var(--rosso);
  color: #fff;
  border: none;
  padding: 15px 40px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.age-btn-yes:hover {
  background: var(--rosso-vivo);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(139, 26, 26, 0.4);
}

.age-btn-no {
  background: transparent;
  color: var(--testo-soft);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 15px 40px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.age-btn-no:hover {
  border-color: rgba(255,255,255,0.6);
  color: var(--bianco);
  background: rgba(255,255,255,0.05);
}

.age-disclaimer {
  font-size: 11px;
  color: var(--testo-soft);
  margin-top: 3rem;
  max-width: 450px;
  line-height: 1.8;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 4rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

nav.scrolled {
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(15px);
  padding: 1rem 4rem;
  border-bottom: 1px solid rgba(139, 26, 26, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-logo {
  flex: 1;
}

.nav-logo img {
  height: 55px;
  transition: height 0.5s ease;
}

nav.scrolled .nav-logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
  flex: 2;
  justify-content: center;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: var(--testo-soft);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  font-weight: 500;
  padding: 0.5rem 0;
}

.nav-links a:hover {
  color: var(--bianco);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rosso);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-right-wrap {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex: 1;
  justify-content: flex-end;
}

.lang-switch {
  display: flex;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.15em;
}

.lang-switch a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.lang-it {
  color: var(--bianco);
  font-weight: 600;
  border-bottom: 1px solid var(--rosso);
}

.lang-en {
  color: var(--testo-soft);
}

.lang-en:hover {
  color: var(--bianco);
}

.nav-cta {
  background: transparent;
  border: 1px solid var(--rosso);
  color: var(--testo);
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--rosso);
  color: #fff;
  box-shadow: 0 0 20px rgba(139, 26, 26, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 1px;
  background: var(--bianco);
  transition: all 0.3s ease;
}

/* ==========================================================================
   MOBILE MENU
   ========================================================================== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(10px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  font-family: var(--font-title);
  font-size: 2.5rem;
  color: var(--testo);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s, transform 0.3s;
}

.mobile-menu a:hover {
  color: var(--rosso-vivo);
  transform: scale(1.1);
}

.mobile-lang {
  font-family: var(--font-body);
  font-size: 1.2rem;
  margin-top: 2rem;
  letter-spacing: 0.2em;
}

.mobile-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--testo);
  font-size: 2.5rem;
  cursor: pointer;
  transition: transform 0.3s;
}

.mobile-close:hover {
  transform: rotate(90deg);
  color: var(--rosso);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
#hero {
  position: relative;
  height: 82vh;
  height: 82svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/lava.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  /* Rimossa animazione heroZoom: troppo pesante su GPU */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5,5,5,0.4) 0%, rgba(5,5,5,0.7) 60%, rgba(5,5,5,1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo img {
  height: 120px;
  width: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 50px rgba(139,26,26,0.6));
}

.hero-tagline {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  color: var(--bianco);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 40px rgba(0,0,0,0.9);
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero-tagline span {
  color: var(--rosso-vivo);
  font-style: normal;
}

.hero-sub {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--testo-soft);
  margin-bottom: 2.5rem;
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
}

.btn-primary {
  background: var(--rosso);
  color: #fff;
  border: 1px solid var(--rosso);
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: var(--rosso-vivo);
  border-color: var(--rosso-vivo);
  box-shadow: 0 10px 30px rgba(139, 26, 26, 0.5);
  transform: translateY(-3px);
}

.btn-secondary {
  background: rgba(255,255,255,0.03);
  color: var(--bianco);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  border-color: var(--bianco);
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}


.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--testo-soft);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--rosso), transparent);
  display: block;
}

/* ==========================================================================
   BOTTIGLIA 3D SPLINE SECTION (THE REPLACEMENT)
   ========================================================================== */
#bottiglia-3d {
  position: relative;
  background: #050505;
  padding: 0;
  height: 100vh;
  min-height: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.glow-bg-3d {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(139, 26, 26, 0.15) 0%, transparent 80%);
  pointer-events: none;
  z-index: 1;
}

.text-overlay-3d {
  position: absolute;
  top: 10%;
  z-index: 10;
  text-align: center;
  pointer-events: none;
  padding: 0 2rem;
  width: 100%;
}

.label-3d {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rosso);
  margin-bottom: 1rem;
}

.title-3d {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--bianco);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.desc-3d {
  font-size: 14px;
  color: var(--testo-soft);
  max-width: 450px;
  margin: 0 auto;
  line-height: 1.8;
}

.bottiglia-3d-container {
  width: 100%;
  max-width: 800px;
  height: 80vh;
  min-height: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

spline-viewer {
  width: 100%;
  height: 100%;
  display: block;
}

.hint-3d {
  position: absolute;
  bottom: 5%;
  z-index: 10;
  color: var(--testo-soft);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: pulseHint 2s infinite;
  pointer-events: none;
}

@keyframes pulseHint {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ==========================================================================
   GENERAL SECTIONS & REVEALS
   ========================================================================== */
section {
  padding: 8rem 4rem;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rosso);
  margin-bottom: 1rem;
  display: inline-block;
  position: relative;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--bianco);
  margin-bottom: 1.5rem;
}

.section-text {
  font-size: 15px;
  line-height: 2;
  color: var(--testo-soft);
  max-width: 600px;
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Staggering reveals */
.reveal-stagger-1 { transition-delay: 0.1s; }
.reveal-stagger-2 { transition-delay: 0.2s; }
.reveal-stagger-3 { transition-delay: 0.3s; }
.reveal-stagger-4 { transition-delay: 0.4s; }

/* ==========================================================================
   STORIA SECTION
   ========================================================================== */
#storia {
  background: var(--nero-soft);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.storia-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
}

.storia-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.storia-img:hover img {
  transform: scale(1.08);
}

.storia-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(139,26,26,0.3);
  pointer-events: none;
  z-index: 2;
}

.storia-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  max-width: 500px;
}

.storia-stat-box {
  border-left: 2px solid var(--rosso);
  padding-left: 1.5rem;
}

.storia-stat-num {
  font-family: var(--font-title);
  font-size: 3rem;
  color: var(--rosso-vivo);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.storia-stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--testo-soft);
}

/* ==========================================================================
   PRODOTTI SECTION (Advanced Cards)
   ========================================================================== */
#prodotti {
  background: var(--grigio-scuro);
  position: relative;
}

.prodotti-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.prodotti-intro .section-text {
  margin: 0 auto;
  text-align: center;
}

.prodotti-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.prodotto-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: #0d0505;
  border: 1px solid rgba(139,26,26,0.15);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.prodotto-card:hover {
  border-color: rgba(139,26,26,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.prodotto-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1), filter 1.2s ease;
  filter: brightness(0.75) saturate(1.1);
  will-change: transform;
}

.prodotto-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.9) saturate(1.2);
}

.prodotto-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.97) 0%, rgba(5,5,5,0.55) 45%, rgba(5,5,5,0.1) 70%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  transition: padding 0.5s cubic-bezier(0.16,1,0.3,1);
}

.prodotto-card:hover .prodotto-overlay {
  padding-bottom: 3.5rem;
}

.prodotto-tipo {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rosso);
  margin-bottom: 0.5rem;
}

.prodotto-nome {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--bianco);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.prodotto-desc {
  font-size: 14px;
  color: var(--testo-soft);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.prodotto-card:hover .prodotto-desc {
  max-height: 200px;
  opacity: 1;
  margin-bottom: 1.5rem;
}

.prodotto-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.tag {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--testo-soft);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 14px;
  backdrop-filter: blur(5px);
}

.btn-group {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease 0.1s;
}

.prodotto-card:hover .btn-group {
  opacity: 1;
  transform: translateY(0);
}

.btn-aroma, .btn-tecnica {
  background: transparent;
  color: var(--testo);
  border: 1px solid var(--rosso);
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-aroma:hover, .btn-tecnica:hover {
  background: var(--rosso);
  color: #fff;
}

/* ==========================================================================
   IL PROCESSO SECTION
   ========================================================================== */
#processo {
  background: var(--nero);
  max-width: 1400px;
  margin: 0 auto;
  padding: 8rem 4rem;
}

.processo-intro {
  text-align: center;
  margin-bottom: 6rem;
}

.processo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-bottom: 8rem;
}

.processo-grid:last-child {
  margin-bottom: 0;
}

.processo-grid.reverse {
  direction: rtl;
}

.processo-grid.reverse > * {
  direction: ltr;
}

.processo-img {
  overflow: hidden;
  aspect-ratio: 3/2;
  border-radius: 2px;
  position: relative;
}

.processo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.processo-img:hover img {
  transform: scale(1.05);
}

.processo-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(139,26,26,0.1);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.step-num {
  font-family: var(--font-title);
  font-size: 6rem;
  font-weight: 300;
  color: rgba(139,26,26,0.15);
  line-height: 0.8;
  margin-bottom: 1rem;
}

.step-title {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--bianco);
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   CHI SIAMO & VALORI SECTION
   ========================================================================== */
#chi-siamo {
  background: var(--grigio-scuro);
}

.chisiamo-wrap {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 6rem;
  align-items: center;
}

.chisiamo-img {
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
}

.chisiamo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chisiamo-img::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px; right: 20px; bottom: 20px;
  border: 1px solid rgba(139,26,26,0.4);
  z-index: -1;
}

.valori-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.valore {
  padding: 2rem;
  border: 1px solid rgba(139,26,26,0.2);
  background: rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.valore:hover {
  border-color: var(--rosso);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.valore-titolo {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rosso);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.valore-titolo::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--rosso);
}

.valore-testo {
  font-size: 14px;
  color: var(--testo-soft);
  line-height: 1.8;
}

/* ==========================================================================
   COCKTAIL SECTION
   ========================================================================== */
#cocktail {
  background: var(--nero);
  position: relative;
}

.cocktail-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 5rem;
}

.cocktail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  max-width: 1300px;
  margin: 0 auto;
}

.cocktail-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.cocktail-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
  filter: brightness(0.85);
}

.cocktail-card:hover img {
  transform: scale(1.08);
  filter: brightness(1);
}

.cocktail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.95) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
}

.cocktail-nome {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--bianco);
  margin-bottom: 0.5rem;
}

.cocktail-base {
  font-size: 11px;
  color: var(--rosso);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.ricetta-box {
  background: var(--grigio);
  padding: 4rem;
  max-width: 800px;
  margin: 4rem auto 0;
  border-left: 4px solid var(--rosso);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.ricetta-title {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--bianco);
  margin-bottom: 2rem;
}

.ricetta-list {
  list-style: none;
}

.ricetta-list li {
  font-size: 14px;
  color: var(--testo-soft);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
}

.ricetta-list li:last-child {
  border-bottom: none;
}

/* ==========================================================================
   FAQ SECTION (NEW LUXURY FEATURE)
   ========================================================================== */
#faq {
  background: var(--nero-soft);
  padding: 8rem 4rem;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(139,26,26,0.3);
  padding: 1.5rem 0;
  cursor: pointer;
}

.faq-question {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--bianco);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq-item:hover .faq-question {
  color: var(--rosso-vivo);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 14px;
  color: var(--testo-soft);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 1rem;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.4s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* ==========================================================================
   CONTATTI & DOVE ACQUISTARE
   ========================================================================== */
#contatti {
  background: var(--nero);
  text-align: center;
}

.contatti-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.contatti-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 4rem 0;
}

.contatto-card {
  padding: 3rem 2rem;
  border: 1px solid rgba(139,26,26,0.3);
  background: rgba(255,255,255,0.02);
  transition: all 0.4s ease;
}

.contatto-card:hover {
  border-color: var(--rosso);
  transform: translateY(-10px);
  background: rgba(139,26,26,0.05);
}

.contatto-icon {
  margin-bottom: 1.5rem;
}
.contatto-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(192,57,43,0.35));
}

.contatto-titolo {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rosso);
  margin-bottom: 1rem;
}

.contatto-testo {
  font-size: 14px;
  color: var(--testo-soft);
  line-height: 1.8;
}

.contatto-link {
  color: var(--bianco);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}

.contatto-link:hover {
  color: var(--rosso-vivo);
  border-color: var(--rosso-vivo);
}

.form-wrap {
  margin-top: 6rem;
  text-align: left;
  background: var(--grigio-scuro);
  padding: 4rem;
  border: 1px solid rgba(255,255,255,0.05);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--testo-soft);
}

.form-group input, .form-group textarea, .form-group select {
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--testo);
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  transition: all 0.3s;
  outline: none;
  width: 100%;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--rosso);
  background: rgba(139,26,26,0.05);
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.form-full {
  grid-column: 1 / -1;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: #030303;
  padding: 6rem 4rem 2rem;
  border-top: 1px solid rgba(139,26,26,0.3);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  max-width: 1300px;
  margin: 0 auto 4rem;
}

.footer-logo img {
  height: 70px;
  margin-bottom: 1.5rem;
}

.footer-desc {
  font-size: 14px;
  color: var(--testo-soft);
  line-height: 1.9;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rosso);
  margin-bottom: 2rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 1rem;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--testo-soft);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--bianco);
}

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--testo-soft);
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--testo-soft);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s;
}

.social-links a:hover {
  border-color: var(--rosso);
  color: var(--bianco);
  background: rgba(139,26,26,0.2);
  transform: translateY(-3px);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================================================== */
@media (max-width: 1024px) {
  .chisiamo-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 5rem 2rem; }
}

@media (max-width: 768px) {
  nav { padding: 1.5rem 2rem; }
  .nav-links, .lang-switch, .nav-cta { display: none; }
  .hamburger { display: flex; }
  
  #storia, .processo-grid, .prodotti-grid, .cocktail-grid, .contatti-grid { grid-template-columns: 1fr; gap: 3rem; }
  .processo-grid.reverse { direction: ltr; }
  
  .form-grid { grid-template-columns: 1fr; }
  .valori-grid { grid-template-columns: 1fr; }
  
  .hero-tagline { font-size: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-wrap { padding: 2rem; }
}

/* ==========================================================================
   POPUP EASTER EGG & AROMA CHART
   ========================================================================== */
#aroma-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-content {
  background: #0a0a0a;
  border: 1px solid rgba(139,26,26,0.5);
  width: 100%;
  max-width: 600px;
  padding: 4rem 3rem 3rem;
  position: relative;
  box-shadow: 0 0 50px rgba(0,0,0,0.8);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--testo-soft);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s;
}

.modal-close:hover { color: var(--rosso-vivo); }

#easter-egg-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(5,5,5,0.95);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

/* ==========================================================================
   CHATBOT STYLES
   ========================================================================== */
#lv-chat-btn {
  position: fixed; bottom: 2rem; left: 2rem; z-index: 500;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #8B1A1A, #c0392b);
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s; box-shadow: 0 10px 30px rgba(139,26,26,0.6);
}
#lv-chat-btn:hover { transform: scale(1.1); box-shadow: 0 15px 40px rgba(139,26,26,0.8); }
#lv-chat-btn img { width: 35px; height: 35px; object-fit: contain; filter: brightness(1.2); }

#lv-chat-box {
  position: fixed; bottom: 7rem; left: 2rem; z-index: 500;
  width: 360px; height: 500px; max-height: calc(100vh - 10rem);
  background: #0f0f0f; border: 1px solid rgba(139,26,26,0.5);
  border-radius: 12px; overflow: hidden;
  display: none; flex-direction: column;
  box-shadow: 0 30px 80px rgba(0,0,0,0.9);
  animation: chatSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes chatSlideIn {
  from { opacity: 0; transform: translateY(40px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

#lv-chat-header {
  background: linear-gradient(135deg, #8B1A1A, #5a0d0d);
  padding: 16px 20px; display: flex; align-items: center; gap: 12px;
}
#lv-chat-header img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.2); }
.lv-chat-hinfo { flex: 1; }
.lv-chat-hname { font-size: 14px; font-weight: 600; color: #fff; font-family: var(--font-body); letter-spacing: 0.05em; }
.lv-chat-hstatus { font-size: 11px; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 6px; margin-top: 2px; }
.lv-chat-hstatus::before { content: ''; width: 8px; height: 8px; background: #2ecc71; border-radius: 50%; display: inline-block; box-shadow: 0 0 10px #2ecc71; }
#lv-chat-close { background: none; border: none; color: rgba(255,255,255,0.8); font-size: 22px; cursor: pointer; padding: 0; line-height: 1; transition: color 0.3s; }
#lv-chat-close:hover { color: #fff; }

#lv-chat-messages {
  flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 15px;
  scrollbar-width: thin; scrollbar-color: #8B1A1A #0f0f0f;
}
.lv-msg {
  max-width: 85%; padding: 12px 16px; border-radius: 12px;
  font-size: 13px; line-height: 1.6; font-family: var(--font-body);
  animation: msgIn 0.3s ease;
}
.lv-msg.bot { background: #1a1a1a; color: #e8e2d9; border-bottom-left-radius: 2px; align-self: flex-start; border: 1px solid rgba(139,26,26,0.3); }
.lv-msg.user { background: linear-gradient(135deg, #8B1A1A, #a01f1f); color: #fff; border-bottom-right-radius: 2px; align-self: flex-end; box-shadow: 0 5px 15px rgba(139,26,26,0.2); }

.lv-typing {
  display: flex; gap: 5px; align-items: center; padding: 12px 16px;
  background: #1a1a1a; border-radius: 12px; border-bottom-left-radius: 2px;
  align-self: flex-start; border: 1px solid rgba(139,26,26,0.3);
}
.lv-typing span { width: 8px; height: 8px; background: #8B1A1A; border-radius: 50%; animation: typingDot 1.4s infinite ease-in-out both; }
.lv-typing span:nth-child(1) { animation-delay: -0.32s; }
.lv-typing span:nth-child(2) { animation-delay: -0.16s; }
@keyframes typingDot { 0%, 80%, 100% { transform: scale(0); } 40% { transform: scale(1); } }

.lv-quick-btns { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 5px; }
.lv-quick-btn {
  font-size: 11px; padding: 8px 14px; background: rgba(139,26,26,0.1);
  border: 1px solid rgba(139,26,26,0.5); color: #fff; border-radius: 20px;
  cursor: pointer; font-family: var(--font-body); transition: all 0.3s;
}
.lv-quick-btn:hover { background: var(--rosso); border-color: var(--rosso-vivo); transform: translateY(-2px); }

#lv-chat-input-wrap {
  padding: 16px; border-top: 1px solid rgba(139,26,26,0.3); background: #111;
  display: flex; gap: 10px; align-items: center;
}
#lv-chat-input {
  flex: 1; background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; padding: 12px 16px; border-radius: 24px; font-size: 13px;
  font-family: var(--font-body); outline: none; transition: all 0.3s;
}
#lv-chat-input:focus { border-color: var(--rosso); background: rgba(139,26,26,0.05); }
#lv-chat-send {
  width: 42px; height: 42px; border-radius: 50%; background: var(--rosso);
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; flex-shrink: 0;
}
#lv-chat-send:hover { background: var(--rosso-vivo); transform: scale(1.1); }
#lv-chat-send svg { width: 18px; height: 18px; fill: white; }

@media(max-width: 480px){
  #lv-chat-box { width: calc(100vw - 2rem); left: 1rem; bottom: 6rem; height: 400px; }
  #lv-chat-btn { bottom: 1rem; left: 1rem; width: 50px; height: 50px; }
}

.ricetta-accordion { border:1px solid rgba(139,26,26,0.25); margin-bottom:1px; cursor:pointer; }
  .ricetta-header { display:flex; justify-content:space-between; align-items:center; padding:1.5rem 2rem; background:#0d0505; transition:background 0.3s; }
  .ricetta-accordion:hover .ricetta-header { background:#140808; }
  .ricetta-label { font-size:10px; letter-spacing:0.3em; text-transform:uppercase; color:var(--rosso); display:block; margin-bottom:0.25rem; }
  .ricetta-titolo { font-size:13px; color:var(--testo-soft); }
  .ricetta-icon { font-size:1.5rem; color:var(--rosso); transition:transform 0.3s; flex-shrink:0; margin-left:1rem; }
  .ricetta-accordion.open .ricetta-icon { transform:rotate(45deg); }
  .ricetta-body { display:none; padding:2rem; background:#080505; border-top:1px solid rgba(139,26,26,0.15); }
  .ricetta-accordion.open .ricetta-body { display:block; }
/* ==========================================================================
   RESTYLING 2026 — nuove sezioni, interattività, mobile
   ========================================================================== */

/* Barra di avanzamento scroll */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--rosso), var(--rosso-vivo));
  z-index: 2000;
  box-shadow: 0 0 12px rgba(192,57,43,0.7);
  transition: width 0.1s linear;
}

/* Storia — foto e contenuto */
#storia { padding: 0; background: var(--nero-soft); }
.storia-photo {
  width: 100%;
  height: 62vh;
  min-height: 320px;
  overflow: hidden;
  position: relative;
}
.storia-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.storia-photo-fade {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, var(--nero-soft) 100%);
}
.storia-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 5rem 4rem 6rem;
}
.storia-text { max-width: 900px; }
.storia-text .section-text { font-size: 16px; }

/* Sezione mirto in evidenza */
.mirto-feature-wrap {
  max-width: 1200px;
  margin: 0 auto 5rem;
  padding: 0 2rem;
}
.mirto-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(139,26,26,0.25);
  overflow: hidden;
}
.mirto-feature-text {
  padding: 4rem;
  background: #0d0505;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mirto-eyebrow {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rosso);
  margin-bottom: 1.5rem;
}
.mirto-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--bianco);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.mirto-title em { color: var(--rosso-vivo); }
.mirto-desc {
  font-size: 14px;
  color: var(--testo-soft);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.mirto-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }
.mirto-btns .btn-primary, .mirto-btns .btn-secondary { font-size: 12px; padding: 14px 30px; }
.mirto-feature-img {
  background: #080808;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
  position: relative;
  overflow: hidden;
}
.mirto-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(139,26,26,0.12) 0%, transparent 70%);
}
.mirto-feature-img img {
  max-height: 420px;
  max-width: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  padding: 2rem;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.mirto-feature:hover .mirto-feature-img img { transform: scale(1.04); }

/* Banner "oscurità e luce" */
.banner-lux { padding: 0; background: var(--nero); overflow: hidden; }
.banner-lux-inner {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 420px;
  overflow: hidden;
}
.banner-lux-inner > img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.banner-lux-shade {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(5,5,5,0.85) 0%, rgba(5,5,5,0.3) 50%, transparent 100%);
}
.banner-lux-content {
  position: absolute;
  top: 50%; left: 8%;
  transform: translateY(-50%);
  max-width: 520px;
  z-index: 10;
}
.banner-lux-label {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rosso);
  margin-bottom: 1.25rem;
}
.banner-lux-title {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--bianco);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.banner-lux-title em { color: var(--rosso-vivo); }
.banner-lux-text {
  font-size: 15px;
  color: var(--testo-soft);
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

/* Ricette — testi */
.ricetta-nome-drink {
  color: var(--rosso);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ricetta-note {
  font-size: 13px;
  color: var(--testo-soft);
  margin-top: 1rem;
  font-style: italic;
  line-height: 1.8;
}
.ricetta-item-sep {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(139,26,26,0.2);
}

/* Pulsante WhatsApp (stili spostati dall'inline) */
#wa-btn {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 499;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
}
#wa-btn:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(37,211,102,0.6);
}

/* Feedback form contatti */
#form-feedback {
  margin-top: 1.25rem;
  font-size: 13px;
  min-height: 1.2em;
  letter-spacing: 0.03em;
}
#form-feedback.ok { color: #7bc47f; }
#form-feedback.err { color: var(--rosso-vivo); }

/* Accessibilità: riduzione movimento */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-left, .reveal-right { opacity: 1 !important; transform: none !important; }
}

/* ==========================================================================
   RESPONSIVE COMPLETO
   ========================================================================== */
@media (max-width: 1024px) {
  .prodotti-grid { grid-template-columns: repeat(2, 1fr); }
  .mirto-feature-text { padding: 3rem 2.5rem; }
}

@media (max-width: 768px) {
  .hero-logo img { height: 90px; }
  .hero-btns { flex-direction: column; gap: 1rem; width: 100%; max-width: 320px; }
  .hero-btns a { text-align: center; }
  #hero { min-height: 520px; }

  .storia-inner { padding: 3.5rem 1.5rem 4.5rem; }
  .storia-photo { height: 42vh; }
  .storia-stats { grid-template-columns: 1fr; gap: 1.5rem; max-width: none; }

  .mirto-feature { grid-template-columns: 1fr; }
  .mirto-feature-img { min-height: 320px; order: -1; }
  .mirto-feature-img img { max-height: 280px; }
  .mirto-feature-text { padding: 2.5rem 1.5rem; }

  .prodotti-grid { grid-template-columns: 1fr; gap: 1.5rem; max-width: 480px; }

  .banner-lux-inner { height: auto; min-height: 0; }
  .banner-lux-inner > img { height: 46vh; min-height: 300px; }
  .banner-lux-shade { background: linear-gradient(to bottom, transparent 0%, rgba(5,5,5,0.95) 75%); }
  .banner-lux-content {
    position: relative;
    top: auto; left: auto;
    transform: none;
    max-width: none;
    padding: 2.5rem 1.5rem 3.5rem;
    margin-top: -6rem;
  }

  .ricetta-header { padding: 1.25rem 1.25rem; }
  .ricetta-body { padding: 1.5rem 1.25rem; }

  .contatti-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  #wa-btn { width: 52px; height: 52px; bottom: 1rem; right: 1rem; }
  #wa-btn svg { width: 26px; height: 26px; }
}

@media (max-width: 480px) {
  section { padding: 4rem 1.25rem; }
  .section-title { font-size: 2.2rem; }
  .hero-tagline { font-size: 2.1rem; }
  .modal-content { padding: 3rem 1.5rem 2rem; }
  #aromaChart { max-width: 100%; height: auto !important; }
  .form-wrap { padding: 1.5rem; }
  .footer-grid { gap: 2.5rem; }
}

/* ==========================================================================
   FIX TOUCH & QUALSIASI SCHERMO (2026 v2)
   ========================================================================== */

/* Su dispositivi touch non esiste l'hover: descrizioni e pulsanti
   delle card prodotto devono essere SEMPRE visibili */
@media (hover: none), (max-width: 900px) {
  .prodotto-card { aspect-ratio: auto; }
  .prodotto-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .prodotto-overlay {
    position: relative;
    inset: auto;
    padding: 15rem 1.5rem 1.75rem;
    background: linear-gradient(to top, rgba(5,5,5,0.97) 0%, rgba(5,5,5,0.88) 35%, rgba(5,5,5,0.45) 62%, transparent 100%);
  }
  .prodotto-desc {
    max-height: none;
    opacity: 1;
    overflow: visible;
    margin-bottom: 1.25rem;
    font-size: 13px;
  }
  .prodotto-nome { font-size: 2.4rem; }
  .prodotto-tags { margin-top: 1rem; margin-bottom: 1rem; }
  .btn-group {
    opacity: 1;
    transform: none;
    margin-top: 0.5rem;
    flex-wrap: wrap;
  }
  .btn-group .btn-aroma, .btn-group .btn-tecnica {
    flex: 1;
    min-width: 130px;
    text-align: center;
    padding: 12px 10px;
  }
}

/* Age gate sempre fruibile anche su schermi bassi (landscape) */
#age-gate { overflow-y: auto; padding: 2rem 1.5rem; }

/* Telefoni in orizzontale / schermi molto bassi */
@media (max-height: 520px) {
  #hero { height: 100svh; min-height: 0; }
  .hero-logo img { height: 64px; margin-bottom: 1rem; }
  .hero-sub { margin-bottom: 1.25rem; }
  .hero-scroll { display: none; }
  #lv-chat-box { height: auto; max-height: calc(100svh - 7rem); }
}

/* Schermi molto piccoli (fino a 360px) */
@media (max-width: 360px) {
  html { font-size: 15px; }
  section { padding: 3.5rem 1rem; }
  .hero-tagline { font-size: 1.9rem; }
  .section-title { font-size: 2rem; }
  .prodotto-overlay { padding: 12rem 1.15rem 1.5rem; }
  .mirto-feature-text { padding: 2rem 1.15rem; }
  .storia-inner { padding: 3rem 1rem 4rem; }
  .age-btns { flex-direction: column; width: 100%; max-width: 260px; }
  .age-btns button { width: 100%; }
}

/* Banner "oscurità e luce": impilato in modo pulito sotto i 768px */
@media (max-width: 768px) {
  .banner-lux-inner { height: auto; min-height: 0; }
  .banner-lux-inner > img { height: 40svh; min-height: 260px; }
  .banner-lux-content {
    position: relative;
    top: auto; left: auto;
    transform: none;
    max-width: none;
    margin-top: 0;
    padding: 2.5rem 1.5rem 3.5rem;
  }
  .banner-lux-shade {
    background: linear-gradient(to bottom, transparent 0%, rgba(5,5,5,0.9) 55%, #050505 100%);
  }
  #processo { padding: 4.5rem 1.5rem; }
  .processo-grid { gap: 2.5rem; margin-bottom: 4.5rem; }
  .processo-intro { margin-bottom: 3.5rem; }
}

/* Schermi grandissimi: limiti di leggibilità */
@media (min-width: 1800px) {
  #hero { max-height: 1100px; }
  .banner-lux-inner { max-height: 900px; }
}

/* Stampa / salvataggio in PDF: mostra tutto, nascondi i widget */
@media print {
  .reveal, .reveal-left, .reveal-right { opacity: 1 !important; transform: none !important; }
  #lv-chat-btn, #lv-chat-box, #wa-btn, #scroll-progress, #lv-cookie,
  #nl-popup, #age-gate, .hero-scroll { display: none !important; }
  #hero { height: auto; min-height: 0; padding: 3rem 0; }
  .prodotto-desc { max-height: none; opacity: 1; }
  .btn-group { opacity: 1; transform: none; }
}
