:root {
  --bg: #F5EFE0;
  --bg-warm: #EDE5D4;
  --green-deep: #1E3A12;
  --green-mid: #2A4D1E;
  --green-light: #4A7A2E;
  --amber: #C17F3A;
  --amber-light: #D4A36A;
  --cream: #FAF7F0;
  --text: #1A1A12;
  --text-muted: #4A4A38;
  --text-light: #7A7A5E;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* — Site Header — */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid rgba(30, 58, 18, 0.12);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--green-deep);
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  gap: 2.5rem;
}

.site-nav a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.site-nav a:hover { color: var(--green-deep); }

/* — Hero — */
.hero {
  padding: 8rem 2rem 5rem;
  background: var(--bg);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--green-deep);
  margin-bottom: 2rem;
}

.hero-lede {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 48ch;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-cta-primary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--green-deep);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
}

.hero-cta-primary:hover {
  background: var(--green-mid);
}

.hero-cta-secondary {
  display: inline-block;
  padding: 0.85rem 2rem;
  border: 1px solid var(--green-deep);
  color: var(--green-deep);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}

.hero-cta-secondary:hover {
  background: var(--green-deep);
  color: var(--cream);
}

.hero-ornament {
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ornament-leaf svg { width: 100%; height: auto; }

.hero-rule {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 3rem;
  border-top: 1px solid rgba(30, 58, 18, 0.15);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.rule-text {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* — Sections — */
.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.section-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--green-deep);
  line-height: 1.15;
  margin-bottom: 3rem;
}

/* — Craft — */
.craft {
  padding: 6rem 2rem;
  background: var(--cream);
}

.craft .section-headline { max-width: 20ch; }

.craft-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
}

.craft-item {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(30, 58, 18, 0.12);
}

.craft-icon {
  margin-bottom: 1.25rem;
}

.craft-item h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 0.75rem;
}

.craft-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* — Philosophy — */
.philosophy {
  padding: 8rem 2rem;
  background: var(--green-deep);
}

.philosophy-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-rule {
  width: 40px;
  height: 1px;
  background: var(--amber);
  margin: 0 auto 3rem;
}

.philosophy-quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 2.5rem;
}

.philosophy-body {
  font-size: 1rem;
  color: rgba(245, 239, 224, 0.75);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.philosophy-body em { font-style: italic; color: var(--cream); }

/* — Sourcing — */
.sourcing {
  padding: 7rem 2rem;
  background: var(--bg-warm);
}

.sourcing-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.sourcing-body {
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.sourcing-body p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 65ch;
  margin-bottom: 1rem;
}

.sourcing-pillars {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pillar {
  padding: 2rem 2.5rem;
  background: var(--cream);
  border: 1px solid rgba(30, 58, 18, 0.1);
}

.pillar-num {
  display: block;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--amber);
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.pillar h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 0.75rem;
}

.pillar p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* — Closing — */
.closing {
  padding: 9rem 2rem;
  background: var(--bg);
  text-align: center;
}

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

.closing-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--green-deep);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.closing-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  max-width: 55ch;
  margin-left: auto;
  margin-right: auto;
}

.closing-brand {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--green-mid);
  margin-top: 3rem;
}

/* — Footer — */
.site-footer {
  padding: 3rem 2rem;
  background: var(--green-deep);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  margin-bottom: 1.5rem;
}

.footer-wordmark {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(245, 239, 224, 0.5);
}

.footer-meta p {
  font-size: 0.7rem;
  color: rgba(245, 239, 224, 0.3);
  line-height: 1.6;
  max-width: 60ch;
}

/* — Responsive — */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-ornament { display: none; }
  .site-nav { gap: 1.5rem; }
  .site-nav a { font-size: 0.7rem; }
  .craft-grid { grid-template-columns: 1fr; }
  .sourcing-pillars { grid-template-columns: 1fr; }
  .header-inner { padding: 1rem 1.25rem; }
  .hero { padding: 7rem 1.25rem 3rem; }
  .craft, .sourcing, .closing { padding: 4rem 1.25rem; }
  .philosophy { padding: 5rem 1.25rem; }
}

@media (max-width: 480px) {
  .site-nav { display: none; }
}