/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sand:     #F5F0E8;
  --forest:   #1B4D2E;
  --terra:    #C4673A;
  --cream:    #FAF8F3;
  --ink:      #1C1C1A;
  --muted:    #6B6B5E;
  --border:   #E0D9CC;
  --white:    #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Bitter', serif;
  font-weight: 700;
  line-height: 1.2;
}

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}

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

.wordmark {
  font-family: 'Bitter', serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: -0.01em;
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

nav a:hover { color: var(--ink); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 20, 15, 0.88) 0%,
    rgba(20, 20, 15, 0.35) 55%,
    rgba(20, 20, 15, 0.05) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  background: rgba(196, 103, 58, 0.15);
  border: 1px solid rgba(196, 103, 58, 0.3);
  padding: 0.35rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  color: var(--white);
  max-width: 14ch;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.hero-lede {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 54ch;
  line-height: 1.7;
}

/* === STATS === */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}

.stat {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.stat:last-child { border-right: none; }

.stat-number {
  font-family: 'Bitter', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}

/* === HOW IT WORKS === */
.how-it-works {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.75rem;
}

.how-it-works h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--ink);
  max-width: 22ch;
  margin-bottom: 3.5rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}

.step {
  padding: 2.5rem 2.5rem 2.5rem 0;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.step:nth-child(3) { border-right: none; }
.step:nth-child(2), .step:nth-child(3) { padding-left: 2.5rem; }

.step-num {
  font-family: 'Bitter', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.step h3 {
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.step p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}

/* === PRODUCTS === */
.products-section {
  background: var(--sand);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
}

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

.products-text h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--ink);
  margin-bottom: 1.5rem;
  max-width: 20ch;
}

.products-text p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.products-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

/* === CLOSING === */
.closing {
  padding: 7rem 2rem;
  background: var(--forest);
}

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

.closing h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--white);
  max-width: 26ch;
  margin-bottom: 2rem;
  font-style: italic;
}

.closing p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 52ch;
  line-height: 1.8;
}

.closing p + p { margin-top: 1rem; }

.closing-tagline {
  font-family: 'Bitter', serif !important;
  font-size: 1.4rem !important;
  color: var(--terra) !important;
  font-weight: 700 !important;
  margin-top: 2.5rem !important;
}

/* === FOOTER === */
footer {
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--cream);
}

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

.footer-brand .wordmark {
  color: var(--forest);
  font-size: 1.15rem;
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.3rem;
  max-width: 28ch;
}

.footer-links {
  font-size: 0.78rem;
  color: var(--muted);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-bottom: none; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; padding-left: 0; }
  .products-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .products-image-wrap { order: -1; }
  .products-img { height: 240px; }
}

@media (max-width: 600px) {
  .hero { min-height: 75vh; }
  .hero-content { padding: 3rem 1.25rem 2.5rem; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .how-it-works, .products-section, .closing { padding: 4rem 1.25rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}