/* ═══════════════════════════════════════════════════════
   VIÑA CASANUEVA — Main Stylesheet
   Valle del Itata, Chile
   Design system: Droga / high-contrast editorial
   Fonts: Cormorant Garamond + Cormorant SC + Montserrat
   ═══════════════════════════════════════════════════════ */

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

/* ─── DESIGN TOKENS ─── */
:root {
  --paper:           oklch(97.5% 0.007 72);
  --paper-off:       oklch(94% 0.010 70);
  --paper-mid:       oklch(90% 0.012 68);
  --ink:             oklch(11% 0.016 40);
  --ink-mid:         oklch(32% 0.018 42);
  --ink-muted:       oklch(52% 0.014 55);
  --gold:            oklch(64% 0.115 74);
  --gold-pale:       oklch(76% 0.085 78);
  --gold-deep:       oklch(50% 0.10 65);
  --earth:           oklch(10% 0.016 38);
  --earth-mid:       oklch(16% 0.018 40);
  --earth-warm:      oklch(24% 0.020 42);
  --bone:            oklch(97% 0.007 75);
  --bone-dim:        oklch(86% 0.010 72);
  --bone-muted:      oklch(68% 0.010 65);
  --you-green:       oklch(72% 0.14 128);
  --you-blue:        oklch(65% 0.12 222);
  --you-pink:        oklch(60% 0.18 355);
  --semper-bg:       oklch(10% 0.016 38);
  --semper-acc:      oklch(64% 0.115 74);
  --you44-bg:        oklch(14% 0.04 225);
  --you44-acc:       oklch(70% 0.09 218);
  --oro-bg:          oklch(13% 0.018 52);
  --oro-acc:         oklch(74% 0.16 28);
  --submarinas-bg:   oklch(13% 0.035 230);
  --submarinas-acc:  oklch(68% 0.10 228);
  --cavasmarinas-bg: oklch(13% 0.035 230);
  --cavasmarinas-acc:oklch(68% 0.10 228);
  --serif:    'Cormorant Garamond', 'Big Caslon', Georgia, serif;
  --serif-sc: 'Cormorant SC', 'Cormorant Garamond', Georgia, serif;
  --sans:     'Montserrat', Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--earth-mid); }
::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 2px; }

* { cursor: default; }
a, button, [onclick] { cursor: pointer; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  height: 76px;
  transition: background 0.5s ease, border-color 0.5s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(18,13,9,0.96);
  border-bottom-color: rgba(200,165,80,0.12);
  backdrop-filter: blur(12px);
}
.nav-logo {
  height: 38px;
  filter: invert(1) brightness(0.9);
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.65; }
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(240,232,215,0.70);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-pale); }
.nav-links .nav-cta a {
  display: inline-block;
  color: var(--gold);
  border: 1px solid rgba(200,165,80,0.35);
  padding: 9px 22px;
  line-height: 1;
  transition: border-color 0.2s, color 0.2s;
}
.nav-links .nav-cta a:hover {
  border-color: var(--gold);
  color: var(--gold-pale);
}
.nav-links .nav-cta a:focus,
.nav-links .nav-cta a:active {
  outline: none;
  box-shadow: none;
  text-decoration: none;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 4px;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1px;
  background: var(--bone-dim);
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: var(--earth);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--bone);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute; top: 28px; right: 36px;
  font-size: 24px; color: var(--bone-muted);
  font-family: var(--sans); font-weight: 200;
  line-height: 1;
  min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}

/* ─── HERO ─── */
#home {
  height: 100vh;
  min-height: 720px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-ph { width: 100%; height: 100%; }
.hero-ph svg { width: 100%; height: 100%; display: block; }
.hero-ph img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 120% 100% at 50% 60%,
    rgba(13,9,5,0) 0%,
    rgba(13,9,5,0.55) 55%,
    rgba(13,9,5,0.92) 100%);
}
.hero-vignette-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(to top, var(--earth) 0%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  gap: 0;
  padding: 0 24px;
}
.hero-pre {
  font-family: var(--serif-sc);
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 18px;
}
.hero-pre::before, .hero-pre::after {
  content: '';
  display: block; width: 48px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-deep));
}
.hero-pre::after {
  background: linear-gradient(to left, transparent, var(--gold-deep));
}
.hero-logo {
  width: clamp(280px, 42vw, 620px);
  height: auto;
  margin-bottom: 28px;
  filter: brightness(0) invert(1);
  animation: heroLogoIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.3s;
}
@keyframes heroLogoIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-rule {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--gold-deep), transparent);
  margin-bottom: 20px;
}
.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 300;
  font-style: italic;
  color: var(--bone-dim);
  letter-spacing: 0.04em;
  margin-bottom: 48px;
}
.hero-scroll-cue {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0.5;
  animation: fadeFloat 3s ease-in-out infinite;
}
@keyframes fadeFloat {
  0%, 100% { opacity: 0.5; transform: translateY(0); }
  50% { opacity: 0.8; transform: translateY(6px); }
}
.hero-scroll-cue span {
  font-size: 8.5px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold-pale); font-weight: 500;
}

/* ─── SECTION COMMONS ─── */
.section-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--sans);
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 24px;
}
.section-eyebrow::before {
  content: ''; display: block;
  width: 24px; height: 1px; background: var(--gold-deep);
}
#winemaking .section-eyebrow,
#export .section-eyebrow { color: var(--gold-pale); }
#winemaking .section-eyebrow::before,
#export .section-eyebrow::before { background: var(--gold-pale); }
.section-h {
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--ink);
}
#winemaking .section-h { color: var(--bone); }
.section-h em { font-style: italic; color: var(--gold); }
.section-body {
  font-family: var(--sans);
  font-size: 13.5px; font-weight: 300;
  line-height: 1.9;
  color: var(--ink-muted);
}
#winemaking .section-body,
#export .section-body { color: var(--bone-muted); }
.section-body p + p { margin-top: 16px; }

/* ─── METRICS ─── */
#metrics {
  background: var(--ink);
  border-top: 1px solid rgba(200,165,80,0.08);
  border-bottom: 1px solid rgba(200,165,80,0.08);
  padding: 0 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.metric {
  padding: 52px 0;
  text-align: center;
  border-right: 1px solid rgba(200,165,80,0.08);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  transition: background 0.3s;
}
.metric:last-child { border-right: none; }
.metric:hover { background: rgba(200,165,80,0.04); }
.metric-n {
  font-family: var(--serif);
  font-size: 58px; font-weight: 300; line-height: 1;
  color: var(--gold);
}
.metric-u {
  font-family: var(--serif);
  font-size: 20px; font-style: italic;
  color: var(--gold-pale); opacity: 0.7;
}
.metric-l {
  font-family: var(--sans);
  font-size: 8.5px; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(240,232,215,0.45);
  margin-top: 4px;
}

/* ─── HISTORY — generation entries ─── */
#history {
  padding: 0 !important;
}
.history-intro {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.history-intro-bg {
  position: absolute;
  inset: 0;
}
.history-intro-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  filter: brightness(0.72) saturate(1.1) contrast(1.05);
}
.history-intro-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,8,5,0.92) 0%,
    rgba(10,8,5,0.55) 40%,
    rgba(10,8,5,0.18) 75%,
    transparent 100%
  ), linear-gradient(
    to right,
    rgba(10,8,5,0.45) 0%,
    transparent 60%
  );
}
.history-intro-content {
  position: relative;
  z-index: 2;
  padding: 0 96px 100px;
  max-width: 900px;
}
.history-eyebrow {
  color: var(--gold) !important;
}
.history-eyebrow::before { background: var(--gold) !important; }
.history-intro-h {
  color: var(--bone) !important;
  font-size: clamp(40px, 5.5vw, 80px) !important;
}
.gen-entry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
  border-top: 1px solid rgba(200,165,80,0.07);
}
.gen-entry.gen-reverse { direction: rtl; }
.gen-entry.gen-reverse > * { direction: ltr; }

