/* =========================================================
   ARANJUEZ — Shared stylesheet
   1976 · 2026
   ========================================================= */

:root {
  --paper: #F5F0E6;
  --paper-warm: #ECE4D2;
  --soil: #14110F;
  --soil-soft: #4D453E;
  --soil-mid: #2A2521;
  --tannat: #3D1218;
  --tannat-deep: #260A0F;
  --insignia: #B8893A;
  --insignia-soft: #D4B074;
  --rule: rgba(20, 17, 15, 0.15);
  --rule-light: rgba(245, 240, 230, 0.18);
}

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

body {
  font-family: 'Outfit', sans-serif;
  background: var(--paper);
  color: var(--soil);
  font-weight: 300;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.10 0 0 0 0 0.08 0 0 0 0 0.07 0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}

a { color: inherit; }

img { max-width: 100%; display: block; }

.wrap {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 64px;
  position: relative;
  z-index: 2;
}

.wrap-narrow {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 64px;
  position: relative;
  z-index: 2;
}

/* =========================================================
   NAV
   ========================================================= */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 28px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: all 0.5s ease;
  color: var(--paper);
  mix-blend-mode: difference;
}

nav.solid {
  mix-blend-mode: normal;
  background: rgba(245, 240, 230, 0.94);
  backdrop-filter: blur(16px);
  color: var(--soil);
  padding: 18px 64px;
  border-bottom: 1px solid var(--rule);
}

nav.always-solid {
  mix-blend-mode: normal;
  background: rgba(245, 240, 230, 0.94);
  backdrop-filter: blur(16px);
  color: var(--soil);
  border-bottom: 1px solid var(--rule);
}

.wordmark {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 300;
  font-size: 24px;
  letter-spacing: 0.06em;
  color: inherit;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 44px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  color: inherit;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  transition: opacity 0.3s ease;
  position: relative;
}

.nav-links a:hover { opacity: 0.6; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--insignia);
}

.lang {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  display: flex;
  gap: 8px;
}

.lang span { cursor: pointer; opacity: 0.5; transition: opacity 0.3s ease; }
.lang span.on { opacity: 1; }
.lang span:hover { opacity: 1; }

/* =========================================================
   TYPOGRAPHY UTILITIES
   ========================================================= */

.eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--insignia);
}

.eyebrow::before {
  content: '— ';
  color: var(--insignia);
}

.eyebrow.tannat { color: var(--tannat); }
.eyebrow.tannat::before { color: var(--insignia); }

.fraunces {
  font-family: 'Fraunces', serif;
}

.italic-soft {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'wght' 250;
}

.door-link {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--soil);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--tannat);
  transition: gap 0.4s ease;
  font-weight: 400;
}

.door-link::after {
  content: '→';
  transition: transform 0.4s ease;
}

.door-link:hover { gap: 24px; }
.door-link:hover::after { transform: translateX(8px); }

.door-link.light {
  color: var(--paper);
  border-bottom-color: var(--insignia);
}

/* =========================================================
   HERO — Full bleed (homepage)
   ========================================================= */

.hero {
  position: relative;
  height: 100vh;
  min-height: 760px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 45%;
  z-index: 0;
  animation: heroIn 3s ease-out;
}

@keyframes heroIn {
  from { transform: scale(1.06); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.hero-tag {
  position: absolute;
  top: 50%;
  left: 64px;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: rgba(245, 240, 230, 0.75);
  text-transform: uppercase;
  z-index: 3;
  opacity: 0;
  animation: fadeIn 1.2s 1.2s ease-out forwards;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--paper);
  padding: 0 64px 88px;
  text-align: center;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 50, 'wght' 250;
  font-size: clamp(72px, 11vw, 200px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--paper);
}

.hero h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px);
  animation: wordIn 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero h1 .word:nth-child(1) { animation-delay: 0.3s; }
.hero h1 .word:nth-child(2) { animation-delay: 0.55s; }

.hero h1 .italic {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'wght' 250;
  color: var(--insignia-soft);
}

@keyframes wordIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn { to { opacity: 1; } }

.hero-foot {
  position: absolute;
  bottom: 36px;
  left: 64px;
  right: 64px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 3;
  opacity: 0;
  animation: fadeIn 1.2s 1.6s ease-out forwards;
}

.hero-foot-left,
.hero-foot-right {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(245, 240, 230, 0.7);
  text-transform: uppercase;
}

