:root {
  --navy: #003a5d;
  --navy-deep: #072f48;
  --cream: #f5f5f0;
  --paper: #ffffff;
  --mint: #a1ceac;
  --mint-soft: rgba(161, 206, 172, 0.25);
  --text: #404040;
  --text-dark: #1f1f1f;
  --line: #d9d9d9;
  --danger: #c70000;
  --radius: 20px;
  --radius-sm: 10px;
  --container: 1226px;
  --shadow: 0 24px 48px rgba(0, 28, 44, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #fff;
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.display {
  font-family: "Playfair Display", serif;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 35px;
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--mint);
  color: #000;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.pill.soft {
  background: var(--mint);
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 59px;
  padding: 20px 25px;
  border: 0;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.button-primary {
  background: var(--mint);
  color: #fff;
}

.button-dark {
  background: var(--navy);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--navy);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 119px;
  gap: 24px;
}

.brand {
  width: 200px;
}

.brand__logo {
  height: 50px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  color: #e8e7e2;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

.phone-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 179px;
  min-height: 52px;
  padding: 14px 17px;
  background: #fff;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
}

.phone-chip__icon {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 713px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.3) 34%, rgba(0, 0, 0, 0) 68%),
    url("https://www.figma.com/api/mcp/asset/22db5581-8914-4dec-ab32-2a25f637f920") center center / cover no-repeat;
}

.hero .container {
  padding-top: 124px;
}

.hero-copy {
  max-width: 742px;
}

.hero h1 {
  margin: 24px 0 16px;
  max-width: 742px;
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 6vw, 64px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: #fff;
}

.hero p {
  max-width: 602px;
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 24px;
}

.hero-points {
  display: grid;
  gap: 8px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
}

.hero-points .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 14px;
  font-weight: 700;
}

.section {
  padding: 92px 0;
}

.section-compare {
  text-align: center;
}

.section-compare h2,
.section-location h2,
.section-form h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4vw, 52px);
  font-weight: 700;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.section-intro {
  margin: 14px auto 40px;
  font-size: 16px;
  line-height: 24px;
}

.compare-grid {
  width: min(100%, 825px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.compare-column {
  display: grid;
  gap: 12px;
}

.compare-head {
  min-height: 59px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px 10px 0 0;
  font-size: 14px;
  font-weight: 700;
}

.compare-head.light {
  background: #f2f2f0;
  color: var(--text);
}

.compare-head.dark {
  background: var(--navy);
  color: #fff;
}

.compare-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 20px;
  border-radius: 10px;
  font-size: 14px;
  text-align: left;
}

.compare-item.negative {
  background: #f5f5f5;
}

.compare-item.positive {
  background: var(--mint-soft);
}

.compare-item .mark {
  width: 20px;
  flex: 0 0 20px;
  text-align: center;
  font-weight: 700;
}

.compare-item.negative .mark {
  color: var(--danger);
}

.compare-item.positive .mark {
  color: var(--text);
  font-size: 20px;
}

.center-cta {
  margin-top: 47px;
}

.section-pets .container {
  position: relative;
}

.pets-slider {
  position: relative;
  overflow: hidden;
}

.pets-track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}

.pets-slide {
  flex: 0 0 100%;
}

.pets-card {
  display: grid;
  grid-template-columns: minmax(280px, 499px) minmax(280px, 571px);
  justify-content: space-between;
  align-items: center;
  gap: 44px;
}

.pets-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pets-copy {
  max-width: 530px;
}

.pets-copy h2 {
  margin: 18px 0 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.1rem, 4vw, 44px);
  line-height: 1.04;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.pets-copy h2 span {
  color: var(--mint);
}

.pets-copy p {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 24px;
}

.pets-copy p strong {
  font-weight: 700;
}

.slider-arrows {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.slider-arrows button {
  width: 38px;
  height: 38px;
  border: 1px solid #d7d7d7;
  border-radius: 50%;
  background: #fff;
  color: #8c8c8c;
  font-size: 20px;
  cursor: pointer;
  pointer-events: auto;
}

.slider-arrows button[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 58, 93, 0.18);
  cursor: pointer;
}

.slider-dot.is-active {
  background: var(--navy);
}

