: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;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--nero);
  color: var(--testo);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--nero); }
::-webkit-scrollbar-thumb { background: var(--rosso); }

/* ─── NAVBAR ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 3rem;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(139,26,26,0.3);
}
.nav-logo { flex: 1; }
.nav-logo img { height: 40px; }
.nav-links { display: flex; gap: 2rem; list-style: none; flex: 2; justify-content: center; }
.nav-links a { color: var(--testo-soft); text-decoration: none; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; transition: color 0.3s; font-weight: 400; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: #8B1A1A; transition: width 0.3s ease; }
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--bianco); }
.nav-right-wrap { display: flex; align-items: center; gap: 2rem; flex: 1; justify-content: flex-end; }
.lang-switch { display: flex; gap: 8px; font-size: 11px; letter-spacing: 0.1em; }
.lang-switch a { text-decoration: none; transition: color 0.3s; }
.lang-it { color: var(--bianco); font-weight: 500; }
.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: 8px 20px; font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; text-decoration: none; position: relative; overflow: hidden; }
.nav-cta::after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.08); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.nav-cta:hover::after { transform: scaleX(1); }
.nav-cta:hover { background: var(--rosso); color: #fff; }

/* ─── ANIMAZIONE REVEAL ─── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── CONTENUTO PRIVACY ─── */
.privacy-wrap {
  max-width: 800px; margin: 10rem auto 6rem; padding: 0 3rem;
  animation: fadeUp 1s ease forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.privacy-wrap h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; color: var(--bianco);
  border-bottom: 1px solid var(--rosso);
  padding-bottom: 1rem; margin-bottom: 2rem;
  font-weight: 300;
}
.privacy-wrap p.update { font-size: 11px; color: var(--testo-soft); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 3rem; }
.privacy-wrap h2 {
  font-size: 1.2rem; color: var(--rosso);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 3.5rem; margin-bottom: 1rem;
  font-weight: 400;
}
.privacy-wrap p, .privacy-wrap li {
  font-size: 14px; color: var(--testo-soft);
  line-height: 1.9; margin-bottom: 1rem;
}
.privacy-wrap ul { margin-bottom: 1.5rem; padding-left: 1.5rem; color: var(--testo-soft); }
.privacy-wrap a { color: var(--rosso-vivo); text-decoration: none; transition: color 0.3s; }
.privacy-wrap a:hover { color: var(--bianco); }

/* ─── FOOTER ─── */
footer {
  background: #050505; padding: 4rem 3rem 2rem;
  border-top: 1px solid rgba(139,26,26,0.2);
  margin-top: 5rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; max-width: 1100px; margin: 0 auto 3rem; }
.footer-logo img { height: 60px; margin-bottom: 1rem; }
.footer-desc { font-size: 13px; color: var(--testo-soft); line-height: 1.8; max-width: 280px; }
.footer-col h4 { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rosso); margin-bottom: 1.5rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul li a { font-size: 13px; color: var(--testo-soft); text-decoration: none; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--bianco); }
.footer-bottom {
  max-width: 1100px; 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: 1rem;
}
.footer-bottom p { font-size: 11px; color: var(--testo-soft); }
.social-links { display: flex; gap: 1rem; }
.social-links a {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--testo-soft); text-decoration: none; font-size: 13px;
  transition: all 0.3s;
}
.social-links a:hover { border-color: var(--rosso); color: var(--bianco); background: rgba(139,26,26,0.2); }

/* ─── MOBILE ─── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 1px; background: var(--testo); transition: all 0.3s; }
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links, .lang-switch { display: none; }
  .hamburger { display: flex; }
  .nav-right-wrap { gap: 1rem; }
  .privacy-wrap { padding: 0 1.5rem; margin-top: 8rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ─── MOBILE NAV MENU ─── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,10,10,0.98); flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; color: var(--testo); text-decoration: none;
  font-weight: 300; transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--rosso-vivo); }
.mobile-lang { font-family: 'Montserrat', sans-serif; font-size: 1rem; margin-top: 1rem; letter-spacing: 0.1em; }
.mobile-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: var(--testo); font-size: 2rem; cursor: pointer;
}

@media print {
  .reveal { opacity: 1 !important; transform: none !important; }
  #lv-cookie { display: none !important; }
}