.hero-foot-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.scroll-arrow {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, rgba(245, 240, 230, 0.7), rgba(245, 240, 230, 0));
  animation: scrollLine 2.4s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.6); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* =========================================================
   PAGE HERO — Half-height, content-led (inner pages)
   ========================================================= */

.page-hero {
  position: relative;
  min-height: 70vh;
  padding: 200px 0 100px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 17, 15, 0.4) 0%, rgba(20, 17, 15, 0.1) 30%, rgba(20, 17, 15, 0.85) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--paper);
  width: 100%;
}

.page-hero .eyebrow {
  color: var(--insignia-soft);
  margin-bottom: 32px;
}

.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 60, 'wght' 250;
  font-size: clamp(56px, 8vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--paper);
  max-width: 1200px;
}

.page-hero h1 em {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'wght' 250;
  color: var(--insignia-soft);
}

.page-hero-sub {
  margin-top: 40px;
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 60, 'SOFT' 80, 'wght' 300;
  font-style: italic;
  font-size: clamp(20px, 2vw, 28px);
  color: rgba(245, 240, 230, 0.85);
  max-width: 700px;
  line-height: 1.45;
  letter-spacing: -0.005em;
}

/* =========================================================
   FRAMES — Cinematic homepage sections
   ========================================================= */

.frame {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0;
}

.frame-statement {
  background: var(--paper);
  text-align: center;
}

.frame-statement .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
}

.frame-statement .eyebrow { margin-bottom: 56px; }

.frame-statement h2 {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'wght' 250;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 1.1;
  color: var(--soil);
  letter-spacing: -0.025em;
}

.frame-statement h2 em {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'wght' 250;
  color: var(--tannat);
}

.frame-statement .below {
  margin-top: 72px;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soil-soft);
  font-family: 'Geist Mono', monospace;
}

.frame-statement .below em {
  color: var(--insignia);
  font-style: normal;
}

/* Image-led split */
.frame-split {
  background: var(--soil);
  color: var(--paper);
  padding: 0;
  overflow: hidden;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 100vh;
  width: 100%;
}

.split-grid.reverse { grid-template-columns: 1fr 1.1fr; }
.split-grid.reverse .split-image { order: 2; }
.split-grid.reverse .split-text { order: 1; }

.split-image {
  background-size: cover;
  background-position: center;
  position: relative;
}

.split-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 17, 15, 0.25) 0%, rgba(20, 17, 15, 0.55) 100%);
}

.split-text {
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-text .eyebrow { color: var(--insignia-soft); margin-bottom: 32px; }

.split-text h2 {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 70, 'wght' 250;
  font-size: clamp(56px, 6.5vw, 120px);
  line-height: 0.95;
  margin-bottom: 48px;
  color: var(--paper);
  letter-spacing: -0.03em;
}

.split-text h2 em {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'wght' 250;
  color: var(--insignia-soft);
}

.split-text p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(245, 240, 230, 0.78);
  margin-bottom: 32px;
  max-width: 520px;
}

.split-meta {
  display: flex;
  gap: 64px;
  margin-bottom: 72px;
  padding-top: 32px;
  border-top: 1px solid rgba(184, 137, 58, 0.3);
}

.split-meta-item { font-family: 'Geist Mono', monospace; }

.split-meta-label {
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--insignia);
  margin-bottom: 8px;
}

.split-meta-value {
  font-size: 18px;
  color: var(--paper);
  font-weight: 400;
}

.split-text .door-link {
  align-self: flex-start;
  color: var(--paper);
  border-bottom-color: var(--insignia);
}

/* =========================================================
   FRAMES — Specific
   ========================================================= */

.frame-wine {
  background: var(--paper-warm);
  text-align: center;
  padding: 160px 0;
}

.frame-wine .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 64px;
}

.wine-tier {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--tannat);
  margin-bottom: 48px;
}

.wine-name-display {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 70, 'wght' 200;
  font-size: clamp(72px, 10vw, 180px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--soil);
  margin-bottom: 8px;
}

.wine-name-display em {
  display: block;
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'wght' 200;
  color: var(--tannat);
}

.wine-quote {
  margin-top: 80px;
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 60, 'SOFT' 100, 'wght' 300;
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.55;
  color: var(--soil-soft);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.005em;
}

.wine-quote-attr {
  margin-top: 32px;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--soil-soft);
}

.frame-wine .door-link { margin-top: 88px; }

.frame-fifty {
  background: var(--paper);
  text-align: center;
  padding: 200px 0;
  position: relative;
}

.frame-fifty::before,
.frame-fifty::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: var(--rule);
}

.frame-fifty::before { top: 0; }
.frame-fifty::after { bottom: 0; }

