/* ============================================================
   WINEPOLICELLA — Landing
   Design system: serif elegante + sans moderno,
   palette borgogna profondo / crema / oro.
   ============================================================ */

:root {
  /* palette */
  --burgundy-900: #2a0510;
  --burgundy-800: #3a0a14;
  --burgundy-700: #4a0e1e;
  --burgundy-600: #6b1e2e;
  --burgundy-500: #8b2331;
  --cream-100:    #faf6ee;
  --cream-200:    #f5e6d3;
  --cream-300:    #e8d4b8;
  --gold-500:     #c9a961;
  --gold-600:     #b08d57;
  --gold-700:     #8a6d3f;
  --ink:          #1a0308;
  --ink-2:        #3a2a22;
  --muted:        #7a6a60;

  /* typography */
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans:  "Inter", system-ui, -apple-system, sans-serif;

  /* layout */
  --wrap: 1240px;
  --radius: 4px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

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

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream-100);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--burgundy-800);
  margin: 0;
}

.h2 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 1.2rem;
  letter-spacing: -0.015em;
}
.h2--light { color: var(--cream-100); }
.h2 em { font-style: italic; color: var(--gold-600); font-weight: 500; }

.lead {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 1.25rem;
}
.lead em {
  display: inline-block;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 500;
  color: var(--burgundy-800);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-600);
  margin-bottom: 1.1rem;
  position: relative;
  padding-left: 38px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 26px; height: 1px;
  background: var(--gold-500);
}
.eyebrow--light { color: var(--gold-500); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.35s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--burgundy-700);
  color: var(--cream-100);
  border-color: var(--burgundy-700);
}
.btn--primary:hover {
  background: var(--burgundy-800);
  border-color: var(--gold-500);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px -12px rgba(74,14,30,.55);
}

.btn--ghost {
  background: transparent;
  color: var(--cream-100);
  border-color: rgba(245, 230, 211, 0.4);
}
.btn--ghost:hover {
  border-color: var(--gold-500);
  color: var(--gold-500);
}

.btn--full { width: 100%; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all 0.4s var(--ease);
  background: transparent;
}
.nav.scrolled {
  background: rgba(42, 5, 16, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(201,169,97,.12);
}
.nav__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream-100);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.brand__mark { width: 32px; height: 32px; color: var(--gold-500); }
.brand__text { }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  color: var(--cream-100);
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold-500);
  transition: width 0.35s var(--ease);
}
.nav__links a:not(.nav__cta):hover { color: var(--gold-500); }
.nav__links a:not(.nav__cta):hover::after { width: 100%; }

.nav__cta {
  border: 1px solid rgba(245,230,211,.35);
  padding: 10px 22px !important;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}
.nav__cta:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--burgundy-900) !important;
}

.nav__toggle {
  display: none;
  background: none; border: none;
  cursor: pointer; padding: 8px;
  flex-direction: column; gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--cream-100);
  transition: all 0.3s var(--ease);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-100);
  overflow: hidden;
  padding: 120px 28px 140px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(139, 35, 49, 0.35), transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(201, 169, 97, 0.12), transparent 50%),
    linear-gradient(160deg, #1a0308 0%, #3a0a14 50%, #4a0e1e 100%);
}

.hero__hills {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 60%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 600' preserveAspectRatio='none'><defs><linearGradient id='h1' x1='0' x2='0' y1='0' y2='1'><stop offset='0' stop-color='%23000' stop-opacity='0'/><stop offset='1' stop-color='%23000' stop-opacity='.55'/></linearGradient><linearGradient id='h2' x1='0' x2='0' y1='0' y2='1'><stop offset='0' stop-color='%23000' stop-opacity='0'/><stop offset='1' stop-color='%23000' stop-opacity='.75'/></linearGradient></defs><path d='M0 420 C 200 340, 400 460, 600 400 S 1000 320, 1200 380 L 1440 360 L 1440 600 L 0 600 Z' fill='url(%23h1)'/><path d='M0 480 C 260 420, 460 520, 720 460 S 1100 420, 1440 450 L 1440 600 L 0 600 Z' fill='url(%23h2)'/></svg>");
  background-size: cover;
  background-position: bottom;
  opacity: 0.9;
}

