/* =========================================================
   Bosco Alle Vigne — Landing styles
   Palette: terracotta · bordeaux · gold · cream
   ========================================================= */

:root {
  --bordeaux: #5c1a2b;
  --bordeaux-dark: #43121f;
  --terracotta: #b5572f;
  --terracotta-light: #c2643a;
  --gold: #c9a24b;
  --gold-soft: #d9bd72;
  --cream: #f6efe1;
  --cream-dark: #ece2cf;
  --ink: #2a2020;
  --ink-soft: #5b4f4a;
  --white: #fffdf8;
  --line: rgba(92, 26, 43, 0.14);

  --ff-serif: "Playfair Display", Georgia, serif;
  --ff-display: "Cormorant Garamond", Georgia, serif;
  --ff-sans: "Montserrat", system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --radius: 14px;
  --shadow: 0 18px 50px -24px rgba(67, 18, 31, 0.45);
  --shadow-sm: 0 8px 24px -14px rgba(67, 18, 31, 0.4);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- typography ---------- */
h1, h2, h3, h4 { font-family: var(--ff-serif); font-weight: 600; line-height: 1.15; color: var(--bordeaux-dark); letter-spacing: -0.01em; }
.section-title { font-size: clamp(2rem, 4.5vw, 3.1rem); margin: 0.3em 0 0.5em; }
.section-title::after { content: ""; display: block; width: 64px; height: 2px; background: var(--gold); margin-top: 0.5em; }
.section-head .section-title::after { margin-left: auto; margin-right: auto; }
.eyebrow {
  font-family: var(--ff-sans);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--terracotta);
}
.lead { font-size: 1.12rem; color: var(--ink-soft); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  font-family: var(--ff-sans); font-weight: 600; font-size: 0.92rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.95em 2em; border-radius: 50px;
  transition: all 0.35s var(--ease); cursor: pointer;
  border: 1.5px solid transparent;
}
.btn-primary { background: var(--bordeaux); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--bordeaux-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(255, 253, 248, 0.6); }
.btn-ghost:hover { background: rgba(255, 253, 248, 0.12); border-color: var(--cream); }
.btn-outline { background: transparent; color: var(--bordeaux); border-color: var(--line); }
.btn-outline:hover { border-color: var(--gold); color: var(--terracotta); }
.btn-block { width: 100%; }

/* ---------- sections ---------- */
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section-head .eyebrow,
.section-head .section-title { text-align: center; }
.section-intro { color: var(--ink-soft); font-size: 1.08rem; margin-top: 0.6rem; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all 0.4s var(--ease);
  background: linear-gradient(180deg, rgba(43, 12, 22, 0.55), rgba(43, 12, 22, 0));
}
.site-header.scrolled {
  background: rgba(246, 239, 225, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 30px -18px rgba(67, 18, 31, 0.5);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 84px; transition: height 0.4s var(--ease); }
.site-header.scrolled .nav-inner { height: 68px; }

.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--ff-serif); font-weight: 600; font-size: 1.18rem; color: var(--cream); transition: color 0.4s var(--ease); }
.brand-sub { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-soft); }
.site-header.scrolled .brand-name { color: var(--bordeaux-dark); }
.site-header.scrolled .brand-sub { color: var(--terracotta); }

.nav-links { display: flex; gap: 1.8rem; }
.nav-links a {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cream); position: relative; padding: 0.3em 0; transition: color 0.3s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
  background: var(--gold); transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--gold-soft); }
.nav-links a:hover::after { width: 100%; }
.site-header.scrolled .nav-links a { color: var(--ink); }
.site-header.scrolled .nav-links a:hover { color: var(--terracotta); }

.nav-actions { display: flex; align-items: center; gap: 0.8rem; position: relative; z-index: 95; }
.lang-switch { display: flex; gap: 2px; }
.lang-btn {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em;
  color: var(--cream); padding: 0.4em 0.55em; border-radius: 6px; opacity: 0.7; transition: all 0.3s;
}
.lang-btn:hover { opacity: 1; }
.lang-btn.is-active { background: var(--gold); color: var(--bordeaux-dark); opacity: 1; }
.site-header.scrolled .lang-btn { color: var(--ink-soft); }
.site-header.scrolled .lang-btn.is-active { color: var(--bordeaux-dark); }

