* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --deep: #1a1c2b;
  --soft: #f4f1ec;
  --accent: #e06b2d;
  --accent-dark: #b44c17;
  --mint: #b6e3d5;
  --ink: #272833;
  --muted: #6b6f7a;
  --line: rgba(26, 28, 43, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 6vw 16px;
  background: var(--soft);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 1.2rem;
}

.brand span {
  background: var(--accent);
  color: #fff;
  padding: 6px 10px;
  border-radius: 12px;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.nav-split {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-split a {
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 6vw 48px;
  background: linear-gradient(120deg, #ffffff 30%, #f7e7da 100%);
}

.hero .hero-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.section {
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: var(--soft);
}

.bg-paw {
  background-image: url("https://images.unsplash.com/photo-1507146426996-ef05306b995a?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.bg-paw::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 28, 43, 0.55);
  border-radius: 0;
}

.bg-paw .section-inner {
  position: relative;
  z-index: 1;
}

.bg-park {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.asym-blocks {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.asym-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--mint);
  color: #0f3f33;
  font-size: 0.8rem;
  font-weight: 600;
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.highlight {
  background: var(--deep);
  color: #fff;
  padding: 28px;
  border-radius: 24px;
}

.highlight p {
  color: rgba(255, 255, 255, 0.85);
}

.testimonial {
  padding: 22px;
  border-radius: 20px;
  background: #fff;
  border-left: 4px solid var(--accent);
}

.form-card {
  background: #fff;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.footer {
  padding: 32px 6vw 40px;
  background: var(--deep);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f7d6c1;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 16px;
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-banner p {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.page-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 20px;
}

.legal {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (min-width: 900px) {
  .topbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .asym-blocks {
    flex-direction: row;
  }

  .asym-blocks .asym-card:nth-child(2) {
    transform: translateY(20px);
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 280px;
  }

  .cookie-banner {
    left: auto;
    right: 22px;
    max-width: 520px;
  }
}
