:root {
  --bg: #FDFAF5;
  --bg-alt: #F5EFE6;
  --fg: #1A1208;
  --fg-muted: #6B5B4E;
  --accent: #8B2500;
  --accent-light: #C0392B;
  --border: #E0D5C5;
  --card-bg: #FFFFFF;
  --tag-bg: #F0E8DA;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-brand { display: flex; align-items: center; gap: 10px; }

.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.3px;
  color: var(--fg);
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 48px 72px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.hero-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 440px;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 28px;
}

.hero-badge {
  background: var(--fg);
  color: var(--bg);
  padding: 28px 32px;
  text-align: center;
  width: 160px;
}

.badge-top {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  color: #F5CBA7;
}

.badge-mid {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 4px 0;
}

.badge-bot {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.7;
}

.hero-tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero-tag {
  background: var(--tag-bg);
  border: 1px solid var(--border);
  color: var(--fg-muted);
  font-size: 12px;
  padding: 6px 12px;
  letter-spacing: 0.3px;
}

/* Origin */
.origin {
  padding: 80px 48px;
  background: var(--bg-alt);
}

.origin-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  align-items: start;
}

.section-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--fg);
  margin-bottom: 20px;
}

.section-body {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.origin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-unit {
  font-size: 20px;
}

.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 4px;
  line-height: 1.4;
}

.origin-visual-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 48px;
}

.origin-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 24px;
}

.accent-card {
  background: var(--accent);
  color: #fff;
}

.accent-card .card-title,
.accent-card .card-desc {
  color: #fff;
}

.card-flag {
  margin-bottom: 12px;
  border-radius: 2px;
  overflow: hidden;
}

.card-icon {
  margin-bottom: 12px;
  opacity: 0.7;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--fg);
}

.card-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* Cuts */
.cuts {
  padding: 80px 48px;
  background: var(--bg);
}

.cuts-heading {
  max-width: 500px;
}

.cuts-sub {
  max-width: 560px;
  margin-bottom: 48px;
}

.cuts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cut-card {
  border: 1px solid var(--border);
  overflow: hidden;
}

.cut-visual {
  height: 160px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}

.cut-placeholder {
  opacity: 0.4;
}

.cut-info {
  padding: 24px;
}

.cut-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}

.cut-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.cut-tags {
  display: flex;
  gap: 6px;
}

.cut-tag {
  font-size: 11px;
  background: var(--tag-bg);
  color: var(--fg-muted);
  padding: 4px 8px;
  letter-spacing: 0.3px;
}

/* Trust */
.trust {
  padding: 80px 48px;
  background: var(--fg);
}

.trust-inner {
  max-width: 900px;
  margin: 0 auto;
}

.trust .section-eyebrow {
  color: #F5CBA7;
}

.trust-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.trust-item {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
}

.trust-icon {
  color: #F5CBA7;
  margin-bottom: 16px;
}

.trust-label {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.trust-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* Farms CTA strip (landing page) */
.farms-cta-strip {
  padding: 64px 48px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.farms-cta-strip-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.farms-cta-strip-icon {
  color: var(--accent);
  opacity: 0.85;
}

.farms-cta-strip-eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}

.farms-cta-strip-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  line-height: 1.15;
}

.farms-cta-strip-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 600px;
}

.farms-cta-strip-sub-cn {
  display: block;
  font-size: 14px;
  color: var(--fg-muted);
  margin-top: 8px;
  opacity: 0.75;
}

.farms-cta-strip-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: background 0.2s;
}

.farms-cta-strip-btn:hover {
  background: var(--accent-light);
}

@media (max-width: 900px) {
  .farms-cta-strip { padding: 48px 24px; }
}

/* Closing */
.closing {
  padding: 96px 48px;
  background: var(--bg);
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--fg);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.closing-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.closing-platforms {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.platform-badge {
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  letter-spacing: 0.3px;
}

/* Footer */
.footer {
  padding: 36px 48px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--fg);
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 6px;
}

.footer-note {
  font-size: 12px;
  color: var(--fg-muted);
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 900px) {
  .navbar { padding: 16px 24px; }
  .hero { grid-template-columns: 1fr; padding: 48px 24px; gap: 40px; }
  .hero-visual { align-items: flex-start; }
  .origin { padding: 60px 24px; }
  .origin-grid { grid-template-columns: 1fr; }
  .origin-visual-block { padding-top: 0; }
  .origin-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .cuts { padding: 60px 24px; }
  .cuts-grid { grid-template-columns: 1fr; }
  .trust { padding: 60px 24px; }
  .trust-grid { grid-template-columns: 1fr; gap: 32px; }
  .closing { padding: 60px 24px; }
  .footer { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .origin-stats { grid-template-columns: 1fr; }
}