:root {
  --ink: #454a4d;
  --ink-deep: #292d30;
  --pewter: #646b6f;
  --pewter-dark: #3d4245;
  --pewter-light: #d7d9da;
  --pewter-soft: #eceeef;
  --red: #a4282d;
  --red-dark: #7c1c22;
  --red-light: #bd4449;
  --red-soft: #f2e3e4;
  --cream: #ffffff;
  --paper: #f3f4f4;
  --gray: #707579;
  --line: rgba(69, 74, 77, 0.16);
  --shadow: 0 24px 70px rgba(41, 45, 48, 0.14);
  --radius: 30px;
}

html {
  scroll-padding-top: 100px;
}

body {
  color: var(--ink);
  background: var(--cream);
}

::selection {
  color: var(--cream);
  background: var(--red);
}

.skip-link {
  position: fixed;
  z-index: 999;
  left: 16px;
  top: -80px;
  padding: 12px 18px;
  border-radius: 99px;
  color: white;
  background: var(--ink);
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 16px;
}

.announcement {
  justify-content: space-between;
  min-height: 36px;
  padding: 7px 4vw;
  background: var(--ink-deep);
}

.announcement strong {
  color: white;
}

.announcement span {
  opacity: 0.78;
}

.site-header {
  min-height: 82px;
  grid-template-columns: minmax(220px, 0.9fr) auto minmax(220px, 0.9fr);
  gap: 22px;
  padding: 8px 3vw;
  background: color-mix(in srgb, var(--cream) 92%, transparent);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--cream);
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hospital-brand {
  gap: 11px;
  width: 100%;
  min-width: 0;
}

.hospital-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.hospital-brand span {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1vw, 18px);
  width: max-content;
  max-width: 100%;
  min-width: 0;
  line-height: 1;
}

.hospital-brand strong {
  flex: 0 0 auto;
  font-family: "Manrope", sans-serif;
  font-size: clamp(15px, 1.12vw, 18px);
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.hospital-brand small {
  flex: 0 0 auto;
  margin: 0;
  padding-left: clamp(10px, 1vw, 18px);
  border-left: 1px solid var(--pewter-light);
  color: var(--red);
  font-size: clamp(7px, 0.56vw, 9px);
  font-weight: 700;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.main-nav {
  gap: 20px;
}

.main-nav a,
.products-menu-button {
  font-size: 12px;
  font-weight: 700;
}

.main-nav .nav-shop {
  padding: 8px 12px;
  border: 1px solid var(--red);
  border-radius: 99px;
  color: var(--red);
  white-space: nowrap;
}

.products-menu-button {
  padding: 9px 13px;
  border-radius: 99px;
  color: white;
  background: var(--ink);
}

.header-actions {
  justify-self: end;
  gap: 8px;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 99px;
  color: white;
  background: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.cart-button {
  background: var(--ink);
}

.cart-count {
  color: white;
  background: var(--red);
}

.cart-button-logo {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  object-fit: contain;
  border-radius: 50%;
  background: white;
}

.products-menu {
  border-color: var(--line);
  background: var(--cream);
}

.products-menu-item:hover {
  background: var(--pewter-soft);
}

.section {
  padding: 120px 5vw;
}

main > section {
  position: relative;
  isolation: isolate;
}

main > section > :not(.section-grid-background):not(.section-background-video) {
  position: relative;
  z-index: 1;
}

.section-grid-background {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(69, 74, 77, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 74, 77, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.section-grid-background::before {
  content: "";
  position: absolute;
  inset: clamp(10px, 2vw, 32px);
  background: url("assets/brand/baldwin-hospital-watermark.png") center / contain no-repeat;
  opacity: 0.12;
  animation: brandPresencePulse 6.5s ease-in-out infinite;
}

main > section:is(
  .about-section,
  .offers-section,
  .shop-story,
  .care-guide,
  .gallery-section,
  .insurance-section,
  .contact-section
) > .section-grid-background {
  background:
    linear-gradient(rgba(255, 255, 255, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.065) 1px, transparent 1px);
  background-size: 48px 48px;
}

main > section:is(
  .about-section,
  .offers-section,
  .shop-story,
  .care-guide,
  .gallery-section,
  .insurance-section,
  .contact-section
) > .section-grid-background::before {
  filter: brightness(2.15) saturate(0.72);
  opacity: 0.16;
}

.eyebrow {
  color: var(--red);
  letter-spacing: 0.14em;
}

.button {
  border-radius: 99px;
}

.button-primary {
  color: white;
  background: var(--red);
  box-shadow: 0 12px 28px rgba(164, 40, 45, 0.2);
}

.button-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.button-dark {
  background: var(--ink);
}

.button-light {
  color: var(--ink);
  background: white;
}

.hospital-hero {
  position: relative;
  isolation: isolate;
  min-height: min(850px, calc(100vh - 118px));
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: 5vw;
  padding: 78px 5vw 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(164, 40, 45, 0.09), transparent 30%),
    linear-gradient(140deg, var(--cream), var(--paper));
}

.hero-copy,
.hero-collage {
  position: relative;
  z-index: 1;
}

.hero-copy {
  z-index: 2;
}

.hospital-hero h1,
.section-intro h2,
.about-copy h2,
.team-section h2,
.shop-story h2,
.contact-section h2,
.gallery-section h2,
.insurance-section h2,
.faq-section h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.99;
}

.hospital-hero h1 {
  max-width: 730px;
  font-size: clamp(52px, 5.1vw, 84px);
}

.hospital-hero h1 em,
.shop-story h2 em {
  color: var(--red);
  font-family: Georgia, serif;
  font-weight: 400;
}

.hero-lede {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(69, 74, 77, 0.78);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.55;
}

.hospital-hero .hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
}

.hero-phone {
  display: grid;
  gap: 2px;
  padding-left: 18px;
  border-left: 2px solid var(--red);
  color: var(--ink);
  line-height: 1.1;
}

.hero-phone span {
  color: rgba(69, 74, 77, 0.68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-phone strong {
  font-family: "Manrope", sans-serif;
  font-size: 21px;
  letter-spacing: -0.035em;
}

.hero-phone:hover strong {
  color: var(--red);
}

.hero-comms-note {
  margin: 17px 0 0;
  color: rgba(69, 74, 77, 0.68);
  font-size: 13px;
}

.hero-comms-note::before {
  content: "";
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--red);
}

.hero-comms-note strong {
  color: var(--ink);
}

.covetrus-text-link {
  color: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.covetrus-text-link:hover,
.covetrus-text-link:focus-visible {
  color: var(--red);
}

.hospital-hero .text-button {
  color: var(--ink);
}

.hospital-hero .trust-row {
  gap: 32px;
  margin-top: 48px;
  color: rgba(69, 74, 77, 0.72);
}

.hospital-hero .trust-row span {
  display: grid;
  gap: 3px;
}

.hospital-hero .trust-row b {
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 24px;
}

.hero-collage {
  position: relative;
  min-height: 650px;
}

.hero-collage::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 500px;
  height: 500px;
  left: 6%;
  top: 8%;
  border-radius: 48% 52% 62% 38% / 45% 48% 52% 55%;
  background: var(--red);
  animation: organicMorph 12s ease-in-out infinite alternate;
}

.hero-photo {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  border: 8px solid var(--cream);
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-main {
  width: min(430px, 66%);
  height: 560px;
  left: 12%;
  top: 2%;
  border-radius: 210px 210px 42px 42px;
  transform: rotate(-3deg);
}

.hero-photo-clinical {
  width: min(310px, 48%);
  height: 230px;
  right: 0;
  bottom: 42px;
  border-radius: 40px;
  transform: rotate(4deg);
}

.orbit-note {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  color: white;
  background: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 14px 30px rgba(164, 40, 45, 0.2);
  animation: gentleFloat 5s ease-in-out infinite;
}

.orbit-note-one {
  right: 5%;
  top: 9%;
  border: 4px solid var(--pewter-light);
}

.orbit-note-two {
  width: 94px;
  height: 94px;
  left: 1%;
  bottom: 100px;
  border: 4px solid var(--red);
  color: var(--ink);
  background: var(--pewter-soft);
  animation-delay: -2.2s;
}

.hero-status {
  position: absolute;
  z-index: 4;
  right: 4%;
  top: 35%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-status div {
  display: grid;
  gap: 3px;
}

.hero-status small {
  color: rgba(69, 74, 77, 0.66);
}

.hero-status strong {
  font-size: 12px;
}

.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 7px rgba(164, 40, 45, 0.13);
  animation: statusPulse 2s ease-out infinite;
}

.care-marquee {
  overflow: hidden;
  padding: 18px 0;
  color: var(--cream);
  background: var(--ink);
}

.care-marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: marqueeMove 50s linear infinite;
}

.care-marquee-group {
  min-width: 100vw;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  padding: 0 2vw;
  box-sizing: border-box;
}

.care-marquee span {
  flex: 0 0 auto;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.care-marquee i {
  color: var(--red);
  font-style: normal;
}

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

.section-intro {
  max-width: 800px;
}

.section-intro h2 {
  font-size: clamp(46px, 5.4vw, 78px);
}

.section-intro > p:last-child {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(69, 74, 77, 0.72);
  font-size: 18px;
  line-height: 1.65;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 64px;
}

.service-card {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-card h3 {
  margin: 38px 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: 27px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.service-card p {
  margin: 0;
  color: rgba(69, 74, 77, 0.7);
  line-height: 1.55;
}

.service-card p a {
  color: var(--red);
  font-weight: 800;
  text-decoration-color: rgba(164, 40, 45, 0.38);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.service-card p a:hover {
  color: var(--red-dark);
  text-decoration-color: currentColor;
}

.service-card-advanced h3 {
  margin-bottom: 14px;
}

.service-card .service-english-name {
  margin: -6px 0 12px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.service-card > img {
  width: calc(100% + 52px);
  height: 220px;
  margin: auto -26px -26px;
  object-fit: cover;
  border-radius: 26px 26px 0 0;
}

.service-card > .pet-taxi-photo {
  padding: 18px;
  object-fit: contain;
  background: white;
}

.service-card-surgery .surgery-service-photo {
  object-position: center 44%;
}

.service-card > .boarding-service-photo {
  object-position: center 38%;
}

.service-card > .laser-surgery-service-photo {
  object-position: center;
}

.service-card > .vetscalpel-service-photo {
  padding: 0;
  object-fit: cover;
  object-position: center;
  background: var(--ink-deep);
}

.service-card-travel > img {
  padding: 20px;
  object-fit: contain;
  background: #eceeef;
}

.service-equipment-credit {
  width: fit-content;
  margin-top: 14px;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-number {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.service-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 64px minmax(220px, 0.75fr) minmax(260px, 1.25fr);
  align-items: center;
  gap: 24px;
  color: white;
  background: var(--red);
}

.service-featured .eyebrow,
.service-featured p {
  color: rgba(255, 255, 255, 0.76);
}

.service-featured h3 {
  margin: 8px 0 14px;
  font-size: 38px;
}

.service-featured > img {
  width: calc(100% + 26px);
  height: calc(100% + 52px);
  min-height: 418px;
  margin: -26px -26px -26px 0;
  border-radius: 90px 0 0 90px;
}

.service-featured .service-number {
  align-self: start;
  border-color: rgba(255, 255, 255, 0.42);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.service-tags span {
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--cream);
  font-size: 13px;
  font-weight: 700;
}

.about-section {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
  min-height: 480px;
  color: white;
  background: var(--ink);
}

.about-image {
  position: relative;
  min-height: 455px;
  overflow: hidden;
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 50%, var(--ink));
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image span {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 20px;
  padding: 8px 12px;
  border-radius: 99px;
  color: var(--ink);
  background: var(--cream);
  font-size: 11px;
  font-weight: 800;
}

.about-copy {
  align-self: center;
  max-width: 560px;
  padding: 54px 5vw 54px 32px;
}

.about-copy .eyebrow {
  color: var(--red);
}

.about-copy h2 {
  font-size: clamp(34px, 3.5vw, 48px);
}

.about-copy > p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.55;
}

.about-copy blockquote {
  margin: 22px 0;
  padding-left: 18px;
  border-left: 3px solid var(--red);
  color: white;
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.4;
}

.about-copy .button-dark {
  color: white;
  background: var(--red);
}

.relief-doctors {
  grid-column: 1 / -1;
  padding: 0 5vw 44px;
}

.relief-doctors-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(280px, 1.3fr);
  align-items: end;
  gap: 36px;
  padding: 28px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.relief-doctors-heading .eyebrow {
  margin: 0 0 7px;
}

.relief-doctors-heading h3 {
  margin: 0;
  color: white;
  font: 800 clamp(24px, 2.3vw, 34px)/1 "Manrope", sans-serif;
  letter-spacing: -0.045em;
}

.relief-doctors-heading > p {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.55;
}

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

.relief-doctor-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.075);
}

.relief-doctor-photo {
  position: relative;
  width: 64px;
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.92);
}

.relief-doctor-photo img {
  width: 86%;
  height: 86%;
  object-fit: contain;
  opacity: 0.14;
  transition: transform 220ms ease;
}

.relief-doctor-photo span {
  position: absolute;
  color: var(--red);
  font: 800 15px/1 "Manrope", sans-serif;
  letter-spacing: 0.04em;
}

.relief-doctor-photo.has-profile-photo {
  display: block;
  background: white;
}

.relief-doctor-photo.has-profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 1;
}

.relief-doctor-photo.has-profile-photo:hover img,
.relief-doctor-photo.has-profile-photo:focus-visible img {
  transform: scale(1.04);
}

.relief-doctor-card small {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.relief-doctor-card h4 {
  margin: 0;
  color: white;
  font: 700 14px/1.25 "Manrope", sans-serif;
}

.relief-doctor-instagram {
  display: inline-block;
  margin-top: 6px;
  color: #f1b9bc;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.relief-doctor-instagram:hover,
.relief-doctor-instagram:focus-visible {
  color: white;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.team-section {
  background: var(--paper);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 60px;
}

.doctor-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.doctor-photo {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
}

.doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-photo-eduardo img {
  object-position: center top;
}

.doctor-card:nth-child(2) .doctor-photo img {
  object-position: 50% 42%;
}

#dalied-rodriguez .doctor-photo img {
  object-fit: contain;
  object-position: center top;
}

.doctor-card > div:last-child {
  align-self: center;
  padding: 28px;
}

.doctor-card span {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.doctor-card h3 {
  margin: 10px 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(22px, 2vw, 25px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.doctor-card p {
  color: rgba(69, 74, 77, 0.72);
  font-size: 14px;
  line-height: 1.58;
}

.doctor-bio {
  margin-top: 16px;
  border-top: 1px solid var(--line);
}

.doctor-bio summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.doctor-bio summary::-webkit-details-marker {
  display: none;
}

.doctor-bio summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 500;
  transition: transform 180ms ease;
}

.doctor-bio[open] summary::after {
  transform: rotate(45deg);
}

.doctor-bio div {
  padding: 0 0 8px;
}

.doctor-bio div p {
  margin: 0 0 12px;
  font-size: 13px;
}

.staff-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin: 74px 0 26px;
}

.staff-heading p {
  margin: 0;
}

.staff-heading h3 {
  margin: 0;
  font: 800 clamp(30px, 3.4vw, 48px)/1 "Manrope", sans-serif;
  letter-spacing: -0.055em;
}

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

.staff-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--ink);
}

.staff-card::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(transparent, rgba(41, 45, 48, 0.92));
  pointer-events: none;
}

.staff-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.staff-card:hover img {
  transform: scale(1.035);
}

.staff-card > div {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 20px;
  color: white;
}

.staff-card h4 {
  margin: 0;
  font: 800 20px/1.1 "Manrope", sans-serif;
  letter-spacing: -0.035em;
}

.staff-card p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  line-height: 1.4;
}

.staff-card:nth-child(3) img {
  object-position: 58% center;
}

.staff-card:nth-child(5) img {
  object-position: center 18%;
}

.offers-section {
  position: relative;
  isolation: isolate;
  min-height: 820px;
  padding: 120px 7vw;
  overflow: hidden;
  color: white;
  background: var(--ink-deep);
}

.offers-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(41, 45, 48, 0.94), rgba(41, 45, 48, 0.76) 52%, rgba(41, 45, 48, 0.88)),
    radial-gradient(circle at 14% 20%, rgba(164, 40, 45, 0.34), transparent 30%);
}

.section-background-video {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.16;
  filter: saturate(0.55) contrast(0.92);
  pointer-events: none;
}

.offers-background-video {
  opacity: 0.38;
  filter: saturate(0.72) contrast(0.96);
}

.offers-content {
  max-width: 1500px;
  margin: 0 auto;
}

.offers-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: end;
  gap: 7vw;
}

