:root {
  --bg: #f8f2ed;
  --surface: #fffaf6;
  --text: #241b16;
  --muted: #6a5b52;
  --accent: #8b5e3c;
  --accent-dark: #6e4628;
  --line: #e7d8cb;
  --shadow: 0 18px 50px rgba(36, 27, 22, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(248, 242, 237, 0.88);
  border-bottom: 1px solid rgba(139, 94, 60, 0.1);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
  gap: 20px;
}

.logo {
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.nav nav a,
.text-link {
  color: var(--muted);
  text-decoration: none;
}

.nav nav a:hover,
.text-link:hover {
  color: var(--accent-dark);
}

.hero {
  padding: 80px 0 56px;
}

.hero-grid,
.two-col,
.contact-box,
.footer-row {
  display: grid;
  gap: 28px;
}

.hero-grid,
.two-col,
.contact-box {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
}

h1 {
  font-size: clamp(38px, 6vw, 64px);
  max-width: 760px;
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.lead,
.section-head p,
.list-item p,
.step-card p,
.contact p,
.faq-list p,
.hero-points,
.seo-box li,
.kitten-card p,
.footer p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.7);
}

.btn-secondary:hover {
  background: white;
}

.hero-points {
  margin: 0;
  padding-left: 18px;
}

.hero-card,
.card,
.contact-card,
.seo-box,
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 18px;
}

.hero-photo,
.kitten-photo {
  display: grid;
  place-items: center;
  color: white;
  font-weight: 700;
  border-radius: 20px;
  background: linear-gradient(135deg, #6a4630, #c29671);
}

.hero-photo {
  min-height: 420px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.hero-badges span,
.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f2e4d8;
  color: var(--accent-dark);
  font-weight: 700;
}

.hero-badges span {
  padding: 8px 12px;
  font-size: 14px;
}

.stats {
  padding-bottom: 24px;
}

.stats-grid,
.cards {
  display: grid;
  gap: 18px;
}

.stats-grid {
  grid-template-columns: repeat(3, 1fr);
}

.stats-grid div,
.card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.stats-grid strong {
  display: block;
  font-size: 24px;
  margin-bottom: 4px;
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards-4 {
  grid-template-columns: repeat(4, 1fr);
}

.section {
  padding: 72px 0;
}

.section-accent {
  background: linear-gradient(180deg, rgba(255,255,255,0.25), rgba(255,255,255,0));
}

.section-head {
  margin-bottom: 28px;
  max-width: 740px;
}

.kitten-photo {
  min-height: 220px;
  margin-bottom: 16px;
}

.list-block {
  display: grid;
  gap: 16px;
}

.list-item {
  padding: 22px;
  border-left: 4px solid var(--accent);
  background: rgba(255,255,255,0.65);
  border-radius: 16px;
}

.step-card span {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
}

.seo-box ul {
  margin: 0;
  padding-left: 18px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.contact-card {
  padding: 28px;
}

.footer {
  padding: 28px 0 48px;
}

.footer-row {
  grid-template-columns: 1fr auto;
  align-items: center;
}

@media (max-width: 920px) {
  .hero-grid,
  .two-col,
  .contact-box,
  .cards-3,
  .cards-4,
  .stats-grid,
  .footer-row {
    grid-template-columns: 1fr;
  }

  .nav {
    padding: 12px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-photo {
    min-height: 300px;
  }
}
