:root {
  --bg: #f5f0e8;
  --bg-alt: #ede8de;
  --fg: #1a1a18;
  --fg-muted: #6b6b62;
  --accent: #1a3d2e;
  --accent-light: #244f3b;
  --gold: #c9a84c;
  --white: #ffffff;
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ── */
.hero {
  background: var(--accent);
  color: var(--white);
  padding: 96px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.hero-inner {
  max-width: 720px;
  margin-bottom: 64px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
}

.lede {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  max-width: 580px;
  line-height: 1.7;
}

.hero-visual {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 12px;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 130px;
}

.stat-number {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 80px 48px;
  background: var(--bg);
}

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

.statement {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-style: italic;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.5;
  margin-bottom: 36px;
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 28px;
}

.tag-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.tag {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--fg-muted);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

/* ── PRODUCTS ── */
.products {
  padding: 80px 48px;
  background: var(--bg-alt);
}

.products-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.products h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 52px;
}

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

.product-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 32px;
  transition: box-shadow 0.2s ease;
}

.product-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.product-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: var(--gold);
  border-radius: 10px;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.product-card h3 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 10px;
}

.product-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.03em;
}

/* ── HOW ── */
.how {
  padding: 80px 48px;
  background: var(--accent);
  color: var(--white);
}

.how-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.how .section-label {
  color: var(--gold);
}

.how h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 56px;
}

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

.step {
  position: relative;
}

.step::after {
  content: '';
  position: absolute;
  top: 28px;
  right: -20px;
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.step:last-child::after {
  display: none;
}

.step-num {
  display: block;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 3rem;
  font-weight: 400;
  color: rgba(201, 168, 76, 0.3);
  line-height: 1;
  margin-bottom: 16px;
}

.step h3 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}

.step p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ── CLOSING ── */
.closing {
  padding: 96px 48px;
  background: var(--bg);
}

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

.closing-statement {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg-muted);
}

/* ── FOOTER ── */
footer {
  padding: 40px 48px;
  background: var(--bg-alt);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

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

.brand-name {
  display: block;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 4px;
}

.brand-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.footer-note p {
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero {
    padding: 72px 28px 64px;
  }
  .manifesto,
  .products,
  .how,
  .closing {
    padding: 64px 28px;
  }
  footer {
    padding: 32px 28px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .step-row {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .step::after {
    display: none;
  }
  .hero-visual {
    gap: 12px;
  }
  .stat-card {
    min-width: 100px;
    padding: 16px 20px;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .lede {
    font-size: 1rem;
  }
}