.cart-btn {
  position: relative; color: var(--cream); padding: 0.4em; transition: color 0.3s;
  display: grid; place-items: center;
}
.site-header.scrolled .cart-btn { color: var(--bordeaux-dark); }
.cart-count {
  position: absolute; top: -4px; right: -6px;
  background: var(--terracotta); color: #fff;
  font-size: 0.62rem; font-weight: 700;
  min-width: 17px; height: 17px; border-radius: 9px;
  display: grid; place-items: center; padding: 0 4px;
  transform: scale(0); transition: transform 0.3s var(--ease);
}
.cart-count.show { transform: scale(1); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: all 0.3s var(--ease); }
.site-header.scrolled .menu-toggle span { background: var(--bordeaux-dark); }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; z-index: 0; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -1;
}
.hero-fallback {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: -1; display: none;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.5) 45%, rgba(0, 0, 0, 0.85) 100%),
    radial-gradient(ellipse at 50% 40%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; color: var(--cream); max-width: 880px; padding-top: 80px; }
.hero-eyebrow {
  text-transform: uppercase; letter-spacing: 0.34em; font-size: 0.78rem; font-weight: 600;
  color: var(--gold-soft); margin-bottom: 1.2rem;
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
  animation: rise 1s var(--ease) both;
}
.hero-title {
  font-family: var(--ff-serif); font-weight: 700;
  font-size: clamp(2.8rem, 8vw, 6rem); line-height: 1; letter-spacing: 0.01em;
  color: var(--cream); text-shadow: 0 4px 60px rgba(0,0,0,0.7), 0 2px 10px rgba(0,0,0,0.5);
  margin-bottom: 0.4rem;
  animation: rise 1s var(--ease) 0.15s both;
}
.hero-tagline {
  font-family: var(--ff-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.2rem, 3vw, 1.9rem); color: var(--gold-soft);
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.55);
  animation: rise 1s var(--ease) 0.3s both;
}
.hero-sub {
  font-size: 1.05rem; max-width: 620px; margin: 0 auto 2.2rem; color: rgba(246, 239, 225, 0.9);
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
  animation: rise 1s var(--ease) 0.45s both;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: rise 1s var(--ease) 0.6s both; }

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

.hero-dots { position: absolute; bottom: 5.5rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.6rem; z-index: 3; }
.hero-dots button { width: 9px; height: 9px; border-radius: 50%; background: rgba(246, 239, 225, 0.4); transition: all 0.3s; }
.hero-dots button.is-active { background: var(--gold); width: 28px; border-radius: 6px; }

.hero-scroll {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); z-index: 3;
  width: 26px; height: 44px; border: 1.5px solid rgba(246, 239, 225, 0.6); border-radius: 14px;
  display: grid; place-items: start center; padding-top: 8px;
}
.hero-scroll span { width: 3px; height: 8px; background: var(--cream); border-radius: 2px; animation: scrolldot 1.8s infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(-4px); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(12px); } 100% { opacity: 0; } }

/* =========================================================
   ABOUT
   ========================================================= */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 460px; object-fit: cover; }
.about-media-2 {
  position: absolute; bottom: -40px; right: -24px; width: 48%; height: 240px;
  border: 6px solid var(--cream); border-radius: 10px;
}
.about-text .lead { margin-bottom: 2rem; }
.usp-list { display: grid; gap: 1.1rem; }
.usp-list li { display: flex; gap: 1rem; align-items: flex-start; }
.usp-ic { font-size: 1.6rem; line-height: 1; flex-shrink: 0; width: 48px; height: 48px; display: grid; place-items: center; background: var(--cream-dark); border-radius: 12px; }
.usp-list h3 { font-size: 1.05rem; font-family: var(--ff-sans); font-weight: 600; color: var(--bordeaux); margin-bottom: 0.1em; }
.usp-list p { font-size: 0.92rem; color: var(--ink-soft); }

/* =========================================================
   WINES
   ========================================================= */
