* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1b1b1b;
  background: #f6f3f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #2a5a3b;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  overflow-x: hidden;
}

.header {
  padding: 28px 6vw 12px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand span {
  font-weight: 400;
  font-size: 0.78rem;
  color: #6e6a66;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.95rem;
}

.nav a {
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-color: #2a5a3b;
}

.section {
  padding: 64px 6vw;
}

.section--tight {
  padding: 48px 6vw;
}

.section--cream {
  background: #efe8e2;
}

.section--dark {
  background: #1f2923;
  color: #f3f0ed;
}

.section--dark a {
  color: #c8f2d0;
}

.section--bg-paws {
  background-image: url("https://images.unsplash.com/photo-1517849845537-4d257902454a?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.section--bg-paws::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 27, 27, 0.55);
}

.section--bg-paws > * {
  position: relative;
  z-index: 1;
}

.section--bg-leaf {
  background-image: url("https://images.unsplash.com/photo-1474511320723-9a56873867b5?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.section--bg-leaf::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 41, 35, 0.65);
}

.section--bg-leaf > * {
  position: relative;
  z-index: 1;
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.split > * {
  flex: 1 1 320px;
}

.offset-block {
  background: #ffffff;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  margin-top: -48px;
}

.hero {
  padding-top: 32px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero p {
  font-size: 1.1rem;
  max-width: 520px;
}

.hero-visual {
  position: relative;
  min-height: 360px;
  border-radius: 22px;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual .overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(31, 41, 35, 0.88);
  color: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  max-width: 220px;
  font-size: 0.95rem;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  background: #2a5a3b;
  color: #fff;
  cursor: pointer;
}

.btn--ghost {
  background: transparent;
  border: 2px solid #2a5a3b;
  color: #2a5a3b;
}

.btn--light {
  background: #f3f0ed;
  color: #1b1b1b;
}

.floating-cta {
  align-self: flex-start;
  position: sticky;
  top: 18px;
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid #dcd2c9;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.06);
}

.floating-cta p {
  margin: 0 0 12px;
  font-weight: 600;
}

.image-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 6px solid #f6f3f0;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid #e5ddd6;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  border-radius: 12px;
  height: 160px;
  object-fit: cover;
}

.card .price {
  font-weight: 700;
  color: #2a5a3b;
}

.testimonial {
  padding: 18px 22px;
  background: #f7f1ec;
  border-radius: 14px;
  margin-bottom: 16px;
}

.badge-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.badge {
  padding: 10px 16px;
  background: #ffffff;
  border-radius: 999px;
  border: 1px solid #dcd2c9;
  font-size: 0.9rem;
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  border: 1px solid #e5ddd6;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfc3b9;
  font-family: inherit;
}

.form-panel textarea {
  min-height: 120px;
  resize: vertical;
}

.form-panel button {
  align-self: flex-start;
}

.inline-cta {
  font-weight: 600;
}

.footer {
  padding: 32px 6vw 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid #dcd2c9;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  max-width: 300px;
  z-index: 40;
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.page-title {
  font-size: clamp(2rem, 3.2vw, 3rem);
  margin-bottom: 8px;
}

.subtle {
  color: #6e6a66;
}

.list {
  padding-left: 18px;
}

@media (max-width: 720px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-cta {
    position: static;
  }
}
