:root {
  --bg: #fffaf7;
  --surface: #ffffff;
  --text: #2d2624;
  --muted: #6f625d;
  --accent: #c85b73;
  --accent-dark: #a8455c;
  --line: #eadfd9;
  --soft: #f7ede8;
  --radius: 20px;
  --shadow: 0 16px 40px rgba(67, 42, 33, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.site-header {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-weight: 800;
  text-decoration: none;
  font-size: 1.12rem;
}
nav { display: flex; gap: 22px; }
nav a { text-decoration: none; color: var(--muted); font-weight: 650; }
nav a:hover { color: var(--accent); }

main { overflow: hidden; }
.hero {
  max-width: 1180px;
  margin: 18px auto 70px;
  padding: 56px 28px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 58px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.08; margin-top: 0; }
h1 { font-size: clamp(2.65rem, 6vw, 5.4rem); margin-bottom: 22px; letter-spacing: -.045em; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); margin-bottom: 12px; letter-spacing: -.03em; }
.hero-copy > p:not(.eyebrow) { font-size: 1.14rem; color: var(--muted); max-width: 650px; }
.hero-actions { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-weight: 750;
  text-decoration: none;
  border: 2px solid var(--accent);
}
.button:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.button.secondary { background: transparent; color: var(--accent-dark); }

.hero-image-wrap {
  min-height: 420px;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(145deg, #f2d5dc, #f8ece7);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.placeholder { font-size: 7rem; opacity: .5; }

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 78px 28px;
}
.section.alt {
  max-width: none;
  background: var(--soft);
}
.section.alt > * { max-width: 1124px; margin-left: auto; margin-right: auto; }
.section-heading { margin-bottom: 34px; }
.prose { max-width: 780px; font-size: 1.08rem; color: var(--muted); }
.prose p:first-child { margin-top: 0; }

.cats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.cat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(67, 42, 33, .05);
}
.cat-photo {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  background: #eadfd9;
}
.cat-photo-placeholder {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background: #eadfd9;
  font-size: 3rem;
}
.cat-body { padding: 22px; }
.cat-top { display: flex; align-items: start; justify-content: space-between; gap: 12px; }
.cat-top h3 { margin-bottom: 5px; font-size: 1.45rem; }
.badge {
  white-space: nowrap;
  padding: 5px 9px;
  border-radius: 999px;
  background: #f8e5ea;
  color: #8f3850;
  font-size: .76rem;
  font-weight: 800;
}
.cat-age { margin: 0 0 12px; color: var(--muted); font-size: .92rem; }
.cat-description { margin: 0; }

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.contact p:not(.eyebrow) { max-width: 650px; color: var(--muted); }

footer {
  border-top: 1px solid var(--line);
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 28px 45px;
  color: var(--muted);
  font-size: .9rem;
}
.hidden { display: none !important; }

@media (max-width: 820px) {
  .site-header { align-items: flex-start; }
  nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 32px; }
  .hero-image-wrap { min-height: 300px; }
  .cats-grid { grid-template-columns: 1fr; }
  .contact { align-items: flex-start; flex-direction: column; }
}
