:root {
  --ink: #151a1f;
  --graphite: #1f2930;
  --muted: #6d7680;
  --line: #d9e1e3;
  --paper: #f6f8f6;
  --white: #ffffff;
  --teal: #0b615e;
  --teal-dark: #084947;
  --mint: #dff1ea;
  --amber: #d4842f;
  --coral: #c85f4a;
  --shadow: 0 24px 80px rgba(16, 28, 32, 0.16);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  max-width: 100%;
  overflow-x: hidden;
}

body::selection {
  background: var(--mint);
}

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

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

.site-header {
  position: fixed;
  inset: 18px 24px auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 66px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(16, 24, 28, 0.38);
  color: var(--white);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(18, 28, 32, 0.9);
  border-color: rgba(255, 255, 255, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--teal-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  font-weight: 700;
}

.brand-mark-logo img {
  width: 25px;
  height: 32px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand strong {
  font-size: 15px;
  font-weight: 800;
}

.brand small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  margin-top: 2px;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  opacity: 0.82;
  transition: opacity 160ms ease;
}

.main-nav a:hover {
  opacity: 1;
}

.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: var(--radius);
  font-weight: 800;
  white-space: nowrap;
}

.header-call {
  padding: 0 16px;
  background: var(--white);
  color: var(--teal-dark);
  font-size: 14px;
}

.button {
  padding: 0 18px;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--amber);
  color: #17110a;
  box-shadow: 0 16px 40px rgba(212, 132, 47, 0.22);
}

.button-glass {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
}

.button-outline {
  border-color: var(--teal);
  color: var(--teal-dark);
  background: transparent;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--graphite);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.95) contrast(1.04);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 18, 22, 0.88) 0%, rgba(10, 18, 22, 0.7) 43%, rgba(10, 18, 22, 0.2) 78%),
    linear-gradient(0deg, rgba(10, 18, 22, 0.62) 0%, rgba(10, 18, 22, 0) 36%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: 126px 0 64px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.95;
  font-weight: 700;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: 78px;
}

h2 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: 54px;
}

h3 {
  font-size: 21px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.hero-copy {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 21px;
}

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

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: 12px;
  width: min(720px, 100%);
  margin: 54px 0 0;
}

.hero-facts div {
  min-height: 110px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-facts dt {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
}

.hero-facts dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.35;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 98px 0;
}

section[id] {
  scroll-margin-top: 104px;
}

#staff-title,
#symptoms-title {
  scroll-margin-top: 104px;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
}

.process-section {
  padding-top: 118px;
  padding-bottom: 48px;
}

.image-feature {
  margin: 0;
}

.image-feature img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
}

.image-feature figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.process-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  align-items: stretch;
}

.process-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
}

.process-photo {
  display: flex;
  flex-direction: column;
  order: 1;
  flex: 1 1 auto;
  min-height: 0;
}

.process-photo::after {
  display: none;
}

.process-photo img {
  height: 0;
  flex: 1 1 auto;
  min-height: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.process-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.process-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--teal-dark);
  font-weight: 900;
}

.process-grid p {
  color: var(--muted);
}

.process-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  order: 2;
  margin-top: 0;
}

.process-actions .button {
  min-height: 60px;
}

.process-team-divider {
  position: relative;
  display: grid;
  width: min(1180px, calc(100% - 48px));
  height: 86px;
  margin: 0 auto;
  place-items: center;
}

.process-team-divider__rail {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 12%, var(--line) 88%, transparent);
}

.process-team-divider__rail::before,
.process-team-divider__rail::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.process-team-divider__rail::before {
  left: 24%;
  background: var(--amber);
}

.process-team-divider__rail::after {
  right: 24%;
  background: var(--teal);
}

.process-team-divider__seal {
  position: relative;
  z-index: 1;
  display: grid;
  width: 68px;
  height: 68px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 12px 24px rgba(8, 73, 71, 0.08);
  place-items: center;
}

.process-team-divider__paw {
  position: relative;
  width: 30px;
  height: 30px;
}

.process-team-divider__paw > span {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: var(--teal);
}

.process-team-divider__paw > span:nth-child(1) {
  top: 8px;
  left: 1px;
  width: 8px;
  height: 10px;
  transform: rotate(-20deg);
}

.process-team-divider__paw > span:nth-child(2) {
  top: 1px;
  left: 9px;
  width: 8px;
  height: 10px;
}

