:root {
  --ink: #2f2a24;
  --muted: #6c6157;
  --soft: #f6f1ec;
  --accent: #f0a861;
  --accent-dark: #d27e37;
  --sea: #9ad1c3;
  --sky: #9cb4e8;
  --paper: #ffffff;
  --shadow: 0 18px 40px rgba(31, 28, 23, 0.12);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px 22px;
  background: var(--paper);
  border-right: 1px solid rgba(47, 42, 36, 0.08);
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.brand span {
  display: block;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

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

.nav a {
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(154, 209, 195, 0.18);
  font-size: 14px;
}

.nav a:hover {
  background: rgba(154, 209, 195, 0.32);
}

.sidebar-cta {
  margin-top: auto;
  padding: 14px 16px;
  background: var(--accent);
  color: #fff;
  text-align: center;
  border-radius: 14px;
  font-weight: 600;
}

.sidebar-note {
  font-size: 13px;
  color: var(--muted);
}

.content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 28px 20px 80px;
  flex: 1;
}

section {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 32px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-visual {
  min-height: 280px;
  background: url("assets/hero-pet.svg") center/cover no-repeat;
  border-radius: 22px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240, 168, 97, 0.18);
  color: var(--accent-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
}

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

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

.card {
  background: var(--soft);
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card strong {
  font-size: 17px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
}

.cta.alt {
  background: var(--sea);
  color: #21433d;
}

.cta.soft {
  background: #e9eefc;
  color: #3a4b7a;
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
}

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

.step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(156, 180, 232, 0.16);
  padding: 14px;
  border-radius: 16px;
}

.testimonial {
  background: rgba(240, 168, 97, 0.14);
  padding: 18px;
  border-radius: 18px;
}

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

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

label {
  font-size: 13px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border: 1px solid rgba(47, 42, 36, 0.18);
  border-radius: 12px;
  font-size: 15px;
  background: #fff;
  font-family: inherit;
}

button {
  border: none;
  cursor: pointer;
}

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

.info-bar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fef7f0;
  border-radius: 18px;
  padding: 18px;
}

.map-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: linear-gradient(135deg, #e7f3eb 0%, #f9faf0 100%);
}

.highlight {
  background: #f0f4ff;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 18px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: var(--shadow);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

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

.footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.footer a {
  color: var(--muted);
}

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

.simple-hero {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (min-width: 920px) {
  .layout {
    align-items: stretch;
  }

  .sidebar {
    width: 260px;
    min-height: 100vh;
  }

  .content {
    padding: 32px 40px 120px;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .hero-visual {
    flex: 1;
    min-height: 320px;
  }

  .hero-text {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .card-row {
    flex-direction: row;
  }

  .card-row .card {
    flex: 1;
  }

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

  .service-grid .card {
    flex: 1 1 240px;
  }

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

  .form-row > div {
    flex: 1;
  }

  .info-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .map-block {
    flex-direction: row;
    align-items: center;
  }

  .map-block img {
    width: 300px;
  }

  .legal-grid {
    flex-direction: row;
  }
}