.gen-photo {
  position: relative;
  overflow: hidden;
  min-height: 620px;
}
.gen-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.gen-year {
  position: absolute;
  top: 32px; left: 32px;
  font-family: var(--serif);
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 300;
  color: var(--gold-pale);
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
  background: rgba(13,9,5,0.45);
  padding: 6px 14px;
  backdrop-filter: blur(4px);
}

.gen-body {
  background: var(--earth);
  padding: 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.gen-tag {
  font-family: var(--sans);
  font-size: 8px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200,165,80,0.25);
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 28px;
  align-self: flex-start;
}
.gen-name {
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 72px);
  font-weight: 300;
  line-height: 0.95;
  color: var(--bone);
  letter-spacing: 0.01em;
  margin-bottom: 32px;
}
.gen-text {
  font-family: var(--sans);
  font-size: 13px; font-weight: 300;
  line-height: 1.9;
  color: var(--bone-muted);
  max-width: 440px;
}
.gen-num {
  position: absolute;
  bottom: -24px; right: 32px;
  font-family: var(--serif);
  font-size: 220px; font-weight: 300;
  line-height: 1; opacity: 0.04;
  color: var(--bone);
  user-select: none; pointer-events: none;
}

/* ─── TERROIR ─── */
#terroir {
  background: var(--paper-off);
  padding: 160px 64px;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.terroir-inner {
  max-width: 1440px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.terroir-image-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.terroir-img-large {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
  background: var(--earth-warm);
  position: relative; overflow: hidden;
}
.terroir-img-small {
  aspect-ratio: 1/1;
  background: oklch(24% 0.03 50);
  position: relative; overflow: hidden;
}
.terroir-img-large svg,
.terroir-img-small svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.terroir-img-large img,
.terroir-img-small img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.terroir-features {
  margin-top: 48px;
  display: flex; flex-direction: column; gap: 0;
}
.terroir-feat {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  align-items: start;
}
.terroir-feat:last-child { border-bottom: none; }
.terroir-feat-glyph {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--gold);
  padding-top: 2px; line-height: 1;
}
.terroir-feat-title {
  font-family: var(--sans);
  font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 6px;
}
.terroir-feat-text {
  font-family: var(--sans);
  font-size: 12.5px; font-weight: 300;
  line-height: 1.75; color: var(--ink-muted);
}

/* ─── WINES ─── */
#wines { background: var(--ink); }

/* WINES MANIFESTO HEADER */
.wines-manifesto {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.wines-manifesto-inner {
  position: relative;
  z-index: 2;
  padding: 140px 72px 120px 10vw;
}
.wines-manifesto-photo {
  position: relative;
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
}
.wines-manifesto-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(35%) brightness(0.72) contrast(1.12);
}
.wines-manifesto-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--ink) 0%,
    rgba(10,8,6,0.18) 30%,
    transparent 60%
  ), linear-gradient(
    to top,
    rgba(10,8,6,0.65) 0%,
    transparent 40%
  );
  z-index: 1;
}
.wines-manifesto-credit {
  position: absolute;
  bottom: 48px;
  left: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.wmc-name {
  font-family: var(--serif-sc);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--bone-dim);
}
.wmc-role {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(200,165,80,0.45);
}
.wines-eyebrow {
  color: var(--gold);
  margin-bottom: 56px;
}
.wines-manifesto-h {
  font-family: var(--serif);
  font-size: clamp(38px, 5.5vw, 82px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--bone);
  margin-bottom: 56px;
  letter-spacing: -0.01em;
}
.wines-manifesto-h em {
  font-style: italic;
  color: var(--gold-pale);
}
.wines-manifesto-sub {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--bone-muted);
  max-width: 480px;
  border-left: 1px solid rgba(200,165,80,0.2);
  padding-left: 24px;
}
.wines-ghost-n {
  position: absolute;
  right: -2vw;
  bottom: -6vh;
  font-family: var(--serif);
  font-size: 32vw;
  font-weight: 300;
  line-height: 0.8;
  color: rgba(200,165,80,0.03);
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

/* WINE FILM SYSTEM */
.wine-film {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.wine-film-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 72px 120px 10vw;
  position: relative;
  z-index: 2;
}
.wine-film-tag {
  color: var(--gold);
  margin-bottom: 40px;
}
.wine-film-decl {
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 58px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--bone);
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}
.wine-film-decl em {
  font-style: italic;
  color: var(--gold-pale);
}
.wine-film-name {
  font-family: var(--serif-sc) !important;
  font-size: clamp(14px, 1.6vw, 22px) !important;
  font-weight: 400 !important;
  letter-spacing: 0.10em !important;
  color: var(--bone-dim) !important;
  margin-bottom: 10px !important;
  font-style: normal !important;
  line-height: 1.3 !important;
}
.wine-film-variety {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-muted);
  margin-bottom: 28px;
  opacity: 0.7;
}
.wine-film-desc {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(240,232,215,0.55);
  max-width: 420px;
  margin-bottom: 36px;
}
.wine-film-specbar {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 44px;
  border-top: 1px solid rgba(200,165,80,0.12);
  border-bottom: 1px solid rgba(200,165,80,0.12);
  padding: 14px 0;
}
.wine-film-specbar span {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid rgba(200,165,80,0.15);
}
.wine-film-specbar span:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}
.wine-film-cta {
  align-self: flex-start;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.wine-film-visual {
  position: relative;
  overflow: hidden;
}
.wine-film-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.8s ease, filter 0.8s ease;
}
.wine-film-visual:hover img {
  transform: scale(1.03);
}
.wine-film-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to right, rgba(10,8,5,0.42) 0%, transparent 28%),
    linear-gradient(to top, rgba(10,8,5,0.38) 0%, transparent 35%);
  pointer-events: none;
}
.wine-film-num {
  position: absolute;
  bottom: 28px;
  right: 36px;
  font-family: var(--serif);
  font-size: clamp(56px, 9vw, 130px);
  font-weight: 300;
  line-height: 1;
  color: rgba(200,165,80,0.07);
  user-select: none;
  pointer-events: none;
}

/* SEMPER */
.semper-film { background: var(--semper-bg); }
.semper-film .wine-film-visual img {
  object-position: center 40%;
}

/* YOU WINE 44°F */
.you44-film {
  background: var(--you44-bg);
  grid-template-columns: 2fr 3fr;
}
.wine-film-ghost-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--sans);
  font-size: 24vw;
  font-weight: 800;
  color: rgba(80,140,200,0.045);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
  user-select: none;
  letter-spacing: -0.02em;
}
.you44-copy { z-index: 2; }
.you44-visual img {
  object-fit: contain;
  object-position: center center;
  background: var(--you44-bg);
}

.you44-external-link {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-pale);
  text-decoration: none;
  border-bottom: 1px solid rgba(200,165,80,0.30);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.you44-external-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ORO DEL SUR */
.oro-film { background: var(--oro-bg); }
.wine-film-reverse { direction: rtl; }
.wine-film-reverse .wine-film-body {
  direction: ltr;
  padding: 120px 10vw 120px 72px;
}
.wine-film-reverse .wine-film-visual { direction: ltr; }
.oro-visual img {
  object-position: center 50%;
}

/* CAVAS MARINAS */
.cavas-film { background: var(--cavasmarinas-bg); }
.cavas-visual img {
  object-position: center center;
}

.we-eyebrow {
  font-family: var(--sans);
  font-size: 8.5px; font-weight: 700;
  letter-spacing: 0.30em; text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.we-eyebrow::before {
  content: ''; display: block;
  width: 20px; height: 1px; background: currentColor;
}
.we-name {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 80px);
  font-weight: 300; line-height: 0.95;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}
