:root {
  --bg: #faf7f2;
  --bg-warm: #f3ece1;
  --fg: #2a1f14;
  --fg-muted: #6b5d4f;
  --accent: #e8704a;
  --accent-hover: #d4603c;
  --accent-light: #fef0eb;
  --sage: #7a9e7e;
  --sage-light: #eef4ef;
  --cream: #fff8f0;
  --terracotta: #c4563a;
  --golden: #d4a843;
  --golden-light: #fdf6e3;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow-soft: 0 2px 20px rgba(42, 31, 20, 0.06);
  --shadow-card: 0 4px 30px rgba(42, 31, 20, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Outfit', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 80px 24px;
  background: linear-gradient(165deg, var(--cream) 0%, var(--bg) 40%, var(--sage-light) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 112, 74, 0.08) 0%, transparent 70%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 158, 126, 0.1) 0%, transparent 70%);
}

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

.hero-badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
  letter-spacing: 0.03em;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
}

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

.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.hero-paws {
  margin-top: 48px;
  font-size: 2rem;
  opacity: 0.3;
  letter-spacing: 16px;
}

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

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

.philosophy-label {
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sage);
  margin-bottom: 16px;
}

.philosophy h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 20px;
}

.philosophy p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.philosophy-visual {
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--bg-warm) 100%);
  border-radius: var(--radius);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.philo-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.philo-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.philo-icon.orange { background: var(--accent-light); }
.philo-icon.green { background: var(--sage-light); border: 1px solid rgba(122, 158, 126, 0.3); }
.philo-icon.gold { background: var(--golden-light); }

.philo-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.philo-text p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ---- FEATURES ---- */
.features {
  padding: 100px 24px;
  background: var(--bg);
}

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

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

.features-header h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 600;
  margin-bottom: 12px;
}

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(42, 31, 20, 0.04);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.feature-emoji {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

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

/* ---- NUMBERS ---- */
.numbers {
  padding: 80px 24px;
  background: var(--fg);
  color: var(--bg);
}

.numbers-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.number-item h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.number-item p {
  font-size: 0.95rem;
  color: rgba(250, 247, 242, 0.65);
  line-height: 1.5;
}

/* ---- CLOSING ---- */
.closing {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
  text-align: center;
}

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

.closing h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

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

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

/* ---- FOOTER ---- */
.footer {
  padding: 40px 24px;
  text-align: center;
  background: var(--bg-warm);
  border-top: 1px solid rgba(42, 31, 20, 0.06);
}

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

.footer-brand {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: var(--fg);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .philosophy-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .numbers-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero {
    min-height: auto;
    padding: 100px 20px 80px;
  }

  .philosophy {
    padding: 60px 20px;
  }

  .features {
    padding: 60px 20px;
  }

  .closing {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .hero-badge {
    font-size: 0.78rem;
    padding: 6px 16px;
  }

  .feature-card {
    padding: 28px 22px;
  }
}