* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1f23;
  --muted: #5b6168;
  --accent: #2a7c6f;
  --accent-dark: #205e55;
  --bg: #f6f4f0;
  --panel: #ffffff;
  --soft: #e8ecea;
  --highlight: #f1efe7;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background-color: var(--bg);
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

header {
  padding: 26px 6vw 12px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 6px 10px;
  background: var(--soft);
  border-radius: 999px;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.split {
  display: flex;
  align-items: stretch;
  gap: 36px;
  padding: 30px 6vw;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split.narrow {
  align-items: center;
}

.split .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.split .media {
  flex: 1;
}

.hero {
  background: var(--highlight);
}

.hero h1 {
  font-size: 2.5rem;
  margin: 0;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  padding: 12px 18px;
  border-radius: 8px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: var(--soft);
  color: var(--ink);
}

.panel {
  background: var(--panel);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(27, 31, 35, 0.08);
}

.img-frame {
  background-color: #dbe4df;
  border-radius: 12px;
  overflow: hidden;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--panel);
  border-radius: 12px;
  padding: 12px;
}

.card .card-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.accent-band {
  background: #eaf1ee;
}

.accent-band .content {
  max-width: 520px;
}

.background-paw {
  background-image: url("https://images.unsplash.com/photo-1517423440428-a5a00ad493e8?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d5ddd6;
}

.testimonial {
  background: #ffffff;
  border-left: 4px solid var(--accent);
  padding: 16px;
  margin: 0;
}

.form-section {
  background: var(--panel);
  padding: 32px 6vw;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c9cfcc;
  font-family: inherit;
}

.form-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1;
  min-width: 220px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent-dark);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(32, 94, 85, 0.25);
}

footer {
  padding: 30px 6vw 40px;
  background: #1c2327;
  color: #f4f5f6;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

footer a {
  color: #f4f5f6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(27, 31, 35, 0.2);
  max-width: 320px;
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.simple-page {
  padding: 24px 6vw 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.simple-page .panel {
  max-width: 880px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