.we-variety {
  font-family: var(--serif);
  font-size: clamp(16px, 1.6vw, 22px);
  font-style: italic; font-weight: 300;
  margin-bottom: 36px;
  line-height: 1.2;
}
.we-desc {
  font-family: var(--sans);
  font-size: 13px; font-weight: 300;
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 400px;
}
.we-specs {
  display: flex; gap: 36px;
  padding-bottom: 36px;
  margin-bottom: 36px;
}
.we-divider { height: 1px; margin-bottom: 36px; }
.we-spec { display: flex; flex-direction: column; gap: 5px; }
.we-spec-val {
  font-family: var(--serif);
  font-size: 26px; font-weight: 300; line-height: 1;
}
.we-spec-key {
  font-family: var(--sans);
  font-size: 7.5px; font-weight: 600;
  letter-spacing: 0.20em; text-transform: uppercase;
}
.we-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 9px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  background: none; border: none; padding: 10px 0;
  min-height: 44px;
  cursor: pointer;
  transition: gap 0.2s ease;
}
.we-btn:hover { gap: 18px; }
.we-btn::after { content: '→'; font-size: 13px; }

/* ─── YOU WINE · CAMPOPIANO ─── */
#youwine {
  background: var(--you44-bg);
  padding: 0;
  border-top: 1px solid rgba(100,160,220,0.06);
  overflow: hidden;
}

/* — Manifesto — */
.yw-manifesto {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 140px 10vw 120px;
  position: relative;
  overflow: hidden;
}
.yw-manifesto-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.yw-eyebrow {
  color: var(--you-blue) !important;
  margin-bottom: 44px;
}
.yw-manifesto-h {
  font-family: var(--serif);
  font-size: clamp(42px, 6.5vw, 96px);
  font-weight: 300;
  line-height: 1.04;
  color: var(--bone);
  margin-bottom: 44px;
  letter-spacing: -0.02em;
}
.yw-manifesto-h em {
  font-style: italic;
  color: var(--you-blue);
}
.yw-manifesto-sub {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--bone-muted);
  max-width: 520px;
}
.yw-ghost-n {
  position: absolute;
  right: 4vw;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: clamp(180px, 26vw, 380px);
  font-weight: 800;
  color: rgba(100,160,220,0.035);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

/* — Can Films — */
.yw-can-film {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.yw-can-film + .yw-can-film {
  border-top: 1px solid rgba(100,160,220,0.05);
}
.yw-can-film-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 72px 120px 10vw;
  position: relative;
  z-index: 2;
}
.yw-can-film-tag {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 44px;
}
.moscatel-film .yw-can-film-tag { color: var(--you-green); }
.rose-film .yw-can-film-tag     { color: var(--you-pink);  }

.yw-can-decl {
  font-family: var(--serif);
  font-size: clamp(24px, 3.2vw, 54px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--bone);
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}
.yw-can-decl em { font-style: italic; }
.moscatel-film .yw-can-decl em { color: var(--you-green); }
.rose-film .yw-can-decl em     { color: var(--you-pink);  }

.yw-can-specbar {
  display: flex;
  align-items: center;
  gap: 18px;
  border-top: 1px solid rgba(100,160,220,0.12);
  border-bottom: 1px solid rgba(100,160,220,0.12);
  padding: 14px 0;
  margin-bottom: 32px;
}
.yw-can-film-name {
  font-family: var(--serif-sc);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--bone-dim);
}
.yw-can-specbar-div {
  width: 1px;
  height: 14px;
  background: rgba(100,160,220,0.22);
  flex-shrink: 0;
}
.yw-can-film-temp {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(100,160,220,0.50);
}
.yw-can-film .we-desc {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(180,210,240,0.50);
  max-width: 380px;
  margin-bottom: 22px;
}
.yw-can-film-origin {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(100,160,220,0.35);
}

/* — Visual side — */
.yw-can-film-visual {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.yw-can-film-visual img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.88) saturate(1.05) contrast(1.02);
  transition: transform 0.8s ease, filter 0.8s ease;
}
.yw-can-film-visual:hover img {
  transform: scale(1.03);
  filter: brightness(0.95) saturate(1.1) contrast(1.02);
}
.yw-can-film-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to right, rgba(10,8,5,0.38) 0%, transparent 30%),
    linear-gradient(to top, rgba(10,8,5,0.45) 0%, transparent 40%);
  pointer-events: none;
}
.yw-can-roman {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: clamp(140px, 20vw, 300px);
  font-weight: 300;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  z-index: 3;
}
.moscatel-film .yw-can-roman { color: rgba(114,195,114,0.05); }
.rose-film .yw-can-roman     { color: rgba(220,80,150,0.05);  }

.yw-can-ghost-word {
  position: absolute;
  bottom: 48px;
  right: 40px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  z-index: 3;
}
.moscatel-film .yw-can-ghost-word { color: rgba(114,195,114,0.25); }
.rose-film .yw-can-ghost-word     { color: rgba(220,80,150,0.22);  }

/* Accent bar */
.moscatel-film::before,
.rose-film::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  pointer-events: none;
}
.moscatel-film::before {
  background: linear-gradient(to bottom, transparent 10%, var(--you-green) 50%, transparent 90%);
  opacity: 0.28;
}
.rose-film::before {
  background: linear-gradient(to bottom, transparent 10%, var(--you-pink) 50%, transparent 90%);
  opacity: 0.28;
}

/* Reversed film */
.yw-can-film-reverse { direction: rtl; }
.yw-can-film-reverse .yw-can-film-body,
.yw-can-film-reverse .yw-can-film-visual { direction: ltr; }
.yw-can-film-reverse .yw-can-film-body {
  padding: 120px 10vw 120px 72px;
}
.yw-can-film-reverse::before {
  left: auto;
  right: 0;
}

/* ─── WINEMAKING DECLARATION ─── */
.wm-declaration {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border-top: 1px solid rgba(200,165,80,0.06);
}
.wm-decl-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 72px 120px 10vw;
}
.wm-eyebrow {
  color: var(--gold-pale) !important;
  margin-bottom: 52px;
}
.wm-eyebrow::before { background: var(--gold-pale) !important; }
.wm-decl-h {
  font-family: var(--serif);
  font-size: clamp(32px, 4.8vw, 78px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--bone);
  margin-bottom: 52px;
  letter-spacing: -0.01em;
}
.wm-decl-h em {
  font-style: italic;
  color: var(--gold-pale);
}
.wm-decl-sub {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--bone-muted);
  max-width: 440px;
  border-left: 1px solid rgba(200,165,80,0.2);
  padding-left: 24px;
}
.wm-ghost-word {
  position: absolute;
  bottom: 48px;
  left: 10vw;
  font-family: var(--sans);
  font-size: clamp(60px, 10vw, 140px);
  font-weight: 800;
  color: rgba(200,165,80,0.04);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.04em;
}

/* Photo column */
.wm-decl-photo {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
.wm-decl-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(55%) brightness(0.52) contrast(1.2);
}
.wm-decl-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--ink) 0%,
    rgba(10,8,6,0.15) 25%,
    transparent 55%
  ), linear-gradient(
    to top,
    rgba(10,8,6,0.5) 0%,
    transparent 35%
  );
  z-index: 1;
}

