* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1d2327;
  --muted: #4d5b63;
  --soft: #f4f1ed;
  --accent: #d5754f;
  --accent-dark: #b45c3a;
  --teal: #2a6f73;
  --cream: #fffaf3;
  --shadow: 0 20px 45px rgba(29, 35, 39, 0.12);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  overflow: hidden;
}

.nav-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  position: relative;
  z-index: 2;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.92rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.section {
  padding: 80px 6vw;
  position: relative;
}

.section.narrow {
  padding: 70px 10vw;
}

.section.pattern {
  background-image: url("images/paws-pattern.svg");
  background-size: 220px;
  background-repeat: repeat;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.content {
  flex: 1 1 320px;
}

.media {
  flex: 1 1 320px;
  display: flex;
  justify-content: center;
}

.hero {
  background: linear-gradient(120deg, #f7efe8 0%, #fff7ef 60%, #f2e2d2 100%);
}

.hero .panel {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.panel {
  background: var(--soft);
  padding: 28px;
  border-radius: 18px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--teal);
}

h1, h2, h3 {
  line-height: 1.2;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.cta-outline {
  background: transparent;
  border: 2px solid var(--teal);
  color: var(--teal);
}

.cta-link {
  font-weight: 600;
  color: var(--teal);
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 15px 30px rgba(29, 35, 39, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 56px;
}

.price {
  font-weight: 700;
  color: var(--ink);
}

.highlight {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
}

.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input, select, textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d9d6d2;
  font-size: 1rem;
  font-family: inherit;
}

input:disabled,
select:disabled,
textarea:disabled {
  background: #f2f2f2;
  color: #8d8d8d;
}

.footer {
  background: #121212;
  color: #f4f4f4;
  padding: 60px 6vw;
}

.footer a {
  color: #f4f4f4;
}

.footer .nav-links {
  flex-wrap: wrap;
  gap: 14px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--teal);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 12;
}

.cookie-banner.show {
  display: flex;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.muted-block {
  background: #f8f3ee;
  padding: 24px;
  border-radius: 16px;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.info-block {
  flex: 1 1 240px;
  background: #fff;
  padding: 20px;
  border-radius: 14px;
}

.tiny {
  font-size: 0.85rem;
  color: #b2aca5;
}

@media (max-width: 860px) {
  .nav-split {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .section {
    padding: 70px 7vw;
  }
}