.wines { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%); padding-top: clamp(2rem, 4vw, 3rem); }
.wine-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.wine-grid-2 { grid-template-columns: repeat(2, 1fr); }
.wine-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all 0.4s var(--ease);
  display: flex; flex-direction: column; border: 1px solid var(--line); position: relative;
}
.wine-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.wine-card-art { border-color: var(--gold); }
.art-ribbon {
  position: absolute; top: 14px; right: -4px; z-index: 4;
  background: var(--gold); color: var(--bordeaux-dark);
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.45em 0.9em; border-radius: 4px 0 0 4px; box-shadow: var(--shadow-sm);
}
.wine-visual {
  height: 330px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.wines .wine-visual { background: #000 !important; }
.wine-visual::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 115%, rgba(0,0,0,0.34), transparent 62%); pointer-events: none; }
.wine-doc { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); z-index: 3; font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-soft); font-weight: 700; background: rgba(0,0,0,0.22); padding: 0.35em 0.85em; border-radius: 50px; white-space: nowrap; }
.wine-year { position: absolute; top: 16px; right: 14px; z-index: 3; font-size: 0.72rem; color: rgba(255,253,248,0.85); letter-spacing: 0.1em; font-weight: 600; }
.wine-bottle { position: relative; z-index: 2; max-height: 90%; max-width: 78%; object-fit: contain; filter: drop-shadow(0 14px 20px rgba(0,0,0,0.4)); }
.wine-body .wine-name { font-family: var(--ff-serif); font-size: 1.5rem; margin: 0 0 0.5em; }
.wine-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.wine-varietal { font-size: 0.82rem; color: var(--bordeaux); font-weight: 600; margin-bottom: 0.7rem; padding-bottom: 0.7rem; border-bottom: 1px solid var(--line); }
.wine-meta { display: flex; gap: 1.1rem; margin-bottom: 0.9rem; font-size: 0.82rem; color: var(--terracotta); font-weight: 600; }
.wine-meta span { display: inline-flex; align-items: center; gap: 0.35rem; }
.wine-notes { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 0.9rem; flex: 1; }
.wine-food { font-size: 0.84rem; color: var(--ink-soft); margin-bottom: 1.3rem; line-height: 1.55; }
.wine-food strong { color: var(--bordeaux); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.72rem; }
.wine-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: auto; }
.wine-price { font-family: var(--ff-serif); font-style: italic; font-size: 1.05rem; color: var(--terracotta); font-weight: 600; }
.wine-add {
  background: var(--bordeaux); color: var(--cream); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.05em; text-transform: uppercase; padding: 0.75em 1.3em; border-radius: 50px;
  transition: all 0.3s var(--ease); display: inline-flex; align-items: center; gap: 0.4em; white-space: nowrap;
}
.wine-add:hover { background: var(--terracotta); transform: translateY(-2px); }

/* ---------- Horizontal catalog cards (photo left, text right) ---------- */
.wines .wine-grid { grid-template-columns: 1fr; gap: 2rem; max-width: 980px; margin-left: auto; margin-right: auto; }
.wines .wine-card { flex-direction: row; align-items: stretch; }
.wines .wine-visual { width: 40%; min-width: 280px; height: auto; min-height: 360px; flex-shrink: 0; }
.wines .wine-bottle { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; max-height: none; object-fit: contain; filter: none; }
.wines .wine-body { flex: 1; padding: 2.2rem 2.4rem; display: flex; flex-direction: column; }
.wines .wine-name { font-size: 1.7rem; }
.wines .wine-notes,
.wines .wine-food { max-width: 58ch; }
.wines .wine-foot { margin-top: auto; }

@media (max-width: 720px) {
  .wines .wine-card { flex-direction: column; }
  .wines .wine-visual { width: 100%; min-width: 0; min-height: 300px; }
  .wines .wine-body { padding: 1.6rem; }
}

/* address labels */
.va-label { color: var(--terracotta); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.78rem; }