.offers-intro h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(52px, 6vw, 90px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.offers-intro > p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.65;
}

.offers-section .eyebrow {
  color: var(--red-light);
}

.offers-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: 18px;
  margin-top: 58px;
}

.offers-grid .event-card {
  min-height: 440px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.offer-date-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 18px 0 4px;
}

.offer-date-list time {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 99px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  font-size: 11px;
  font-weight: 800;
  text-transform: capitalize;
}

.offers-terms {
  max-width: 900px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.6;
}

.offers-terms a {
  color: white;
  font-weight: 800;
}

.news-events-section {
  background: var(--paper);
}

.news-events-intro {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: end;
  gap: 7vw;
}

.news-events-intro > p {
  margin: 0 0 8px;
  color: rgba(69, 74, 77, 0.72);
  font-size: 18px;
  line-height: 1.65;
}

.collaboration-banner {
  display: grid;
  grid-template-columns: minmax(270px, 360px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(26px, 4vw, 58px);
  margin-top: 54px;
  padding: 28px;
  border-radius: 28px;
  color: white;
  background: var(--ink);
}

.collaboration-banner img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  background: white;
}

.collaboration-banner div {
  display: grid;
  gap: 5px;
}

.collaboration-banner span {
  color: var(--red-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.collaboration-banner strong {
  font-family: "Manrope", sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.045em;
}

.collaboration-banner p {
  max-width: 620px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

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

.event-card,
.news-card {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 18px 50px rgba(41, 45, 48, 0.07);
}

.event-card {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 28px;
}

.event-card-featured {
  color: white;
  background: var(--red);
}

.event-date {
  width: 128px;
  height: 128px;
  display: grid;
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(164, 40, 45, 0.24);
  border-radius: 50%;
  color: var(--red);
  background: var(--red-soft);
  text-align: center;
}

.event-card-featured .event-date {
  border-color: rgba(255, 255, 255, 0.34);
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.event-date span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-date strong {
  font: 800 25px/1 "Manrope", sans-serif;
  letter-spacing: -0.045em;
}

.event-date-recurring strong {
  font-size: 20px;
}

.content-type {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-card-featured .content-type {
  color: white;
}

.event-card h3,
.news-card h3 {
  margin: 10px 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(25px, 2.5vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.event-card p,
.news-card p {
  color: rgba(69, 74, 77, 0.72);
  line-height: 1.6;
}

.event-card-featured p {
  color: rgba(255, 255, 255, 0.8);
}

.event-card ul {
  display: grid;
  gap: 7px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 700;
}

.event-card li::before {
  content: "+";
  margin-right: 8px;
  color: var(--red);
}

.event-card-featured li::before {
  color: white;
}

.event-card a,
.news-card a {
  display: inline-flex;
  margin-top: 6px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.event-card-featured a {
  color: white;
}

.upcoming-event-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 18px 0;
}

.upcoming-event-dates time {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--pewter-soft);
  font-size: 11px;
  font-weight: 800;
}

.news-card {
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
}

.news-card::before {
  content: "↗";
  position: absolute;
  right: 25px;
  top: 25px;
  color: var(--pewter-light);
  font: 800 34px/1 "Manrope", sans-serif;
}

.news-card p {
  max-width: 590px;
}

.news-card > a {
  margin-top: auto;
  padding-top: 24px;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 34px;
  padding-right: 42px;
  color: var(--gray);
  font-size: 11px;
  font-weight: 700;
}

.news-meta span {
  color: var(--ink);
}

.news-archive-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--pewter-soft);
}

.news-archive-link span {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-archive-link strong {
  font-family: "Manrope", sans-serif;
  text-align: right;
}

.shop-story {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 5vw;
  min-height: 760px;
  padding: 100px 7vw;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 12% 18%, rgba(164, 40, 45, 0.23), transparent 27%),
    var(--ink);
}

.shop-story-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.shop-mark {
  width: 92px;
  margin-bottom: 24px;
  padding: 8px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 14px 34px rgba(41, 45, 48, 0.3);
}

.shop-story h2 {
  font-size: clamp(50px, 5.8vw, 86px);
}

.shop-story .eyebrow {
  color: var(--red-light);
}

.shop-story-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.65;
}

.shop-opening-notice {
  max-width: 590px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  margin-top: 26px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 4px solid var(--red);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.shop-opening-notice > span {
  padding: 8px 11px;
  border-radius: 99px;
  color: white;
  background: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
}

.shop-opening-notice p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.5;
}

.shop-payment-highlight {
  max-width: 590px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  color: white;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(12px);
}

.shop-payment-highlight svg {
  width: 34px;
  fill: none;
  stroke: var(--red-light);
  stroke-width: 2;
}

.shop-payment-highlight div {
  display: grid;
  gap: 3px;
}

.shop-payment-highlight strong {
  font: 800 14px/1.2 "Manrope", sans-serif;
}

.shop-payment-highlight span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.shop-payment-highlight b {
  padding: 7px 10px;
  border-radius: 99px;
  color: var(--ink);
  background: white;
  font: italic 800 13px/1 "Manrope", sans-serif;
}

.shop-story .text-button {
  color: white;
}

.shop-story-art {
  position: relative;
  min-height: 560px;
}

.shop-logo-card {
  position: absolute;
  inset: 25px 13% 25px 13%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  border: 2px solid var(--ink);
  border-radius: 44px;
  background:
    radial-gradient(circle at 50% 48%, rgba(164, 40, 45, 0.12), transparent 32%),
    var(--cream);
  box-shadow: 18px 18px 0 var(--red);
  transform: rotate(-2deg);
}

.shop-logo-card img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 57%;
  margin: 0;
  transform: translate(-50%, -50%);
  animation: shopCartCenterFloat 5s ease-in-out infinite;
}

.shop-logo-card span,
.shop-logo-card strong {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-float {
  position: absolute;
  z-index: 3;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 6px solid var(--cream);
  outline: 3px solid #111111;
  outline-offset: 2px;
  border-radius: 50%;
  background: white;
  box-shadow: var(--shadow);
  animation: gentleFloat 5.5s ease-in-out infinite;
}

.product-float img {
  width: 78%;
  height: 78%;
  object-fit: contain;
}

.product-float-one {
  right: 2%;
  top: 3%;
}

.product-float-two {
  left: 1%;
  bottom: 1%;
  animation-delay: -2.7s;
}

.category-strip {
  border-color: var(--line);
  background: var(--cream);
}

.category-tile {
  min-height: 190px;
  color: var(--ink);
  background: var(--cream);
}

.category-tile:hover {
  color: white;
  background: var(--red);
}

.category-tile strong {
  margin-top: auto;
  font-family: "Manrope", sans-serif;
  font-size: 21px;
}

.category-tile small {
  margin-top: 6px;
}

.shop-section {
  padding: 120px 5vw;
  background: var(--cream);
}

.shop-section::before {
  background: var(--red);
}

.shop-section .section-heading h2 {
  font-size: clamp(48px, 5vw, 76px);
}

.catalog-preview-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 34px 0 0;
  padding: 18px 22px;
  border: 1px solid rgba(164, 40, 45, 0.22);
  border-radius: 18px;
  color: var(--ink);
  background: var(--red-soft);
}

.catalog-preview-notice strong {
  color: var(--red);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  white-space: nowrap;
}

.catalog-preview-notice span {
  color: rgba(69, 74, 77, 0.78);
  font-size: 14px;
  line-height: 1.45;
  text-align: right;
}

.filter-chip.active,
.filter-chip:hover {
  color: white;
  background: var(--red);
  border-color: var(--red);
}

.product-card {
  border-color: var(--line);
  background: white;
}

.product-card:hover {
  border-color: rgba(164, 40, 45, 0.4);
}

.add-button,
.quick-view {
  background: var(--ink);
}

.product-badge.rx {
  background: var(--red);
}

.care-guide {
  color: var(--cream);
  background: var(--red);
}

.guide-copy .eyebrow {
  color: white;
}

.guide-copy .button-dark {
  color: var(--ink-deep);
  background: white;
}

.guide-sun {
  display: grid;
  place-items: center;
}

.guide-sun img {
  width: 68%;
  height: 68%;
  object-fit: cover;
  border: 8px solid white;
  border-radius: 50%;
  background: white;
  box-shadow: 0 16px 42px rgba(41, 45, 48, 0.22);
}

.guide-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  color: var(--ink);
}

.guide-card b {
  align-self: center;
  margin: auto;
  font-family: "Manrope", sans-serif;
  font-size: 38px;
  letter-spacing: -0.06em;
}

.gallery-section {
  background: var(--ink);
  color: white;
}

.gallery-section .eyebrow {
  color: white;
}

.gallery-section .section-intro > p:last-child {
  color: rgba(255, 255, 255, 0.66);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-flow: dense;
  gap: 10px;
  margin-top: 60px;
}

.gallery-item {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: var(--ink-deep);
  cursor: zoom-in;
}

.gallery-item:nth-child(7n + 1) {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 430px;
}

.gallery-item:nth-child(9n + 4) {
  grid-column: span 2;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: var(--ink-deep);
  transition: opacity 220ms ease;
}

.gallery-item .gallery-person-photo {
  object-fit: contain;
  object-position: center;
  background: var(--ink-deep);
}

.gallery-item:hover img {
  opacity: 0.9;
}

.gallery-item:hover .gallery-person-photo {
  opacity: 0.9;
}

.gallery-item::after {
  content: "↗";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transform: translateY(5px);
  transition: 180ms ease;
}

.gallery-video-item::after {
  display: none;
}

.gallery-video-item {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 430px;
}

.gallery-video-item::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(0deg, rgba(41, 45, 48, 0.72), transparent 48%);
  pointer-events: none;
}

