/* ===========================
   PURREO — Landing Page Theme
   Eco home products, France-first
   =========================== */

:root {
  --bg: #FAF6F0;
  --fg: #2D2D2D;
  --accent: #1B4332;
  --accent-light: #2D6A4F;
  --warm: #C8A882;
  --warm-light: #E8D9C5;
  --muted: #6B8F71;
  --surface: #F2EDE6;
  --border: #D6CCBA;
  --white: #FFFFFF;
  --error: #B83B3B;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, 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);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- Typography scale ---- */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-sub, .section-body {
  font-size: 1rem;
  color: #555;
  max-width: 52ch;
  line-height: 1.7;
}

.section-body + .section-body { margin-top: 0.75rem; }

/* ---- Layout helpers ---- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===========================
   MANIFESTO HERO
   =========================== */
.manifesto {
  padding: 6rem 2rem 5rem;
  background: var(--bg);
  overflow: hidden;
}

.manifesto__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.manifesto__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.manifesto__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.manifesto__headline em {
  font-style: italic;
  color: var(--warm);
}

.manifesto__sub {
  font-size: 1.05rem;
  color: #555;
  max-width: 44ch;
  line-height: 1.75;
}

/* Visual: blob + circle stack */
.manifesto__visual {
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blob {
  position: absolute;
  border-radius: 50%;
}

.blob--1 {
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 60%, #40916C 100%);
  top: 10px;
  right: 10px;
  opacity: 0.9;
}

.blob--2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #C8A882 0%, #E8D9C5 100%);
  bottom: 10px;
  left: 10px;
  opacity: 0.7;
}

.circle-stack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.circle-circle {
  border-radius: 100px;
  display: flex;
  align-items: center;
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.circle-1 {
  background: rgba(255,255,255,0.95);
  color: var(--accent);
  border: 1.5px solid var(--border);
  margin-left: 2rem;
}

.circle-2 {
  background: var(--accent);
  color: #fff;
  margin-left: 0.5rem;
}

.circle-3 {
  background: var(--warm);
  color: #fff;
  margin-left: 1.5rem;
}

.circle-label {
  display: block;
}

/* ===========================
   PRODUCTS
   =========================== */
.products {
  padding: 5rem 2rem;
  background: var(--surface);
}

.products__header {
  max-width: 1100px;
  margin: 0 auto 3.5rem;
}

.products__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(27, 67, 50, 0.1);
}

.product-card__icon {
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.product-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* ===========================
   PROOF / STATS
   =========================== */
.proof {
  padding: 4rem 2rem;
  background: var(--accent);
}

.proof__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.proof__stat {}

.proof__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--warm);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.proof__label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  display: block;
  max-width: 22ch;
  margin: 0 auto;
}

/* ===========================
   PHILOSOPHY
   =========================== */
.philosophy {
  padding: 6rem 2rem;
  background: var(--bg);
}

.philosophy__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.philosophy__copy .section-heading {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.philosophy__pillars {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.pillar {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.pillar__dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 0.5rem;
}

.pillar h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.pillar p {
  font-size: 0.875rem;
  color: #666;
}

/* ===========================
   OUTCOMES
   =========================== */
.outcomes {
  padding: 5rem 2rem;
  background: var(--surface);
}

.outcomes__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.outcomes__inner > .section-heading {
  max-width: 50ch;
  margin-bottom: 3rem;
}

.outcomes__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 4rem;
}

.outcome {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.outcome__check {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.outcome h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.outcome p {
  font-size: 0.875rem;
  color: #666;
}

/* ===========================
   CLOSING
   =========================== */
.closing {
  padding: 7rem 2rem 6rem;
  background: var(--accent);
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(200, 168, 130, 0.12);
}

.closing::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -60px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(64, 145, 108, 0.15);
}

.closing__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.closing__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 1.5rem;
}

.closing__headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.closing__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  max-width: 52ch;
  margin: 0 auto 2.5rem;
}

.closing__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.tag {
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  padding: 2.5rem 2rem;
  background: #0F2A1E;
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.footer__tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
}

.footer__meta p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-align: right;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .manifesto__inner,
  .philosophy__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .manifesto__visual { height: 220px; }

  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .outcomes__grid {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer__meta p { text-align: center; }
}

@media (max-width: 600px) {
  .manifesto { padding: 4rem 1.5rem 3rem; }
  .products { padding: 3.5rem 1.5rem; }
  .proof { padding: 3rem 1.5rem; }
  .philosophy { padding: 4rem 1.5rem; }
  .outcomes { padding: 3.5rem 1.5rem; }
  .closing { padding: 5rem 1.5rem 4rem; }

  .products__grid {
    grid-template-columns: 1fr;
  }

  .blob--1 { width: 200px; height: 200px; }
  .blob--2 { width: 140px; height: 140px; }
}