/* ============================================================
   TERRE DE TRINCI — Elegante B&W con accenti in rosso vino
   ============================================================ */

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('./fonts/cormorant-garamond-latin-300-normal.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('./fonts/cormorant-garamond-latin-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('./fonts/cormorant-garamond-latin-600-normal.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('./fonts/cormorant-garamond-latin-400-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }

:root {
  --bg:          #050505;
  --bg-soft:     #0c0c0c;
  --bg-mid:      #101010;
  --card:        #0d0d0d;
  --card-over:   #141414;
  --text:        #f4f0eb;
  --muted:       rgba(244,240,235,.50);
  --line:        rgba(255,255,255,.08);
  --line-md:     rgba(255,255,255,.14);
  --accent:      #8e1535;
  --accent-2:    #ae2248;
  --accent-soft: rgba(142,21,53,.10);
  --ok:          #25d366;
  --ff-serif:    'Cormorant Garamond', Georgia, serif;
  --ff-sans:     'Inter', system-ui, sans-serif;
  --ease:        cubic-bezier(.25,.46,.45,.94);
}

body {
  font-family: var(--ff-sans);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
strong { font-weight: 600; }

.container { width: min(1240px, 92vw); margin: 0 auto; }
.section { padding: 9.5rem 0; }
.section.dark { background: var(--bg-soft); }
.gs-hidden { opacity: 0; transform: translateY(28px); }

/* ── EYEBROW ──────────────────────────────────────────────── */
.eyebrow {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  gap: .62rem;
  font-size: .54rem;
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.55rem;
  line-height: 1;
  text-rendering: geometricPrecision;
}
.eyebrow::before {
  content: '';
  flex-shrink: 0;
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--accent) 88%, transparent 12%) 0%, rgba(255,255,255,0) 100%);
}
.eyebrow::after {
  content: '';
  width: 5px;
  height: 5px;
  border: 1px solid color-mix(in srgb, var(--accent) 72%, transparent 28%);
  transform: rotate(45deg);
  opacity: .85;
}

