/* ===========================
   CURAT — Theme CSS
   =========================== */

:root {
  --bg: #F7F4EE;
  --fg: #162D24;
  --accent: #C9A84C;
  --accent-dark: #A8893D;
  --text-muted: #7A8C7E;
  --border: #E2DDD4;
  --white: #FFFFFF;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAVIGATION ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: baseline;
  gap: 0;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-logo {
  color: var(--accent);
}

.nav-name {
  color: var(--fg);
}

.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 100px 60px 80px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.manifesto-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  padding-top: 12px;
  border-top: 2px solid var(--accent);
}

.manifesto-headline {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.manifesto-headline em {
  font-style: italic;
  color: var(--accent);
}

.manifesto-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
}

.manifesto-body p + p {
  margin-top: 18px;
}

/* ── HOW ── */
.how {
  padding: 100px 60px;
  background: var(--fg);
  color: var(--bg);
}

.how-header {
  max-width: 1200px;
  margin: 0 auto 70px;
}

.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 20px;
}

.how-headline {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--bg);
}

.gears-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.gear {
  border-top: 1px solid rgba(247,244,238,0.15);
  padding-top: 32px;
}

.gear-number {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 24px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

.gear-icon {
  margin-bottom: 20px;
}

.gear-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.gear-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(247,244,238,0.55);
}

/* ── ASSURANCE ── */
.assurance {
  padding: 100px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border);
}

.assurance-item {
  text-align: left;
}

.assurance-stat {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 900;
  color: var(--fg);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
}

.assurance-label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.assurance-quote {
  max-width: 700px;
}

.assurance-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.6;
  color: var(--fg);
  margin-bottom: 20px;
}

.assurance-quote cite {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-style: normal;
}

/* ── CLOSING ── */
.closing {
  padding: 100px 60px;
  background: var(--fg);
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--bg);
  margin-bottom: 28px;
}

.closing-body {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(247,244,238,0.6);
  max-width: 600px;
}

/* ── FOOTER ── */
.footer {
  padding: 40px 60px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 0;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
}

.footer-logo { color: var(--accent); }
.footer-name { color: var(--fg); }

.footer-sub {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-note {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav, .manifesto, .how, .assurance, .closing, .footer {
    padding-left: 28px;
    padding-right: 28px;
  }

  .manifesto {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 60px;
  }

  .manifesto-headline {
    font-size: 38px;
  }

  .gears-grid,
  .assurance-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .how-headline,
  .closing-headline {
    font-size: 34px;
  }

  .assurance-stat {
    font-size: 48px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-sub,
  .footer-note {
    display: none;
  }
}

@media (max-width: 480px) {
  .nav-tagline { display: none; }
  .manifesto-headline { font-size: 30px; }
  .how-headline { font-size: 28px; }
  .closing-headline { font-size: 28px; }
  .assurance-stat { font-size: 40px; }
  .assurance-quote blockquote { font-size: 18px; }
}