* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #2c2f2a;
  background: #f7f4ee;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 6vw 10px;
}

.nav-split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 18px;
  background: #e6e1d8;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 40px 6vw 70px;
  background-image: url("assets/pets-hero.svg");
  background-size: cover;
  background-position: center;
  border-radius: 32px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  max-width: 560px;
}

.hero p {
  max-width: 520px;
  background: rgba(247, 244, 238, 0.8);
  padding: 14px 18px;
  border-radius: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #2c2f2a;
  background: #2c2f2a;
  color: #f7f4ee;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: #2c2f2a;
}

.layout {
  display: flex;
  flex-direction: column;
  gap: 46px;
  padding: 40px 6vw 80px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 26px;
  border-radius: 26px;
  position: relative;
  background: #fffdf7;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.section.offset-left {
  margin-left: 0;
  margin-right: 12vw;
}

.section.offset-right {
  margin-left: 12vw;
  margin-right: 0;
}

.section.dark {
  background: #2f342c;
  color: #f7f4ee;
}

.section.highlight {
  background: #e7dfd1;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.split img {
  border-radius: 20px;
}

.meta {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
  background: #f3efe6;
}

.price {
  font-weight: 700;
  font-size: 20px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c8c2b7;
  background: #fff;
  font-size: 15px;
}

button {
  cursor: pointer;
}

.sticky-cta {
  position: sticky;
  top: 16px;
  align-self: flex-end;
  background: #f7f4ee;
  border: 1px solid #2c2f2a;
  border-radius: 18px;
  padding: 16px;
  max-width: 220px;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px 6vw 40px;
  background: #2f342c;
  color: #f7f4ee;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  left: 16px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-title {
  font-size: clamp(26px, 4vw, 42px);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
}

.legal h2 {
  font-size: 22px;
}

.callout {
  background: #f1e6d3;
  padding: 18px;
  border-radius: 18px;
}

@media (min-width: 760px) {
  .split {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .form-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .form-grid .field {
    flex: 1 1 220px;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 220px;
  }
}