.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.12'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.6;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  text-align: center;
}

.hero__kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) forwards 0.2s;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6.5vw, 5.6rem);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--cream-100);
  margin: 0 0 28px;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) forwards 0.4s;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-500);
  font-weight: 500;
}

.hero__sub {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.6;
  color: rgba(250, 246, 238, 0.8);
  max-width: 620px;
  margin: 0 auto 42px;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) forwards 0.6s;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) forwards 0.8s;
}

.hero__scroll {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(245, 230, 211, 0.55);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, var(--gold-500), transparent);
  animation: scrollPulse 2.4s var(--ease) infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.5); transform-origin: top; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   STORIA
   ============================================================ */
.storia {
  padding: 140px 0 120px;
  background: var(--cream-100);
  position: relative;
}

.storia__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
  align-items: center;
}

.storia__art {
  position: relative;
  aspect-ratio: 4/5;
}
.storia__frame {
  position: relative;
  width: 100%; height: 100%;
  background: var(--cream-200);
  border: 1px solid var(--gold-500);
  box-shadow: 30px 30px 0 -1px var(--burgundy-700);
  overflow: hidden;
}
.storia__frame svg {
  width: 100%; height: 100%;
  display: block;
}
.storia__badge {
  position: absolute;
  bottom: -32px;
  left: -32px;
  width: 162px;
  height: 162px;
  transform: rotate(-7deg);
  filter: drop-shadow(0 14px 30px rgba(0,0,0,.45));
  transition: transform 0.5s var(--ease);
}
.storia__badge:hover { transform: rotate(0deg) scale(1.04); }
.storia__badge svg { width: 100%; height: 100%; display: block; }

.storia__text p { color: var(--ink-2); }

.values {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.values li {
  display: flex;
  gap: 22px;
  padding: 22px 0;
  border-top: 1px solid rgba(201, 169, 97, 0.3);
}
.values li:last-child { border-bottom: 1px solid rgba(201, 169, 97, 0.3); }
.values__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold-600);
  line-height: 1.2;
  min-width: 40px;
}
.values h4 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--burgundy-800);
}
.values p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-2);
  line-height: 1.55;
}

/* ============================================================
   TERRITORIO
   ============================================================ */
.territorio {
  padding: 140px 0 130px;
  background:
    radial-gradient(ellipse at top right, rgba(201,169,97,.08), transparent 50%),
    linear-gradient(180deg, var(--burgundy-900) 0%, var(--burgundy-800) 100%);
  color: var(--cream-100);
  position: relative;
  overflow: hidden;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 80px;
  text-align: center;
}
.section-head--left {
  margin: 0 0 70px;
  text-align: left;
}
.section-head .eyebrow { padding-left: 0; }
.section-head .eyebrow::before {
  content: "";
  display: inline-block;
  width: 26px; height: 1px;
  background: var(--gold-500);
  vertical-align: middle;
  margin-right: 14px;
  position: static;
}
.section-head--left .eyebrow::before { display: none; }
.section-head--left .eyebrow { padding-left: 38px; }
.section-head--left .eyebrow::before {
  content: "";
  display: block;
  position: absolute;
  left: 0; top: 50%;
}

.section-head__sub {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(250, 246, 238, 0.72);
  margin: 0;
}
.section-head__sub em { color: var(--gold-500); font-style: italic; }