/* ─── WINEMAKING ─── */
#winemaking { padding: 0 0 160px; background: var(--ink); }
.winemaking-inner { max-width: 1440px; margin: 0 auto; padding: 80px 64px 0; }
.winemaking-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 100px;
  align-items: start;
}
.winemaking-side-photo {
  position: sticky;
  top: 100px;
  height: calc(100vh - 180px);
  overflow: hidden;
}
.winemaking-side-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  filter: grayscale(0.85) brightness(0.58) contrast(1.35) sepia(0.38);
  transition: filter 0.6s ease;
}
.winemaking-side-photo:hover img {
  filter: grayscale(0.75) brightness(0.65) contrast(1.25) sepia(0.30);
}
.winemaking-side-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      oklch(11% 0.016 40) 0%,
      oklch(11% 0.016 40 / 0.70) 6%,
      oklch(11% 0.016 40 / 0.10) 20%,
      transparent 35%,
      transparent 62%,
      oklch(11% 0.016 40 / 0.10) 78%,
      oklch(11% 0.016 40 / 0.72) 93%,
      oklch(11% 0.016 40) 100%
    ),
    linear-gradient(to right,
      transparent 0%,
      transparent 28%,
      oklch(11% 0.016 40 / 0.18) 50%,
      oklch(11% 0.016 40 / 0.60) 72%,
      oklch(11% 0.016 40) 100%
    );
  pointer-events: none;
}
.winemaking-side-title {
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  font-family: var(--serif);
  font-size: 64px; font-weight: 300;
  color: rgba(200,165,80,0.12);
  line-height: 0.9;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  user-select: none;
  z-index: 2;
  text-align: center;
}
.winemaking-content { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.winemaking-block {
  padding: 36px 0;
  border-top: 1px solid rgba(200,165,80,0.10);
}
.winemaking-block-num {
  font-family: var(--serif);
  font-size: 44px; font-weight: 300;
  color: rgba(200,165,80,0.18);
  line-height: 1; margin-bottom: 16px;
}
.winemaking-block-title {
  font-family: var(--serif);
  font-size: 24px; font-weight: 400;
  color: var(--bone-dim); margin-bottom: 12px;
}
.winemaking-block-text {
  font-family: var(--sans);
  font-size: 12.5px; font-weight: 300;
  line-height: 1.8; color: var(--bone-muted);
}
.winemaking-quote {
  grid-column: 1 / -1;
  padding: 48px;
  background: oklch(7% 0.012 36);
  border-left: 2px solid var(--gold);
  margin-top: 8px;
}
.winemaking-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 300; font-style: italic;
  color: var(--bone); line-height: 1.55;
}
.winemaking-quote cite {
  display: block; margin-top: 16px;
  font-family: var(--sans); font-size: 8.5px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-deep); font-style: normal;
}

/* ─── SUSTAINABILITY ─── */
#sustainability { padding: 160px 64px; max-width: 1440px; margin: 0 auto; background: var(--paper); }
.sus-body { margin-top: 28px; }
.sustain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; margin-top: 80px; }
.sustain-list { display: flex; flex-direction: column; gap: 0; }
.sustain-item {
  display: grid; grid-template-columns: 40px 1fr; gap: 20px;
  padding: 20px 0; border-bottom: 1px solid rgba(0,0,0,0.07); align-items: start;
}
.sustain-item:last-child { border-bottom: none; }
.sustain-icon { font-family: var(--serif); font-size: 18px; color: var(--gold); padding-top: 2px; line-height: 1; text-align: center; }
.sustain-item-title { font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mid); margin-bottom: 5px; }
.sustain-item-text { font-family: var(--sans); font-size: 12.5px; font-weight: 300; line-height: 1.75; color: var(--ink-muted); }

/* ─── EXPORT ─── */
#export { background: var(--paper-off); padding: 160px 64px; border-top: 1px solid rgba(0,0,0,0.06); }
.export-inner { max-width: 1440px; margin: 0 auto; }
.export-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; margin-top: 80px; margin-bottom: 80px; }
.export-cards { display: flex; flex-direction: column; gap: 2px; }
.export-card { background: var(--paper); padding: 36px; border-left: 2px solid rgba(0,0,0,0.08); transition: border-color 0.3s; }
.export-card:hover { border-left-color: var(--gold); }
.export-card-title { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--ink); margin-bottom: 12px; letter-spacing: 0.02em; }
.export-card-text { font-family: var(--sans); font-size: 12.5px; font-weight: 300; line-height: 1.8; color: var(--ink-muted); }
.export-cta { background: var(--ink); border: 1px solid rgba(200,165,80,0.12); padding: 72px; display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.export-cta-headline { font-family: var(--serif); font-size: clamp(32px, 3.5vw, 52px); font-weight: 300; line-height: 1.1; color: var(--bone); margin-bottom: 16px; }
.export-cta-headline em { font-style: italic; color: var(--gold-pale); }
.export-cta-sub { font-family: var(--sans); font-size: 13px; font-weight: 300; line-height: 1.8; color: var(--bone-muted); max-width: 520px; }
.export-btns { display: flex; flex-direction: column; gap: 12px; min-width: 240px; }
.btn-gold { background: var(--gold); color: var(--earth); font-family: var(--sans); font-size: 9.5px; font-weight: 700; letter-spacing: 0.20em; text-transform: uppercase; padding: 18px 32px; border: none; text-align: center; text-decoration: none; display: block; transition: background 0.2s; }
.btn-gold:hover { background: var(--gold-pale); }
.btn-outline-gold { background: transparent; color: var(--gold); font-family: var(--sans); font-size: 9.5px; font-weight: 600; letter-spacing: 0.20em; text-transform: uppercase; padding: 17px 32px; border: 1px solid rgba(200,165,80,0.35); text-align: center; text-decoration: none; display: block; transition: border-color 0.2s, color 0.2s; }
.btn-outline-gold:hover { border-color: var(--gold); color: var(--gold-pale); }

/* ─── EXPORT PROOF STRIP ─── */
.export-proof-strip {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  height: clamp(300px, 44vh, 500px);
  margin-top: 72px;
  overflow: hidden;
  gap: 3px;
  background: var(--ink);
}
.export-proof-photo {
  position: relative;
  overflow: hidden;
}
.export-proof-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.82) saturate(0.9) contrast(1.05);
  transition: transform 0.7s ease, filter 0.7s ease;
}
.export-proof-photo:hover img {
  transform: scale(1.04);
  filter: brightness(0.90) saturate(1.0) contrast(1.05);
}
.export-proof-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10,8,5,0.78) 0%, rgba(10,8,5,0.20) 45%, transparent 72%),
    linear-gradient(to right, rgba(10,8,5,0.22) 0%, transparent 50%);
  pointer-events: none;
}
.export-proof-caption {
  position: absolute;
  bottom: 22px;
  left: 24px;
  right: 16px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-muted);
  z-index: 2;
  transition: color 0.3s;
}
.export-proof-photo:hover .export-proof-caption {
  color: var(--gold-pale);
}

/* ─── EXPORT MARKETS BOX ─── */
.export-markets-box {
  margin-top: 48px;
  padding: 40px;
  background: var(--earth);
  border: 1px solid rgba(200,165,80,0.10);
}
.export-markets-label {
  margin-bottom: 12px;
  color: var(--gold-pale) !important;
}
.export-markets-label::before { background: var(--gold-pale) !important; }
.export-markets-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.export-market-tag {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-muted);
  border: 1px solid rgba(200,165,80,0.12);
  padding: 6px 14px;
}
.export-p2 { margin-top: 16px; }

/* ─── WORLD MAP (S3.4) ─── */
.world-map-wrap {
  margin-top: 16px;
  overflow: hidden;
  border-radius: 2px;
}
.world-map-svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
}

