@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Figtree:wght@300;400;500;600&display=swap');

:root {
  --gold: #c8922a;
  --gold-light: #e8b04a;
  --gold-pale: #fdf3e3;
  --dark: #120e0a;
  --dark-2: #1c1510;
  --dark-3: #261d14;
  --warm-white: #f8f4ef;
  --warm-mid: #ede5d8;
  --text-dark: #1a1208;
  --text-mid: #5c4e3d;
  --text-light: #9b8878;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Figtree', sans-serif;
}

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

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

body {
  font-family: var(--sans);
  background: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ─── UTILITY ─── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.section-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-dark);
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 28px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--gold);
  color: #fff;
}
.btn-primary:hover { background: var(--gold-light); }
.btn-dark {
  background: var(--dark);
  color: #fff;
}
.btn-dark:hover { background: var(--dark-3); }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline-dark {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline-dark:hover {
  background: var(--gold);
  color: #fff;
}

/* ─── NAVBAR ─── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 20px 0;
}
#navbar.scrolled {
  background: rgba(18,14,10,0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(200,146,42,0.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 56px;
  width: auto;
  display: block;
  transition: opacity 0.2s;
}
.nav-logo:hover .nav-logo-img { opacity: 0.85; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; padding: 10px 20px; }

/* hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: 1px solid rgba(200,146,42,0.5);
  background: transparent;
  transition: border-color 0.2s, background 0.2s;
}
.nav-hamburger:hover { border-color: var(--gold); background: rgba(200,146,42,0.08); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s;
  transform-origin: center;
}
/* animated X when open */
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile menu — partial height so page peeks below */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 72vh;
  background: rgba(18,14,10,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,146,42,0.2);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  animation: slideDown 0.3s ease;
}
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--serif);
  font-size: 22px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile-close {
  position: absolute;
  top: 18px; right: 20px;
  font-size: 22px;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.2s;
}
.nav-mobile-close:hover { color: var(--gold); }

/* ─── HERO ─── */
#hero {
  height: 100vh;
  min-height: 640px;
  background: var(--dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
.hero-line { display: none; }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.hero-eyebrow span { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; }
.hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.9s 0.35s forwards;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 460px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.65s forwards;
}
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  border-top: 1px solid rgba(200,146,42,0.2);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  opacity: 0;
  animation: fadeIn 1s 1s forwards;
}
.hero-stat {
  padding: 22px 40px;
  border-right: 1px solid rgba(200,146,42,0.15);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  margin-top: 5px;
  text-transform: uppercase;
}

/* ─── VALORI ─── */
#valori {
  background: #fff;
  padding: 100px 0;
}
.valori-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}
.valori-header-right {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-mid);
  font-weight: 300;
}
.valori-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--warm-mid);
}
.valore-card {
  background: #fff;
  padding: 44px 36px;
  transition: background 0.25s;
}
.valore-card:hover { background: var(--warm-white); }
.valore-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--warm-mid);
  line-height: 1;
  margin-bottom: 24px;
}
.valore-icon-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
}
.valore-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.valore-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 300;
}

/* ─── PRODOTTI ─── */
#prodotti {
  background: var(--dark);
  padding-top: 80px;
  padding-bottom: 0;
}
#prodotti .section-title { color: #fff; }
.prodotti-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.prodotti-header-right {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
  transition: color 0.2s;
  padding-bottom: 4px;
}
.prodotti-header-right:hover { color: var(--gold-light); }

/* ── GALLERY FULLWIDTH ── */
.gallery-wrap {
  position: relative;
  width: 100%;
  background: var(--dark-2);
  border-top: 3px solid rgba(200,146,42,0.5);
  border-bottom: 3px solid rgba(200,146,42,0.5);
}
.gallery-viewport {
  width: 100%;
  overflow: hidden;
}
.gallery-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
/* Each item = 1/3 viewport width */
.gal-item {
  flex: 0 0 33.333%;
  min-width: 0;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--dark-3);
}
.gal-item img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: var(--dark-3);
  display: block;
  transition: transform 0.4s ease, opacity 0.3s;
}
.gal-item:hover img { transform: scale(1.04); }