.gallery-video-item small {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 18px;
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-play {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  padding-left: 5px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%);
  transition: transform 220ms ease, background 220ms ease;
}

.gallery-video-item:hover .gallery-play {
  background: var(--red);
  transform: translate(-50%, -50%) scale(1.08);
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-dialog {
  width: min(92vw, 1180px);
  max-height: 92vh;
  padding: 0;
  border: 0;
  border-radius: 26px;
  background: var(--ink);
}

.gallery-dialog img,
.gallery-dialog video {
  display: block;
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
  object-position: center;
  background: var(--ink-deep);
}

.gallery-dialog video {
  height: min(88vh, 900px);
  background: var(--ink-deep);
}

.gallery-close {
  z-index: 2;
  color: white;
  background: var(--red);
}

.insurance-section {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(38px, 7vw, 100px);
  align-items: center;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 88% 16%, rgba(164, 40, 45, 0.32), transparent 27%),
    radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.07), transparent 26%),
    var(--ink-deep);
}

.insurance-section .eyebrow {
  color: var(--red-light);
}

.insurance-section h2 {
  max-width: 900px;
  font-size: clamp(42px, 5.2vw, 76px);
}

.insurance-lede {
  max-width: 820px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.7;
}

.insurance-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.insurance-highlights li {
  position: relative;
  min-height: 92px;
  padding: 17px 17px 17px 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 17px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.055);
  line-height: 1.48;
}

.insurance-highlights li::before {
  content: "✓";
  position: absolute;
  left: 17px;
  top: 17px;
  color: var(--red-light);
  font-weight: 900;
}

.insurance-disclaimer {
  max-width: 860px;
  margin: 20px 0 0;
  padding: 16px 18px;
  border-left: 4px solid var(--red);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  line-height: 1.55;
}

.insurance-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 25px;
}