.fifty-mark {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 200;
  font-size: clamp(140px, 22vw, 360px);
  line-height: 0.85;
  color: var(--insignia);
  letter-spacing: -0.06em;
  margin-bottom: 24px;
}

.fifty-frame {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--soil-soft);
  text-transform: uppercase;
  margin-bottom: 64px;
}

.fifty-text {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 60, 'SOFT' 100, 'wght' 300;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--soil);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.4;
  letter-spacing: -0.005em;
}

.frame-tribute {
  background: var(--soil);
  color: var(--paper);
  text-align: center;
  padding: 180px 64px;
}

.tribute-mark {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--insignia);
  margin-bottom: 80px;
}

.tribute-quote {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'wght' 250;
  font-style: italic;
  font-size: clamp(32px, 4.8vw, 72px);
  line-height: 1.2;
  color: var(--paper);
  max-width: 1200px;
  margin: 0 auto 80px;
  letter-spacing: -0.015em;
}

.tribute-cite { font-style: normal; }

.tribute-name {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 8px;
  font-weight: 400;
}

.tribute-life {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--insignia);
}

.frame-trade {
  background: var(--paper);
  padding: 160px 0;
  border-top: 1px solid var(--rule);
}

.frame-trade .inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.frame-trade .eyebrow { color: var(--tannat); }

.frame-trade h2 {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 96, 'SOFT' 70, 'wght' 250;
  font-size: clamp(40px, 4.8vw, 72px);
  line-height: 1.05;
  color: var(--soil);
  letter-spacing: -0.025em;
  margin-top: 24px;
}

.frame-trade h2 em {
  font-style: italic;
  font-variation-settings: 'opsz' 96, 'SOFT' 100, 'wght' 250;
  color: var(--tannat);
}

.frame-trade-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.trade-line {
  font-size: 16px;
  color: var(--soil-soft);
  line-height: 1.65;
  max-width: 480px;
}

/* =========================================================
   ARTICLE / EDITORIAL CONTENT
   ========================================================= */

.section {
  padding: 140px 0;
  position: relative;
}

.section.dark {
  background: var(--soil);
  color: var(--paper);
}

.section.warm {
  background: var(--paper-warm);
}

.section + .section {
  border-top: 1px solid var(--rule);
}

.section.dark + .section,
.section + .section.dark {
  border-top: none;
}

.section-head {
  margin-bottom: 80px;
}

.section-head .eyebrow { margin-bottom: 28px; }

.section-head h2 {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 70, 'wght' 250;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  max-width: 1100px;
  color: var(--soil);
}

.section-head h2 em {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'wght' 250;
  color: var(--tannat);
}

.section.dark .section-head h2 { color: var(--paper); }
.section.dark .section-head h2 em { color: var(--insignia-soft); }

.section-lead {
  margin-top: 32px;
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 60, 'SOFT' 80, 'wght' 300;
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--soil-soft);
  max-width: 740px;
  line-height: 1.5;
  letter-spacing: -0.005em;
}

.section.dark .section-lead { color: rgba(245, 240, 230, 0.75); }

.prose {
  font-size: 17px;
  line-height: 1.7;
  color: var(--soil-soft);
  max-width: 680px;
}

.prose p + p { margin-top: 24px; }

.prose strong {
  font-weight: 500;
  color: var(--soil);
}

.section.dark .prose { color: rgba(245, 240, 230, 0.78); }
.section.dark .prose strong { color: var(--paper); }

/* =========================================================
   TIMELINE (Heritage page)
   ========================================================= */

.timeline {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.timeline-item {
  display: grid;
  grid-template-columns: 180px 1px 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
}

.timeline-year {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 250;
  font-size: 64px;
  color: var(--tannat);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-align: right;
}

.timeline-line {
  position: relative;
  background: var(--rule);
  width: 1px;
  align-self: stretch;
  min-height: 100%;
}

.timeline-line::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--insignia);
}

.timeline-content { padding-bottom: 16px; }

.timeline-title {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 60, 'SOFT' 60, 'wght' 400;
  font-size: 28px;
  color: var(--soil);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.timeline-content p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--soil-soft);
  max-width: 600px;
}

/* =========================================================
   SITES (Terroir page)
   ========================================================= */

.sites {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 64px;
}

.site {
  border-top: 1px solid var(--rule);
  padding: 40px 0;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 32px;
}

.site-name {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 96, 'SOFT' 60, 'wght' 400;
  font-size: 36px;
  color: var(--soil);
  letter-spacing: -0.01em;
}