/* ---------- ETICHETTA D'AUTORE ---------- */
.author-series { background: var(--bordeaux-dark); color: var(--cream); position: relative; overflow: hidden; }
.author-series::before { content: ""; position: absolute; top: 10%; left: -5%; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(201,162,75,0.15), transparent 70%); }
.author-series .section-head { position: relative; z-index: 2; }
.author-series .eyebrow { color: var(--gold); }
.author-series .section-title { color: var(--cream); }
.author-series .section-title::after { background: var(--gold); }
.author-series .section-intro { color: rgba(246,239,225,0.85); }
.author-artist { position: relative; z-index: 2; margin-top: 1.1rem; font-family: var(--ff-display); font-style: italic; font-size: 1.15rem; color: var(--gold-soft); }
.author-artist b { color: var(--cream); font-style: normal; font-family: var(--ff-sans); font-weight: 600; letter-spacing: 0.03em; }
.author-series .wine-grid { position: relative; z-index: 2; }

/* ---------- COMING SOON ---------- */
.coming-soon { background: var(--cream-dark); padding-top: 0; }
.soon-card { border-radius: var(--radius); overflow: hidden; position: relative; min-height: 300px; display: flex; align-items: center; box-shadow: var(--shadow); background-size: cover; background-position: center; }
.soon-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(28,7,13,0.82) 0%, rgba(28,7,13,0.45) 70%, rgba(28,7,13,0.15) 100%); }
.soon-inner { position: relative; z-index: 2; padding: clamp(2rem, 5vw, 3.2rem); max-width: 640px; color: var(--cream); }
.soon-badge { display: inline-block; background: var(--gold); color: var(--bordeaux-dark); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.5em 1em; border-radius: 50px; margin-bottom: 1.1rem; }
.soon-name { font-family: var(--ff-serif); font-size: clamp(1.8rem, 4vw, 2.4rem); color: var(--cream); margin-bottom: 0.2em; }
.soon-doc { color: var(--gold-soft); font-size: 0.92rem; letter-spacing: 0.05em; margin-bottom: 0.3rem; }
.soon-varietal { color: rgba(246,239,225,0.85); font-size: 0.9rem; margin-bottom: 1rem; }
.soon-text { color: rgba(246,239,225,0.92); margin-bottom: 1.5rem; font-size: 1rem; }
.soon-bottle { position: absolute; right: 4%; bottom: 0; z-index: 2; height: 92%; max-width: 38%; object-fit: contain; filter: drop-shadow(0 16px 26px rgba(0,0,0,0.5)); }