/* ─── CONTACT ─── */
#contact {
  background: var(--paper);
  padding: 0;
}
.contact-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 140px 64px 160px;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 100px;
  align-items: start;
}
.contact-eyebrow { color: var(--gold); }
.contact-h {
  margin-top: 20px;
  margin-bottom: 64px;
}
.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.contact-info-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.contact-info-label {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
}
.contact-info-val {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.5;
}
.contact-right {
  padding-top: 60px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-field label {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  padding: 14px 0;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(60,50,40,0.28); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-bottom-color: var(--gold); }
.form-field select { cursor: pointer; }
.form-field select option { background: var(--paper); color: var(--ink); }
.form-field textarea { resize: none; height: 108px; }
.contact-send-btn {
  display: inline-block;
  padding: 18px 52px;
  margin-top: 8px;
  cursor: pointer;
}

/* ─── CONTACT MAP STRIP ─── */
.contact-map-strip {
  position: relative;
  width: 100%;
  height: clamp(320px, 44vw, 560px);
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.contact-map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(28%) contrast(1.05);
}
.contact-map-label {
  position: absolute;
  top: 36px;
  left: 64px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--paper);
  padding: 20px 28px 22px;
  border-left: 2px solid var(--gold);
  pointer-events: none;
}
.contact-map-eyebrow {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.contact-map-address {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.4;
}

/* ─── S4.4 NEWSLETTER SECTION ─── */
.nl-section {
  background: var(--earth);
  border-top: 1px solid rgba(200,165,80,0.10);
  border-bottom: 1px solid rgba(200,165,80,0.10);
  overflow: hidden;
}
.nl-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 96px 64px;
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 80px;
  align-items: center;
}
.nl-eyebrow {
  color: var(--gold-pale) !important;
}
.nl-eyebrow::before { background: var(--gold-pale) !important; }
.nl-headline {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 300;
  color: var(--bone);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 18px 0 20px;
}
.nl-headline em {
  font-style: italic;
  color: var(--gold);
}
.nl-sub {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--bone-dim);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 36px;
}
.nl-form { max-width: 480px; }
.nl-field-row {
  display: flex;
  gap: 0;
  border: 1px solid rgba(200,165,80,0.25);
  transition: border-color 0.2s;
}
.nl-field-row:focus-within {
  border-color: rgba(200,165,80,0.55);
}
.nl-input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: none;
  outline: none;
  color: var(--bone);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 400;
  padding: 14px 18px;
  letter-spacing: 0.02em;
}
.nl-input::placeholder { color: var(--bone-muted); }
.nl-btn {
  background: var(--gold);
  color: var(--earth);
  border: none;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 24px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  min-height: 44px;
}
.nl-btn:hover { background: var(--gold-pale); }
.nl-privacy {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--bone-muted);
  margin-top: 12px;
  line-height: 1.6;
}
.nl-privacy-link {
  color: var(--bone-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.nl-privacy-link:hover { color: var(--gold-pale); }
.nl-success {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--gold-pale);
  margin-top: 16px;
  letter-spacing: 0.04em;
}
/* Decorative vine */
.nl-deco {
  display: flex;
  justify-content: center;
  opacity: 0.22;
}
.nl-vine {
  width: 120px;
  height: auto;
  color: var(--gold);
}
@media (max-width: 900px) {
  .nl-inner {
    grid-template-columns: 1fr;
    padding: 72px 40px;
    gap: 0;
  }
  .nl-deco { display: none; }
}
@media (max-width: 600px) {
  .nl-inner { padding: 56px 24px; }
  .nl-field-row { flex-direction: column; border: none; }
  .nl-input {
    border: 1px solid rgba(200,165,80,0.25);
    padding: 14px 16px;
  }
  .nl-btn {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--gold);
    margin-top: 8px;
  }
}

/* ─── FOOTER ─── */
footer { background: var(--ink); padding: 80px 64px 40px; border-top: 1px solid rgba(200,165,80,0.08); }
.footer-top { display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(200,165,80,0.07); }
.footer-brand-logo { height: 32px; filter: invert(1) brightness(0.75); margin-bottom: 24px; display: block; }
.footer-brand-desc { font-family: var(--sans); font-size: 11.5px; font-weight: 300; line-height: 1.8; color: rgba(240,232,215,0.35); max-width: 260px; margin-bottom: 28px; }
.footer-col-title { font-family: var(--sans); font-size: 8.5px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(200,165,80,0.4); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-family: var(--sans); font-size: 12px; font-weight: 300; color: rgba(240,232,215,0.45); text-decoration: none; letter-spacing: 0.03em; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold-pale); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 32px; }
.footer-copy { font-family: var(--sans); font-size: 9.5px; font-weight: 300; color: rgba(240,232,215,0.22); letter-spacing: 0.06em; }
.footer-socials { display: flex; gap: 28px; }
.footer-socials a { font-family: var(--sans); font-size: 9px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(240,232,215,0.3); text-decoration: none; transition: color 0.2s; }
.footer-socials a:hover { color: var(--gold); }

/* ─── RESPONSIVE ─── */
/* ══════════════════════════════════════════
   RESPONSIVE — tablet (≤ 1200px)
══════════════════════════════════════════ */
@media (max-width: 1200px) {
  /* Wine film tablet */
  .wine-film { grid-template-columns: 1fr 1fr; }
  .wine-film-body { padding: 100px 48px 100px 6vw; }
  .wine-film-reverse .wine-film-body { padding: 100px 6vw 100px 48px; }
  .you44-film { grid-template-columns: 1fr 1fr; }
  .wines-manifesto { grid-template-columns: 1fr; }
  .wines-manifesto-inner { padding: 120px 6vw 80px; }
  .wines-manifesto-photo { min-height: 60vw; }
  .wines-manifesto-photo::after {
    background: linear-gradient(to bottom, var(--ink) 0%, transparent 30%, transparent 70%, rgba(10,8,6,0.65) 100%);
  }

  nav { padding: 0 40px; }
  #metrics { grid-template-columns: repeat(2, 1fr); }

  /* History */
  .history-intro-content { padding: 0 48px 80px; }
  .gen-entry { grid-template-columns: 1fr; min-height: auto; }
  .gen-entry.gen-reverse { direction: ltr; }
  .gen-photo { min-height: 480px; }
  .gen-body { padding: 60px 48px; }

  /* Terroir / Export / Contact */
  .terroir-inner,
  .export-two-col { grid-template-columns: 1fr; gap: 60px; }
  .contact-inner { grid-template-columns: 1fr; gap: 60px; padding: 100px 48px 120px; }
  .contact-right { padding-top: 0; }
  .winemaking-grid { grid-template-columns: 1fr; }
  .winemaking-side-photo { display: none; }
  .export-cta { grid-template-columns: 1fr; }
  .export-proof-strip { grid-template-columns: 1fr; height: auto; }
  .export-proof-photo { height: 56vw; max-height: 360px; }
  .footer-top { grid-template-columns: 1fr 1fr; }

  /* YOU WINE can films — tablet */
  .yw-manifesto { padding: 120px 6vw 100px; }
  .yw-can-film { grid-template-columns: 1fr 1fr; }
  .yw-can-film-body { padding: 100px 48px 100px 6vw; }
  .yw-can-film-reverse .yw-can-film-body { padding: 100px 6vw 100px 48px; }

  /* Winemaking declaration — tablet */
  .wm-declaration { grid-template-columns: 1fr 1fr; }
  .wm-decl-inner { padding: 100px 48px 100px 6vw; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — mobile (≤ 768px)
══════════════════════════════════════════ */
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Wine film mobile */
  .wine-film,
  .you44-film {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .wine-film-body {
    padding: 80px 28px 60px;
    order: 2;
  }
  .wine-film-reverse { direction: ltr; }
  .wine-film-reverse .wine-film-body { padding: 80px 28px 60px; order: 2; }
  .wine-film-reverse .wine-film-visual { order: 1; }
  .wine-film-visual { min-height: 380px; order: 1; }
  .wine-film-visual img { padding: 40px 32px 0; }
  .you44-visual img { padding: 48px 24px; }
  .wine-film-ghost-text { font-size: 40vw; }
  .wines-manifesto { min-height: auto; grid-template-columns: 1fr; }
  .wines-manifesto-inner { padding: 100px 28px 60px; }
  .wines-manifesto-photo { min-height: 75vw; }
  .wines-ghost-n { display: none; }

  /* Hero */
  .hero-logo { width: clamp(200px, 72vw, 340px); }

  /* Sections padding */
  #terroir, #wines,
  #sustainability, #export { padding: 72px 24px; }
  #winemaking { padding: 0 0 72px; }
  .winemaking-inner { padding: 0 24px 0; }
  .contact-inner { padding: 72px 24px 100px; gap: 48px; }
  #youwine { padding: 0; }
  .history-intro { min-height: 70vh; }
  .history-intro-content { padding: 0 28px 64px; }
  .gen-body { padding: 48px 24px; }
  .gen-photo { min-height: 360px; }
  #metrics { padding: 0 24px; }

  /* Metrics */
  #metrics { grid-template-columns: repeat(2, 1fr); }

  /* Winemaking declaration — mobile */
  .wm-declaration { grid-template-columns: 1fr; min-height: auto; }
  .wm-decl-inner { padding: 100px 28px 72px; }
  .wm-decl-photo { min-height: 72vw; }
  .wm-ghost-word { display: none; }

  /* YOU WINE can films — mobile */
  .yw-manifesto { min-height: auto; padding: 100px 28px 80px; }
  .yw-ghost-n { display: none; }
  .yw-can-film {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .yw-can-film-body {
    padding: 80px 28px 60px !important;
    order: 2;
  }
  .yw-can-film-visual {
    min-height: 380px;
    order: 1;
    position: relative;
  }
  .yw-can-film-visual img { width: 100%; height: 100%; }
  .yw-can-film-reverse { direction: ltr; }
  .yw-can-ghost-word { display: none; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  /* Layout fixes */
  .sustain-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .terroir-image-block { grid-template-columns: 1fr; }
  .terroir-img-large { grid-column: 1; aspect-ratio: 4/3; }
  .terroir-img-small:last-child { display: none; }
  .winemaking-content { grid-template-columns: 1fr; }
  .export-btns { flex-direction: column; gap: 12px; }

  /* Contact map — mobile */
  .contact-map-strip { height: clamp(280px, 70vw, 400px); }
  .contact-map-label { left: 24px; top: 24px; padding: 14px 18px 16px; }
  .contact-map-address { font-size: 13px; }
}

/* ═══════════════════════════════════════════════════════
   YOU WINE — VIDEO STRIP
   ═══════════════════════════════════════════════════════ */

.yw-video-strip {
  position: relative;
  width: 100%;
  margin-left: 0;
  height: clamp(340px, 52vw, 680px);
  overflow: hidden;
  margin-top: 0;
}

.yw-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.yw-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 4, 2, 0.35) 0%,
    rgba(8, 4, 2, 0.10) 40%,
    rgba(8, 4, 2, 0.10) 60%,
    rgba(8, 4, 2, 0.60) 100%
  );
}

.yw-video-caption {
  position: absolute;
  bottom: 48px;
  left: 60px;
  right: 60px;
}

.yw-video-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-pale);
  border: 1px solid rgba(200,165,80,0.35);
  padding: 5px 14px;
  margin-bottom: 16px;
}