.site-altitude {
  font-family: 'Geist Mono', monospace;
  font-size: 13px;
  color: var(--insignia);
  letter-spacing: 0.12em;
}

.site-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}

.site-meta-label {
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tannat);
  margin-bottom: 6px;
}

.site-meta-value {
  font-size: 14px;
  color: var(--soil);
}

.site-note {
  font-size: 14px;
  line-height: 1.6;
  color: var(--soil-soft);
  font-style: italic;
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 14, 'SOFT' 100, 'wght' 300;
}

/* =========================================================
   WINES PORTFOLIO (Wines page)
   ========================================================= */

.tier-nav {
  display: flex;
  gap: 4px;
  margin: 60px 0 80px;
  padding: 4px;
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  width: fit-content;
}

.tier-nav button {
  background: transparent;
  border: none;
  padding: 14px 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soil-soft);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 400;
}

.tier-nav button.active,
.tier-nav button:hover {
  background: var(--soil);
  color: var(--paper);
}

.wines-list {
  border-top: 1px solid var(--rule);
}

.wine-row {
  display: grid;
  grid-template-columns: 80px 1fr 2fr 200px;
  gap: 48px;
  padding: 40px 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: padding 0.4s ease;
}

.wine-row:hover {
  padding-left: 16px;
  padding-right: 16px;
}

.wine-row-num {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--insignia);
  letter-spacing: 0.18em;
}

.wine-row-name {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 60, 'SOFT' 60, 'wght' 400;
  font-size: 28px;
  color: var(--soil);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.wine-row-name em {
  font-style: italic;
  font-variation-settings: 'opsz' 60, 'SOFT' 100, 'wght' 400;
  color: var(--tannat);
}

.wine-row-desc {
  font-size: 14px;
  color: var(--soil-soft);
  line-height: 1.55;
}

.wine-row-meta {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--soil-soft);
  letter-spacing: 0.1em;
  text-align: right;
}

.wine-row-meta strong {
  color: var(--tannat);
  font-weight: 500;
}

.wine-row-arrow {
  font-size: 18px;
  color: var(--soil-soft);
  transition: transform 0.4s ease, color 0.4s ease;
}

.wine-row:hover .wine-row-arrow {
  color: var(--tannat);
  transform: translateX(8px);
}

/* =========================================================
   WINE DETAIL PAGE
   ========================================================= */

.wine-hero {
  padding: 200px 0 100px;
  background: var(--paper);
  position: relative;
}

.wine-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.wine-hero-text .eyebrow { color: var(--tannat); margin-bottom: 32px; }

.wine-hero h1 {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 60, 'wght' 250;
  font-size: clamp(64px, 8vw, 144px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--soil);
  margin-bottom: 24px;
}

.wine-hero h1 em {
  display: block;
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'wght' 250;
  color: var(--tannat);
}

.wine-hero-varietal {
  font-family: 'Geist Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soil-soft);
  margin-bottom: 48px;
}

.wine-hero-image {
  aspect-ratio: 3/4;
  background: var(--soil);
  background-size: cover;
  background-position: center;
  position: relative;
}

.wine-actions {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid var(--soil);
  cursor: pointer;
}

.btn-primary {
  background: var(--soil);
  color: var(--paper);
}

.btn-primary:hover {
  background: transparent;
  color: var(--soil);
}

.btn-ghost {
  background: transparent;
  color: var(--soil);
}

.btn-ghost:hover {
  background: var(--soil);
  color: var(--paper);
}

/* Specs grid */
.specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin: 80px 0;
}

.spec-cell {
  padding: 32px 24px;
  border-right: 1px solid var(--rule);
}

.spec-cell:last-child { border-right: none; }

.spec-cell-label {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tannat);
  margin-bottom: 16px;
}

.spec-cell-value {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 60, 'SOFT' 30, 'wght' 400;
  font-size: 28px;
  color: var(--soil);
  letter-spacing: -0.01em;
}

.spec-cell-value small {
  font-size: 14px;
  color: var(--soil-soft);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
}

/* =========================================================
   FORMS (Trade & Contact)
   ========================================================= */

.form-block {
  background: var(--paper-warm);
  padding: 56px 48px;
  border: 1px solid var(--rule);
}

.form-label {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--tannat);
  margin-bottom: 24px;
}

.form-block h3 {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 60, 'SOFT' 60, 'wght' 400;
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 32px;
  color: var(--soil);
  letter-spacing: -0.01em;
}

.form-field { margin-bottom: 20px; }