/* ---------- ORDER TERMS ---------- */
.order-terms { background: var(--cream); padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.terms-head { text-align: center; margin-bottom: 2.5rem; }
.terms-head .section-title { text-align: center; }
.terms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.terms-item { background: var(--white); border-radius: var(--radius); padding: 1.8rem 1.5rem; text-align: center; border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; align-items: center; gap: 0.7rem; transition: transform 0.35s var(--ease); }
.terms-item:hover { transform: translateY(-5px); }
.terms-ic { font-size: 1.9rem; }
.terms-item p { font-size: 0.92rem; color: var(--ink-soft); }

/* =========================================================
   QUOTE BAND
   ========================================================= */
.quote-band { background: var(--bordeaux); color: var(--cream); padding: clamp(3.5rem, 7vw, 6rem) 0; text-align: center; position: relative; overflow: hidden; }
.quote-band::before, .quote-band::after { position: absolute; font-family: var(--ff-serif); font-size: 13rem; color: rgba(201, 162, 75, 0.12); line-height: 1; }
.quote-band::before { content: "\201C"; top: -2rem; left: 7%; }
.quote-band::after { content: "\201D"; bottom: -6rem; right: 7%; }
.quote-band blockquote { max-width: 840px; margin: 0 auto; position: relative; z-index: 2; }
.quote-band blockquote p { font-family: var(--ff-display); font-style: italic; font-weight: 500; font-size: clamp(1.4rem, 3vw, 2.05rem); line-height: 1.5; color: var(--cream); }
.quote-band cite { display: block; margin-top: 1.6rem; font-style: normal; font-family: var(--ff-sans); font-size: 0.8rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.quote-band cite::before { content: ""; display: block; width: 44px; height: 1px; background: var(--gold); margin: 0 auto 1.1rem; }

/* ---------- VIDEO ---------- */
.video-section { background: var(--cream); padding-bottom: clamp(2rem, 4vw, 3rem); }
.video-wrap { max-width: 980px; margin: 0 auto; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #000; }
.video-player { display: block; width: 100%; height: auto; }
.production-video { max-width: 340px; margin: 0 auto 3rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #000; }
.production-layout { display: grid; grid-template-columns: 340px 1fr; gap: 3rem; align-items: start; margin-bottom: 3rem; }
.production-layout .production-video { max-width: none; margin: 0; }
.production-steps-list { display: grid; gap: 1.2rem; }
.production-steps-list .process-step { display: flex; gap: 1.2rem; align-items: flex-start; border-top: 2px solid var(--gold); padding-top: 1rem; text-align: left; }
.production-steps-list .process-step h3 { font-size: 1.05rem; margin-bottom: 0.3em; }
.production-steps-list .process-step p { font-size: 0.9rem; color: var(--ink-soft); }
.production-steps-list .step-num { flex-shrink: 0; }

/* =========================================================
   PRODUCTION / GALLERY
   ========================================================= */
.production { background: var(--cream-dark); }
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-bottom: 3rem; }
.process-step { text-align: center; padding: 1.4rem 0.6rem; border-top: 2px solid var(--gold); position: relative; }
.step-num { font-family: var(--ff-serif); font-size: 1.6rem; color: var(--gold); font-weight: 700; }
.process-step h3 { font-size: 0.92rem; font-family: var(--ff-sans); font-weight: 600; color: var(--ink); margin-top: 0.4em; line-height: 1.4; }

.gallery { columns: 3; column-gap: 1rem; }
.gallery-item { break-inside: avoid; margin-bottom: 1rem; border-radius: 10px; overflow: hidden; cursor: pointer; position: relative; }
.gallery-item img { width: 100%; transition: transform 0.7s var(--ease); background: var(--cream-dark); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0; background: rgba(67,18,31,0);
  transition: background 0.4s; pointer-events: none;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { background: rgba(67,18,31,0.25); }
.gallery-item.hidden { display: none; }
.gallery-more-wrap { text-align: center; margin-top: 2.5rem; }

/* =========================================================
   TERROIR
   ========================================================= */
.terroir { padding: 0; min-height: 80vh; display: flex; align-items: center; }
.terroir-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.terroir-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.25) 100%); }
.terroir-content { position: relative; z-index: 2; padding: clamp(4.5rem, 9vw, 8rem) 24px; max-width: 700px; }
.terroir-content .eyebrow { color: var(--gold-soft); }
.terroir-content .section-title { color: var(--cream); }
.terroir-content .section-title::after { background: var(--gold); }
.terroir-content .lead { color: rgba(246, 239, 225, 0.92); }
.terroir-facts { margin-top: 2rem; display: grid; gap: 1rem; }
.terroir-facts li { display: flex; gap: 0.9rem; align-items: center; color: var(--cream); font-size: 1rem; }
.terroir-facts li > span:first-child { font-size: 1.3rem; width: 36px; text-align: center; }

/* =========================================================
   VISIT
   ========================================================= */
.visit { background: var(--cream); }
.visit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.visit-card {
  background: var(--white); border-radius: var(--radius); padding: 2.2rem 1.8rem;
  text-align: center; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease); position: relative;
}
.visit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.visit-card.featured { border-color: var(--gold); background: linear-gradient(180deg, #fffdf8, var(--cream)); }
.visit-ic { font-size: 2.4rem; margin-bottom: 0.8rem; }
.visit-card h3 { font-size: 1.3rem; margin-bottom: 0.6em; }
.visit-card p { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 1.2rem; }
.visit-price { font-family: var(--ff-serif); font-style: italic; color: var(--terracotta); font-size: 1.15rem; font-weight: 600; }
.visit-badge {
  position: absolute; top: 1rem; right: 1rem; background: var(--gold); color: var(--bordeaux-dark);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.4em 0.8em; border-radius: 50px;
}
.visit-cta { text-align: center; margin-top: 3rem; }
.visit-address { margin-top: 1.2rem; color: var(--ink-soft); font-size: 0.95rem; font-style: italic; }

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%); }
.reviews-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 1.8rem; }
.review-card { background: var(--white); border-radius: var(--radius); padding: 2.2rem; border: 1px solid var(--line); box-shadow: var(--shadow-sm); text-align: center; }
.review-quote { display: flex; flex-direction: column; justify-content: center; text-align: left; }
.stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 0.15em; }
.review-score { font-family: var(--ff-serif); font-size: 2.6rem; color: var(--bordeaux); font-weight: 700; margin: 0.2em 0; }
.review-score span { font-size: 1.2rem; color: var(--ink-soft); }
.review-card p { color: var(--ink-soft); font-size: 0.95rem; }
.quote { font-family: var(--ff-display); font-style: italic; font-size: 1.5rem; line-height: 1.5; color: var(--bordeaux-dark) !important; }
.review-source { display: block; margin-top: 1rem; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--terracotta); }

