* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, sans-serif;
  color: #1c2328;
  background-color: #f6f4f0;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.nav {
  padding: 20px 0 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #5a4d44;
  background: #efe7da;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  padding: 40px 0 70px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-col {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.panel {
  background: #ffffff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 16px 30px rgba(28, 35, 40, 0.08);
}

.image-frame {
  background-color: #d9d2c6;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: stretch;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.section {
  padding: 60px 0;
}

.section.alt {
  background: #efe7da;
}

.section.dark {
  background: #1e2b2f;
  color: #f7f2ea;
}

.section.bg-care {
  background-image: url("https://images.unsplash.com/photo-1494256997604-768d1f608cac?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f2ea;
  position: relative;
}

.section.bg-care::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 43, 47, 0.7);
}

.section.bg-care .container {
  position: relative;
}

.section.bg-habitat {
  background-image: url("https://images.unsplash.com/photo-1444212477490-ca407925329e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f2ea;
  position: relative;
}

.section.bg-habitat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(47, 75, 66, 0.72);
}

.section.bg-habitat .container {
  position: relative;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: #a06c2a;
}

.title {
  font-size: clamp(2rem, 2.8vw, 3rem);
  margin: 0;
}

.subtitle {
  font-size: 1.1rem;
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #2f4b42;
  color: #f7f2ea;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn.light {
  background: #f7f2ea;
  color: #2f4b42;
  border-color: #f7f2ea;
}

.link-inline {
  text-decoration: underline;
  font-weight: 600;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.card-image {
  background: #d9d2c6;
  border-radius: 16px;
  overflow: hidden;
  height: 160px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2f4b42;
}

.list {
  margin: 0;
  padding-left: 20px;
}

.testimonial {
  background: #f7f2ea;
  padding: 18px;
  border-radius: 16px;
  font-size: 0.95rem;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form label {
  font-weight: 600;
}

.form input,
.form select,
.form textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c9c2b8;
  font-size: 1rem;
  font-family: inherit;
  background: #ffffff;
}

.form button {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: #2f4b42;
  color: #f7f2ea;
  font-weight: 600;
  cursor: pointer;
}

.form-message {
  font-size: 0.95rem;
  color: #7a3e22;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 43, 47, 0.95);
  color: #f7f2ea;
  padding: 14px 0;
  z-index: 40;
}

.sticky-cta .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer {
  background: #1e2b2f;
  color: #f7f2ea;
  padding: 50px 0 80px;
  margin-top: auto;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer a {
  color: inherit;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 18px 32px rgba(28, 35, 40, 0.2);
  padding: 16px;
  z-index: 60;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  flex: 1 1 auto;
  border-radius: 999px;
  padding: 10px 12px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #2f4b42;
  color: #f7f2ea;
}

.cookie-reject {
  background: #efe7da;
  color: #2f4b42;
}

.notice {
  font-size: 0.9rem;
  background: #efe7da;
  padding: 14px;
  border-radius: 14px;
}

.references a {
  color: #f7f2ea;
  text-decoration: underline;
}

@media (max-width: 820px) {
  .sticky-cta {
    position: static;
  }

  .hero {
    padding-bottom: 40px;
  }
}