.insurance-policy-link {
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.insurance-policy-link:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.insurance-visual {
  display: grid;
  gap: 14px;
}

.insurance-logo-card,
.insurance-stat,
.insurance-visual > p {
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

.insurance-logo-card {
  display: grid;
  place-items: center;
  min-height: 210px;
  padding: 34px;
  background: white;
}

.insurance-logo-card img {
  width: min(100%, 400px);
  height: auto;
  object-fit: contain;
}

.insurance-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 22px;
}

.insurance-stat strong {
  color: white;
  font-family: "Manrope", sans-serif;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.9;
}

.insurance-stat span,
.insurance-visual > p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.insurance-visual > p {
  margin: 0;
  padding: 20px 22px;
  font-size: 13px;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 8vw;
  background: var(--paper);
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--red);
  font-size: 28px;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 700px;
  margin: -4px 0 28px;
  color: rgba(69, 74, 77, 0.72);
  line-height: 1.65;
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  padding: 120px 7vw;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 12% 18%, rgba(164, 40, 45, 0.28), transparent 30%),
    radial-gradient(circle at 92% 82%, rgba(255, 255, 255, 0.07), transparent 24%),
    var(--ink);
}

.contact-section .eyebrow {
  color: var(--red-light);
}

.contact-section h2 {
  max-width: 620px;
  font-size: clamp(52px, 6vw, 92px);
}

.contact-copy > p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.6;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.contact-response-note {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 14px !important;
}

.contact-response-note strong {
  color: white;
}

.contact-section .button-primary {
  color: white;
  background: var(--red);
  box-shadow: none;
}

.contact-section .button-primary:hover {
  background: var(--red-light);
}

.contact-section .button-light {
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.contact-cards {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 10px;
}

.contact-cards article,
.directions-link {
  padding: 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.contact-cards article {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
}

.contact-cards article span {
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-cards strong {
  line-height: 1.5;
}

.contact-cards .social-card {
  align-items: center;
}

.contact-cards .hospital-payment-card {
  grid-template-columns: 155px minmax(0, 1fr);
  align-items: start;
}

.hospital-payment-card > div > strong {
  display: block;
  color: white;
}

.hospital-payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 13px;
}

.hospital-payment-badges b {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 99px;
  color: white;
  background: rgba(255, 255, 255, 0.09);
  font-size: 11px;
  line-height: 1.2;
}

.hospital-payment-card small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .insurance-section {
    grid-template-columns: 1fr;
  }

  .insurance-highlights {
    grid-template-columns: 1fr;
  }

  .insurance-highlights li {
    min-height: 0;
  }

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

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

  .contact-cards .hospital-payment-card {
    grid-template-columns: 1fr;
  }
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 99px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.52);
  background: var(--red);
}

.social-links svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-links a:first-child svg {
  stroke: none;
}

.social-links span {
  color: inherit !important;
  font-size: inherit !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.contact-cards .covetrus-card {
  grid-template-columns: 155px minmax(0, 1fr);
  align-items: center;
  padding: 30px;
  color: var(--ink);
  background: white;
  box-shadow: 0 24px 60px rgba(69, 74, 77, 0.2);
}

.covetrus-brand {
  display: grid;
  justify-items: start;
  gap: 11px;
}

.covetrus-link {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--pewter-soft);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.covetrus-link:hover,
.covetrus-link:focus-visible {
  transform: translateY(-2px);
  border-color: var(--red);
  box-shadow: 0 12px 28px rgba(69, 74, 77, 0.14);
}

.covetrus-link-hint {
  color: var(--red) !important;
  font-size: 10px !important;
  letter-spacing: 0.05em !important;
}

.covetrus-brand svg {
  width: 48px;
  overflow: visible;
}

.covetrus-brand path:first-child {
  fill: var(--red);
}

.covetrus-brand path:nth-child(2) {
  fill: var(--pewter-dark);
}

.covetrus-brand path:last-child {
  fill: var(--pewter-light);
}

.covetrus-brand strong {
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 23px;
  letter-spacing: -0.055em;
}

.covetrus-card div:last-child > span {
  display: block;
  margin-bottom: 9px;
  color: var(--red);
}

.covetrus-card-label {
  display: inline-block;
  margin-bottom: 9px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.covetrus-card h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.covetrus-card p {
  margin: 13px 0 0;
  color: rgba(69, 74, 77, 0.72);
  font-size: 14px;
  line-height: 1.6;
}

.covetrus-access-note {
  margin-top: 18px;
  padding: 15px 17px;
  border: 1px solid rgba(164, 40, 45, 0.24);
  border-left: 4px solid var(--red);
  border-radius: 15px;
  background: var(--red-soft);
}

.covetrus-access-note > strong {
  color: var(--red-dark);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
}

.covetrus-access-note p {
  margin-top: 6px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.5;
}

.directions-link {
  text-align: center;
  font-weight: 800;
}

.contact-message-dialog {
  width: min(760px, calc(100% - 28px));
}

.contact-message-form {
  padding: clamp(34px, 6vw, 64px);
}

.contact-message-form h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.contact-message-intro {
  margin: 16px 0 28px;
  color: var(--gray);
  line-height: 1.6;
}

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

.contact-message-fields label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.contact-message-fields input,
.contact-message-fields textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: 0;
  color: var(--ink);
  background: white;
  font: inherit;
  font-weight: 500;
  resize: vertical;
}

.contact-message-fields input:focus,
.contact-message-fields textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-soft);
}

.contact-message-full {
  grid-column: 1 / -1;
}

.contact-message-privacy {
  margin: 18px 0 24px;
  color: var(--gray);
  font-size: 12px;
  line-height: 1.55;
}

.contact-message-privacy a {
  color: var(--red);
  font-weight: 800;
}

@media (max-width: 640px) {
  .contact-message-form {
    padding: 56px 18px 24px;
  }

  .contact-message-fields {
    grid-template-columns: 1fr;
  }

  .contact-message-full {
    grid-column: auto;
  }
}

/* The cart control mirrors the branded cart artwork and the mobile menu geometry. */
.cart-button {
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
}

.cart-button:hover {
  color: var(--ink);
  background: var(--pewter-soft);
}

.cart-count {
  color: white;
}

@media (max-width: 640px) {
  .hospital-brand,
  .header-actions,
  .nav-toggle {
    grid-row: 1;
  }

  .cart-button {
    position: relative;
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    overflow: visible;
    border-radius: 50%;
  }

  .cart-button-logo {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .cart-button .cart-count {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 19px;
    height: 19px;
    border: 2px solid white;
    font-size: 9px;
  }

  .nav-toggle {
    align-self: center;
  }
}

@media (max-width: 360px) {
  .cart-button {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
  }

  .cart-button-logo {
    width: 35px;
    height: 35px;
    flex-basis: 35px;
  }
}

.site-footer {
  grid-template-columns: 1fr auto;
  gap: 34px;
  padding: 60px 5vw 35px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink-deep);
}

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

.site-footer .footer-brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 50%;
  background: white;
}

.site-footer .footer-brand div {
  display: grid;
  gap: 5px;
}

.site-footer .footer-brand strong {
  color: white;
  font-family: "Manrope", sans-serif;
}

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

.site-footer > p {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cart-drawer {
  background: var(--cream);
}

.cart-empty img {
  width: 120px;
  opacity: 1;
}

.product-dialog,
.quiz-dialog,
.checkout-dialog {
  border-radius: 28px;
}

.paypal-button {
  background: var(--red);
}

.paw-trail-print {
  width: 30px;
  height: 30px;
  background: url("assets/brand/baldwin-paw.svg") center / contain no-repeat;
}

.paw-trail-print::before {
  content: none;
}

@keyframes marqueeMove {
  to {
    transform: translateX(-50%);
  }
}

@keyframes gentleFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-13px) rotate(2deg);
  }
}

@keyframes shopCartCenterFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(-1deg);
  }
  50% {
    transform: translate(-50%, calc(-50% - 13px)) rotate(1.5deg);
  }
}

@keyframes organicMorph {
  0% {
    border-radius: 48% 52% 62% 38% / 45% 48% 52% 55%;
    transform: rotate(0);
  }
  100% {
    border-radius: 61% 39% 44% 56% / 53% 62% 38% 47%;
    transform: rotate(5deg);
  }
}

@keyframes statusPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(164, 40, 45, 0.32);
  }
  100% {
    box-shadow: 0 0 0 11px rgba(164, 40, 45, 0);
  }
}

@keyframes brandPresencePulse {
  0%,
  100% {
    transform: scale(0.975);
  }
  50% {
    transform: scale(1.035);
  }
}

@media (min-width: 1181px) {
  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .doctor-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: 0;
  }

  .doctor-photo {
    width: 168px;
    height: auto;
    margin: 22px auto 0;
  }

  .doctor-card > div:last-child {
    align-self: start;
    padding: 22px 24px 26px;
  }

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

  .staff-card {
    min-height: 170px;
    border-radius: 20px;
  }

  .staff-card > div {
    padding: 14px;
  }

  .staff-card h4 {
    font-size: 16px;
  }

  .staff-card p {
    font-size: 10px;
  }
}

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

  .hospital-brand {
    width: max-content;
    max-width: 100%;
  }

  .hospital-brand span {
    gap: 8px;
  }

  .hospital-brand strong {
    font-size: 13px;
  }

  .hospital-brand small {
    padding-left: 8px;
    font-size: 6.5px;
  }

  .main-nav {
    gap: 14px;
  }

  .main-nav a,
  .products-menu-button {
    font-size: 11px;
  }

  .header-call {
    display: none;
  }

  .hospital-hero {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2vw;
  }

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

  .service-featured {
    grid-column: span 2;
  }

  .doctor-card {
    grid-template-columns: 1fr;
  }

  .doctor-photo {
    width: min(70%, 272px);
    height: auto;
    margin: 24px auto 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .announcement span {
    display: none;
  }

  .announcement {
    justify-content: center;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    z-index: 80;
    inset: 118px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100dvh - 136px);
    padding: 24px;
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--cream);
    box-shadow: var(--shadow);
    overscroll-behavior: contain;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a,
  .products-menu-button {
    width: 100%;
    padding: 10px 0;
    font-size: 14px;
    text-align: left;
  }

  .header-actions {
    position: absolute;
    right: 76px;
  }

  .hospital-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 60px;
  }

  .hero-copy {
    position: relative;
    z-index: 4;
  }

  .hero-collage {
    min-height: 610px;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 350px;
  }

  .about-image::after {
    background: linear-gradient(0deg, var(--ink), transparent 50%);
  }

  .about-copy {
    padding: 20px 7vw 60px;
  }

  .relief-doctors {
    padding: 0 7vw 54px;
  }

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

  .team-grid,
  .shop-story,
  .faq-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .news-events-grid {
    grid-template-columns: 1fr;
  }

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

  .shop-story-art {
    min-height: 520px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .faq-section {
    gap: 50px;
  }
}

