:root {
  --cream: #F7F3ED;
  --cream-dark: #EEE8E0;
  --forest: #2D4A3E;
  --forest-light: #3D6354;
  --gold: #C8963E;
  --gold-light: #D4AC5A;
  --charcoal: #1E1E1E;
  --gray: #6B6B6B;
  --gray-light: #9A9A9A;
  --white: #FEFEFE;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--cream-dark);
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 64px 48px 80px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-left {
  display: flex;
  justify-content: center;
}
.binder-mockup {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.binder-cover {
  width: 200px;
  height: 56px;
  background: var(--forest);
  border-radius: 8px 8px 4px 4px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
}
.binder-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  flex: 1;
}
.binder-rings {
  display: flex;
  gap: 10px;
}
.ring {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
}
.insert-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  max-width: 240px;
}
.insert {
  width: 30px;
  height: 42px;
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 3px;
  gap: 3px;
}
.insert-active {
  border-color: var(--forest);
  background: #EDF5F1;
}
.day {
  font-size: 8px;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.04em;
}
.insert-active .day { color: var(--forest); }
.pills {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
}
.pill {
  width: 14px;
  height: 5px;
  background: var(--forest);
  border-radius: 2px;
  opacity: 0.5;
}
.pill-sm { width: 10px; }
.hero-right {}
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--forest);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--gray);
  max-width: 440px;
  font-weight: 300;
}

/* FEATURES */
.features {
  background: var(--white);
  padding: 80px 48px;
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 80px;
}
.feature {}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  margin-bottom: 16px;
}
.feature h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.feature p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray);
  font-weight: 300;
}

/* HOW */
.how {
  padding: 80px 48px;
  background: var(--cream-dark);
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
}
.steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--forest);
  opacity: 0.15;
  line-height: 1;
  flex-shrink: 0;
}
.step-content h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.step-content p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray);
  font-weight: 300;
}

/* CLOSING */
.closing {
  padding: 100px 48px;
  background: var(--forest);
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-quote {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  margin-bottom: 40px;
  font-style: italic;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* FOOTER */
.footer {
  background: var(--charcoal);
  padding: 24px 48px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 48px 24px 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-left { justify-content: flex-start; }
  .features { padding: 60px 24px; }
  .features-inner { grid-template-columns: 1fr; gap: 32px; }
  .how { padding: 60px 24px; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 20px 24px; }
  .footer-inner { flex-direction: column; gap: 8px; }
}
@media (max-width: 480px) {
  .nav-tagline { display: none; }
  .hero-headline { font-size: 28px; }
  .hero-sub { font-size: 16px; }
}