/* ── Variables ─────────────────────────────────────────────────────────── */
:root {
  --umber:      #5C3D2E;
  --honey:      #E8A838;
  --sand:       #F5EFE6;
  --espresso:   #2C1810;
  --sage:       #7A9E7E;
  --background: #FAF7F2;
  --card:       #FFFFFF;
  --text:       #2C1810;
  --text-mid:   #6B4F3A;
  --text-light: #9E8272;
  --divider:    #E8DDD4;

  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --max-width: 1100px;
  --radius: 12px;
}

/* ── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--text);
  line-height: 1.7;
}
a { color: var(--umber); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ── Layout ────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Nav ───────────────────────────────────────────────────────────────── */
.site-header {
  border-bottom: 1px solid var(--divider);
  background: var(--background);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--umber);
  text-decoration: none;
}
.nav-logo:hover { text-decoration: none; }
.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
}
.nav-links a:hover { color: var(--umber); text-decoration: none; }

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  background: var(--umber);
  padding: 96px 0 80px;
}
.hero-inner {
  max-width: 700px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 580px;
}
.hero-coming-soon {
  display: inline-block;
  background: var(--honey);
  color: var(--espresso);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 24px;
}

/* ── Features ──────────────────────────────────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  padding-top: 80px;
  padding-bottom: 80px;
}
.feature {
  background: var(--card);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--divider);
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.feature h2 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--umber);
  margin-bottom: 10px;
}
.feature p {
  color: var(--text-mid);
  font-size: 0.95rem;
}

/* ── Categories ────────────────────────────────────────────────────────── */
.categories {
  padding-bottom: 96px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--umber);
  margin-bottom: 28px;
}
.category-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.category-list li {
  background: var(--sand);
  border: 1px solid var(--divider);
  border-radius: 24px;
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--umber);
}

/* ── Prose (About, Privacy, Terms) ─────────────────────────────────────── */
.prose {
  max-width: 720px;
  padding-top: 72px;
  padding-bottom: 96px;
}
.prose h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--umber);
  margin-bottom: 8px;
  line-height: 1.2;
}
.prose > p:first-of-type {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--divider);
  padding-bottom: 24px;
}
.prose h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--umber);
  margin-top: 48px;
  margin-bottom: 12px;
}
.prose p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 0.975rem;
}
.prose ul, .prose ol {
  padding-left: 24px;
  margin-bottom: 16px;
  color: var(--text-mid);
  font-size: 0.975rem;
}
.prose li {
  margin-bottom: 6px;
}
.prose a {
  color: var(--umber);
  text-decoration: underline;
}
.prose strong {
  color: var(--text);
  font-weight: 600;
}
.prose em {
  color: var(--text-light);
}

/* ── Footer ────────────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--divider);
  background: var(--sand);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 32px;
}
.footer-brand {
  font-family: var(--font-serif);
  color: var(--umber);
  font-size: 1rem;
}
.footer-links {
  list-style: none;
  display: flex;
  gap: 24px;
  flex: 1;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-light);
}
.footer-links a:hover { color: var(--umber); text-decoration: none; }
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-left: auto;
}

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .nav-links { gap: 20px; }
  .hero { padding: 64px 0 56px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-copy { margin-left: 0; }
}