/* ── HEADINGS ─────────────────────────────────────────────── */
h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2.5rem, 5.6vw, 5rem);
  font-weight: 300;
  line-height: .93;
  letter-spacing: -.015em;
  margin-bottom: 1.8rem;
}
h2 em { color: var(--accent); font-style: italic; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .78rem 2.2rem;
  font-family: var(--ff-sans);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: all .28s var(--ease);
  border-radius: 0;
  cursor: pointer;
}
.btn-main {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}
.btn-main:hover {
  background: transparent;
  color: var(--accent);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-md);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .4s ease, border-color .4s ease;
}
.navbar.scrolled {
  background: rgba(5,5,5,.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.navbar-inner {
  width: min(1280px, 94vw);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  flex-shrink: 0;
}
.brand img { border-radius: 6px; opacity: .88; }
.brand span {
  font-family: var(--ff-serif);
  font-size: .72rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--muted);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-menu a {
  position: relative;
  font-size: .63rem;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .25s ease;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width .3s ease;
}
.nav-menu a:hover { color: var(--text); }
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.nav-menu .nav-cta {
  border: 1px solid var(--line-md);
  padding: .46rem 1.1rem;
  color: var(--text);
}
.nav-menu .nav-cta:hover { border-color: var(--accent); color: var(--accent); }
.nav-menu .nav-cta::after { display: none; }

/* ── HAMBURGER ────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 22px;
  height: 1px;
  background: var(--text);
  display: block;
  transition: .25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 76px 0 0 0;
  z-index: 99;
  display: grid;
  align-content: start;
  min-height: calc(100dvh - 76px);
  height: calc(100dvh - 76px);
  overflow-y: auto;
  padding: 1.6rem max(1.2rem, 4vw) 2rem;
  background: rgba(5,5,5,.98);
  border-top: 1px solid var(--line);
  transform: translateY(calc(-100% - 76px));
  transition: transform .33s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--ff-serif);
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1;
  padding: .7rem 0;
  border-bottom: 1px solid var(--line);
  transition: color .2s ease;
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu a:hover { color: var(--accent); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: max(100svh, 46rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--bg);
  opacity: .72;
}
.hero-fixed-bg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(100%) contrast(1.12) brightness(.72);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0.48) 0%, rgba(5, 7, 10, 0.12) 28%, rgba(5, 7, 10, 0.38) 68%, rgba(5, 7, 10, 0.82) 100%),
    radial-gradient(circle at 50% 36%, rgba(18, 20, 25, 0.04) 0%, rgba(18, 20, 25, 0.52) 62%, rgba(18, 20, 25, 0.82) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100vw - 2.4rem));
  min-height: 100svh;
  padding: clamp(6.6rem, 11vh, 8.6rem) 0 clamp(2.2rem, 6vh, 4rem);
  text-align: center;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-content::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(880px, 86vw);
  height: clamp(240px, 30vw, 360px);
  transform: translate(-50%, -54%);
  background: radial-gradient(circle, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.32) 36%, rgba(0, 0, 0, 0.1) 58%, rgba(0, 0, 0, 0) 78%);
  filter: blur(18px);
  z-index: -1;
  pointer-events: none;
}
.hero-tag {
  display: block;
  margin-bottom: 2rem;
  font-size: .58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .42em;
  color: color-mix(in srgb, var(--text) 58%, var(--muted) 42%);
}
.hero h1 {
  font-family: var(--ff-serif);
  font-weight: 300;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 .12em;
  font-size: clamp(4.5rem, 9.2vw, 7.9rem);
  line-height: .84;
  letter-spacing: -.034em;
  text-wrap: balance;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.5);
}
.hero h1 em {
  display: inline;
  color: var(--accent);
  font-style: italic;
  margin-left: 0;
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.62), 0 16px 36px rgba(0, 0, 0, 0.72);
  -webkit-text-stroke: .5px rgba(255, 255, 255, 0.09);
}
.hero-rule {
  width: 1px;
  height: 68px;
  background: color-mix(in srgb, var(--text) 28%, transparent 72%);
  margin: 2.1rem auto 2rem;
}
.hero-sub {
  width: min(760px, 94vw);
  margin: 0 auto 2.35rem;
  color: color-mix(in srgb, var(--text) 88%, var(--muted) 12%);
  font-size: clamp(1.08rem, 1.45vw, 1.5rem);
  font-weight: 300;
  line-height: 1.72;
  font-style: italic;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  width: min(540px, 100%);
}

/* ── HERO METRICS ─────────────────────────────────────────── */
.hero-metrics {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.metric {
  text-align: center;
  padding: 1.4rem 1rem;
  border-right: 1px solid var(--line);
}
.metric:last-child { border-right: 0; }
.metric strong {
  display: block;
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  font-weight: 300;
  line-height: 1;
  color: var(--text);
}
.metric span {
  display: block;
  margin-top: .45rem;
  font-size: .52rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── MARQUEE ──────────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-mid);
}
.track {
  min-width: 200%;
  display: inline-block;
  padding: .9rem 0;
  animation: marquee 32s linear infinite;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .55rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── STORIA SECTION ───────────────────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5.5rem;
  align-items: center;
}
.story-art {
  aspect-ratio: 3/4;
  border: 1px solid var(--line-md);
  background: var(--bg-mid);
  position: relative;
  overflow: hidden;
}
.story-art::before {
  content: 'TDT';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-serif);
  font-size: clamp(6rem, 18vw, 14rem);
  font-weight: 300;
  color: rgba(255,255,255,.04);
  letter-spacing: .12em;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}
.story-art::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--accent);
}
.story-copy p {
  color: var(--muted);
  font-size: .97rem;
  font-weight: 300;
  margin-bottom: 1.15rem;
  line-height: 1.88;
}
.story-copy h2 { margin-bottom: 1rem; }

.vigneti-pillars {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: .9rem;
}
.vigneti-pillar {
  position: relative;
  padding: 1.35rem 1.2rem 1.15rem;
  background: linear-gradient(180deg, color-mix(in srgb, var(--bg-mid) 90%, #000 10%) 0%, var(--bg-mid) 100%);
  border: 0;
  transition: background .25s ease, transform .25s ease;
  overflow: hidden;
}
.vigneti-pillar:hover {
  background: color-mix(in srgb, var(--card-over) 90%, var(--bg-mid) 10%);
  transform: translateY(-2px);
}
.vigneti-pillar span {
  position: absolute;
  top: -.2rem;
  right: .85rem;
  z-index: 0;
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 5.8vw, 4.9rem);
  font-weight: 400;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--accent) 42%, transparent 58%);
  line-height: 1;
  pointer-events: none;
}
.vigneti-pillar h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 .48rem;
  font-family: var(--ff-serif);
  font-size: 1.16rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
}
.vigneti-pillar p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: .86rem;
  line-height: 1.62;
  color: var(--muted);
}

