:root {
  --bg: #FDF6F0;
  --bg-alt: #FFF9F5;
  --fg: #2D1B14;
  --fg-muted: #6B5148;
  --accent: #C4524A;
  --accent-soft: #E8A09A;
  --accent-bg: #F5DDD8;
  --card-bg: #FFFFFF;
  --card-border: #F0DDD5;
  --rose: #D4726A;
  --peach: #F2C4A0;
  --sage: #A7B5A0;
  --cream: #FAF0E6;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- HERO ---- */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  background: linear-gradient(175deg, #FDF6F0 0%, #F9E8DE 50%, #F5DDD8 100%);
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  margin-bottom: 2.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--fg);
  max-width: 720px;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.shape-1 {
  width: 400px; height: 400px;
  background: var(--peach);
  top: -100px; right: -80px;
  opacity: 0.25;
}

.shape-2 {
  width: 250px; height: 250px;
  background: var(--sage);
  bottom: 60px; left: -60px;
  opacity: 0.2;
}

.shape-3 {
  width: 180px; height: 180px;
  background: var(--accent-soft);
  top: 40%; right: 10%;
  opacity: 0.12;
}

/* ---- CATEGORIES ---- */
.categories {
  padding: 6rem 2rem;
  max-width: 1080px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.categories-header {
  margin-bottom: 3.5rem;
}

.categories-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

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

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(45, 27, 20, 0.06);
}

.card-wide {
  grid-column: span 2;
}

.card-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.category-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.category-card p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ---- WHY ---- */
.why {
  background: var(--fg);
  color: var(--bg);
  padding: 6rem 2rem;
}

.why-content {
  max-width: 800px;
  margin: 0 auto;
}

.why .section-label {
  color: var(--accent-soft);
}

.why h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 3rem;
  color: var(--cream);
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.why-point {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.why-number {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--accent-soft);
  min-width: 36px;
  padding-top: 2px;
}

.why-point h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--cream);
}

.why-point p {
  font-size: 0.92rem;
  color: var(--accent-bg);
  line-height: 1.65;
  font-weight: 300;
}

/* ---- CLOSING ---- */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.closing p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid var(--card-border);
  background: var(--bg-alt);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 300;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    padding: 4rem 1.5rem 3rem;
  }

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

  .card-wide {
    grid-column: span 1;
  }

  .categories, .why, .closing {
    padding: 4rem 1.5rem;
  }

  .why-point {
    flex-direction: column;
    gap: 0.5rem;
  }

  .why-number {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-sub {
    font-size: 0.95rem;
  }
}