:root {
  --bg: #FBF8F4;
  --bg-warm: #F5EDE3;
  --bg-dark: #1A1714;
  --fg: #2C2520;
  --fg-muted: #7A6E63;
  --accent: #C45D3E;
  --accent-light: #E8886B;
  --cream: #F0E6D8;
  --card-bg: #FFFFFF;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ── */
.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 3rem;
  padding: 6rem 6vw 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cream) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner { position: relative; z-index: 1; }

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(196, 93, 62, 0.08);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 2rem 0;
}

.stat-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 20px rgba(44, 37, 32, 0.06);
  border: 1px solid rgba(44, 37, 32, 0.04);
  transition: transform 0.3s ease;
}

.stat-card:hover { transform: translateX(8px); }

.card-1 { transform: translateX(0); }
.card-2 { transform: translateX(24px); }
.card-3 { transform: translateX(48px); }
.card-1:hover { transform: translateX(8px); }
.card-2:hover { transform: translateX(32px); }
.card-3:hover { transform: translateX(56px); }

.stat-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

/* ── FEATURES ── */
.features {
  padding: 8rem 6vw;
  background: var(--bg-warm);
}

.features-header {
  margin-bottom: 4rem;
}

.features-header h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  color: var(--fg);
}

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

.feature-block {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(44, 37, 32, 0.04);
}

.feature-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44, 37, 32, 0.08);
}

.feature-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(196, 93, 62, 0.08);
  line-height: 1;
  margin-bottom: 1rem;
}

.feature-block h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.feature-block p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── STORY ── */
.story {
  padding: 8rem 6vw;
}

.story-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 4rem;
  align-items: center;
}

.story-text h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.story-text p {
  color: var(--fg-muted);
  margin-bottom: 1rem;
  max-width: 560px;
}

.story-accent {
  display: flex;
  justify-content: center;
  align-items: center;
}

.story-quote {
  background: var(--bg-dark);
  color: var(--bg);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  position: relative;
}

.quote-mark {
  color: var(--accent-light);
  font-size: 2rem;
}

/* ── CLOSING ── */
.closing {
  padding: 8rem 6vw;
  background: var(--bg-dark);
  color: var(--bg);
  text-align: center;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.closing-text {
  color: rgba(251, 248, 244, 0.7);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ── FOOTER ── */
.site-footer {
  padding: 2rem 6vw;
  background: var(--bg-dark);
  border-top: 1px solid rgba(251, 248, 244, 0.08);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(251, 248, 244, 0.6);
}

.footer-sep {
  font-size: 0.85rem;
  color: rgba(251, 248, 244, 0.35);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 4rem 5vw 3rem;
    gap: 2rem;
  }

  .hero-visual {
    padding: 0;
  }

  .card-1, .card-2, .card-3 { transform: none; }
  .card-1:hover, .card-2:hover, .card-3:hover { transform: translateX(8px); }

  .features { padding: 5rem 5vw; }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .story { padding: 5rem 5vw; }

  .story-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .story-quote {
    font-size: 1.2rem;
    padding: 2rem 1.5rem;
  }

  .closing { padding: 5rem 5vw; }

  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}