:root {
  --bg: #FAF7F2;
  --bg-warm: #F3EDE4;
  --fg: #2C2416;
  --fg-muted: #7A6E5D;
  --accent: #D4845A;
  --accent-light: #E8A67C;
  --accent-dark: #B86A3E;
  --sage: #8B9E7E;
  --sage-light: #C5D4BC;
  --cream: #F5F0E8;
  --terracotta: #C4724D;
  --sand: #E5D9C8;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

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

/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}

.hero-inner {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--sage-light);
  color: var(--sage);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}

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

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

.hero-shapes {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
}

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

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--sand);
  top: 10%;
  right: -5%;
  opacity: 0.6;
}

.shape-2 {
  width: 250px;
  height: 250px;
  background: var(--sage-light);
  top: 45%;
  right: 20%;
  opacity: 0.5;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: var(--accent-light);
  top: 25%;
  right: 30%;
  opacity: 0.4;
}

/* Philosophy */
.philosophy {
  padding: 100px 40px;
  background: var(--fg);
  color: var(--bg);
}

.philosophy-inner {
  max-width: 800px;
  margin: 0 auto;
}

.philosophy-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 24px;
}

.philosophy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.philosophy p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--sand);
  max-width: 600px;
}

/* Categories */
.categories {
  padding: 100px 40px;
}

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

.categories-header {
  margin-bottom: 60px;
}

.categories-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.categories-header p {
  color: var(--fg-muted);
  font-size: 1.05rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.cat-card {
  padding: 48px 36px;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.cat-card:hover {
  transform: translateY(-4px);
}

.cat-kitchen {
  background: var(--cream);
  border: 1px solid var(--sand);
}

.cat-entree {
  background: linear-gradient(135deg, var(--sage-light) 0%, #d4e0cd 100%);
}

.cat-kids {
  background: linear-gradient(135deg, #F5E6D8 0%, var(--accent-light) 30%, #EEDCC8 100%);
  opacity: 0.9;
}

.cat-bathroom {
  background: var(--bg-warm);
  border: 1px solid var(--sand);
}

.cat-icon {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--accent-dark);
}

.cat-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.cat-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Why */
.why {
  padding: 100px 40px;
  background: var(--cream);
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.why-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  position: sticky;
  top: 40px;
}

.why-item {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--sand);
}

.why-item:last-child {
  border-bottom: none;
}

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

.why-content h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

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

/* Closing */
.closing {
  padding: 120px 40px;
  text-align: center;
  background: var(--bg);
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.closing p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 550px;
  margin: 0 auto;
}

/* Footer */
.site-footer {
  padding: 60px 40px;
  border-top: 1px solid var(--sand);
}

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

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--fg);
}

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

/* Mobile */
@media (max-width: 768px) {
  .hero {
    padding: 80px 24px 60px;
    min-height: 70vh;
  }

  .hero-shapes {
    width: 100%;
    opacity: 0.3;
  }

  .shape-1 { width: 250px; height: 250px; right: -20%; }
  .shape-2 { width: 150px; height: 150px; }
  .shape-3 { width: 100px; height: 100px; }

  .philosophy { padding: 70px 24px; }
  .categories { padding: 70px 24px; }

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

  .cat-card { padding: 36px 28px; }

  .why { padding: 70px 24px; }

  .why-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-left h2 {
    position: static;
  }

  .closing { padding: 80px 24px; }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

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

  .lede {
    font-size: 1rem;
  }
}