.process-team-divider__paw > span:nth-child(3) {
  top: 8px;
  right: 1px;
  width: 8px;
  height: 10px;
  transform: rotate(20deg);
}

.process-team-divider__paw > span:nth-child(4) {
  bottom: 0;
  left: 8px;
  width: 15px;
  height: 13px;
  border-radius: 52% 48% 58% 42%;
}

.staff-section {
  padding-top: 56px;
  padding-bottom: 48px;
}

.staff-section .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 28px;
  align-items: end;
}

.staff-section .section-heading h2 {
  margin-bottom: 0;
}

.staff-section .section-heading p:not(.eyebrow) {
  margin-bottom: 4px;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.staff-interns {
  margin-top: 48px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.staff-interns::before {
  content: "";
  display: block;
  width: 46px;
  height: 4px;
  margin: -36px 0 30px;
  border-radius: 999px;
  background: var(--mint);
}

.staff-interns__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.staff-card,
.trust-grid article,
.services-grid article,
.triage-result,
.price-table,
.review-proof article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.staff-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  min-height: 430px;
  overflow: hidden;
}

.staff-interns__grid .staff-card {
  grid-template-columns: 1fr;
  min-height: 0;
}

.staff-interns__grid .staff-card > img {
  width: 100%;
  height: 540px;
  min-height: 0;
  object-fit: cover;
  object-position: center 20%;
}

.staff-interns__grid .staff-info {
  padding: 22px;
}

.staff-interns__grid .staff-role {
  margin-bottom: 8px;
  font-size: 11px;
}

.staff-interns__grid h3 {
  font-size: 23px;
  line-height: 1.12;
}

.staff-interns__grid .staff-info dl {
  gap: 11px;
  margin-top: 16px;
}

.staff-interns__grid .staff-info dt {
  font-size: 10px;
}

.staff-interns__grid .staff-info dd {
  font-size: 14px;
  line-height: 1.42;
}

.staff-card > img,
.staff-placeholder {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center top;
}

.staff-placeholder {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(223, 241, 234, 0.95), rgba(255, 255, 255, 0.78)),
    repeating-linear-gradient(45deg, rgba(11, 97, 94, 0.08) 0 1px, transparent 1px 12px);
  color: var(--teal-dark);
}

.staff-placeholder span {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 1px solid rgba(11, 97, 94, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 54px;
  font-weight: 700;
}

.staff-info {
  padding: 28px;
}

.staff-card--brief .staff-info {
  display: grid;
  align-content: center;
}

.process-dachshund {
  object-position: center 38%;
}

.staff-role {
  margin-bottom: 10px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.staff-info dl {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
}

.staff-info dt {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.staff-info dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.trust-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 40px;
  align-items: start;
  padding-top: 56px;
}

.trust-copy {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  min-height: 476px;
}

.trust-copy p:not(.eyebrow) {
  color: var(--muted);
}

.trust-phrase {
  color: var(--ink);
  font-weight: 700;
}

.trust-action {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(226, 243, 236, 0.92), rgba(255, 255, 255, 0.9));
}

.trust-action > span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-action .button {
  width: 100%;
  min-height: 60px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.trust-grid article {
  min-height: 230px;
  padding: 28px;
}

.trust-grid svg {
  color: var(--coral);
  margin-bottom: 22px;
}

.trust-grid p,
.services-grid p,
.symptoms-copy p {
  color: var(--muted);
}

.services-section {
  width: 100%;
  max-width: none;
  background: #eaf0ef;
  padding: 76px max(24px, calc((100% - 1180px) / 2)) 82px;
}

.services-section .section-heading {
  margin-bottom: 28px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.services-grid article {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 466px;
}

.services-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.services-grid .service-photo-frame {
  display: block;
  flex: 0 0 220px;
  height: 220px;
  padding: 0;
  overflow: hidden;
}

.services-grid .service-photo-frame img {
  display: block;
  height: 100%;
}

.services-grid img.service-photo-diagnostics {
  object-position: 18% center;
  transform: scale(1.42);
  transform-origin: 18% 52%;
}

.services-grid div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  min-height: 50px;
  padding: 0 15px;
  border: 1px solid rgba(8, 73, 71, 0.28);
  border-radius: var(--radius);
  background: var(--teal-dark);
  margin-top: auto;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(8, 73, 71, 0.12);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.service-link:hover {
  transform: translateY(-2px);
  background: var(--teal);
  box-shadow: 0 18px 38px rgba(8, 73, 71, 0.18);
}

.service-link::after {
  content: "→";
  margin-left: 8px;
}

.decision-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 76px max(24px, calc((100% - 1180px) / 2));
  background: var(--graphite);
  color: var(--white);
}

.decision-band h2 {
  max-width: 620px;
  margin-bottom: 18px;
}

.decision-band p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
}

.decision-points {
  display: grid;
  gap: 12px;
}

.decision-points div {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.decision-points strong {
  color: var(--mint);
}

.decision-points span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.45;
}

.symptoms-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
  padding-top: 76px;
  padding-bottom: 48px;
}

