* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1e1f22;
  background-color: #f7f5f1;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  cursor: pointer;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 8%;
  gap: 24px;
  background-color: #f7f5f1;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.site-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 999px;
  background-color: #ede2cf;
  color: #5b4d3a;
  text-align: center;
}

.section {
  padding: 72px 8%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.home-hero {
  background-image: url("https://images.unsplash.com/photo-1517849845537-4d257902454a?w=1400&q=80");
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 14, 0.55);
}

.hero-content {
  position: relative;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.primary-btn {
  background-color: #f0c97f;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
}

.secondary-btn {
  border: 1px solid #f0c97f;
  padding: 10px 22px;
  border-radius: 999px;
  color: #f0c97f;
  background: transparent;
}

.split {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .media {
  flex: 1 1 320px;
  background-color: #e4d8c8;
  padding: 12px;
  border-radius: 24px;
}

.media img {
  width: 100%;
  border-radius: 18px;
}

.story-blocks {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.story-card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.layered {
  position: relative;
  background-color: #1f2a25;
  color: #f8f3e9;
}

.layered::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: rgba(240, 201, 127, 0.3);
  top: 32px;
  right: 12%;
}

.insight {
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.pet-insight {
  background-image: url("https://images.unsplash.com/photo-1507146426996-ef05306b995a?w=1400&q=80");
}

.insight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 31, 24, 0.6);
}

.insight-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
}

.trust-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.testimonial {
  border-left: 3px solid #f0c97f;
  padding-left: 16px;
  max-width: 520px;
}

.benefits {
  background-color: #efeae2;
}

.price-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-card .price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f2a25;
}

.form-section {
  background-color: #ffffff;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 460px;
}

.lead-form label {
  font-weight: 600;
}

.lead-form input,
.lead-form select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d2c8bb;
  background-color: #faf8f4;
}

.lead-form button {
  background-color: #1f2a25;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
}

.sticky-cta button {
  background-color: #f0c97f;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.site-footer {
  padding: 48px 8%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background-color: #1f2a25;
  color: #f7f5f1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-note {
  font-size: 0.9rem;
  color: #d9d2c5;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  background-color: #ffffff;
  color: #1e1f22;
  padding: 16px 20px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  z-index: 30;
  max-width: 90%;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-banner button {
  padding: 8px 14px;
  border-radius: 999px;
  background-color: #1f2a25;
  color: #ffffff;
}

.cookie-banner .reject {
  background-color: #e4d8c8;
  color: #1f2a25;
}

.cookie-banner.is-hidden {
  display: none;
}

.page-hero {
  background-color: #efeae2;
}

.page-title {
  font-size: 2.1rem;
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  background-color: #ffffff;
  border-radius: 14px;
  flex-wrap: wrap;
}

.service-row strong {
  font-size: 1.05rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 18px;
  max-width: 520px;
}

.notice {
  background-color: #f4e6cf;
  padding: 16px;
  border-radius: 12px;
}
