:root {
  --bg: #FAF8F5;
  --fg: #1C1C1C;
  --accent: #C4532A;
  --accent-warm: #E8875A;
  --sage: #6B8E6B;
  --lavender: #8B6BA8;
  --stone: #9A8A7A;
  --border: #E5E0D8;
  --card-bg: #FFFFFF;
  --text-muted: #6A6560;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: '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(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─── */
.nav {
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  font-family: var(--font-display);
}

/* ─── HERO ─── */
.hero {
  padding: 5rem 2.5rem 6rem;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-dump-preview {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.8;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.dump-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--stone);
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.dump-text { font-family: var(--font-display); }
.hero-result { position: relative; }
.result-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--stone);
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: var(--font-body);
}

/* Four column preview */
.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.col {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 1rem 0.85rem;
  min-height: 200px;
}
.col-actions { border-top: 3px solid var(--accent); }
.col-errands { border-top: 3px solid var(--sage); }
.col-creative { border-top: 3px solid var(--lavender); }
.col-noise { border-top: 3px solid var(--stone); }
.col-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
}
.col-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.col-items span {
  font-size: 0.78rem;
  color: var(--fg);
  line-height: 1.4;
  font-family: var(--font-display);
  font-weight: 400;
}

/* ─── HOW IT WORKS ─── */
.howitworks {
  background: var(--fg);
  color: #F5F2EE;
  padding: 5rem 2.5rem;
}
.hiw-inner { max-width: 900px; margin: 0 auto; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  color: #F5F2EE;
}
.hiw-steps { display: flex; flex-direction: column; gap: 2.5rem; }
.step { display: flex; gap: 2rem; align-items: flex-start; }
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-warm);
  line-height: 1;
  min-width: 3.5rem;
  opacity: 0.7;
}
.step-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #F5F2EE;
}
.step-body p { font-size: 0.95rem; color: #A09A93; line-height: 1.7; max-width: 560px; }

/* ─── COLUMNS SECTION ─── */
.columns-section {
  padding: 5rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.cols-inner {}
.cols-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3rem;
  margin-top: -1rem;
}
.col-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.col-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.col-card-icon { margin-bottom: 1.25rem; }
.col-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--fg);
}
.col-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }
.col-card--actions { border-top: 4px solid var(--accent); }
.col-card--errands { border-top: 4px solid var(--sage); }
.col-card--creative { border-top: 4px solid var(--lavender); }
.col-card--noise { border-top: 4px solid var(--stone); }

/* ─── MANIFESTO ─── */
.manifesto {
  background: #F0EBE3;
  padding: 5rem 2.5rem;
  border-top: 1px solid var(--border);
}
.manifesto-inner { max-width: 760px; margin: 0 auto; }
blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 600;
  font-style: italic;
  color: var(--fg);
  line-height: 1.35;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}
.manifesto-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.br-mobile { display: none; }

/* ─── FOOTER ─── */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2.5rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-end; }
.footer-brand { display: flex; flex-direction: column; gap: 0.3rem; }
.footer-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
}
.footer-desc { font-size: 0.85rem; color: var(--text-muted); font-style: italic; font-family: var(--font-display); }
.footer-note { font-size: 0.8rem; color: var(--stone); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-result { display: none; }
  .col-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
}
@media (max-width: 600px) {
  .nav { padding: 1.25rem 1.5rem; }
  .hero { padding: 3rem 1.5rem 4rem; }
  .col-cards { grid-template-columns: 1fr; }
  .howitworks, .columns-section, .manifesto { padding-left: 1.5rem; padding-right: 1.5rem; }
  .four-col { grid-template-columns: repeat(2, 1fr); }
  .col { min-height: 160px; }
  .br-mobile { display: block; }
  .step { gap: 1.25rem; }
  .step-num { font-size: 2.2rem; min-width: 2.5rem; }
}