.symptoms-copy {
  max-width: 760px;
}

.triage {
  display: grid;
  gap: 16px;
}

.triage-buttons {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.triage-button {
  min-height: 64px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--graphite);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.triage-button.is-active {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
}

.triage-result {
  padding: 32px;
  min-height: 300px;
  box-shadow: var(--shadow);
}

.triage-result span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.triage-result .button {
  margin-top: 10px;
}

.prices-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 40px;
  align-items: stretch;
  padding-top: 56px;
}

.price-aside {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(255px, 0.9fr);
  grid-template-rows: auto minmax(0, 1fr);
  gap: 18px;
  align-self: stretch;
}

.price-note-card {
  grid-column: 1 / -1;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--graphite);
  color: var(--white);
  box-shadow: 0 24px 70px rgba(16, 28, 32, 0.13);
}

.price-note-card > strong {
  max-width: 360px;
  font-size: 21px;
  line-height: 1.25;
}

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

.price-note-list div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.price-note-list span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.price-note-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.5;
}

.price-aside .section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  text-align: center;
}

.price-aside .section-heading h2 {
  margin-bottom: 0;
}

.price-actions {
  display: grid;
  align-self: start;
}

.price-actions .button {
  min-height: 76px;
  padding: 20px 22px;
  white-space: normal;
}

.price-table {
  overflow: hidden;
}

.price-table div {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 18px;
  align-items: center;
  min-height: 68px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
}

.price-table div:last-child {
  border-bottom: 0;
}

.price-table strong {
  justify-self: end;
  color: var(--teal-dark);
  font-size: 19px;
}

.animals-section {
  width: 100%;
  max-width: none;
  background: var(--graphite);
  color: var(--white);
  padding: 92px max(24px, calc((100% - 1180px) / 2));
}

.animals-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 42px;
  align-items: center;
  width: min(1180px, 100%);
}

.animals-section .section-heading {
  width: auto;
}

.animal-photo img {
  height: 360px;
  aspect-ratio: 16 / 8;
}

.animal-photo img.animal-photo-rodent {
  object-position: center 50%;
}

.animal-photo figcaption {
  color: rgba(255, 255, 255, 0.68);
}

.animal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: min(980px, 100%);
  margin-top: 28px;
}

.animal-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.reviews-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
  align-items: stretch;
}

.review-score {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 36px;
  border-radius: var(--radius);
  background: var(--graphite);
  color: var(--white);
}

.review-map-card {
  display: grid;
  grid-template-rows: minmax(330px, 1fr) auto;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.review-map-card iframe {
  width: 100%;
  min-height: 330px;
  border: 0;
  filter: saturate(0.92) contrast(0.98);
}

.review-map-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}

.review-map-proof div {
  padding: 22px;
  background: var(--white);
}

.review-map-proof span {
  display: block;
  margin-bottom: 10px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
}

.review-map-proof strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 16px;
  line-height: 1.25;
}

.review-map-proof p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.review-score h2 {
  margin-bottom: 18px;
}

.review-score p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.score-line {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: end;
  margin: 10px 0 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.score-line strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 92px;
  line-height: 0.8;
}

.score-line span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.review-score .button {
  width: 100%;
  margin-top: auto;
}

.review-cta {
  border-color: transparent;
  background: var(--amber);
  box-shadow: 0 12px 28px rgba(219, 137, 40, 0.22);
  color: #11191d;
}

.review-cta:hover {
  border-color: transparent;
  background: #eca54a;
  color: #11191d;
}