/* separator between items */
.gal-item + .gal-item { border-left: 3px solid rgba(200,146,42,0.5); }

/* Gallery arrow buttons */
.gal-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 52px; height: 52px;
  background: rgba(18,14,10,0.82);
  border: 1px solid rgba(200,146,42,0.45);
  color: var(--gold);
  font-size: 22px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  line-height: 1;
}
.gal-btn:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.gal-btn:disabled { opacity: 0.2; pointer-events: none; }
.gal-prev { left: 16px; }
.gal-next { right: 16px; }

/* counter bottom-right */
.gal-counter {
  position: absolute;
  bottom: 14px; right: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
}
.gal-counter span { color: var(--gold); }

@media (max-width: 960px) {
  .gal-item { flex: 0 0 50%; }
}
@media (max-width: 600px) {
  .gal-item { flex: 0 0 100%; }
  .prodotti-header-bar { flex-direction: column; align-items: flex-start; gap: 10px; }
}
/* Lightbox */
#lightbox {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(10,7,4,0.94);
  align-items: center; justify-content: center; padding: 20px;
}
#lightbox.open { display: flex; }
.lightbox-inner {
  position: relative; max-width: 860px; width: 100%;
  animation: fadeIn 0.25s ease;
}
.lightbox-img { width: 100%; max-height: 80vh; object-fit: contain; display: block; }
.lightbox-placeholder {
  width: 100%; height: 400px;
  background: var(--dark-3);
  border: 1px solid rgba(200,146,42,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 22px; color: rgba(200,146,42,0.5);
}
.lightbox-caption { margin-top: 16px; text-align: center; }
.lightbox-caption .lc-code { font-size: 11px; letter-spacing: 0.14em; color: var(--gold); font-weight: 600; }
.lightbox-caption .lc-name { font-family: var(--serif); font-size: 24px; color: #fff; margin-top: 4px; }
.lightbox-caption .lc-essenza { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 4px; }
.lightbox-close {
  position: absolute; top: -44px; right: 0;
  background: none; border: none; color: rgba(255,255,255,0.5);
  font-size: 28px; cursor: pointer; line-height: 1; transition: color 0.2s;
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(18,14,10,0.8); border: 1px solid rgba(200,146,42,0.3);
  color: var(--gold); width: 44px; height: 44px; font-size: 18px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-nav:hover { background: var(--gold); color: #fff; }
.lightbox-nav.lb-prev { left: -56px; }
.lightbox-nav.lb-next { right: -56px; }
@media (max-width: 960px) {
  .lightbox-nav { display: none; }
}

/* ─── ABOUT ─── */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.about-img {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}
.about-video-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
}
.about-video-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.about-img-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/about-bg.jpg');
  background-size: cover;
  background-position: center;
}
.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,14,10,0.75) 0%, transparent 60%);
}
.about-img-caption {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
}
.about-img-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 10px 18px;
  text-transform: uppercase;
}
.about-img-placeholder {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    var(--dark-3),
    var(--dark-3) 10px,
    var(--dark-2) 10px,
    var(--dark-2) 20px
  );
}
.about-content {
  background: var(--warm-white);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-mid);
  font-weight: 300;
  margin-top: 24px;
  margin-bottom: 40px;
}
.about-milestones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--warm-mid);
  margin-top: 8px;
}
.milestone {
  background: var(--warm-white);
  padding: 24px 20px;
  border-left: 2px solid var(--gold);
}
.milestone-year {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.milestone-text {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ─── CATALOGO STRIP ─── */
#catalogo-strip {
  background: var(--gold);
  padding: 60px 0;
}
.catalogo-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.catalogo-strip-title {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
}
.catalogo-strip-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
}
.btn-white {
  background: #fff;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 16px 32px;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.btn-white:hover { background: rgba(255,255,255,0.9); }

/* ─── CONTATTI ─── */
#contatti {
  background: #fff;
  padding: 100px 0;
  min-height: 500px;
}
.contatti-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  margin-top: 56px;
}

