:root {
  --bg: #FBF7F4;
  --bg-warm: #F5EDE6;
  --bg-accent: #EDE3D9;
  --fg: #2C2420;
  --fg-muted: #7A6E65;
  --fg-light: #A89A8E;
  --accent: #C4856C;
  --accent-soft: #D4A088;
  --accent-glow: rgba(196, 133, 108, 0.15);
  --cream: #FAF5EF;
  --blush: #F0D5C8;
  --sage: #B8C5B2;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
}

* { 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-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1.5px solid var(--accent-soft);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 40px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 28px;
}

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

.lede {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

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

.shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--blush) 0%, transparent 70%);
  top: -10%;
  right: -10%;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--sage) 0%, transparent 70%);
  bottom: -5%;
  left: -8%;
  opacity: 0.35;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  top: 40%;
  left: 20%;
  opacity: 0.6;
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  padding: 100px 24px;
  background: var(--bg-warm);
}

.philosophy-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--fg-light);
  margin-bottom: 32px;
}

.philosophy blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--fg);
  margin-bottom: 28px;
  border: none;
  padding: 0;
}

.philosophy-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  font-weight: 300;
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 24px;
}

.features-inner {
  max-width: 960px;
  margin: 0 auto;
}

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

.features-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.25;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-card {
  background: var(--cream);
  border: 1px solid var(--bg-accent);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(44, 36, 32, 0.06);
}

.feature-card-large {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--cream) 0%, var(--blush) 100%);
  border: none;
}

.feature-icon {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

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

/* ===== RHYTHM ===== */
.rhythm {
  padding: 100px 24px;
  background: var(--bg-warm);
}

.rhythm-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.rhythm-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 20px;
}

.rhythm-text p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 28px;
}

.rhythm-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rhythm-list li {
  font-size: 0.95rem;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 12px;
}

.check {
  color: var(--sage);
  font-weight: 600;
  font-size: 1.1rem;
}

.visual-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(44, 36, 32, 0.06);
  border: 1px solid var(--bg-accent);
}

.visual-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-light);
  margin-bottom: 16px;
}

.visual-stat {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}

.visual-detail {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 300;
}

.visual-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 24px;
  text-align: center;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 20px;
}

.closing h2 em {
  color: var(--accent);
  font-style: italic;
}

.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  font-weight: 300;
  line-height: 1.8;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 40px 24px;
  border-top: 1px solid var(--bg-accent);
}

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

.footer-brand {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--fg);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card-large {
    grid-column: 1;
  }
  
  .rhythm-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero {
    min-height: 80vh;
    padding: 80px 20px 60px;
  }
  
  .philosophy {
    padding: 60px 20px;
  }
  
  .features {
    padding: 60px 20px;
  }
  
  .rhythm {
    padding: 60px 20px;
  }
  
  .closing {
    padding: 80px 20px;
  }
  
  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .feature-card {
    padding: 28px 24px;
  }
  
  .visual-card {
    padding: 28px 24px;
  }
}