.review-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.review-proof article {
  min-height: 430px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.review-proof span {
  display: block;
  margin-bottom: 26px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.review-proof h3 {
  max-width: 260px;
  margin-bottom: 18px;
}

.review-proof p {
  color: var(--muted);
}

.clinic-visual-section {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 44px;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 98px 0 20px;
}

.clinic-photo img {
  height: 430px;
  aspect-ratio: 16 / 9;
}

.clinic-photo img.clinic-photo-cat {
  object-position: center 30%;
}

.clinic-visual-section p:not(.eyebrow) {
  color: var(--muted);
}

.contact-footer {
  overflow: hidden;
  padding: 52px 24px;
  background:
    radial-gradient(circle at 76% 18%, rgba(11, 97, 94, 0.15), transparent 27%),
    linear-gradient(135deg, #10181c 0%, #11191d 52%, #0d1518 100%);
  color: var(--white);
}

.contact-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(330px, 0.76fr);
  gap: 56px;
  align-items: stretch;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.contact-footer-copy {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: 274px;
  padding: 26px 0 20px;
}

.contact-footer-intro {
  align-self: center;
}

.contact-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.contact-footer-brand .brand-mark {
  width: 54px;
  height: 54px;
}

.contact-footer-brand .brand-mark-logo img {
  width: 32px;
  height: 41px;
}

.contact-footer-brand strong,
.contact-footer-brand small,
.contact-footer-action span,
.contact-footer-action strong {
  display: block;
}

.contact-footer-brand strong {
  color: var(--white);
  font-size: 23px;
  line-height: 1.2;
}

.contact-footer-brand small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.4;
}

.contact-footer h2 {
  color: var(--white);
  font-size: 54px;
  line-height: 0.96;
}

.contact-footer p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.55;
}

.contact-footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 13px;
  line-height: 1.4;
}

.contact-footer-meta span {
  display: inline-flex;
  align-items: center;
}

.contact-footer-meta span + span::before {
  content: "";
  width: 4px;
  height: 4px;
  margin-right: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.contact-footer-panel {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  min-height: 274px;
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-footer-action {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 0;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: transparent;
  color: var(--white);
}

.contact-footer-action + .contact-footer-action {
  margin-top: 0;
}

.contact-footer-action:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-footer-action-primary {
  background: transparent;
  color: var(--white);
}

.contact-action-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--amber);
}

.contact-action-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
}

.contact-footer-action-primary .contact-action-icon {
  background: transparent;
}