.form-field label {
  display: block;
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soil-soft);
  margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: var(--soil);
  outline: none;
  transition: border-color 0.3s ease;
  font-weight: 300;
  resize: vertical;
}

.form-field textarea { min-height: 100px; padding: 14px 0; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--tannat);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--soil-soft);
  opacity: 0.5;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-submit {
  width: 100%;
  background: var(--tannat);
  color: var(--paper);
  border: none;
  padding: 18px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  margin-top: 28px;
  transition: background 0.3s ease;
  font-weight: 500;
}

.form-submit:hover { background: var(--tannat-deep); }

/* Trade resources list */
.resources-list {
  list-style: none;
  margin-bottom: 48px;
}

.resources-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}

.resources-list li:first-child { border-top: 1px solid var(--rule); }

.resource-name { color: var(--soil); }

.resource-meta {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--tannat);
}

/* =========================================================
   FOOTER
   ========================================================= */

footer {
  background: var(--soil);
  color: var(--paper);
  padding: 88px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 80px;
  padding: 0 64px;
  max-width: 1680px;
  margin-left: auto;
  margin-right: auto;
}

.footer-brand .wordmark {
  color: var(--paper);
  font-size: 28px;
}

.footer-anniv {
  margin-top: 16px;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--insignia);
}

.footer-brand p {
  font-size: 13px;
  color: rgba(245, 240, 230, 0.5);
  margin-top: 28px;
  line-height: 1.65;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--insignia);
  margin-bottom: 24px;
  font-weight: 400;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 14px; }

.footer-col a {
  color: rgba(245, 240, 230, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  font-weight: 300;
}

.footer-col a:hover { color: var(--paper); }

.footer-bottom {
  border-top: 1px solid rgba(245, 240, 230, 0.1);
  padding: 28px 64px 0;
  max-width: 1680px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(245, 240, 230, 0.4);
}

.footer-bottom .legal { display: flex; gap: 32px; }

.footer-bottom a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover { color: var(--insignia); }

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.4s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1024px) {
  .wrap, .wrap-narrow, nav, nav.solid, nav.always-solid,
  .footer-grid, .footer-bottom { padding-left: 32px; padding-right: 32px; }

  .hero-content, .hero-foot,
  .frame-statement .inner, .frame-wine .inner { padding-left: 32px; padding-right: 32px; }

  .hero-tag { display: none; }

  .nav-links { gap: 24px; }
  .nav-links a:not(.lang) { display: none; }

  .split-grid, .split-grid.reverse { grid-template-columns: 1fr; }
  .split-grid.reverse .split-image { order: 1; }
  .split-grid.reverse .split-text { order: 2; }
  .split-image { min-height: 50vh; }
  .split-text { padding: 80px 32px; }

  .frame-trade .inner { grid-template-columns: 1fr; gap: 48px; padding: 0 32px; }

  .timeline-item { grid-template-columns: 100px 1px 1fr; gap: 32px; }
  .timeline-year { font-size: 40px; }

  .sites { grid-template-columns: 1fr; }

  .wine-row { grid-template-columns: 60px 1fr; gap: 24px; }
  .wine-row-desc, .wine-row-meta { display: none; }

  .wine-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .wine-hero-image { max-width: 400px; aspect-ratio: 3/4; }

  .specs { grid-template-columns: repeat(2, 1fr); }
  .spec-cell { border-right: none; border-bottom: 1px solid var(--rule); }
  .spec-cell:nth-child(odd) { border-right: 1px solid var(--rule); }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .milton-grid { grid-template-columns: 1fr !important; gap: 48px !important; }
  .milton-grid > div:first-child { position: static !important; max-width: 320px; }
  .horizon-grid { grid-template-columns: 1fr !important; gap: 48px !important; }
}

@media (max-width: 640px) {
  .wrap, .wrap-narrow, nav, nav.solid, nav.always-solid,
  .footer-grid, .footer-bottom { padding-left: 24px; padding-right: 24px; }

  .hero-content, .hero-foot { padding-left: 24px; padding-right: 24px; }
  .hero-foot { flex-direction: column; gap: 16px; align-items: flex-start; }

  .split-meta { flex-direction: column; gap: 24px; }

  .form-row { grid-template-columns: 1fr; }

  .specs { grid-template-columns: 1fr; }
  .spec-cell { border-right: none; }
  .spec-cell:nth-child(odd) { border-right: none; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; }

  .timeline-item { grid-template-columns: 1fr; gap: 16px; }
  .timeline-line { display: none; }
  .timeline-year { text-align: left; }
}