/* ── TERRITORIO ───────────────────────────────────────────── */
.territory-grid { align-items: start; }
.territory-lead {
  max-width: 60ch;
  color: color-mix(in srgb, var(--text) 76%, var(--muted) 24%);
}
.territory-notes {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.territory-note {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.territory-note span {
  display: block;
  margin-bottom: .45rem;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
}
.territory-note p {
  margin: 0;
  font-size: .86rem;
  line-height: 1.7;
}

.grid4 {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.tile {
  padding: 2.6rem 2.4rem;
  background: var(--bg-mid);
  transition: background .3s ease;
  position: relative;
  overflow: hidden;
}
.tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .45s var(--ease);
}
.tile:hover::before { width: 100%; }
.tile:hover { background: var(--card); }
.tile h3 {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: .7rem;
}
.tile p { color: var(--muted); font-size: .92rem; font-weight: 300; line-height: 1.78; }

/* ── VINI SECTION ─────────────────────────────────────────── */
.wines-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3.2rem;
}
.wines-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.wine {
  overflow: hidden;
  transition: background .3s ease;
  position: relative;
  background: var(--bg-mid);
}
.wine:hover { background: var(--card-over); }
.wine::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .45s var(--ease);
  z-index: 1;
}
.wine:hover::before { width: 100%; }

.wine-img {
  aspect-ratio: 3/4;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: linear-gradient(180deg, color-mix(in srgb, var(--bg-mid) 92%, #000 8%) 0%, var(--bg) 100%);
}
.wine-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.wine-img span {
  position: relative;
  z-index: 1;
  border: 1px solid var(--line-md);
  padding: .3rem .7rem;
  font-size: .53rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg);
}
.wine-a .wine-img { border-left: 2px solid var(--accent); }
.wine-b .wine-img { border-left: 2px solid rgba(142,21,53,.48); }
.wine-c .wine-img { border-left: 2px solid rgba(142,21,53,.22); }
.wine-d .wine-img { border-left: 2px solid rgba(128,152,110,.45); }

.wine-body { padding: 1.6rem 1.5rem; }
.wine-body h3 {
  font-family: var(--ff-serif);
  font-size: 1.32rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: .55rem;
}
.wine-body p { color: var(--muted); font-size: .86rem; font-weight: 300; line-height: 1.72; }

/* ── CONTATTI ─────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
}
.contact-grid h2 { margin-bottom: 1rem; }
.contact-list {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  gap: 0;
}
.contact-list li {
  font-size: .93rem;
  color: var(--muted);
  font-weight: 300;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  line-height: 1.6;
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list strong { color: var(--text); font-weight: 500; margin-right: .4rem; }

/* ── FORM ─────────────────────────────────────────────────── */
.form { display: grid; gap: 0; }
.form label {
  display: block;
  font-size: .56rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--muted);
  margin-top: 1.6rem;
  margin-bottom: .38rem;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-bottom: 1px solid var(--line-md);
  background: transparent;
  color: var(--text);
  padding: .7rem 0;
  font-family: var(--ff-sans);
  font-size: .94rem;
  font-weight: 300;
  transition: border-color .25s ease;
  -webkit-appearance: none;
  border-radius: 0;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}
.form select option { background: var(--bg-soft); color: var(--text); }
.form textarea { min-height: 100px; resize: none; }
.form .btn-main { margin-top: 2.4rem; width: 100%; }
.form-success {
  display: none;
  color: var(--muted);
  margin-top: 1.2rem;
  font-size: .88rem;
  font-weight: 300;
}
.form-success.visible { display: block; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding: 1.7rem 0;
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.foot-brand {
  display: inline-flex;
  align-items: center;
  gap: .72rem;
}
.foot-brand img { border-radius: 5px; opacity: .65; }
.foot-brand span {
  font-family: var(--ff-serif);
  font-size: .7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--muted);
}
.footer nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer nav a {
  font-size: .59rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .25s ease;
}
.footer nav a:hover { color: var(--accent); }
.footer small { color: rgba(255,255,255,.28); font-size: .67rem; }

/* ── WHATSAPP FAB ─────────────────────────────────────────── */
.whatsapp {
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ok);
}

/* ── ACCESSIBILITY ────────────────────────────────────────── */
:focus-visible { outline: 1px solid var(--accent); outline-offset: 4px; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .story-art { aspect-ratio: 16/9; }
  .contact-grid { grid-template-columns: 1fr; gap: 4rem; }

  .vigneti-pillars { grid-template-columns: 1fr; }
  .territory-notes { grid-template-columns: 1fr; }

  .wines-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }

  .hero {
    min-height: 100svh;
  }
  .hero-content {
    width: min(100vw - 1.6rem, 100%);
    padding: 6.6rem 0 2.6rem;
  }
  .hero-content::before {
    width: 92vw;
    height: 270px;
    transform: translate(-50%, -48%);
  }
  .hero h1 {
    max-width: 7.6ch;
    font-size: clamp(3.8rem, 14vw, 5.6rem);
    line-height: .88;
  }
  .hero-sub {
    width: min(36rem, 100%);
    font-size: 1.06rem;
  }
  .hero-actions {
    width: min(100%, 28rem);
  }
  .grid4 { grid-template-columns: 1fr; }
  .wines-grid { grid-template-columns: 1fr; }
  .section { padding: 6.5rem 0; }
}