/* ─── MAPPA ─── */
.mappa-section {
  background: var(--dark);
  border-top: 1px solid rgba(200,146,42,0.2);
}
.mappa-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 56px;
  padding-bottom: 40px;
  gap: 32px;
  flex-wrap: wrap;
}
.mappa-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
}
.mappa-title em { font-style: italic; color: var(--gold); }
.mappa-address {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  letter-spacing: 0.03em;
}
.mappa-iframe-wrap {
  width: 100%;
  height: 420px;
  display: block;
  border-top: 2px solid rgba(200,146,42,0.3);
}
.mappa-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(15%) contrast(1.05);
  transition: filter 0.4s;
}
.mappa-iframe-wrap:hover iframe { filter: grayscale(0%) contrast(1); }
@media (max-width: 640px) {
  .mappa-iframe-wrap { height: 280px; }
  .mappa-header { flex-direction: column; align-items: flex-start; }
}
.contatti-map h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.map-wrap {
  width: 100%;
  height: 320px;
  border: 1px solid var(--warm-mid);
  overflow: hidden;
  position: relative;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.3s;
}
.map-wrap:hover iframe { filter: grayscale(0%); }
.map-directions {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  transition: color 0.2s;
}
.map-directions:hover { color: var(--gold-light); }
.contatti-left h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 28px;
}
.contatti-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contatti-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--warm-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.contatti-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contatti-label { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; color: var(--text-light); text-transform: uppercase; }
.contatti-val { font-size: 14px; color: var(--text-dark); font-weight: 500; margin-top: 3px; }
.orari-box {
  background: var(--warm-white);
  padding: 28px;
  margin-top: 32px;
}
.orari-title { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; color: var(--text-light); text-transform: uppercase; margin-bottom: 16px; }
.orari-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--warm-mid);
  font-size: 13px;
}
.orari-row:last-child { border-bottom: none; }
.orari-day { color: var(--text-mid); font-weight: 400; }
.orari-time { color: var(--text-dark); font-weight: 500; }
.orari-closed { color: var(--text-light); }

/* FORM */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 8px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-light);
  text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--sans);
  font-size: 14px;
  padding: 12px 16px;
  border: 1px solid var(--warm-mid);
  background: var(--warm-white);
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: #fff;
}
.form-group textarea { min-height: 120px; }
.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  font-family: var(--sans);
}
.form-success {
  display: none;
  background: var(--warm-white);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  font-size: 14px;
  color: var(--text-mid);
}
.form-success[style*="block"] {
  display: block !important;
}
.form-success.visible {
  display: block;
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 14px;
}
.footer-brand span { color: var(--gold); }
.footer-desc {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
  max-width: 240px;
}
.footer-pec {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  word-break: break-all;
  line-height: 1.8;
  font-weight: 300;
}
.footer-col-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.25); }
.footer-cod { font-size: 11px; color: rgba(255,255,255,0.2); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .container { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-line { display: none; }
  .hero-stats { grid-template-columns: repeat(3,1fr); }
  .hero-stat { padding: 16px 20px; }
  .hero-stat-num { font-size: 24px; }
  .valori-header { grid-template-columns: 1fr; gap: 16px; }
  .valori-grid { grid-template-columns: 1fr; }
  .prodotti-grid { grid-template-columns: 1fr 1fr; }
  #about { grid-template-columns: 1fr; }
  .about-img { min-height: 300px; }
  .about-content { padding: 56px 36px; }
  .about-milestones { grid-template-columns: 1fr 1fr; }
  .contatti-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .catalogo-strip-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  .section-title { font-size: 32px; }
  .hero-title { font-size: 42px; }
  .prodotti-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-stat { padding: 14px 12px; }
}

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(18,14,10,0.97);
  border-top: 2px solid rgba(200,146,42,0.4);
  backdrop-filter: blur(10px);
  padding: 18px 0;
  animation: slideUpIn 0.4s ease;
}
@keyframes slideUpIn {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.cookie-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cookie-text {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  font-weight: 300;
  flex: 1;
  min-width: 220px;
}
.cookie-text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-text a:hover { color: var(--gold-light); }
.cookie-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.cookie-accept {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 10px 24px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-accept:hover { background: var(--gold-light); }
.cookie-more {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.cookie-more:hover { color: rgba(255,255,255,0.8); }
@media (max-width: 640px) {
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 14px; padding: 0 20px; }
}
