:root {
  --cream: #F8F4EF;
  --cream-dark: #EDE6DC;
  --olive: #2C3E1F;
  --olive-mid: #3D5A2C;
  --gold: #C4923A;
  --gold-light: #D4AA5E;
  --stone: #8B7355;
  --stone-light: #A89070;
  --charcoal: #1A1A18;
  --white: #FFFFFF;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  mix-blend-mode: difference;
}
.nav-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-badge {
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-image-wrap {
  position: absolute;
  inset: 0;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,26,24,0.85) 0%,
    rgba(26,26,24,0.4) 50%,
    rgba(26,26,24,0.1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 64px 80px;
  max-width: 860px;
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  font-weight: 400;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1.5;
}
.hero-nyt {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nyt-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.nyt-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  letter-spacing: 0.04em;
}

/* Shared section */
.section-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 400;
}
.section-eyebrow.light {
  color: var(--gold-light);
}
.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--olive);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.section-heading.light {
  color: var(--cream);
}
.section-body {
  font-size: 1.05rem;
  color: var(--stone);
  line-height: 1.75;
  max-width: 560px;
  font-weight: 300;
}

/* Terroir */
.terroir {
  background: var(--cream);
  padding: 120px 64px;
}
.terroir-inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.terroir-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--cream-dark);
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--olive);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--stone-light);
  text-transform: uppercase;
}
.terroir-olive-pattern {
  position: relative;
  width: 280px;
  height: 280px;
}
.olive-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--olive);
  opacity: 0.08;
}
.olive-1 { width: 200px; height: 200px; top: 0; right: 0; }
.olive-2 { width: 140px; height: 140px; bottom: 40px; left: 20px; background: var(--gold); opacity: 0.12; }
.olive-3 { width: 80px; height: 80px; top: 60px; left: 80px; }
.olive-4 { width: 50px; height: 50px; bottom: 0; right: 60px; background: var(--stone); opacity: 0.15; }

/* Heritage */
.heritage {
  background: var(--cream-dark);
  padding: 120px 64px;
}
.heritage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.heritage-visual { display: flex; flex-direction: column; gap: 24px; }
.heritage-card {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 28px 32px;
}
.heritage-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--olive);
  margin-bottom: 10px;
}
.heritage-event {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.5;
}

/* Harvest */
.harvest {
  background: var(--olive);
  padding: 120px 64px;
}
.harvest-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.harvest-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin: 60px 0 48px;
  text-align: left;
}
.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 16px;
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
}
.step-body {
  font-size: 0.9rem;
  color: rgba(248,244,239,0.65);
  line-height: 1.7;
}
.harvest-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-top: 40px;
}
.btn-harvest {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 32px;
  background: var(--gold);
  color: var(--charcoal);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
}
.btn-harvest:hover { background: var(--gold-light); }

/* Closing */
.closing {
  background: var(--cream);
  padding: 100px 64px;
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--olive);
  line-height: 1.3;
  margin-bottom: 20px;
}
.closing-attr {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone-light);
  margin-bottom: 48px;
}
.closing-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 32px;
}
.closing-tagline {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}

/* Footer */
.footer {
  background: var(--charcoal);
  padding: 40px 64px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--cream);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 0.72rem;
  color: rgba(248,244,239,0.4);
  letter-spacing: 0.06em;
}
.footer-founded {
  font-size: 0.72rem;
  color: rgba(248,244,239,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
  text-align: right;
}
.footer-link {
  font-size: 0.78rem;
  color: var(--gold-light);
  text-decoration: none;
  display: block;
  text-align: right;
}
.footer-link:hover { text-decoration: underline; }

/* Brand Story Hero */
.bs-hero {
  position: relative;
  height: 90vh;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.bs-hero-image-wrap { position: absolute; inset: 0; }
.bs-hero-image { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.bs-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,24,0.88) 0%, rgba(26,26,24,0.45) 50%, rgba(26,26,24,0.15) 100%);
}
.bs-hero-content {
  position: relative;
  z-index: 10;
  padding: 0 64px 80px;
  max-width: 900px;
}
.bs-hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  font-weight: 400;
}
.bs-hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.bs-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  font-weight: 300;
  max-width: 620px;
  line-height: 1.65;
}

/* Souri Section */
.souri {
  background: var(--cream);
  padding: 120px 64px;
}
.souri-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.souri-facts {
  background: var(--cream-dark);
  border-left: 3px solid var(--gold);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.souri-fact { display: flex; flex-direction: column; gap: 4px; }
.souri-fact-label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}
.souri-fact-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--olive);
  line-height: 1.3;
}

/* Products Showcase */
.bs-products {
  background: var(--cream-dark);
  padding: 100px 64px;
}
.bs-products-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.bs-products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 56px;
}
.bs-product-card {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  overflow: hidden;
}
.bs-product-img-wrap {
  width: 100%;
  height: 260px;
  overflow: hidden;
}
.bs-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.bs-product-card:hover .bs-product-img { transform: scale(1.03); }
.bs-product-info {
  padding: 32px 36px 36px;
}
.bs-product-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 8px;
}
.bs-product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--olive);
  margin-bottom: 8px;
  line-height: 1.2;
}
.bs-product-notes {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  font-style: italic;
}
.bs-product-desc {
  font-size: 0.92rem;
  color: var(--stone);
  line-height: 1.65;
  margin-bottom: 24px;
}
.btn-bs {
  display: inline-block;
  padding: 11px 28px;
  background: var(--olive);
  color: var(--cream);
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
}
.btn-bs:hover { background: var(--olive-mid); }
.btn-bs-accent {
  background: var(--gold);
  color: var(--charcoal);
}
.btn-bs-accent:hover { background: var(--gold-light); }

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero-content { padding: 0 24px 60px; }
  .bs-hero-content { padding: 0 24px 60px; }
  .terroir { padding: 80px 24px; }
  .terroir-inner { grid-template-columns: 1fr; }
  .terroir-olive-pattern { display: none; }
  .heritage { padding: 80px 24px; }
  .heritage-inner { grid-template-columns: 1fr; }
  .souri { padding: 80px 24px; }
  .souri-inner { grid-template-columns: 1fr; }
  .harvest { padding: 80px 24px; }
  .harvest-steps { grid-template-columns: 1fr; }
  .bs-products { padding: 80px 24px; }
  .bs-products-grid { grid-template-columns: 1fr; }
  .closing { padding: 80px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; }
  .footer-meta { text-align: center; }
  .footer-link, .footer-founded { text-align: center; }
  .terroir-stats { gap: 32px; }
}