/* =========================================================
   NEWSLETTER
   ========================================================= */
.newsletter { background: var(--bordeaux-dark); position: relative; overflow: hidden; }
.newsletter::before { content: ""; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(201,162,75,0.18), transparent 70%); }
.newsletter-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; position: relative; z-index: 2; }
.newsletter-text .eyebrow { color: var(--gold); }
.newsletter-text .section-title { color: var(--cream); }
.newsletter-text .section-title::after { background: var(--gold); }
.newsletter-bonus { color: var(--gold-soft); font-family: var(--ff-display); font-style: italic; font-size: 1.2rem; margin-top: 0.5rem; }
.newsletter-form { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1; min-width: 220px; padding: 1em 1.4em; border-radius: 50px;
  border: 1.5px solid rgba(246, 239, 225, 0.25); background: rgba(246, 239, 225, 0.08);
  color: var(--cream); font-family: inherit; font-size: 0.95rem; transition: border 0.3s;
}
.newsletter-form input::placeholder { color: rgba(246, 239, 225, 0.5); }
.newsletter-form input:focus { outline: none; border-color: var(--gold); }
.form-msg { width: 100%; margin-top: 0.6rem; font-size: 0.88rem; color: var(--gold-soft); min-height: 1.2em; }
.form-msg.ok { color: var(--gold); }

/* =========================================================
   CONTACT FORM
   ========================================================= */
.contact-section { background: var(--cream); }
.contact-form { max-width: 640px; margin: 0 auto; display: grid; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--bordeaux); }
.form-field input, .form-field textarea {
  font-family: inherit; font-size: 0.95rem; padding: 0.8em 1em;
  border: 1.5px solid var(--line); border-radius: 10px; background: var(--white);
  color: var(--ink); transition: border 0.3s; resize: vertical;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--gold); }
.contact-form .smart-captcha { min-height: 52px; }
.contact-form .btn { justify-self: start; }
.form-status { font-size: 0.9rem; min-height: 1.2em; color: var(--ink-soft); }
.form-status.ok { color: #2e7d32; }
.form-status.err { color: #c62828; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: #321017; color: rgba(246, 239, 225, 0.7); padding: 4rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(246, 239, 225, 0.12); }
.footer-brand .brand-name { color: var(--cream); display: block; font-size: 1.4rem; margin-bottom: 0.6rem; }
.footer-brand p { font-size: 0.92rem; max-width: 280px; }
.footer-col h4 { color: var(--cream); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; font-family: var(--ff-sans); margin-bottom: 1rem; font-weight: 600; }
.footer-col a { display: block; font-size: 0.9rem; padding: 0.3em 0; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-info { display: block; font-size: 0.9rem; padding: 0.3em 0; color: rgba(246, 239, 225, 0.75); }
.footer-col p { font-size: 0.9rem; line-height: 1.6; }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1rem; }
.social-link { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(246, 239, 225, 0.25); display: grid; place-items: center; color: var(--cream); transition: all 0.3s var(--ease); }
.social-link:hover { background: var(--gold); color: var(--bordeaux-dark); border-color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; font-size: 0.8rem; flex-wrap: wrap; gap: 0.5rem; }

/* =========================================================
   CART DRAWER
   ========================================================= */
.cart-overlay { position: fixed; inset: 0; background: rgba(43,12,22,0.55); backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: all 0.4s var(--ease); z-index: 200; }
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100%);
  background: var(--cream); z-index: 201; transform: translateX(100%);
  transition: transform 0.45s var(--ease); display: flex; flex-direction: column;
  box-shadow: -20px 0 60px -30px rgba(0,0,0,0.5);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 1.6rem; border-bottom: 1px solid var(--line); }