.yw-video-line {
  font-family: var(--serif);
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 300;
  color: var(--bone);
  line-height: 1.25;
}

.yw-video-line em {
  font-style: italic;
  color: var(--gold-pale);
}

@media (max-width: 768px) {
  .yw-video-strip {
    height: 56vw;
    min-height: 280px;
    margin-top: 48px;
    width: calc(100% + 48px);
    margin-left: -24px;
  }
  .yw-video-caption { bottom: 28px; left: 24px; right: 24px; }
}

/* ═══════════════════════════════════════════════════════
   AGE GATE OVERLAY
   ═══════════════════════════════════════════════════════ */

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: oklch(7% 0.012 38);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease;
  overflow-y: auto;
}

.age-gate-inner {
  max-width: 560px;
  width: 90%;
  margin: auto;
  text-align: center;
  padding: 60px 32px 72px;
}

.ag-logo {
  width: clamp(180px, 40vw, 280px);
  margin-bottom: 48px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.ag-step { animation: agFadeIn 0.4s ease; }

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

/* Step 1 */
.ag-subtitle {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 36px;
}

.ag-select-lang {
  font-family: var(--serif);
  font-size: clamp(14px, 2vw, 16px);
  color: var(--bone-muted);
  font-style: italic;
  margin-bottom: 32px;
}

.ag-lang-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.ag-lang-btn {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-dim);
  background: transparent;
  border: 1px solid rgba(200,165,80,0.25);
  padding: 14px 32px;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.ag-lang-btn:hover,
.ag-lang-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,165,80,0.06);
}

/* Step 2 */
.ag-welcome {
  font-family: var(--serif);
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 400;
  color: var(--bone);
  margin-bottom: 20px;
  line-height: 1.3;
}

.ag-message {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--bone-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.ag-question {
  font-family: var(--serif-sc);
  font-size: clamp(13px, 2.2vw, 16px);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--gold-pale);
  margin-bottom: 32px;
}

.ag-verify-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.ag-yes {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--earth);
  border: none;
  padding: 16px 40px;
  min-height: 44px;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}

.ag-yes:hover {
  background: var(--gold-pale);
  transform: translateY(-1px);
}

.ag-no {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-muted);
  background: transparent;
  border: none;
  padding: 16px 24px;
  min-height: 44px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
}

.ag-no:hover { color: var(--bone); }

/* Step 3 — sorry */
.ag-sorry {
  font-family: var(--serif);
  font-size: clamp(16px, 2.5vw, 20px);
  font-style: italic;
  color: var(--bone-muted);
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════
   NAV LANGUAGE SWITCHER
   ═══════════════════════════════════════════════════════ */

.nav-lang {
  display: flex;
  gap: 2px;
  align-items: center;
  margin-left: 16px;
}

.lang-btn {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-muted);
  background: transparent;
  border: none;
  padding: 10px 8px;
  min-height: 44px;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}

.lang-btn:hover { color: var(--gold-pale); }

.lang-btn.active {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
}

/* Hide lang switcher in mobile — handled by age gate language */
@media (max-width: 768px) {
  .nav-lang { display: none; }
}

/* ═══════════════════════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 8000;
  background: #12100D; /* HEX fallback for oklch(10% 0.016 38) */
  background: var(--earth);
  border-top: 1px solid rgba(200,165,80,0.18);
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: #b0a898; /* HEX fallback for var(--bone-dim) */
  color: var(--bone-muted);
  line-height: 1.6;
  max-width: 680px;
  margin: 0;
}
.cookie-link {
  color: #C8A550;
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.2s;
}
.cookie-link:hover { text-decoration-color: var(--gold); }
.cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-accept,
.cookie-decline {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 13px 22px;
  min-height: 44px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cookie-accept {
  background: #C8A550;
  background: var(--gold);
  color: #0D0B08;
  color: var(--earth);
}
.cookie-accept:hover { background: var(--gold-pale); }
.cookie-decline {
  background: transparent;
  color: var(--bone-muted);
  border: 1px solid rgba(200,165,80,0.28);
}
.cookie-decline:hover {
  border-color: var(--gold);
  color: var(--bone);
}
@media (max-width: 640px) {
  .cookie-banner { padding: 18px 20px; flex-direction: column; align-items: flex-start; }
  .cookie-btns { width: 100%; }
  .cookie-accept, .cookie-decline { flex: 1; }
}

/* ═══════════════════════════════════════════════════════
/* ═══════════════════════════════════════════════════════
   AGE GATE — BACKGROUND IMAGE VERSION
   ═══════════════════════════════════════════════════════ */
.ag-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.ag-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.22;
  transform: scale(1.03);
}
.ag-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom,
    rgba(13,11,8,0.55) 0%,
    rgba(13,11,8,0.78) 50%,
    rgba(13,11,8,0.90) 100%);
}
.age-gate-inner {
  position: relative;
  z-index: 2;
}
.ag-estate {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 52px;
  opacity: 0.75;
}