@media (max-width: 640px) {
  .announcement {
    font-size: 11px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr);
    min-height: 72px;
    padding: 7px 116px 7px max(18px, env(safe-area-inset-left));
    background: var(--cream);
    backdrop-filter: none;
  }

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

  .hospital-brand img {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
  }

  .hospital-brand span {
    gap: 7px;
    min-width: 0;
  }

  .hospital-brand strong {
    flex: 0 1 auto;
    font-size: 11px;
    white-space: nowrap;
  }

  .hospital-brand small {
    padding-left: 7px;
    font-size: 6.5px;
    letter-spacing: 0;
  }

  .header-actions {
    right: 68px;
  }

  .site-header .icon-button {
    display: none;
  }

  .nav-toggle {
    position: absolute;
    right: max(14px, env(safe-area-inset-right));
  }

  .cart-button {
    min-height: 42px;
    padding: 0 10px;
  }

  .cart-button > span:first-child {
    display: none;
  }

  .main-nav {
    inset: 106px 12px auto;
    gap: 6px;
    max-height: calc(100dvh - 118px);
    padding: 18px;
    border-radius: 20px;
  }

  .main-nav a,
  .products-menu-button {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
  }

  .main-nav .nav-shop {
    padding: 10px 12px;
  }

  .products-menu {
    border-radius: 20px;
  }

  .products-menu-item {
    min-height: 44px;
  }

  .section,
  .shop-section {
    padding: 84px 20px;
  }

  .hospital-hero {
    padding: 55px 20px 70px;
  }

  .section-grid-background::before {
    inset: 8px;
  }

  .hospital-hero h1 {
    font-size: clamp(47px, 14vw, 68px);
    overflow-wrap: anywhere;
  }

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

  .hospital-hero .trust-row {
    gap: 18px;
  }

  .hospital-hero .hero-actions {
    align-items: stretch;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hospital-hero .hero-actions .button {
    width: 100%;
  }

  .hero-phone {
    min-height: 52px;
    align-content: center;
    padding: 7px 16px;
    border: 1px solid var(--line);
    border-left: 4px solid var(--red);
    border-radius: 14px;
    background: white;
  }

  .hero-collage {
    min-height: 450px;
  }

  .hero-collage::before {
    width: min(350px, 100%);
    height: min(350px, 92vw);
    left: 0;
  }

  .hero-photo-main {
    width: 76%;
    height: 390px;
    left: 2%;
  }

  .hero-photo-clinical {
    width: 48%;
    height: 145px;
    bottom: 5px;
  }

  .hero-status {
    right: 0;
    top: 33%;
    padding: 10px 12px;
  }

  .hero-status small {
    display: none;
  }

  .orbit-note-one {
    right: 0;
    top: 3%;
  }

  .orbit-note-two {
    display: none;
  }

  .section-intro h2,
  .about-copy h2,
  .team-section h2,
  .offers-intro h2,
  .news-events-section h2,
  .faq-section h2 {
    font-size: 43px;
    overflow-wrap: anywhere;
  }

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

  .service-featured {
    grid-column: auto;
    display: flex;
  }

  .service-featured > img {
    width: calc(100% + 52px);
    height: 250px;
    min-height: 0;
    margin: auto -26px -26px;
    border-radius: 26px 26px 0 0;
  }

  .about-image {
    min-height: 300px;
  }

  .about-copy {
    padding: 10px 20px 54px;
  }

  .team-grid {
    gap: 16px;
  }

  .doctor-photo {
    width: min(76%, 248px);
    height: auto;
  }

  .doctor-card > div:last-child {
    padding: 24px;
  }

  .staff-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-top: 58px;
  }

  .staff-card {
    min-height: 330px;
  }

  .offers-section {
    min-height: auto;
    padding: 90px 20px;
  }

  .offers-intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-background-video {
    opacity: 0.13;
  }

  .offers-background-video {
    object-position: center;
    opacity: 0.3;
  }

  .news-events-intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .event-card {
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 20px;
  }

  .event-date {
    width: 110px;
    height: 110px;
  }

  .shop-story {
    padding: 80px 20px;
  }

  .shop-story h2 {
    font-size: 49px;
    overflow-wrap: anywhere;
  }

  .shop-opening-notice {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .shop-payment-highlight {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .shop-payment-highlight b {
    grid-column: 2;
    width: fit-content;
  }

  .shop-story-art {
    min-height: 430px;
  }

  .shop-logo-card {
    inset: 15px 8%;
    padding: 24px;
  }

  .product-float {
    width: 110px;
    height: 110px;
  }

  .category-strip {
    grid-template-columns: 1fr 1fr;
  }

  .category-tile {
    min-height: 170px;
    padding: 20px;
  }

  .catalog-preview-notice {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .catalog-preview-notice span {
    text-align: left;
  }

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

  .gallery-item {
    min-height: 170px;
    border-radius: 16px;
  }

  .gallery-item:nth-child(7n + 1) {
    min-height: 350px;
  }

  .gallery-video-item {
    min-height: 350px;
  }

  .contact-section {
    padding: 85px 20px;
  }

  .contact-section h2 {
    font-size: clamp(44px, 14vw, 55px);
    overflow-wrap: anywhere;
  }

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

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

  .contact-cards article {
    grid-template-columns: 1fr;
    padding: 22px 20px;
  }

  .contact-cards .covetrus-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 26px 22px;
  }

  .covetrus-brand {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .contact-cards strong,
  .site-footer a {
    overflow-wrap: anywhere;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 50px 20px 28px;
  }

  .site-footer nav {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .site-footer > p {
    grid-column: auto;
  }

  input,
  textarea,
  select {
    font-size: 16px;
  }

  .drawer-header .icon-button {
    display: grid;
    flex: 0 0 44px;
  }

  .cart-drawer {
    padding:
      max(22px, env(safe-area-inset-top))
      max(18px, env(safe-area-inset-right))
      max(22px, env(safe-area-inset-bottom))
      max(18px, env(safe-area-inset-left));
  }

  dialog {
    max-height: calc(100dvh - 16px);
  }

  .gallery-dialog {
    width: calc(100% - 16px);
    max-height: calc(100dvh - 16px);
    border-radius: 20px;
  }

  .gallery-dialog img,
  .gallery-dialog video {
    max-height: calc(100dvh - 16px);
  }

  .gallery-dialog video {
    height: auto;
    min-height: min(78dvh, 620px);
  }

  .quiz-dialog form,
  .checkout-layout > div {
    padding-top: 58px;
  }
}

@media (max-width: 430px) {
  .announcement {
    min-height: 34px;
    padding: 7px 10px;
  }

  .site-header {
    padding-right: 108px;
    padding-left: max(12px, env(safe-area-inset-left));
  }

  .hospital-brand {
    gap: 8px;
  }

  .hospital-brand img {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .hospital-brand strong {
    font-size: 9.5px;
  }

  .hospital-brand small {
    width: 70px;
    padding-left: 5px;
    font-size: 6.5px;
    letter-spacing: 0;
    line-height: 1.12;
    white-space: normal;
  }

  .header-actions {
    right: 62px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    right: max(10px, env(safe-area-inset-right));
  }

  .main-nav {
    inset-inline: 8px;
  }

  .section,
  .shop-section {
    padding: 72px 16px;
  }

  .hospital-hero {
    padding: 48px 16px 58px;
  }

  .hospital-hero h1 {
    font-size: clamp(44px, 13.8vw, 54px);
  }

  .hero-collage {
    min-height: 410px;
  }

  .hero-photo-main {
    height: 355px;
    border-width: 6px;
  }

  .hero-photo-clinical {
    height: 125px;
    border-width: 6px;
  }

  .orbit-note {
    width: 88px;
    height: 88px;
    font-size: 9px;
  }

  .hero-status {
    max-width: 150px;
  }

  .section-intro h2,
  .about-copy h2,
  .team-section h2,
  .offers-intro h2,
  .news-events-section h2,
  .faq-section h2 {
    font-size: 39px;
  }

  .service-featured > img {
    height: 220px;
  }

  .about-image {
    min-height: 270px;
  }

  .about-copy {
    padding-inline: 16px;
  }

  .doctor-photo {
    width: min(80%, 228px);
    height: auto;
  }

  .doctor-card > div:last-child {
    padding: 20px;
  }

  .doctor-card h3 {
    font-size: 22px;
  }

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

  .staff-card {
    min-height: 340px;
  }

  .staff-card h4 {
    font-size: 20px;
  }

  .offers-section {
    padding: 72px 16px;
  }

  .offers-intro h2 {
    font-size: 43px;
  }

  .offers-grid {
    margin-top: 38px;
  }

  .section-background-video {
    opacity: 0.1;
  }

  .offers-background-video {
    opacity: 0.24;
  }

  .collaboration-banner {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .collaboration-banner img {
    width: 100%;
    max-width: 420px;
  }

  .event-card {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .event-date {
    width: 104px;
    height: 104px;
  }

  .news-card {
    min-height: 320px;
    padding: 24px 20px;
  }

  .news-archive-link {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
  }

  .news-archive-link strong {
    text-align: left;
  }

  .shop-story {
    padding: 68px 16px;
  }

  .shop-story h2 {
    font-size: 43px;
  }

  .shop-story-art {
    min-height: 390px;
  }

  .shop-logo-card {
    inset: 12px 7%;
    border-radius: 30px;
    box-shadow: 10px 10px 0 var(--ink);
  }

  .product-float {
    width: 94px;
    height: 94px;
  }

  .category-tile {
    min-height: 154px;
    padding: 16px;
  }

  .category-strip {
    grid-template-columns: 1fr;
  }

  .category-tile strong {
    font-size: 18px;
    overflow-wrap: anywhere;
  }

  .gallery-grid {
    gap: 7px;
  }

  .gallery-item {
    min-height: 150px;
  }

  .gallery-item:nth-child(7n + 1),
  .gallery-video-item {
    min-height: 310px;
  }

  .gallery-play {
    width: 60px;
    height: 60px;
  }

  .faq-list summary {
    gap: 12px;
    font-size: 17px;
    line-height: 1.35;
  }

  .contact-section {
    padding: 72px 16px;
  }

  .contact-section h2 {
    font-size: 43px;
  }

  .site-footer {
    padding-inline: 16px;
  }

  .site-footer nav {
    flex-direction: column;
    gap: 14px;
  }

  .drawer-header h2 {
    font-size: 29px;
  }

  .cart-item {
    grid-template-columns: 56px minmax(0, 1fr) auto;
  }

  .cart-item-visual {
    width: 56px;
    height: 64px;
  }

  .cart-item > strong {
    max-width: 64px;
    font-size: 12px;
  }
}

/* Global 25% section compaction */
@media (min-width: 1181px) {
  .section,
  .shop-section {
    padding-block: 90px;
  }

  .hospital-hero {
    min-height: min(638px, calc(100vh - 118px));
    grid-template-columns: minmax(0, 0.92fr) minmax(375px, 1.08fr);
    gap: 3.75vw;
    padding: 59px 5vw 68px;
  }

  .hospital-hero h1 {
    max-width: 550px;
    font-size: clamp(39px, 3.825vw, 63px);
  }

  .hero-lede {
    max-width: 520px;
    margin-top: 23px;
    font-size: clamp(16px, 1.2vw, 18px);
  }

  .hospital-hero .hero-actions {
    margin-top: 27px;
  }

  .hospital-hero .trust-row {
    margin-top: 36px;
  }

  .hero-collage {
    min-height: 488px;
  }

  .hero-collage::before {
    width: 375px;
    height: 375px;
  }

  .hero-photo-main {
    width: min(323px, 66%);
    height: 420px;
  }

  .hero-photo-clinical {
    width: min(233px, 48%);
    height: 173px;
    bottom: 32px;
  }

  .orbit-note {
    width: 84px;
    height: 84px;
    font-size: 9px;
  }

  .orbit-note-two {
    width: 71px;
    height: 71px;
    bottom: 75px;
  }

  .section-intro h2 {
    font-size: clamp(35px, 4.05vw, 59px);
  }

  .section-intro > p:last-child,
  .news-events-intro > p {
    font-size: 16px;
  }

  .service-grid {
    margin-top: 48px;
  }

  .service-card {
    min-height: 353px;
    padding: 20px;
  }

  .service-card h3 {
    margin-top: 29px;
    font-size: 22px;
  }

  .service-card > img {
    width: calc(100% + 40px);
    height: 165px;
    margin: auto -20px -20px;
  }

  .service-featured h3 {
    font-size: 29px;
  }

  .service-featured > img {
    width: calc(100% + 20px);
    height: calc(100% + 40px);
    min-height: 314px;
    margin: -20px -20px -20px 0;
  }

  .about-section {
    min-height: 360px;
  }

  .about-image {
    min-height: 341px;
  }

  .about-copy {
    padding: 41px 4vw 41px 24px;
  }

  .relief-doctors {
    padding: 0 4vw 36px;
  }

  .about-copy h2 {
    font-size: clamp(26px, 2.625vw, 36px);
  }

  .team-grid {
    margin-top: 45px;
  }

  .doctor-photo {
    width: 126px;
  }

  .doctor-card > div:last-child {
    padding: 17px 18px 20px;
  }

  .staff-heading {
    margin: 56px 0 20px;
  }

  .staff-card {
    min-height: 128px;
  }

  .offers-section {
    min-height: 615px;
    padding: 90px 7vw;
  }

  .offers-intro h2 {
    font-size: clamp(39px, 4.5vw, 68px);
  }

  .offers-grid {
    margin-top: 44px;
  }

  .offers-grid .event-card {
    min-height: 330px;
  }

  .collaboration-banner {
    margin-top: 41px;
    padding: 21px;
  }

  .event-card,
  .news-card {
    padding: 23px;
  }

  .event-date {
    width: 96px;
    height: 96px;
  }

  .news-card {
    min-height: 263px;
  }

  .shop-story {
    min-height: 570px;
    padding: 75px 7vw;
  }

  .shop-story h2 {
    font-size: clamp(38px, 4.35vw, 65px);
  }

  .shop-story-art {
    min-height: 420px;
  }

  .shop-mark {
    width: 69px;
  }

  .product-float {
    width: 113px;
    height: 113px;
  }

  .category-tile {
    min-height: 143px;
    padding: 20px;
  }

  .shop-section .section-heading h2 {
    font-size: clamp(36px, 3.75vw, 57px);
  }

  .care-guide,
  .guide-art {
    min-height: 525px;
  }

  .guide-sun {
    width: 360px;
    height: 360px;
  }

  .guide-card {
    width: 195px;
    height: 263px;
    padding: 20px;
  }

  .guide-copy {
    padding: 68px 6vw;
  }

  .gallery-grid {
    margin-top: 45px;
  }

  .gallery-item {
    min-height: 158px;
  }

  .gallery-item:nth-child(7n + 1),
  .gallery-video-item {
    min-height: 323px;
  }

  .faq-list summary {
    padding-block: 19px;
    font-size: 18px;
  }

  .contact-section {
    padding: 90px 7vw;
  }

  .contact-section h2 {
    font-size: clamp(39px, 4.5vw, 69px);
  }

  .contact-copy > p {
    font-size: 16px;
  }

  .contact-cards article,
  .directions-link {
    padding: 18px 20px;
  }

  .contact-cards .covetrus-card {
    padding: 23px;
  }
}

@media (min-width: 641px) and (max-width: 1180px) {
  .section,
  .shop-section {
    padding-block: 90px;
  }

  .hospital-hero {
    padding-block: 45px 68px;
  }

  .hero-collage {
    min-height: 458px;
  }

  .about-image {
    min-height: 263px;
  }

  .about-copy {
    padding-bottom: 45px;
  }

  .doctor-photo {
    width: min(53%, 204px);
  }

  .staff-card {
    min-height: 255px;
  }

  .offers-section,
  .contact-section {
    padding-block: 90px;
  }

  .shop-story {
    min-height: 570px;
    padding-block: 75px;
  }

  .shop-story-art {
    min-height: 390px;
  }

  .category-tile {
    min-height: 143px;
  }

  .care-guide,
  .guide-art {
    min-height: 525px;
  }

  .gallery-item {
    min-height: 158px;
  }

  .gallery-item:nth-child(7n + 1),
  .gallery-video-item {
    min-height: 323px;
  }
}

@media (min-width: 1181px) {
  .service-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .service-card {
    grid-column: span 2;
  }

  .service-featured {
    grid-column: span 4;
  }

  .service-card-final {
    grid-column: span 3;
  }
}

.service-card-ultrasound > img {
  object-position: center;
}

.service-card-cardiology > img {
  object-position: 42% center;
}

.service-card-ecg > img {
  object-position: center;
}

/* Services palette: pewter gray, white, red and black only */
.service-card:nth-child(2),
.service-card:nth-child(7),
.service-card:nth-child(11) {
  background: var(--cream);
}

.service-card:nth-child(3),
.service-card:nth-child(8) {
  background: var(--pewter-soft);
}

.service-card:nth-child(5) {
  background: var(--red-soft);
}

.service-card:nth-child(4),
.service-card:nth-child(10) {
  border-color: var(--ink-deep);
  color: white;
  background: var(--ink-deep);
}

.service-card:nth-child(6),
.service-card:nth-child(12) {
  border-color: var(--pewter);
  color: white;
  background: var(--pewter);
}

.service-card:nth-child(9),
.service-card:nth-child(13) {
  border-color: var(--red-dark);
  color: white;
  background: var(--red-dark);
}

.service-card.service-card-surgery {
  border-color: var(--pewter-dark);
  color: white;
  background: var(--pewter-dark);
}

.service-card.service-card-surgery p {
  color: rgba(255, 255, 255, 0.8);
}

.service-card.service-card-surgery .service-number {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.service-card:is(
  :nth-child(4),
  :nth-child(6),
  :nth-child(9),
  :nth-child(10),
  :nth-child(12),
  :nth-child(13)
) p {
  color: rgba(255, 255, 255, 0.78);
}

.service-card:is(
  :nth-child(4),
  :nth-child(6),
  :nth-child(9),
  :nth-child(10),
  :nth-child(12),
  :nth-child(13)
) .service-number {
  border-color: rgba(255, 255, 255, 0.48);
  color: white;
}

.service-card:is(
  :nth-child(4),
  :nth-child(6),
  :nth-child(9),
  :nth-child(10),
  :nth-child(12),
  :nth-child(13)
) .service-english-name {
  color: white;
}

@media (max-width: 640px) {
  .section,
  .shop-section {
    padding-block: 63px;
  }

  .hospital-hero {
    padding-block: 41px 53px;
  }

  .hospital-hero h1 {
    font-size: clamp(35px, 10.5vw, 51px);
  }

  .hero-collage {
    min-height: 338px;
  }

  .hero-collage::before {
    width: min(263px, 75vw);
    height: min(263px, 69vw);
  }

  .hero-photo-main {
    height: 293px;
  }

  .hero-photo-clinical {
    height: 109px;
  }

  .section-intro h2,
  .about-copy h2,
  .team-section h2,
  .offers-intro h2,
  .news-events-section h2,
  .faq-section h2 {
    font-size: 32px;
  }

  .service-card {
    min-height: 353px;
  }

  .service-featured > img {
    height: 188px;
  }

  .about-image {
    min-height: 225px;
  }

  .about-copy {
    padding-bottom: 41px;
  }

  .doctor-photo {
    width: min(57%, 186px);
  }

  .staff-heading {
    margin-top: 44px;
  }

  .staff-card {
    min-height: 248px;
  }

  .offers-section {
    padding-block: 68px;
  }

  .offers-intro h2 {
    font-size: 37px;
  }

  .offers-grid {
    margin-top: 29px;
  }

  .collaboration-banner {
    margin-top: 31px;
  }

  .shop-story {
    min-height: auto;
    padding-block: 60px;
  }

  .shop-story h2 {
    font-size: 37px;
  }

  .shop-story-art {
    min-height: 323px;
  }

  .category-tile {
    min-height: 128px;
  }

  .care-guide,
  .guide-art {
    min-height: 394px;
  }

  .gallery-grid {
    margin-top: 45px;
  }

  .gallery-item {
    min-height: 128px;
  }

  .gallery-item:nth-child(7n + 1),
  .gallery-video-item {
    min-height: 263px;
  }

  .contact-section {
    padding-block: 64px;
  }

  .contact-section h2 {
    font-size: clamp(33px, 10.5vw, 41px);
  }
}

@media (max-width: 430px) {
  .section,
  .shop-section {
    padding-block: 54px;
  }

  .hospital-hero {
    padding-block: 36px 44px;
  }

  .hospital-hero h1 {
    font-size: clamp(33px, 10.35vw, 41px);
  }

  .hero-collage {
    min-height: 308px;
  }

  .hero-photo-main {
    height: 266px;
  }

  .hero-photo-clinical {
    height: 94px;
  }

  .orbit-note {
    width: 66px;
    height: 66px;
    font-size: 8px;
  }

  .section-intro h2,
  .about-copy h2,
  .team-section h2,
  .offers-intro h2,
  .news-events-section h2,
  .faq-section h2 {
    font-size: 29px;
  }

  .about-image {
    min-height: 203px;
  }

  .doctor-photo {
    width: min(60%, 171px);
  }

  .staff-card {
    min-height: 255px;
  }

  .offers-section,
  .contact-section {
    padding-block: 54px;
  }

  .shop-story {
    padding-block: 51px;
  }

  .shop-story h2 {
    font-size: 32px;
  }

  .shop-story-art {
    min-height: 293px;
  }

  .category-tile {
    min-height: 116px;
  }

  .care-guide,
  .guide-art {
    min-height: 330px;
  }

  .gallery-item {
    min-height: 113px;
  }

  .gallery-item:nth-child(7n + 1),
  .gallery-video-item {
    min-height: 233px;
  }

  .contact-section h2 {
    font-size: 32px;
  }
}

/* Services 1-6: 25% taller photography */
.service-card-core:not(.service-featured) > img {
  height: 275px;
}

.service-card-core.service-featured > img {
  min-height: 523px;
}

@media (min-width: 1181px) {
  .service-card-core:not(.service-featured) > img {
    height: 206px;
  }

  .service-card-core.service-featured > img {
    min-height: 393px;
  }
}

@media (max-width: 900px) {
  .service-card-core.service-featured > img {
    height: 313px;
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .service-card-core.service-featured > img {
    height: 235px;
  }
}

/* Veterinarian profile photos: 50% larger */
@media (min-width: 1181px) {
  .doctor-photo {
    width: 189px;
  }
}

@media (min-width: 641px) and (max-width: 1180px) {
  .doctor-photo {
    width: min(79.5%, 306px);
  }
}

@media (max-width: 640px) {
  .doctor-photo {
    width: min(85.5%, 279px);
  }
}

@media (max-width: 430px) {
  .doctor-photo {
    width: min(90%, 257px);
  }
}

/* Compact Online Pet Shop cards on desktop */
@media (min-width: 1181px) {
  .product-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
  }

  .product-card {
    border-radius: 16px;
  }

  .product-visual {
    height: 140px;
  }

  .product-visual::before {
    width: 90px;
    height: 90px;
  }

  .product-photo {
    width: 70%;
    height: 70%;
  }

  .product-badge {
    top: 8px;
    left: 8px;
    padding: 5px 7px;
    font-size: 7px;
  }

  .quick-view {
    right: 8px;
    bottom: 8px;
    width: 32px;
    height: 32px;
  }

  .product-info {
    padding: 11px;
  }

  .product-kicker {
    margin-bottom: 6px;
    font-size: 7px;
  }

  .product-info h3 {
    min-height: 34px;
    font-size: 13px;
    line-height: 1.25;
  }

  .product-note {
    min-height: 30px;
    margin: 5px 0 9px;
    font-size: 9px;
    line-height: 1.4;
  }

  .product-price {
    font-size: 11px;
  }

  .add-button {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}

/* Gallery thumbnails at 50% of the previous footprint */
@media (min-width: 1181px) {
  .gallery-grid {
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 5px;
  }

  .gallery-item {
    min-height: 79px;
    border-radius: 10px;
  }

  .gallery-item:nth-child(7n + 1),
  .gallery-video-item {
    min-height: 162px;
  }
}

@media (min-width: 641px) and (max-width: 1180px) {
  .gallery-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 5px;
  }

  .gallery-item {
    min-height: 79px;
    border-radius: 10px;
  }

  .gallery-item:nth-child(7n + 1),
  .gallery-video-item {
    min-height: 162px;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
  }

  .gallery-item {
    min-height: 64px;
    border-radius: 9px;
  }

  .gallery-item:nth-child(7n + 1),
  .gallery-video-item {
    min-height: 132px;
  }

  .gallery-play {
    width: 38px;
    height: 38px;
    padding-left: 3px;
    font-size: 11px;
  }

  .gallery-video-item small {
    left: 10px;
    bottom: 9px;
    font-size: 7px;
  }
}

@media (max-width: 430px) {
  .gallery-item {
    min-height: 57px;
  }

  .gallery-item:nth-child(7n + 1),
  .gallery-video-item {
    min-height: 118px;
  }
}

/* Gallery masonry: every frame follows the complete image ratio */
.gallery-grid {
  display: block;
  columns: 10;
  column-gap: 5px;
}

.gallery-item,
.gallery-item:nth-child(7n + 1),
.gallery-item:nth-child(9n + 4),
.gallery-video-item {
  width: 100%;
  min-height: 0;
  display: block;
  break-inside: avoid;
  margin: 0 0 5px;
  grid-column: auto;
  grid-row: auto;
  background: transparent;
}

.gallery-item img,
.gallery-item .gallery-person-photo {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

@media (min-width: 641px) and (max-width: 1180px) {
  .gallery-grid {
    columns: 8;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    columns: 4;
    column-gap: 4px;
  }

  .gallery-item,
  .gallery-item:nth-child(7n + 1),
  .gallery-item:nth-child(9n + 4),
  .gallery-video-item {
    min-height: 0;
    margin-bottom: 4px;
  }

  .relief-doctors {
    padding: 0 16px 34px;
  }

  .relief-doctors-heading {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 24px;
  }

  .relief-doctors-grid {
    grid-template-columns: 1fr;
  }

  .relief-doctor-card {
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 9px;
  }

  .relief-doctor-photo {
    width: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-background-video {
    display: none;
  }

  .section-grid-background::before {
    animation: none !important;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Final portrait-mobile hardening */
@media (max-width: 640px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  main,
  main > section,
  .section,
  .shop-section,
  .hospital-hero,
  .about-section,
  .team-section,
  .offers-section,
  .news-events-section,
  .shop-story,
  .gallery-section,
  .faq-section,
  .contact-section,
  .site-footer {
    min-width: 0;
    max-width: 100%;
  }

  img,
  video,
  iframe,
  svg {
    max-width: 100%;
  }

  .announcement {
    min-height: 38px;
    padding: 7px 12px;
    text-align: center;
  }

  .announcement p {
    width: 100%;
    margin: 0;
    line-height: 1.35;
    white-space: normal;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) 42px 44px;
    gap: 7px;
    min-height: 70px;
    padding:
      7px max(10px, env(safe-area-inset-right))
      7px max(10px, env(safe-area-inset-left));
  }

  .hospital-brand {
    grid-column: 1;
    width: 100%;
    overflow: hidden;
  }

  .hospital-brand img {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
  }

  .hospital-brand span {
    width: auto;
    display: grid;
    gap: 3px;
  }

  .hospital-brand strong {
    min-width: 0;
    overflow: hidden;
    font-size: clamp(9px, 3.15vw, 11px);
    line-height: 1.05;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hospital-brand small {
    width: auto;
    min-width: 0;
    padding: 0;
    overflow: hidden;
    border-left: 0;
    font-size: clamp(6px, 1.9vw, 7px);
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-actions {
    position: static;
    grid-column: 2;
    justify-self: stretch;
  }

  .cart-button {
    width: 42px;
    min-width: 42px;
    min-height: 42px;
    display: grid;
    place-items: center;
    padding: 0;
    border-radius: 50%;
  }

  .cart-count {
    width: 30px;
    height: 30px;
  }

  .nav-toggle {
    position: static;
    grid-column: 3;
    width: 44px;
    height: 44px;
    justify-self: end;
  }

  .main-nav {
    inset:
      calc(108px + env(safe-area-inset-top))
      max(8px, env(safe-area-inset-right))
      auto
      max(8px, env(safe-area-inset-left));
    max-height: calc(100dvh - 124px - env(safe-area-inset-top));
  }

  .button,
  .text-button,
  .products-menu-button,
  .filter-chip,
  .add-button,
  .quick-view,
  .paypal-button {
    min-height: 44px;
  }

  .button {
    max-width: 100%;
    padding-inline: 18px;
    text-align: center;
    white-space: normal;
  }

  .hospital-hero,
  .section,
  .shop-section,
  .offers-section,
  .news-events-section,
  .gallery-section,
  .contact-section {
    padding-right: max(16px, env(safe-area-inset-right));
    padding-left: max(16px, env(safe-area-inset-left));
  }

  .hospital-hero h1,
  .section-intro h2,
  .about-copy h2,
  .team-section h2,
  .offers-intro h2,
  .news-events-section h2,
  .shop-story h2,
  .faq-section h2,
  .contact-section h2,
  .event-card h3,
  .news-card h3,
  .doctor-card h3,
  .staff-card h4 {
    max-width: 100%;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .hero-copy,
  .section-intro,
  .about-copy,
  .shop-story-copy,
  .contact-copy,
  .contact-cards,
  .service-card,
  .doctor-card,
  .staff-card,
  .event-card,
  .news-card,
  .relief-doctor-card {
    min-width: 0;
  }

  .hero-collage {
    min-height: clamp(300px, 96vw, 370px);
  }

  .hero-photo-main {
    width: 78%;
    height: clamp(250px, 82vw, 310px);
  }

  .hero-photo-clinical {
    width: 48%;
    height: clamp(88px, 29vw, 112px);
  }

  .hero-status {
    max-width: min(44vw, 145px);
    overflow-wrap: anywhere;
  }

  .service-card {
    min-height: 0;
    padding: 20px;
  }

  .service-card h3 {
    margin-top: 24px;
    font-size: clamp(22px, 7vw, 27px);
  }

  .service-card > img,
  .service-card-core:not(.service-featured) > img,
  .service-card-core.service-featured > img {
    width: calc(100% + 40px);
    height: auto;
    min-height: 210px;
    max-height: 310px;
    margin: auto -20px -20px;
    object-fit: cover;
  }

  .service-card > .pet-taxi-photo,
  .service-card > .vetscalpel-service-photo {
    object-fit: contain;
  }

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

  .doctor-photo {
    width: min(78%, 260px);
    margin: 22px auto 0;
  }

  .doctor-card > div:last-child {
    padding: 20px;
  }

  .doctor-bio summary {
    min-height: 44px;
    align-items: center;
  }

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

  .staff-card {
    min-height: clamp(300px, 112vw, 430px);
  }

  .staff-card img {
    object-position: center top;
  }

  .relief-doctor-card {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    min-height: 100px;
    padding: 10px;
  }

  .relief-doctor-photo {
    width: 64px;
  }

  .relief-doctor-card h4,
  .relief-doctor-instagram {
    overflow-wrap: anywhere;
  }

  .event-card,
  .news-card {
    min-height: 0;
    padding: 22px 18px;
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .event-date {
    width: 96px;
    height: 96px;
  }

  .collaboration-banner,
  .shop-opening-notice,
  .shop-payment-highlight {
    min-width: 0;
    grid-template-columns: 1fr;
  }

  .shop-opening-notice > span,
  .shop-payment-highlight b {
    width: fit-content;
    max-width: 100%;
    white-space: normal;
  }

  .shop-story-art {
    min-height: clamp(285px, 90vw, 350px);
  }

  .shop-logo-card {
    inset: 10px 7%;
    padding: 20px;
    border-radius: 25px;
    box-shadow: 8px 8px 0 var(--red);
  }

  .product-float {
    width: clamp(76px, 24vw, 96px);
    height: clamp(76px, 24vw, 96px);
  }

  .filter-row {
    max-width: calc(100vw - 16px);
    margin-right: calc(-1 * max(16px, env(safe-area-inset-right)));
    padding-bottom: 6px;
    scrollbar-width: thin;
  }

  .product-card,
  .product-info,
  .product-info h3,
  .product-note {
    min-width: 0;
  }

  .product-info h3,
  .product-note,
  .results-meta span {
    overflow-wrap: anywhere;
  }

  .product-visual {
    height: min(290px, 78vw);
  }

  .gallery-grid {
    columns: 2;
    column-gap: 6px;
  }

  .gallery-item,
  .gallery-item:nth-child(7n + 1),
  .gallery-item:nth-child(9n + 4),
  .gallery-video-item {
    margin-bottom: 6px;
    border-radius: 10px;
  }

  .gallery-play {
    width: 42px;
    height: 42px;
  }

  .contact-cards article,
  .contact-cards .covetrus-card {
    grid-template-columns: 1fr;
    padding: 22px 18px;
  }

  .covetrus-brand {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .contact-cards a,
  .site-footer a,
  .paypal-recipient a {
    overflow-wrap: anywhere;
  }

  .cart-drawer {
    width: 100%;
    padding:
      max(18px, env(safe-area-inset-top))
      max(14px, env(safe-area-inset-right))
      max(18px, env(safe-area-inset-bottom))
      max(14px, env(safe-area-inset-left));
  }

  .cart-items {
    overscroll-behavior: contain;
  }

  .cart-item {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 10px;
  }

  .cart-item-visual {
    width: 54px;
    height: 62px;
  }

  .cart-item > strong {
    grid-column: 2;
    justify-self: start;
    max-width: 100%;
    text-align: left;
  }

  .quantity-control button {
    width: 32px;
    height: 32px;
  }

  dialog,
  .quiz-dialog,
  .checkout-dialog,
  .product-dialog,
  .gallery-dialog {
    width: calc(100% - 12px);
    max-width: none;
    max-height: calc(100dvh - 12px);
    margin: auto;
    border-radius: 18px;
  }

  .dialog-close {
    position: sticky;
    top: 8px;
    float: right;
    margin: 8px 8px -50px 0;
  }

  .product-dialog-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .dialog-product-visual {
    min-height: min(68vw, 280px);
  }

  .dialog-product-info,
  .quiz-dialog form,
  .checkout-layout > div,
  .checkout-summary {
    padding: 56px 18px 28px;
  }

  .dialog-product-info h2,
  .quiz-dialog h2,
  .checkout-dialog h2 {
    font-size: clamp(27px, 9vw, 34px);
    overflow-wrap: anywhere;
  }

  .product-profile-facts,
  .choice-grid,
  .form-row,
  .delivery-options {
    grid-template-columns: 1fr;
  }

  .dialog-product-buy {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .dialog-product-buy .button,
  .paypal-button {
    width: 100%;
  }

  .checkout-line,
  .checkout-total {
    align-items: flex-start;
    gap: 10px;
  }

  .checkout-line span,
  .checkout-line strong,
  .checkout-total span,
  .checkout-total strong {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .gallery-dialog img,
  .gallery-dialog video {
    width: 100%;
    height: auto;
    max-height: calc(100dvh - 12px);
    object-fit: contain;
  }
}

@media (max-width: 360px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) 40px 42px;
    gap: 5px;
    padding-inline: 8px;
  }

  .hospital-brand {
    gap: 6px;
  }

  .hospital-brand img {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .hospital-brand strong {
    font-size: 9px;
  }

  .hospital-brand small {
    font-size: 5.8px;
  }

  .cart-button,
  .nav-toggle {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
  }

  .hospital-hero,
  .section,
  .shop-section,
  .offers-section,
  .news-events-section,
  .gallery-section,
  .contact-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .hospital-hero h1 {
    font-size: clamp(31px, 10vw, 36px);
  }

  .section-intro h2,
  .about-copy h2,
  .team-section h2,
  .offers-intro h2,
  .news-events-section h2,
  .faq-section h2 {
    font-size: 27px;
  }

  .hero-status {
    max-width: 128px;
    font-size: 9px;
  }

  .orbit-note {
    width: 60px;
    height: 60px;
    font-size: 7px;
  }

  .relief-doctor-card {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .relief-doctor-photo {
    width: 58px;
  }

  .shop-story h2,
  .contact-section h2 {
    font-size: 29px;
  }

  .cart-item {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .cart-item-visual {
    width: 48px;
    height: 56px;
  }
}

/* Final header-cart alignment overrides after the portrait hardening rules. */
@media (max-width: 640px) {
  .cart-button {
    position: relative;
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    overflow: visible;
    padding: 0;
    border-radius: 50%;
    align-self: center;
  }

  .cart-button-logo {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .cart-button .cart-count {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 19px;
    height: 19px;
    border: 2px solid white;
    font-size: 9px;
  }
}

@media (max-width: 360px) {
  .cart-button {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
  }

  .cart-button-logo {
    width: 35px;
    height: 35px;
    flex-basis: 35px;
  }
}