.wines {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.wine {
  padding: 40px 28px;
  border: 1px solid rgba(201, 169, 97, 0.2);
  background: rgba(10, 2, 6, 0.3);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.wine::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,97,.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.wine:hover {
  border-color: var(--gold-500);
  transform: translateY(-6px);
}
.wine:hover::before { opacity: 1; }

.wine__glass {
  width: 80px;
  margin: 0 auto 24px;
}
.wine__glass svg { width: 100%; height: auto; }

.wine h3 {
  font-size: 1.35rem;
  color: var(--cream-100);
  margin-bottom: 6px;
  font-weight: 500;
  line-height: 1.25;
}
.wine__meta {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin: 0 0 16px;
}
.wine p:not(.wine__meta) {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(250, 246, 238, 0.7);
  margin: 0;
}

/* ============================================================
   ETICHETTE (Non solo Valpolicella)
   ============================================================ */
.etichette {
  padding: 140px 0 130px;
  background: var(--cream-100);
  position: relative;
}

.etichette::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--gold-500));
}

.brands {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--gold-500);
  border-left: 1px solid var(--gold-500);
  max-width: 1240px;
  margin: 0 auto;
}
.brand-card {
  border-right: 1px solid var(--gold-500);
  border-bottom: 1px solid var(--gold-500);
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: var(--cream-100);
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}
.brand-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--burgundy-800);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
  z-index: 0;
}
.brand-card:hover::before { transform: translateY(0); }
.brand-card img {
  max-width: 85%;
  max-height: 90px;
  width: auto;
  height: auto;
  position: relative;
  z-index: 1;
  transition: all 0.5s var(--ease);
  filter: none;
}
.brand-card:hover img { filter: invert(1) brightness(1.3); }

.etichette__note {
  text-align: center;
  margin-top: 50px;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--muted);
}

/* ============================================================
   SERVIZI
   ============================================================ */
.servizi {
  padding: 140px 0 130px;
  background: linear-gradient(180deg, var(--burgundy-800) 0%, var(--burgundy-900) 100%);
  color: var(--cream-100);
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service {
  padding: 36px 28px;
  border-left: 1px solid rgba(201, 169, 97, 0.3);
  transition: all 0.4s var(--ease);
}
.service:hover {
  border-left-color: var(--gold-500);
  transform: translateX(6px);
}
.service__icon {
  width: 48px; height: 48px;
  color: var(--gold-500);
  margin-bottom: 24px;
}
.service__icon svg { width: 100%; height: 100%; }
.service h3 {
  font-size: 1.35rem;
  color: var(--cream-100);
  margin-bottom: 12px;
  font-weight: 500;
}
.service p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(250, 246, 238, 0.7);
  margin: 0;
}

/* ============================================================
   CONTATTI
   ============================================================ */
.contatti {
  padding: 140px 0 130px;
  background: var(--cream-100);
  background-image: radial-gradient(circle at 90% 10%, rgba(201,169,97,.08), transparent 40%);
}

.contatti__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 16px 0;
  border-top: 1px solid rgba(201, 169, 97, 0.3);
  align-items: start;
}
.contact-list li:last-child { border-bottom: 1px solid rgba(201, 169, 97, 0.3); }
.contact-list__lbl {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-600);
  padding-top: 2px;
}
.contact-list a {
  color: var(--burgundy-800);
  font-weight: 500;
  transition: color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.contact-list a:hover {
  color: var(--burgundy-600);
  border-bottom-color: var(--gold-500);
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.socials a {
  width: 42px; height: 42px;
  border: 1px solid var(--gold-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--burgundy-800);
  transition: all 0.3s var(--ease);
}
.socials a:hover {
  background: var(--burgundy-800);
  color: var(--gold-500);
  border-color: var(--burgundy-800);
}

.contatti__form {
  background: #fff;
  padding: 50px 46px;
  border: 1px solid var(--gold-500);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  box-shadow: 30px 30px 0 -1px var(--burgundy-700);
}

.field { display: flex; flex-direction: column; }
.field--full { grid-column: 1 / -1; }
.field--check label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--ink-2);
}
.field--check input { accent-color: var(--burgundy-700); }

.field label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--burgundy-800);
  margin-bottom: 8px;
  font-weight: 500;
}
.field__opt {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--muted);
  font-size: 0.85em;
  font-style: italic;
  margin-left: 6px;
}
.field input,
.field textarea {
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid rgba(74, 14, 30, 0.25);
  background: transparent;
  color: var(--ink);
  transition: border-color 0.3s var(--ease);
  outline: none;
  resize: vertical;
}
.field input:focus,
.field textarea:focus { border-bottom-color: var(--gold-500); }

