:root {
  --bg: #fbf6ee;
  --bg-alt: #f4ebdb;
  --surface: #ffffff;
  --ink: #2a201a;
  --ink-soft: #6b5e54;
  --muted: #9b8e83;
  --accent: #c8632a;
  --accent-soft: #f0c9a8;
  --accent-deep: #9c4a18;
  --border: #ece1cd;
  --shadow-sm: 0 2px 6px rgba(60, 35, 15, 0.06);
  --shadow-md: 0 10px 30px rgba(60, 35, 15, 0.08);
  --shadow-lg: 0 24px 60px rgba(60, 35, 15, 0.12);
  --radius: 18px;
  --radius-lg: 28px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--accent-deep); text-decoration: none; }
a:hover { color: var(--accent); }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 780px; }

/* nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 238, 0.85);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.logo {
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.logo-emoji { font-size: 22px; }
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 15px;
}
.nav-links a:hover { color: var(--ink); }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--accent-deep);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent-soft);
}

/* hero */
.hero {
  padding: 60px 0 90px;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(200, 99, 42, 0.10), transparent 60%),
    radial-gradient(ellipse at 0% 100%, rgba(240, 201, 168, 0.5), transparent 55%),
    var(--bg);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: .02em;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  margin: 0 0 20px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.accent { color: var(--accent); }
.lead {
  font-size: 18px;
  color: var(--ink-soft);
  margin: 0 0 32px;
  max-width: 520px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.hero-stats > div {
  display: flex;
  flex-direction: column;
}
.hero-stats strong {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
}
.hero-stats span {
  font-size: 13px;
  color: var(--muted);
}

.hero-art {
  position: relative;
  height: 480px;
}
.hero-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--accent-soft);
}
.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-card-1 {
  width: 62%;
  height: 78%;
  top: 0;
  right: 0;
  transform: rotate(2deg);
}
.hero-card-2 {
  width: 42%;
  height: 42%;
  bottom: 0;
  left: 0;
  transform: rotate(-4deg);
}
.hero-card-3 {
  width: 36%;
  height: 36%;
  top: 28%;
  left: 14%;
  transform: rotate(6deg);
}

/* sections */
.section { padding: 90px 0; }
.section-alt { background: var(--bg-alt); }
.section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -.01em;
  margin: 0 0 12px;
  text-align: center;
}
.section-sub {
  text-align: center;
  color: var(--ink-soft);
  margin: 0 auto 48px;
  max-width: 580px;
  font-size: 17px;
}

/* features */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.feature {
  background: var(--surface);
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.feature h3 {
  font-size: 19px;
  margin: 0 0 8px;
  font-weight: 700;
}
.feature p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

/* catalog */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--accent-soft);
  position: relative;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.card:hover .card-img img { transform: scale(1.04); }
.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(6px);
}
.card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-name {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 4px;
}
.card-breed {
  color: var(--ink-soft);
  font-size: 14px;
  margin: 0 0 12px;
}
.card-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--ink-soft);
}
.card-meta span {
  background: var(--bg-alt);
  padding: 4px 10px;
  border-radius: 999px;
}
.card-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin: auto 0 14px;
}
.card-actions {
  display: flex;
  gap: 8px;
}
.card-actions .btn {
  flex: 1;
  padding: 10px 14px;
  font-size: 14px;
}

/* steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.steps li {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  position: relative;
}
.step-num {
  width: 38px;
  height: 38px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 16px;
}
.steps h3 {
  font-size: 18px;
  margin: 0 0 6px;
  font-weight: 700;
}
.steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

/* faq */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}
.faq details {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 18px 24px;
  transition: box-shadow .2s ease;
}
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 22px;
  color: var(--accent);
  font-weight: 400;
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
}

/* cta */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
}
.cta-inner {
  text-align: center;
}
.cta h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin: 0 0 12px;
  font-weight: 800;
}
.cta p {
  font-size: 17px;
  opacity: .9;
  margin: 0 auto 32px;
  max-width: 540px;
}
.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta .btn-primary {
  background: #fff;
  color: var(--accent-deep);
}
.cta .btn-primary:hover { background: var(--bg); color: var(--accent-deep); }
.cta .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.cta .btn-ghost:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: #fff;
}

/* footer */
.footer {
  padding: 60px 0 24px;
  background: #1f1612;
  color: #d4c5b6;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.logo-footer { color: #fff; margin-bottom: 8px; display: inline-flex; }
.footer .muted { color: #8a7a6c; font-size: 14px; }
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.footer h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.footer p {
  margin: 0 0 8px;
  font-size: 14px;
}
.footer a { color: #d4c5b6; }
.footer a:hover { color: #fff; }
.footer-bottom {
  padding-top: 24px;
  text-align: center;
}

/* responsive */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { height: 380px; max-width: 480px; margin: 0 auto; width: 100%; }
  .features { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; padding-bottom: 24px; }
}
@media (max-width: 560px) {
  .section { padding: 60px 0; }
  .hero { padding: 40px 0 60px; }
  .hero-stats { gap: 20px; }
  .hero-stats strong { font-size: 20px; }
  .grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .card-actions { flex-direction: column; }
}
