:root {
  --bg: #FAF7F2;
  --fg: #1C0F0A;
  --accent: #D4622A;
  --accent-light: #F0C4A8;
  --muted: #7A6555;
  --card-bg: #FFFFFF;
  --border: #E8DDD5;
  --tag-bg: #F5EDE7;
  --approve-bg: #1C5C3A;
  --approve-fg: #FFFFFF;
  --edit-bg: #F5EDE7;
  --edit-fg: #7A6555;
}

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

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

/* ── Navigation ── */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

/* ── Hero ── */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 40px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
}
.hero-image-mobile {
  display: none;
}

/* ── Draft Cards ── */
.draft-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(28,15,10,0.06);
}
.draft-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.draft-ai-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent);
  color: white;
  padding: 3px 8px;
  border-radius: 4px;
}
.draft-platform {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.draft-caption {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg);
  margin-bottom: 20px;
}
.draft-actions {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.draft-btn {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.draft-btn-approve { background: var(--approve-bg); color: var(--approve-fg); }
.draft-btn-edit { background: var(--edit-bg); color: var(--edit-fg); }
.draft-btn-dismiss { background: transparent; color: var(--muted); border: 1px solid var(--border); }
.draft-status {
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Section Label ── */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}

/* ── How ── */
.how {
  background: var(--fg);
  padding: 80px 40px;
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.how-inner .section-label { color: var(--accent-light); }
.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.how-step {
  flex: 1;
}
.how-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}
.how-step h3 {
  font-size: 18px;
  font-weight: 600;
  color: #FAF7F2;
  margin-bottom: 8px;
}
.how-step p {
  font-size: 15px;
  color: #A89888;
  line-height: 1.6;
}
.how-arrow {
  color: var(--accent);
  padding-top: 24px;
  flex-shrink: 0;
}

/* ── Features ── */
.features {
  padding: 80px 40px;
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--tag-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.features-note {
  text-align: center;
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

/* ── Draft Showcase ── */
.draftshowcase {
  background: var(--fg);
  padding: 80px 40px;
}
.draftshowcase-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.draftshowcase-inner .section-label { color: var(--accent-light); }
.draftshowcase-desc {
  font-size: 16px;
  color: #A89888;
  margin-bottom: 48px;
  max-width: 560px;
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.showcase-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px;
}
.showcase-day {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.showcase-caption {
  font-size: 15px;
  color: #FAF7F2;
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}
.showcase-status {
  font-size: 11px;
  color: #A89888;
  font-weight: 500;
}

/* ── Testimonials ── */
.testimonials {
  padding: 80px 40px;
}
.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.testimonial-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  background: var(--card-bg);
}
.testimonial-quote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg);
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-author {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.testimonials-guard {
  background: var(--tag-bg);
  border-radius: 12px;
  padding: 28px 32px;
  border-left: 4px solid var(--accent);
}
.testimonials-guard p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Closing ── */
.closing {
  padding: 96px 40px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, #F0E8E0 100%);
}
.closing-inner {
  max-width: 720px;
  margin: 0 auto;
}
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
}
.footer-copy {
  font-size: 13px;
  color: var(--muted);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    gap: 40px;
  }
  .hero-image-mobile { display: block; }
  .hero-image-mobile img {
    width: 100%;
    border-radius: 12px;
    max-height: 280px;
    object-fit: cover;
  }
  .how-steps {
    flex-direction: column;
    gap: 24px;
  }
  .how-arrow { display: none; }
  .features-grid,
  .showcase-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .features, .how, .draftshowcase, .testimonials, .closing, .footer {
    padding: 56px 24px;
  }
  .nav { padding: 16px 24px; }
}