.section-location {
  background: var(--cream);
}

.section-location h2,
.section-location .section-intro {
  text-align: center;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(280px, 522px) minmax(280px, 526px);
  justify-content: space-between;
  align-items: start;
  gap: 36px;
}

.location-list {
  display: grid;
  gap: 10px;
}

.location-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
}

.location-icon {
  width: 44px;
  height: 44px;
}

.location-copy {
  font-size: 14px;
  line-height: 1.2;
}

.location-copy strong {
  display: block;
  margin-bottom: 2px;
  color: var(--text);
}

.map-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 446px;
  border: 0;
}

.section-form {
  background: var(--navy);
  text-align: center;
  color: #fff;
}

.section-form h2 {
  color: #fff;
}

.section-form .section-intro {
  max-width: 586px;
  color: #fff;
}

.contact-layout {
  width: min(100%, 760px);
  margin: 34px auto 0;
  display: grid;
  gap: 18px;
  justify-items: center;
}

.office-card {
  padding: 24px 28px;
  border-radius: 20px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  text-align: left;
}

.office-card--footer {
  width: 100%;
  display: grid;
  gap: 14px;
}

.office-card__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mint);
}

.office-card__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.office-card__item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
}

.office-card__icon {
  font-size: 20px;
  line-height: 1.2;
}

.office-card__item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.form-card {
  width: min(100%, 514px);
  margin: 0;
  padding: 36px 32px 22px;
  border-radius: 20px;
  background: #f2f2f0;
  color: var(--text-dark);
  text-align: left;
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
}

.field input {
  width: 100%;
  height: 47px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  font-size: 14px;
}

.field textarea {
  width: 100%;
  min-height: 120px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid rgba(37, 95, 132, 0.18);
  border-color: var(--accent);
}

.field-checkbox {
  margin: 18px 0 20px;
}

.checkbox-label {
  display: flex !important;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 0 !important;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.checkbox-label span {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text);
}

.form-card .button {
  width: 100%;
  margin-top: 6px;
  min-height: 59px;
}

.form-card .button.is-loading {
  opacity: 0.7;
  cursor: wait;
}

.form-response {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.form-response.is-success {
  background: rgba(58, 122, 98, 0.12);
  color: #1f604b;
}

.form-response.is-error {
  background: rgba(168, 64, 64, 0.12);
  color: #8f3131;
}

.form-note {
  margin: 12px 0 0;
  font-size: 11px;
  line-height: 24px;
  text-align: center;
  color: var(--text);
}

.mobile-menu {
  display: none;
}

@media (max-width: 1120px) {
  .nav {
    gap: 14px;
  }

  .hero .container {
    padding-top: 88px;
    padding-bottom: 64px;
  }

  .pets-card,
  .location-layout {
    grid-template-columns: 1fr;
  }

  .slider-arrows {
    position: static;
    justify-content: flex-end;
    margin-bottom: 18px;
  }
}

@media (max-width: 860px) {
  .site-header .container {
    position: relative;
    min-height: 92px;
  }

  .nav,
  .phone-chip {
    display: none;
  }

  .mobile-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    color: #fff;
    background: transparent;
  }

  .site-header .nav.is-open {
    position: absolute;
    top: calc(100% - 6px);
    left: 12px;
    right: 12px;
    display: grid;
    gap: 2px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(7, 47, 72, 0.98);
    box-shadow: 0 18px 36px rgba(0, 20, 34, 0.24);
  }

  .site-header .nav.is-open a {
    display: block;
    padding: 14px 12px;
    border-radius: 10px;
  }

  .site-header .nav.is-open a:hover,
  .site-header .nav.is-open a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
  }

  .hero {
    min-height: 640px;
    background-position: 68% center;
  }

  .compare-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .hero h1 {
    margin-top: 18px;
    line-height: 0.98;
  }

  .hero p {
    font-size: 16px;
  }

  .button,
  .phone-chip {
    width: 100%;
  }

  .pets-card,
  .location-layout {
    gap: 24px;
  }

  .form-card {
    padding: 24px 18px 18px;
  }

  .office-card {
    padding: 24px 18px;
  }

  .office-card__details {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