@media (max-width: 560px) {
  .eyebrow {
    font-size: .5rem;
    letter-spacing: .24em;
    gap: .46rem;
    margin-bottom: 1.1rem;
  }
  .eyebrow::before { width: 20px; }
  .eyebrow::after {
    width: 4px;
    height: 4px;
  }

  /* ── HERO CONTENT ANIMATION (CSS-native, no JS needed) ───── */
  /* Usa solo transform per non bloccare LCP (opacity:0 esclude da LCP) */
  @keyframes heroReveal {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-content {
    animation: heroReveal .85s cubic-bezier(.25,.46,.45,.94) .15s both;
    width: calc(100vw - 1.2rem);
    padding: 6rem 0 2rem;
  }
  .hero h1 {
    max-width: 6.9ch;
    font-size: clamp(3.15rem, 16vw, 4.8rem);
  }
  .hero-tag {
    margin-bottom: 1.4rem;
    font-size: .52rem;
    letter-spacing: .3em;
  }
  .hero-rule { height: 34px; margin: 1.4rem auto 1.3rem; }
  .hero-content::before {
    width: 96vw;
    height: 220px;
    transform: translate(-50%, -42%);
  }
  .hero-sub {
    width: 100%;
    font-size: 1rem;
    line-height: 1.64;
    margin-bottom: 1.7rem;
  }
  .hero-actions {
    gap: .75rem;
  }

  .vigneti-pillars {
    margin-top: 1.5rem;
    gap: .7rem;
  }
  .vigneti-pillar {
    padding: .95rem .88rem .9rem;
  }
  .vigneti-pillar span {
    top: -.1rem;
    right: .6rem;
    font-size: 2.7rem;
  }
  .vigneti-pillar h3 { font-size: 1.06rem; }
  .vigneti-pillar p { font-size: .82rem; }

  .wines-grid { grid-template-columns: 1fr; }
  .wine .wine-img { aspect-ratio: 4/5; }

  .section { padding: 5rem 0; }
  .btn { width: 100%; }
}

.wine-svg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; pointer-events: none; }

/* ── VIDEO DOCUMENTARIO ───────────────────────────────────── */
.section-video {
  padding: 5rem 0 9.5rem;
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 30%, var(--bg-soft) 70%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.section-video::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(142,21,53,.07) 0%, transparent 70%);
  pointer-events: none;
}
.section-video .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-video .section-header h2 {
  margin-bottom: 1.4rem;
}
.eyebrow-light {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  gap: .62rem;
  font-size: .54rem;
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.55rem;
  line-height: 1;
  text-rendering: geometricPrecision;
}
.eyebrow-light::before {
  content: '';
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--accent) 88%, transparent) 0%, transparent 100%);
}
.eyebrow-light::after {
  content: '';
  width: 5px;
  height: 5px;
  border: 1px solid color-mix(in srgb, var(--accent) 72%, transparent);
  transform: rotate(45deg);
  opacity: .85;
}

.video__intro {
  max-width: 72ch;
  margin: 0 auto;
  color: var(--muted);
  font-size: .97rem;
  font-weight: 300;
  line-height: 1.88;
  text-align: center;
}

.video__wrap {
  position: relative;
  border-left: 2px solid var(--accent);
  background: var(--bg-mid);
  overflow: hidden;
}
.video__wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(142,21,53,.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.video__wrap video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  background: #000;
  position: relative;
  z-index: 0;
}
.video__wrap:hover {
  border-left-color: var(--accent-2);
  box-shadow: 0 0 60px rgba(142,21,53,.18), 0 20px 60px rgba(0,0,0,.5);
  transition: box-shadow .4s ease, border-color .4s ease;
}

.video__caption {
  margin-top: 1.5rem;
  text-align: center;
  font-size: .54rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
}
.video__caption::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: .7rem;
  opacity: .7;
}
.video__caption::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin-left: .7rem;
  opacity: .7;
}

/* Reveal animation per il video */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── MADE BY BADGE ────────────────────────────────────────── */
.madeby {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .9rem 0;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.madeby img {
  height: 18px;
  width: auto;
  opacity: .75;
  display: block;
  transition: opacity .25s ease;
}
.madeby:hover img { opacity: 1; }
.madeby span {
  font-size: .5rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
@media (max-width: 820px) {
  .section-video { padding: 4rem 0 6.5rem; }
}
@media (max-width: 560px) {
  .section-video { padding: 3rem 0 5rem; }
  .section-video .section-header { margin-bottom: 2.5rem; }
  .video__intro { font-size: .9rem; }
  .video__wrap video { max-height: 65vw; }
  .video__caption { font-size: .48rem; letter-spacing: .2em; }
  .video__caption::before,
  .video__caption::after { width: 12px; }
}