.cart-head h3 { font-size: 1.3rem; }
.cart-close { font-size: 2rem; line-height: 1; color: var(--ink-soft); transition: color 0.3s; }
.cart-close:hover { color: var(--terracotta); }
.cart-body { flex: 1; overflow-y: auto; padding: 1.2rem 1.6rem; }
.cart-empty { text-align: center; color: var(--ink-soft); margin-top: 3rem; font-style: italic; }
.cart-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); align-items: center; }
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-family: var(--ff-sans); font-size: 0.95rem; font-weight: 600; color: var(--ink); }
.cart-item-info .ci-var { font-size: 0.78rem; color: var(--terracotta); }
.qty { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 0.4rem; border: 1px solid var(--line); border-radius: 50px; padding: 0.15em 0.4em; }
.qty button { width: 24px; height: 24px; border-radius: 50%; font-size: 1rem; color: var(--bordeaux); display: grid; place-items: center; transition: background 0.2s; }
.qty button:hover { background: var(--cream-dark); }
.qty span { font-weight: 600; font-size: 0.85rem; min-width: 16px; text-align: center; }
.cart-item-remove { color: var(--ink-soft); font-size: 1.3rem; line-height: 1; padding: 0 0.3em; transition: color 0.3s; }
.cart-item-remove:hover { color: var(--terracotta); }
.cart-foot { padding: 1.4rem 1.6rem; border-top: 1px solid var(--line); background: var(--cream-dark); }
.cart-note { font-size: 0.78rem; color: var(--ink-soft); text-align: center; margin-bottom: 0.9rem; font-style: italic; }

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(20, 6, 10, 0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.4s var(--ease); padding: 3rem;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 8px; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.lb-close { position: absolute; top: 1.4rem; right: 2rem; color: var(--cream); font-size: 2.6rem; line-height: 1; transition: color 0.3s; }
.lb-close:hover { color: var(--gold); }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); color: var(--cream); font-size: 3.5rem; line-height: 1; padding: 0.5rem; transition: color 0.3s; }
.lb-nav:hover { color: var(--gold); }
.lb-prev { left: 2rem; }
.lb-next { right: 2rem; }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-slide { transition: opacity 0.4s; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { order: 2; max-width: 560px; margin: 0 auto; }
  .about-media-2 { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; }
  .terroir-content { max-width: 100%; }
}

@media (max-width: 820px) {
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 84%);
    background: var(--cream); flex-direction: column; justify-content: center;
    gap: 1.6rem; padding: 2rem; transform: translateX(100%); transition: transform 0.4s var(--ease);
    box-shadow: -20px 0 60px -30px rgba(0,0,0,0.4); z-index: 90;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { color: var(--ink); font-size: 1rem; }
  .nav-links a:hover { color: var(--terracotta); }
  .menu-toggle { display: flex; position: relative; z-index: 95; }
  .menu-toggle.open {
    background: var(--bordeaux-dark);
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 8px;
  }
  .menu-toggle.open span { background: var(--cream); }
  .lang-switch { display: none; }
  .site-header.scrolled .nav-links { background: var(--cream); }

  .wine-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .visit-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .terms-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 0.6rem 1rem; }
  .production-layout { grid-template-columns: 1fr; gap: 2rem; }
  .production-layout .production-video { max-width: 340px; margin: 0 auto; }
  .gallery { columns: 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-dots { bottom: 4.5rem; }
}

@media (max-width: 520px) {
  .container { padding: 0 18px; }
  .gallery { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }
  .process-steps { grid-template-columns: 1fr; }
  .brand-text { display: none; }
  .lb-nav { font-size: 2.2rem; }
  .lb-prev { left: 0.5rem; }
  .lb-next { right: 0.5rem; }
  .terroir-overlay { background: linear-gradient(180deg, rgba(43,12,22,0.85), rgba(43,12,22,0.6)); }
  .soon-bottle { display: none; }
  .soon-inner { max-width: 100%; }
}