/* ═══════════════════════════════════════════════════════
   HERO CTAs
   ═══════════════════════════════════════════════════════ */
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
  margin-bottom: 20px;
}
.hero-cta-primary {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  text-decoration: none;
  color: #0D0B08;
  color: var(--earth);
  background: #C8A550;
  background: var(--gold);
  padding: 14px 34px;
  transition: background 0.22s, color 0.22s;
  display: inline-block;
}
.hero-cta-primary:hover {
  background: var(--gold-pale);
}
.hero-cta-secondary {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
  border: 1px solid rgba(200,165,80,0.50);
  padding: 14px 34px;
  transition: border-color 0.22s, color 0.22s, background 0.22s;
  display: inline-block;
}
.hero-cta-secondary:hover {
  border-color: var(--gold);
  background: rgba(200,165,80,0.06);
  color: var(--gold-pale);
}

/* ═══════════════════════════════════════════════════════
   SECTION: RECONOCIMIENTOS / AWARDS
   ═══════════════════════════════════════════════════════ */
#awards {
  background: #12100D;
  background: var(--earth);
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 100px);
  text-align: center;
}
.awards-inner { max-width: 1100px; margin: 0 auto; }
.awards-h { color: var(--bone); }
.awards-h em { color: var(--gold); }
#awards .section-eyebrow { color: var(--gold-pale); }
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  margin: 60px 0 40px;
}
.award-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,165,80,0.12);
  padding: 40px 28px 36px;
  transition: border-color 0.2s, background 0.2s;
}
.award-item:hover {
  border-color: rgba(200,165,80,0.30);
  background: rgba(200,165,80,0.04);
}
.award-score {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 72px);
  font-weight: 300;
  color: #C8A550;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 2px;
}
.award-gold-medal {
  font-size: clamp(32px, 4vw, 44px);
}
.award-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-muted);
  margin-bottom: 20px;
}
.award-wine {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: var(--bone);
  margin-bottom: 6px;
  line-height: 1.4;
}
.award-source {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.10em;
  color: var(--bone-muted);
}
.awards-footnote {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  color: var(--bone-muted);
  opacity: 0.60;
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════
   SECTION: VISÍTANOS
   ═══════════════════════════════════════════════════════ */
#visit {
  background: var(--paper);
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 100px);
}
.visit-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.visit-h em { font-style: italic; }
.visit-body { max-width: 480px; margin: 28px 0 36px; }
.visit-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.visit-detail {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  border-bottom: 1px solid var(--paper-mid);
  padding-bottom: 16px;
}
.visit-detail-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 2px;
}
.visit-detail-val {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.65;
}
.visit-detail-val a {
  color: var(--ink-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--paper-mid);
  transition: border-color 0.2s, color 0.2s;
}
.visit-detail-val a:hover {
  color: var(--gold);
  border-color: var(--gold-pale);
}
.visit-cta {
  display: inline-block;
  text-decoration: none;
}
.visit-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 100px;
}
.visit-img-wrap {
  overflow: hidden;
  aspect-ratio: 16/10;
}
.visit-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}
.visit-img-wrap:hover .visit-img { transform: scale(1.03); }
.visit-map-wrap {
  overflow: hidden;
  height: 240px;
}
.visit-map {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.4) contrast(1.05);
}
@media (max-width: 900px) {
  .visit-inner { grid-template-columns: 1fr; gap: 48px; }
  .visit-right { position: static; }
}

/* ═══════════════════════════════════════════════════════
   FOOTER — NEWSLETTER + LEGAL
   ═══════════════════════════════════════════════════════ */
.footer-brand { max-width: 300px; }
.footer-brand-tagline {
  font-style: italic;
  opacity: 0.55;
  margin-top: 8px;
}
.footer-newsletter { margin-top: 28px; }
.footer-nl-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.footer-nl-form {
  display: flex;
  gap: 0;
}
.footer-nl-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,165,80,0.22);
  border-right: none;
  color: var(--bone);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s;
  min-width: 0;
}
.footer-nl-input::placeholder { color: var(--bone-muted); opacity: 0.5; }
.footer-nl-input:focus { border-color: rgba(200,165,80,0.50); }
.footer-nl-btn {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--earth);
  border: none;
  padding: 10px 18px;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.footer-nl-btn:hover { background: var(--gold-pale); }
.footer-legal {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-legal-link {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  color: var(--bone-muted);
  text-decoration: none;
  opacity: 0.55;
  transition: opacity 0.2s, color 0.2s;
}
.footer-legal-link:hover { opacity: 1; color: var(--gold-pale); }
.footer-legal-sep {
  color: var(--bone-muted);
  opacity: 0.35;
  font-size: 10px;
}

/* ═══════════════════════════════════════════════════════
   CONTACT FORM — SUCCESS/ERROR STATES
   ═══════════════════════════════════════════════════════ */
.form-success,
.form-error {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  padding: 14px 18px;
  margin-top: 16px;
  border-left: 3px solid;
}
.form-success {
  color: #4CAF82;
  border-color: #4CAF82;
  background: rgba(76,175,130,0.06);
}
.form-error {
  color: #e07070;
  border-color: #e07070;
  background: rgba(224,112,112,0.06);
}
.contact-info-val a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.contact-info-val a:hover {
  color: var(--gold);
  border-color: var(--gold-pale);
}

/* ═══════════════════════════════════════════════════════
   HEX FALLBACKS — Critical oklch() properties
   (For Safari < 15.4 and older Chromium)
   ═══════════════════════════════════════════════════════ */
@supports not (color: oklch(1 0 0)) {
  :root {
    --paper:           #f8f5f0;
    --paper-off:       #f0ece5;
    --paper-mid:       #e5dfd5;
    --ink:             #1a1410;
    --ink-mid:         #4a3f34;
    --ink-muted:       #7d7168;
    --gold:            #C8A550;
    --gold-pale:       #D4B870;
    --gold-deep:       #9A7A30;
    --earth:           #12100D;
    --earth-mid:       #1e1a15;
    --earth-warm:      #302820;
    --bone:            #F7F3ED;
    --bone-dim:        #CCC5B8;
    --bone-muted:      #A89E92;
    --you-green:       #6db852;
    --you-blue:        #4a98c9;
    --you-pink:        #d45072;
    --semper-bg:       #12100D;
    --semper-acc:      #C8A550;
    --you44-bg:        #0e1820;
    --you44-acc:       #6aaecc;
    --oro-bg:          #1a1208;
    --oro-acc:         #d47040;
    --submarinas-bg:   #0c1520;
    --submarinas-acc:  #5898b8;
    --cavasmarinas-bg: #0c1520;
    --cavasmarinas-acc:#5898b8;
  }
}

/* ═══════════════════════════════════════════════════════
   WILDLIFE / ECOSYSTEM STRIP
   ═══════════════════════════════════════════════════════ */
.wildlife-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 520px;
  overflow: hidden;
}
.wildlife-col {
  position: relative;
  overflow: hidden;
}
.wildlife-col--img { order: 1; }
.wildlife-col--text {
  order: 2;
  background: var(--earth);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px) clamp(32px, 4vw, 60px);
}
.wildlife-col--two {
  order: 3;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
}
.wildlife-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.9s ease;
}
.wildlife-strip:hover .wildlife-img { transform: scale(1.03); }
.wildlife-sub-img {
  overflow: hidden;
  position: relative;
}
.wildlife-sub-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.9s ease;
}
.wildlife-sub-img:hover img { transform: scale(1.04); }
.wildlife-eyebrow {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.wildlife-quote {
  font-family: var(--serif);
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 300;
  font-style: normal;
  color: var(--bone);
  line-height: 1.45;
  margin: 0 0 28px;
  border: none;
  padding: 0;
}
.wildlife-quote em {
  font-style: italic;
  color: var(--gold-pale);
}
.wildlife-body {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 300;
  color: var(--bone-muted);
  line-height: 1.75;
  max-width: 340px;
}
@media (max-width: 900px) {
  .wildlife-strip {
    grid-template-columns: 1fr;
    grid-template-rows: 320px auto 1fr;
  }
  .wildlife-col--img { min-height: 320px; }
  .wildlife-col--two { grid-template-columns: 1fr 1fr; grid-template-rows: 220px; }
  .wildlife-sub-img { min-height: 220px; }
}

/* ═══════════════════════════════════════════════════════
   LA VENDIMIA — HARVEST DOCUMENTARY SECTION
   ═══════════════════════════════════════════════════════ */
#harvest {
  background: var(--paper);
  padding: 0;
}
.harvest-header {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 100px) clamp(48px, 6vw, 80px);
  text-align: center;
}
.harvest-h { }
.harvest-h em { font-style: italic; }
.harvest-intro {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.80;
  color: var(--ink-mid);
  margin-top: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Editorial photo grid */
.harvest-editorial {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3px;
  margin-bottom: 3px;
}
.harvest-col-right {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
}
.harvest-cell {
  position: relative;
  overflow: hidden;
}
.harvest-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.9s ease;
}
.harvest-cell:hover img { transform: scale(1.03); }
.harvest-cell--team { min-height: 560px; }
.harvest-cell--portrait { min-height: 280px; }
.harvest-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(13,11,8,0.65));
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(247,243,237,0.80);
}

