:root {
  --cream: #f7f2e9;
  --paper: #fffdf9;
  --taupe: #a49382;
  --brown: #5d4638;
  --brown-dark: #2e241e;
  --gold: #c9a96a;
  --sage: #87927c;
  --line: rgba(93, 70, 56, 0.16);
  --shadow: 0 18px 50px rgba(46, 36, 30, 0.10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--brown-dark);
  background: var(--paper);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  font-size: 22px;
}

.brand strong,
.brand small { display: block; }

.brand strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  color: var(--taupe);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  transition: color .2s ease;
}

.main-nav a:hover { color: var(--gold); }

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

.hero {
  padding: 84px 0 72px;
  background:
    radial-gradient(circle at 75% 15%, rgba(201,169,106,.20), transparent 28%),
    linear-gradient(135deg, #fffdf9 0%, #f5eee4 100%);
}

.hero-grid,
.intro-grid,
.split,
.kitten-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow.light { color: #ead6aa; }

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.02;
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(52px, 7vw, 86px);
  font-weight: 600;
  letter-spacing: -.03em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 600;
}

h3 {
  margin-bottom: 10px;
  font-size: 28px;
}

.lead {
  max-width: 700px;
  font-size: 18px;
  color: #6d5a4e;
}

.lead.small { font-size: 17px; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(46,36,30,.12);
}

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

.btn-secondary {
  border-color: var(--brown);
  color: var(--brown);
  background: transparent;
}

.btn-light {
  background: #fff;
  color: var(--brown-dark);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-top: 32px;
  color: #78675b;
  font-size: 13px;
}

.hero-visual {
  position: relative;
}

.photo-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  min-height: 280px;
  text-align: center;
  border: 1px dashed rgba(93,70,56,.28);
  background:
    linear-gradient(135deg, rgba(255,255,255,.6), rgba(242,232,217,.8)),
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(93,70,56,.03) 14px 28px);
  color: #7b6759;
  overflow: hidden;
}

.photo-placeholder small { opacity: .75; }
.cat-icon { font-size: 64px; }

.photo-hero {
  min-height: 570px;
  border-radius: 180px 180px 28px 28px;
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  left: -30px;
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
}

.floating-card strong,
.floating-card small { display: block; }

.floating-card small { color: var(--taupe); }
.paw { font-size: 24px; }

.section { padding: 92px 0; }
.soft { background: var(--cream); }

.intro-grid {
  align-items: start;
}

.intro-text {
  font-size: 17px;
  color: #68584c;
}

.split .portrait {
  min-height: 520px;
  border-radius: 30px;
}

.quote-card {
  margin-top: 28px;
  padding: 22px 24px;
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,.55);
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading > p {
  max-width: 460px;
  color: #746358;
}

.section-heading.centered {
  display: block;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.cards.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.cat-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 12px 40px rgba(46,36,30,.06);
}

.card-photo {
  min-height: 300px;
  border: 0;
  border-radius: 0;
}

.card-photo span { font-size: 58px; }

.card-body { padding: 24px; }

.tag {
  margin: 0 0 8px;
  color: var(--sage);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.dark {
  background: var(--brown-dark);
  color: white;
}

.dark .lead { color: rgba(255,255,255,.74); }

.kitten-panel {
  padding: 34px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  background: rgba(255,255,255,.06);
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 30px;
}

.status {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  background: rgba(255,255,255,.08);
}

.available { color: #cfe6c5; }
.reserved { color: #f4d99a; }
.home { color: #d7d2ce; }

.mini-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
  border-top: 1px solid rgba(255,255,255,.13);
}

.mini-info div {
  padding: 20px 14px 0 0;
}

.mini-info strong,
.mini-info span { display: block; }

.mini-info span {
  margin-top: 4px;
  color: rgba(255,255,255,.65);
  font-size: 12px;
}

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

.features article {
  padding: 28px 24px;
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(93,70,56,.08);
}

.features article > span { font-size: 30px; }
.features h3 { margin-top: 14px; font-size: 26px; }
.features p { margin-bottom: 0; color: #766559; font-size: 14px; }

.gallery {
  display: grid;
  grid-template-columns: 1.15fr .85fr 1fr;
  grid-template-rows: 230px 230px;
  gap: 16px;
}

.gallery .photo-placeholder {
  min-height: 0;
  border-radius: 24px;
}

.g1 { grid-row: 1 / 3; }
.g4 { grid-column: 3; }
.g5 { grid-column: 2 / 4; }

.contact-section {
  background:
    radial-gradient(circle at 15% 30%, rgba(201,169,106,.18), transparent 25%),
    #fbf7f0;
}

.contact-details {
  margin-top: 34px;
  display: grid;
  gap: 12px;
}

.contact-details div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-details span { font-size: 24px; }
.contact-details p { margin: 0; }

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: inherit;
  background: #fffdf9;
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
}

textarea { resize: vertical; }

.form-note {
  color: #87786d;
  line-height: 1.5;
}

footer {
  padding: 36px 0;
  background: #241c18;
  color: rgba(255,255,255,.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.footer-grid strong {
  color: white;
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
}

.footer-grid p { margin: 3px 0 0; }
.footer-links { display: flex; gap: 18px; font-size: 13px; }
.copyright { grid-column: 1 / -1; font-size: 12px; opacity: .65; }

@media (max-width: 900px) {
  .menu-toggle { display: block; }

  .main-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    padding: 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav.open { display: flex; }

  .hero-grid,
  .intro-grid,
  .split,
  .kitten-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero { padding-top: 54px; }
  .photo-hero { min-height: 470px; }
  .floating-card { left: 18px; }

  .cards.three { grid-template-columns: 1fr; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .section-heading { display: block; }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 210px);
  }

  .g1 { grid-row: 1 / 3; }
  .g4 { grid-column: auto; }
  .g5 { grid-column: 1 / 3; }

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

@media (max-width: 600px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 70px 0; }
  h1 { font-size: 50px; }
  h2 { font-size: 40px; }

  .hero-actions .btn { width: 100%; }
  .features { grid-template-columns: 1fr; }

  .gallery {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gallery .photo-placeholder {
    min-height: 230px;
    grid-column: auto;
    grid-row: auto;
  }

  .mini-info { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
}
