:root {
  --bg: #faf6f1;
  --bg-warm: #f3ece3;
  --fg: #2c1810;
  --fg-muted: #6b5346;
  --accent: #c45d3e;
  --accent-soft: #e8956e;
  --cream: #f9f1e7;
  --sage: #7a9e7e;
  --indigo: #4a5480;
  --berry: #8e4162;
  --gold: #c9a84c;
  --stitch: #d4c4b0;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2rem;
}

.hero-grid {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 3px;
  opacity: 0.12;
  transform: rotate(-6deg);
  pointer-events: none;
}

.hero-patch {
  border-radius: 2px;
}

.hero-patch.p1 { background: var(--accent); }
.hero-patch.p2 { background: var(--sage); }
.hero-patch.p3 { background: var(--indigo); }
.hero-patch.p4 { background: var(--gold); }
.hero-patch.p5 { background: var(--berry); }
.hero-patch.p6 { background: var(--accent-soft); }
.hero-patch.p7 { background: var(--sage); }
.hero-patch.p8 { background: var(--indigo); }
.hero-patch.p9 { background: var(--gold); }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  text-align: center;
}

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

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== FEATURES ===== */
.features {
  background: var(--bg-warm);
  padding: 6rem 2rem;
  border-top: 1px solid var(--stitch);
  border-bottom: 1px solid var(--stitch);
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.feature-card {
  padding: 2rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--stitch);
  border-radius: 8px;
}

.feature-icon {
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 1rem;
  line-height: 1;
}

.feature-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== HOW SECTION ===== */
.how {
  padding: 6rem 2rem;
}

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

.how h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 3.5rem;
  color: var(--fg);
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
}

.how-block {
  padding: 1.5rem;
}

.how-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.how-block:first-child .how-label {
  background: var(--stitch);
  color: var(--fg-muted);
}

.how-block:last-child .how-label {
  background: var(--accent);
  color: #fff;
}

.how-block p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.how-divider {
  width: 1px;
  background: var(--stitch);
  min-height: 100%;
}

/* ===== CLOSING ===== */
.closing {
  background: var(--fg);
  color: var(--bg);
  padding: 6rem 2rem;
}

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

.closing h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.closing h2 em {
  font-style: italic;
  color: var(--accent-soft);
}

.closing p {
  font-size: 1.05rem;
  color: var(--stitch);
  line-height: 1.75;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--fg);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.footer-brand {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: var(--stitch);
}

.footer-sep {
  margin: 0 0.5rem;
  opacity: 0.4;
}

.footer-note {
  opacity: 0.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .features-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .how-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .how-divider {
    width: 100%;
    height: 1px;
    min-height: unset;
    margin: 1rem 0;
  }

  .hero {
    min-height: 80vh;
    padding: 4rem 1.5rem;
  }

  .features { padding: 4rem 1.5rem; }
  .how { padding: 4rem 1.5rem; }
  .closing { padding: 4rem 1.5rem; }
}