.contact-footer-action > span:not(.contact-action-icon) > span {
  color: rgba(255, 255, 255, 0.44);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-footer-action-primary > span:not(.contact-action-icon) > span {
  color: rgba(255, 255, 255, 0.44);
}

.contact-footer-action strong {
  margin-top: 6px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.22;
}

.contact-footer-action-primary strong {
  color: var(--white);
}

svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  stroke-width: 2.2;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .main-nav {
    display: none;
  }

  .header-call {
    justify-self: end;
  }

  .process-layout,
  .trust-section,
  .animals-layout,
  .clinic-visual-section,
  .symptoms-section,
  .prices-section {
    grid-template-columns: 1fr;
  }

  .staff-section .section-heading,
  .staff-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .staff-interns__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .staff-interns__grid .staff-card:last-child {
    grid-column: 1 / -1;
    width: calc((100% - 14px) / 2);
    justify-self: center;
  }

  .staff-interns__grid .staff-card > img {
    height: clamp(460px, 52vw, 540px);
  }

  .staff-section .section-heading p:not(.eyebrow) {
    max-width: 680px;
  }

  .symptoms-copy {
    position: static;
  }

  .trust-copy {
    min-height: 0;
  }

  .trust-action {
    margin-top: 24px;
  }

  .reviews-panel,
  .contact-footer-inner {
    grid-template-columns: 1fr;
  }

  .contact-footer-inner {
    gap: 34px;
  }

  .contact-footer-copy {
    min-height: 0;
    row-gap: 22px;
    padding: 22px 0 18px;
  }

  .contact-footer-panel {
    min-height: 0;
    padding: 20px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .price-aside {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.55fr);
    grid-template-rows: auto auto;
    min-height: 0;
  }

  .review-map-proof {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .triage-buttons {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .decision-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 92px;
  }

  body {
    font-size: 16px;
  }

  .site-header {
    inset: 10px 12px auto;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 58px;
    padding: 8px;
  }

  .brand {
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .brand strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 25px;
  }

  .header-call {
    min-width: 48px;
    padding: 0 12px;
  }

  .header-call span {
    display: none;
  }

  .hero-content {
    width: min(1180px, calc(100% - 28px));
    max-width: calc(100% - 28px);
    padding-top: 116px;
  }

  .hero-image {
    inset: clamp(42px, 12vw, 48px) 0 auto;
    height: 100%;
    object-position: 50% center;
  }

  h1 {
    max-width: min(420px, 100%);
    font-size: 44px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    min-width: 0;
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-facts,
  .process-grid,
  .staff-card,
  .trust-grid,
  .services-grid,
  .review-proof {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    margin-top: 24px;
  }

  .section,
  .services-section,
  .animals-section {
    width: min(1180px, calc(100% - 28px));
    padding: 70px 0;
  }

  section[id] {
    scroll-margin-top: 82px;
  }

  #staff-title,
  #symptoms-title {
    scroll-margin-top: 92px;
  }

  .services-section,
  .animals-section {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .services-section {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .services-section .section-heading {
    margin-bottom: 26px;
  }

  .process-section {
    padding-top: 86px;
    padding-bottom: 34px;
  }

  .process-team-divider {
    width: min(1180px, calc(100% - 28px));
    height: 72px;
  }

  .process-team-divider__seal {
    width: 58px;
    height: 58px;
  }

  .process-team-divider__rail {
    left: 3%;
    right: 3%;
  }

  .staff-section {
    padding-top: 42px;
    padding-bottom: 34px;
  }

  .trust-section {
    padding-top: 42px;
  }

  .process-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  #symptoms {
    padding-top: 58px;
    padding-bottom: 34px;
  }

  .prices-section {
    padding-top: 42px;
  }

  .process-photo {
    flex: 0 0 auto;
    min-height: 0;
  }

  .process-photo::after {
    display: none;
  }

  .process-photo img {
    height: 300px;
    flex: 0 0 auto;
    min-height: 0;
  }

  .staff-card > img,
  .staff-placeholder,
  .animal-photo img,
  .clinic-photo img {
    height: 280px;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .staff-interns {
    margin-top: 42px;
    padding-top: 28px;
  }

  .staff-interns::before {
    margin-top: -30px;
    margin-bottom: 24px;
  }

  .staff-interns__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .staff-interns__grid .staff-card:last-child {
    grid-column: auto;
    width: 100%;
    justify-self: stretch;
  }

  .staff-interns__grid .staff-card > img {
    height: min(540px, 145vw);
    min-height: 0;
    aspect-ratio: 2 / 3;
  }

  .staff-card > img.staff-photo--pavlov {
    object-position: center 12%;
  }

  .staff-card > img.staff-photo--nikolaenkova {
    object-position: center 48%;
  }

  .staff-card > img.staff-photo--ragulevich {
    object-position: center 34%;
  }

  .staff-card > img.staff-photo--aleksandrovich {
    object-position: center 20%;
  }

  .staff-card > img.staff-photo--martinovich {
    object-position: center 27%;
  }

  .staff-info,
  .process-grid article,
  .triage-result,
  .review-score,
  .review-proof article,
  .trust-grid article {
    padding: 24px;
  }

  .review-score,
  .review-proof article,
  .review-map-card {
    min-height: 0;
  }

  .review-map-card {
    grid-template-rows: 300px auto;
  }

  .review-map-card iframe {
    min-height: 300px;
  }

  .score-line strong {
    font-size: 72px;
  }

  .price-aside {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .price-note-card {
    padding: 22px;
  }

  .price-note-list div {
    padding: 12px;
  }

  .price-actions .button {
    min-height: 64px;
  }

  .price-table div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .price-table strong {
    justify-self: start;
  }

  .triage-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .decision-band {
    padding: 66px 14px;
  }

  .clinic-visual-section {
    width: min(1180px, calc(100% - 28px));
    padding: 70px 0 10px;
  }

  .clinic-visual-section .button {
    width: 100%;
  }

  .decision-band .button {
    width: 100%;
  }

  .price-actions .button {
    width: 100%;
  }

  .contact-footer {
    padding: 46px 14px;
  }

  .contact-footer-inner {
    gap: 22px;
  }

  .contact-footer-copy {
    row-gap: 22px;
    padding: 18px 0;
  }

  .contact-footer-brand {
    align-items: flex-start;
  }

  .contact-footer-brand strong {
    font-size: 18px;
  }

  .contact-footer-brand small {
    font-size: 13px;
  }

  .contact-footer h2 {
    font-size: 38px;
  }

  .contact-footer p:not(.eyebrow) {
    font-size: 16px;
  }

  .contact-footer-meta {
    display: grid;
    gap: 6px;
  }

  .contact-footer-meta span + span::before {
    display: none;
  }

  .contact-footer-panel {
    padding: 16px 0 0;
  }

  .contact-footer-action {
    min-height: 64px;
    padding: 10px 0;
  }
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}