.form-feedback {
  grid-column: 1 / -1;
  font-size: 0.9rem;
  min-height: 22px;
  color: var(--burgundy-700);
  font-weight: 500;
}
.form-feedback.ok { color: #2d6a4f; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--burgundy-900);
  color: rgba(245, 230, 211, 0.75);
  padding: 80px 0 0;
  font-size: 0.92rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}
.brand--footer { color: var(--cream-100); margin-bottom: 20px; }
.footer__tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(245, 230, 211, 0.7);
  margin: 0;
  line-height: 1.4;
}
.footer__col h5 {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-500);
  margin-bottom: 18px;
}
.footer__col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a {
  color: rgba(245, 230, 211, 0.75);
  transition: color 0.3s var(--ease);
}
.footer__col a:hover { color: var(--gold-500); }

.footer__bottom {
  border-top: 1px solid rgba(201, 169, 97, 0.15);
  padding: 24px 0;
  text-align: center;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
  font-size: 0.8rem;
  color: rgba(245, 230, 211, 0.5);
}
.footer__warn { font-style: italic; }

/* ============================================================
   LEGAL pages (privacy / cookie)
   ============================================================ */
.legal {
  padding: 160px 0 100px;
  background: var(--cream-100);
  min-height: 80vh;
}
.legal__wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 28px;
}
.legal__back {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--burgundy-800);
  margin-bottom: 50px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold-500);
  transition: all 0.3s var(--ease);
}
.legal__back:hover { color: var(--burgundy-600); border-bottom-color: var(--burgundy-600); }
.legal h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--burgundy-800);
  margin: 0 0 12px;
  line-height: 1.05;
}
.legal__date {
  color: var(--muted);
  font-size: 0.86rem;
  margin: 0 0 60px;
  font-style: italic;
}
.legal h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--burgundy-800);
  margin: 50px 0 16px;
  line-height: 1.2;
}
.legal h3 {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--burgundy-800);
  margin: 26px 0 8px;
  text-transform: none;
}
.legal p, .legal li {
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 14px;
}
.legal ul { padding-left: 22px; margin: 0 0 20px; }
.legal li { margin: 0 0 8px; }
.legal a {
  color: var(--burgundy-700);
  border-bottom: 1px solid var(--gold-500);
  transition: color 0.3s var(--ease);
}
.legal a:hover { color: var(--burgundy-600); }

/* ============================================================
   REVEAL animations
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .storia__grid,
  .contatti__grid { grid-template-columns: 1fr; gap: 60px; }
  .wines { grid-template-columns: repeat(2, 1fr); }
  .services { grid-template-columns: repeat(2, 1fr); }
  .brands { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .storia__frame { box-shadow: 18px 18px 0 -1px var(--burgundy-700); }
  .contatti__form { box-shadow: 18px 18px 0 -1px var(--burgundy-700); padding: 36px 28px; }
}

@media (max-width: 680px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }

  .nav__links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(42, 5, 16, 0.98);
    flex-direction: column;
    gap: 0;
    padding: 20px 28px 28px;
    border-top: 1px solid rgba(201,169,97,.2);
  }
  .nav__links.open a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(201,169,97,.1);
  }

  .hero { padding: 100px 20px 60px; }
  .storia, .territorio, .etichette, .servizi, .contatti { padding: 90px 0; }
  .wines, .services { grid-template-columns: 1fr; }
  .brands { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .contatti__form { grid-template-columns: 1fr; padding: 30px 22px; box-shadow: 10px 10px 0 -1px var(--burgundy-700); }
  .storia__badge { bottom: -22px; left: -14px; width: 124px; height: 124px; }
  .contact-list li { grid-template-columns: 1fr; gap: 4px; }
  .section-head { margin-bottom: 50px; }
}