/* Bottom row: wide select photo + stats */
.harvest-bottom {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3px;
}
.harvest-cell--select { min-height: 440px; }
.harvest-stat-block {
  background: var(--earth);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 5vw, 72px) clamp(32px, 4vw, 60px);
  gap: 36px;
}
.harvest-stat {
  border-bottom: 1px solid rgba(200,165,80,0.12);
  padding-bottom: 24px;
}
.harvest-stat:last-of-type { border-bottom: none; padding-bottom: 0; }
.harvest-stat-n {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.harvest-stat-l {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--bone-muted);
}
.harvest-stat-note {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
  color: var(--bone-muted);
  line-height: 1.7;
  opacity: 0.70;
}

/* Patricio portrait strip */
.harvest-patricio {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  min-height: 560px;
  margin-top: 3px;
}
.harvest-patricio-photo {
  overflow: hidden;
}
.harvest-patricio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.9s ease;
}
.harvest-patricio-photo:hover img { transform: scale(1.03); }
.harvest-patricio-text {
  background: var(--paper-off);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 100px) clamp(40px, 6vw, 90px);
}
.harvest-patricio-eyebrow {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.harvest-patricio-name {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.harvest-patricio-body {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.80;
  color: var(--ink-mid);
  margin-bottom: 16px;
  max-width: 480px;
}
.harvest-patricio-cite {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--gold-deep);
  margin-top: 8px;
}

/* Team strip */
.harvest-team-strip {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3px;
  margin-top: 3px;
}
.harvest-team-img {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.harvest-team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s ease;
}
.harvest-team-img:hover img { transform: scale(1.03); }
.harvest-team-text {
  background: var(--paper-off);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 5vw, 72px) clamp(32px, 4vw, 64px);
}
.harvest-team-eyebrow {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.harvest-team-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 28px;
}
.harvest-team-heading em { font-style: italic; }
.harvest-team-body {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.80;
  color: var(--ink-mid);
  margin-bottom: 16px;
  max-width: 460px;
}
@media (max-width: 768px) {
  .harvest-team-strip { grid-template-columns: 1fr; }
  .harvest-team-img { min-height: 320px; }
}

/* Mobile harvest */
@media (max-width: 768px) {
  .harvest-editorial { grid-template-columns: 1fr; }
  .harvest-col-right { grid-template-columns: 1fr 1fr; grid-template-rows: 240px; }
  .harvest-cell--team { min-height: 380px; }
  .harvest-bottom { grid-template-columns: 1fr; }
  .harvest-cell--select { min-height: 300px; }
  .harvest-patricio { grid-template-columns: 1fr; }
  .harvest-patricio-photo { min-height: 400px; }
}

/* ═══════════════════════════════════════════════════════
   ACCESSIBILITY & UX IMPROVEMENTS
   ═══════════════════════════════════════════════════════ */

/* ─── SKIP TO CONTENT LINK ─── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10000;
  background: var(--gold);
  color: var(--earth);
  padding: 10px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 16px;
}

/* ─── GLOBAL FOCUS STYLES ─── */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
/* Remove outline for mouse users, keep for keyboard */
*:focus:not(:focus-visible) {
  outline: none;
}

/* ─── BACK TO TOP BUTTON ─── */
.back-to-top {
  position: fixed;
  bottom: 88px;
  right: 24px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--earth);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.2s;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--gold);
  color: var(--earth);
}
@media (max-width: 600px) {
  .back-to-top { bottom: 100px; right: 16px; }
}

/* ─── NAV ACTIVE STATE ─── */
#mainNav .nav-links a.nav-active {
  color: var(--gold);
}
#mainNav .nav-links a.nav-active::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: var(--gold);
  margin-top: 2px;
}

/* ─── YOU WINE 44°F · VARIETY TASTING NOTES ACCORDION ─── */
.you44-variety-notes {
  margin-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.you44-variety {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.you44-variety-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold-pale);
  padding: 13px 0;
  min-height: 44px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.you44-variety-name::-webkit-details-marker { display: none; }
.you44-variety-name::after {
  content: '+';
  font-size: 1rem;
  color: var(--gold);
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
details[open] > .you44-variety-name { color: var(--gold); }
details[open] > .you44-variety-name::after { content: '−'; }
.you44-vintage {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  color: var(--bone-muted);
  font-weight: 300;
  margin-left: auto;
  margin-right: 10px;
  letter-spacing: 0.05em;
  text-transform: none;
}
.you44-vintage-note {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  color: var(--bone-muted);
  font-weight: 300;
  opacity: 0.65;
  letter-spacing: 0.04em;
  font-style: italic;
  white-space: nowrap;
}
.you44-variety-name em {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--bone-muted);
}
.you44-variety-body {
  padding: 6px 0 18px 2px;
  animation: fadeSlideIn 0.25s ease;
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.you44-note-row {
  display: flex;
  gap: 16px;
  margin-bottom: 9px;
  align-items: flex-start;
}
.you44-note-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--gold);
  min-width: 60px;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: 3px;
  flex-shrink: 0;
}
.you44-note-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--bone-dim);
  flex: 1;
}

/* ── FICHA TÉCNICA BUTTON (inside accordion) ── */
.ficha-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.60rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 0.5px solid rgba(196,154,46,0.30);
  padding: 10px 0 3px;
  min-height: 44px;
  transition: color 0.2s, border-color 0.2s, gap 0.2s;
}
.ficha-btn::after {
  content: '↗';
  font-size: 0.65rem;
  transition: transform 0.2s;
}
.ficha-btn:hover {
  color: var(--gold-pale);
  border-color: var(--gold);
  gap: 9px;
}

/* Ficha btn for canned wines (outside accordion) */
.ficha-btn-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.60rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 0.5px solid rgba(196,154,46,0.25);
  padding: 7px 14px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.ficha-btn-inline::after { content: '↗'; font-size: 0.65rem; }
.ficha-btn-inline:hover {
  color: var(--gold-pale);
  border-color: var(--gold);
  background: rgba(196,154,46,0.06);
}
