:root {
  color-scheme: light;
  --pink-50: #fff0f4;
  --pink-100: #ffdce7;
  --pink-200: #f5b8ca;
  --cream: #fff8ef;
  --cream-strong: #f7eadc;
  --white: #fffdfb;
  --cocoa: #4a2c21;
  --brown: #6d4635;
  --tan: #c8aa96;
  --line: #ead7cb;
  --sage: #8b9b7b;
  --shadow: 0 22px 60px rgba(74, 44, 33, 0.12);
  --soft-shadow: 0 12px 34px rgba(74, 44, 33, 0.1);
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cocoa);
  background:
    linear-gradient(180deg, var(--cream) 0%, #fffaf5 44%, var(--pink-50) 100%);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

svg {
  display: block;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 14px max(22px, calc((100vw - 1180px) / 2));
  background: rgba(255, 253, 251, 0.78);
  border-bottom: 1px solid rgba(234, 215, 203, 0.65);
  backdrop-filter: blur(18px);
  transition:
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 251, 0.94);
  box-shadow: 0 10px 30px rgba(74, 44, 33, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cocoa);
  font-weight: 800;
  line-height: 1.1;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  color: var(--cocoa);
  background: linear-gradient(145deg, var(--pink-100), var(--cream));
  border: 2px solid var(--pink-200);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(74, 44, 33, 0.16);
}

.brand-mark svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.brand-mark .paw-toe,
.brand-mark .paw-pad {
  fill: currentColor;
  stroke: none;
}

.brand-mark .paw-heart {
  fill: var(--pink-200);
  stroke: none;
}

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

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 11px;
  color: rgba(74, 44, 33, 0.82);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--cocoa);
  background: var(--pink-100);
  transform: translateY(-1px);
}

.nav-links .nav-rover {
  color: var(--white);
  background: var(--cocoa);
}

.nav-links .nav-rover:hover,
.nav-links .nav-rover:focus-visible {
  color: var(--white);
  background: var(--brown);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: var(--cocoa);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

main {
  overflow: clip;
}

.section-panel,
.content-section,
.trust-strip,
.site-footer {
  width: min(1180px, calc(100% - 44px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(390px, 1.06fr);
  align-items: center;
  gap: 48px;
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 38px);
  padding-bottom: 54px;
}

.thanks-hero {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  min-height: 82svh;
}

.thanks-hero h1 {
  max-width: none;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--brown);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--cocoa);
  letter-spacing: 0;
  line-height: 1.03;
}

h1 {
  max-width: 10ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.6rem;
  font-weight: 800;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 800;
}

h3 {
  font-size: 1.2rem;
  font-weight: 850;
}

.hero-text {
  max-width: 58ch;
  margin: 24px 0 0;
  color: rgba(74, 44, 33, 0.78);
  font-size: 1.13rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  line-height: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

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

.button-primary {
  color: var(--white);
  background: var(--cocoa);
  box-shadow: 0 14px 28px rgba(74, 44, 33, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--brown);
  box-shadow: 0 18px 36px rgba(74, 44, 33, 0.22);
}

.button-secondary {
  color: var(--cocoa);
  background: rgba(255, 253, 251, 0.72);
  border-color: var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--white);
  border-color: var(--pink-200);
}

.rover-proof {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  max-width: 510px;
  margin-top: 18px;
  padding: 14px 16px;
  color: var(--cocoa);
  background: rgba(255, 253, 251, 0.78);
  border: 1px solid rgba(234, 215, 203, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(74, 44, 33, 0.08);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.rover-proof:hover,
.rover-proof:focus-visible {
  border-color: var(--pink-200);
  box-shadow: var(--soft-shadow);
  transform: translateY(-2px);
}

.rover-proof-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--cocoa);
  border-radius: 50%;
}

.rover-proof-mark svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.rover-proof span:last-child {
  display: grid;
  gap: 2px;
}

.rover-proof strong {
  font-size: 0.95rem;
  line-height: 1.15;
}

.rover-proof small {
  color: rgba(74, 44, 33, 0.66);
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.35;
}

.pet-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(380px, 45vw, 560px);
  padding: clamp(6px, 2vw, 18px);
  isolation: isolate;
  overflow: hidden;
}

.hero-pet-gif {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 520px);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: calc(var(--radius) - 2px);
}

.sun-soft {
  position: absolute;
  top: 34px;
  right: 42px;
  width: 108px;
  height: 108px;
  background: #ffe1a8;
  border: 10px solid rgba(255, 253, 251, 0.9);
  border-radius: 50%;
  box-shadow: 0 18px 35px rgba(255, 193, 112, 0.24);
  animation: sunFloat 8s ease-in-out infinite;
}

.leash-line {
  position: absolute;
  z-index: 2;
  top: 154px;
  left: 10%;
  width: 78%;
  height: 160px;
  overflow: visible;
}

.leash-line path {
  fill: none;
  stroke: rgba(109, 70, 53, 0.44);
  stroke-dasharray: 8 9;
  stroke-linecap: round;
  stroke-width: 5;
  animation: dashWalk 5s linear infinite;
}

.pet {
  position: absolute;
  z-index: 3;
}

.dog {
  bottom: 96px;
  left: 42px;
  width: 230px;
  height: 210px;
  animation: dogBob 3.4s ease-in-out infinite;
}

.dog-body {
  position: absolute;
  right: 16px;
  bottom: 24px;
  width: 150px;
  height: 98px;
  background: var(--cocoa);
  border-radius: 58px 62px 44px 44px;
}

.dog-body::before {
  position: absolute;
  top: 18px;
  left: 30px;
  width: 66px;
  height: 50px;
  content: "";
  background: var(--pink-100);
  border-radius: 50%;
  opacity: 0.9;
}

.dog-head {
  position: absolute;
  z-index: 4;
  bottom: 72px;
  left: 14px;
  width: 112px;
  height: 105px;
  background: var(--brown);
  border: 6px solid var(--cocoa);
  border-radius: 44px 45px 38px 38px;
}

.dog-head::before {
  position: absolute;
  right: 20px;
  bottom: 8px;
  left: 20px;
  height: 42px;
  content: "";
  background: #f1c7b3;
  border-radius: 40px 40px 28px 28px;
}

.dog-ear {
  position: absolute;
  z-index: 5;
  top: 34px;
  width: 46px;
  height: 78px;
  background: var(--cocoa);
  border-radius: 26px 26px 28px 28px;
  transform-origin: 50% 12%;
}

.dog-ear-left {
  left: 6px;
  transform: rotate(20deg);
  animation: earFlopLeft 4s ease-in-out infinite;
}

.dog-ear-right {
  left: 86px;
  transform: rotate(-21deg);
  animation: earFlopRight 4s ease-in-out infinite;
}

.eye {
  position: absolute;
  width: 11px;
  height: 11px;
  background: var(--white);
  border: 3px solid var(--cocoa);
  border-radius: 50%;
}

.eye-left {
  top: 37px;
  left: 28px;
}

.eye-right {
  top: 37px;
  right: 28px;
}

.snout {
  position: absolute;
  z-index: 2;
  right: 43px;
  bottom: 30px;
  width: 22px;
  height: 15px;
  background: var(--cocoa);
  border-radius: 50%;
}

.snout::after {
  position: absolute;
  top: 12px;
  left: 9px;
  width: 2px;
  height: 12px;
  content: "";
  background: var(--cocoa);
  border-radius: 999px;
}

.leg {
  position: absolute;
  bottom: 0;
  width: 23px;
  height: 56px;
  background: var(--cocoa);
  border-radius: 999px 999px 12px 12px;
}

.leg-one {
  right: 104px;
}

.leg-two {
  right: 36px;
}

.tail {
  position: absolute;
  right: 0;
  bottom: 95px;
  width: 68px;
  height: 22px;
  border: 9px solid var(--cocoa);
  border-bottom: 0;
  border-left: 0;
  border-radius: 0 100px 0 0;
  transform-origin: 8px 20px;
  animation: tailWag 0.82s ease-in-out infinite;
}

.cat {
  right: 46px;
  bottom: 100px;
  width: 176px;
  height: 174px;
  animation: catStretch 4.8s ease-in-out infinite;
}

.cat-body {
  position: absolute;
  right: 17px;
  bottom: 0;
  width: 96px;
  height: 98px;
  background: #f0b9c6;
  border: 6px solid var(--cocoa);
  border-radius: 48px 48px 36px 36px;
}

.cat-body::before,
.cat-body::after {
  position: absolute;
  bottom: -6px;
  width: 22px;
  height: 34px;
  content: "";
  background: var(--pink-100);
  border: 5px solid var(--cocoa);
  border-top: 0;
  border-radius: 0 0 16px 16px;
}

.cat-body::before {
  left: 18px;
}

.cat-body::after {
  right: 18px;
}

.cat-head {
  position: absolute;
  z-index: 4;
  top: 8px;
  right: 12px;
  width: 104px;
  height: 90px;
  background: var(--pink-200);
  border: 6px solid var(--cocoa);
  border-radius: 42px 42px 36px 36px;
}

.cat-ear {
  position: absolute;
  top: -28px;
  width: 38px;
  height: 42px;
  background: var(--pink-200);
  border: 6px solid var(--cocoa);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.cat-ear-left {
  left: 4px;
}

.cat-ear-right {
  right: 4px;
}

.cat-head .eye {
  top: 34px;
  width: 10px;
  height: 14px;
  background: var(--cocoa);
  border: 0;
  animation: blink 5.2s infinite;
}

.cat-eye-left {
  left: 28px;
}

.cat-eye-right {
  right: 28px;
}

.cat-nose {
  position: absolute;
  bottom: 26px;
  left: 45px;
  width: 12px;
  height: 9px;
  background: var(--cocoa);
  border-radius: 50% 50% 58% 58%;
}

.cat-tail {
  position: absolute;
  z-index: 2;
  right: 100px;
  bottom: 24px;
  width: 50px;
  height: 118px;
  border: 13px solid var(--cocoa);
  border-right: 0;
  border-bottom: 0;
  border-radius: 80px 0 0 0;
  transform-origin: 100% 100%;
  animation: catTail 2.8s ease-in-out infinite;
}

.paw-path {
  position: absolute;
  right: 36px;
  bottom: 28px;
  left: 36px;
  display: flex;
  justify-content: space-between;
  opacity: 0.44;
}

.paw-path span {
  position: relative;
  width: 18px;
  height: 14px;
  background: var(--tan);
  border-radius: 50%;
  transform: rotate(-16deg);
  animation: pawAppear 3.2s ease-in-out infinite;
}

.paw-path span::before,
.paw-path span::after {
  position: absolute;
  top: -9px;
  width: 7px;
  height: 8px;
  content: "";
  background: var(--tan);
  border-radius: 50%;
}

.paw-path span::before {
  left: 1px;
}

.paw-path span::after {
  right: 1px;
}

.paw-path span:nth-child(2) {
  animation-delay: 0.3s;
}

.paw-path span:nth-child(3) {
  animation-delay: 0.6s;
}

.paw-path span:nth-child(4) {
  animation-delay: 0.9s;
}

.paw-path span:nth-child(5) {
  animation-delay: 1.2s;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: -20px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.trust-item {
  display: grid;
  gap: 4px;
  padding: 24px;
  background: rgba(255, 253, 251, 0.86);
}

.trust-item strong {
  color: var(--cocoa);
  font-size: 1.05rem;
}

.trust-item span {
  color: rgba(74, 44, 33, 0.68);
}

.content-section {
  scroll-margin-top: calc(var(--header-height) + 24px);
  padding: 108px 0 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 56px;
  align-items: start;
}

.section-heading {
  max-width: 650px;
}

.section-intro {
  max-width: 660px;
  margin: 14px 0 0;
  color: rgba(74, 44, 33, 0.72);
  font-size: 1.04rem;
  font-weight: 720;
  line-height: 1.65;
}

#about .section-heading {
  display: grid;
  align-content: start;
  gap: 24px;
}

.owner-photo {
  position: relative;
  display: grid;
  gap: 10px;
  width: 100%;
  max-width: 460px;
  margin: 0;
}

.owner-photo img {
  display: block;
  width: 100%;
  height: clamp(360px, 72vw, 480px);
  object-fit: cover;
  object-position: 50% 58%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.owner-photo figcaption {
  padding: 0 2px;
  color: rgba(74, 44, 33, 0.7);
  font-size: 0.84rem;
  font-weight: 820;
  line-height: 1.35;
}

.owner-photo .photo-heart {
  z-index: 2;
}

.owner-photo .heart-one {
  top: -13px;
  right: 18px;
}

.owner-photo .heart-three {
  bottom: 38px;
  left: 22px;
}

.about-copy {
  display: grid;
  gap: 21px;
  max-width: 610px;
  padding-top: 44px;
  color: rgba(74, 44, 33, 0.76);
  font-size: 1.12rem;
  line-height: 1.76;
}

.about-copy p {
  margin: 0;
}

.new-chapter-section {
  padding-top: 72px;
}

.new-chapter-card {
  position: relative;
  max-width: 890px;
  margin-inline: auto;
  padding: 34px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 220, 231, 0.52), rgba(255, 253, 251, 0.88)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.new-chapter-card::after {
  position: absolute;
  right: 24px;
  bottom: 18px;
  width: 54px;
  height: 48px;
  content: "";
  background: var(--pink-100);
  clip-path: polygon(
    50% 100%,
    8% 60%,
    0 34%,
    8% 12%,
    28% 0,
    50% 16%,
    72% 0,
    92% 12%,
    100% 34%,
    92% 60%
  );
  opacity: 0.68;
  transform: rotate(8deg);
}

.new-chapter-card h2 {
  max-width: 760px;
  margin: 0 0 16px;
  font-size: 2.34rem;
}

.new-chapter-card p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: rgba(74, 44, 33, 0.76);
  font-size: 1.05rem;
}

.new-chapter-card p + p {
  margin-top: 14px;
}

.service-grid,
.care-profile-grid,
.personal-pets-grid,
.pet-photo-grid,
.care-fit-grid,
.process-list,
.price-grid,
.faq-grid,
.review-grid {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

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

.care-profile-grid,
.personal-pets-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.care-fit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pet-photo-section .section-heading {
  margin-inline: auto;
  text-align: center;
}

.pet-photo-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.care-profile-card,
.personal-pet-card,
.care-fit-card,
.process-card,
.price-card,
.faq-card,
.review-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.service-card,
.care-profile-card,
.personal-pet-card,
.care-fit-card,
.process-card,
.price-card,
.faq-card,
.review-card {
  background: rgba(255, 253, 251, 0.82);
}

.service-card {
  display: grid;
  gap: 18px;
  min-height: 262px;
  padding: 26px;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.service-card:hover {
  border-color: var(--pink-200);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-card p,
.care-profile-card p,
.personal-pet-card p,
.process-card p,
.price-card p,
.faq-card p,
.review-card blockquote,
.contact-copy p,
.form-note {
  color: rgba(74, 44, 33, 0.72);
}

.service-card p,
.care-profile-card p,
.personal-pet-card p,
.process-card p,
.price-card p {
  margin: 0;
}

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

.faq-card {
  display: grid;
  gap: 12px;
  min-height: 190px;
  padding: 26px;
}

.faq-card h3 {
  max-width: 32ch;
  margin: 0;
  color: var(--cocoa);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.16;
}

.faq-card p {
  margin: 0;
  font-weight: 690;
  line-height: 1.68;
}

.care-profile-card {
  display: grid;
  gap: 18px;
  min-height: 282px;
  padding: 26px;
}

.care-profile-card h3,
.personal-pet-card h3 {
  margin: 0;
  color: var(--cocoa);
}

.personal-pet-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 132px;
  padding: 22px;
}

.personal-pet-card div {
  display: grid;
  gap: 4px;
}

.pet-avatar {
  position: relative;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  background: var(--pink-100);
  border: 3px solid var(--cocoa);
  border-radius: 50%;
}

.pet-avatar img {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(74, 44, 33, 0.14));
}

.cat-avatar {
  background: var(--cream-strong);
}

.cat-avatar.soft {
  background: #f0b9c6;
}

.care-fit-card {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 132px;
  padding: 22px;
}

.care-fit-card strong {
  color: var(--cocoa);
  font-size: 1.05rem;
}

.care-fit-card span {
  color: rgba(74, 44, 33, 0.68);
  font-weight: 760;
}

.pet-photo-card {
  position: relative;
  margin: 0;
  padding: 10px;
  background: rgba(255, 253, 251, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  transform: rotate(var(--tilt, 0deg));
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 220ms ease;
}

.pet-photo-card:nth-child(2n) {
  --tilt: 1deg;
}

.pet-photo-card:nth-child(3n) {
  --tilt: -1deg;
}

.pet-photo-card:hover {
  border-color: var(--pink-200);
  box-shadow: var(--shadow);
  transform: translateY(-4px) rotate(0deg);
}

.pet-photo-frame {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream-strong);
  border-radius: calc(var(--radius) - 2px);
}

.pet-photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.98) contrast(0.98);
  transition: transform 420ms ease;
}

.pet-photo-card:hover img {
  transform: scale(1.05);
}

.photo-heart {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  background: var(--pink-200);
  filter: drop-shadow(0 4px 8px rgba(74, 44, 33, 0.16));
  opacity: 0.9;
  transform: rotate(-45deg);
  animation: heartFloat 4.8s ease-in-out infinite;
}

.photo-heart::before,
.photo-heart::after {
  position: absolute;
  width: 18px;
  height: 18px;
  content: "";
  background: inherit;
  border-radius: 50%;
}

.photo-heart::before {
  top: -9px;
  left: 0;
}

.photo-heart::after {
  top: 0;
  left: 9px;
}

.heart-one {
  top: 13px;
  right: 14px;
}

.heart-two {
  right: 18px;
  bottom: 20px;
  width: 14px;
  height: 14px;
  animation-delay: 1.2s;
}

.heart-two::before,
.heart-two::after {
  width: 14px;
  height: 14px;
}

.heart-two::before {
  top: -7px;
}

.heart-two::after {
  left: 7px;
}

.heart-three {
  bottom: 18px;
  left: 16px;
  background: var(--pink-100);
  animation-delay: 2s;
}

.process-section .section-heading {
  margin-inline: auto;
  text-align: center;
}

.process-list {
  position: relative;
}

.process-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  width: min(100%, 690px);
  padding: 24px;
  justify-self: start;
}

.process-card-right {
  justify-self: end;
}

.process-card span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: var(--cocoa);
  border: 3px solid var(--pink-100);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1;
}

.process-card div {
  display: grid;
  gap: 8px;
}

.process-card h3 {
  margin: 0;
  color: var(--cocoa);
  font-size: 1.25rem;
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--cocoa);
  background: var(--pink-100);
  border: 1px solid rgba(245, 184, 202, 0.7);
  border-radius: 50%;
}

.icon-badge svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.booking-widget {
  margin-top: 34px;
  padding: 0;
  background: transparent;
  border: 0;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  gap: 18px;
  align-items: start;
}

.booking-main,
.booking-receipt {
  background: rgba(255, 253, 251, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.booking-main {
  display: grid;
  gap: 24px;
  padding: 26px;
}

.booking-summary-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  color: var(--white);
  background: var(--cocoa);
  border-radius: var(--radius);
}

.booking-summary-strip strong {
  font-size: 1.15rem;
}

.booking-summary-strip span:last-child {
  margin-left: auto;
  color: rgba(255, 253, 251, 0.82);
  font-weight: 800;
}

.status-dot {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  background: var(--sage);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(139, 155, 123, 0.22);
  animation: availabilityPulse 2.8s ease-in-out infinite;
}

.booking-fieldset {
  display: grid;
  gap: 12px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.booking-fieldset legend {
  margin-bottom: 12px;
  color: var(--cocoa);
  font-size: 0.94rem;
  font-weight: 900;
}

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

.service-option {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 96px;
  padding: 18px;
  cursor: pointer;
  background: rgba(255, 253, 251, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.service-option:hover {
  border-color: var(--pink-200);
  box-shadow: var(--soft-shadow);
  transform: translateY(-2px);
}

.service-option input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.service-option span,
.service-option em {
  pointer-events: none;
}

.service-option:has(input:checked),
.service-option.is-selected {
  background:
    linear-gradient(180deg, rgba(255, 220, 231, 0.72), rgba(255, 253, 251, 0.94)),
    var(--white);
  border-color: var(--pink-200);
  box-shadow: 0 0 0 4px rgba(245, 184, 202, 0.2);
}

.service-option span {
  display: grid;
  gap: 4px;
}

.service-option strong {
  font-size: 1.02rem;
  line-height: 1.15;
}

.service-option small,
.date-button small,
.time-button small {
  color: rgba(74, 44, 33, 0.62);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-option em {
  color: var(--brown);
  font-style: normal;
  font-weight: 900;
}

.animal-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px;
  gap: 14px;
  align-items: center;
  padding: 18px;
  background: rgba(255, 248, 239, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.pet-detail-list {
  display: grid;
  gap: 14px;
}

.pet-detail-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: rgba(255, 248, 239, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.pet-detail-card h4 {
  margin: 0;
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.04rem;
  line-height: 1.15;
}

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

.sf-fee-option {
  position: relative;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 18px;
  cursor: pointer;
  background: rgba(255, 253, 251, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.sf-fee-option:hover,
.sf-fee-option:has(input:checked) {
  background:
    linear-gradient(180deg, rgba(255, 220, 231, 0.58), rgba(255, 253, 251, 0.94)),
    var(--white);
  border-color: var(--pink-200);
  box-shadow: 0 0 0 4px rgba(245, 184, 202, 0.16);
}

.sf-fee-option input {
  width: 20px;
  height: 20px;
  min-height: 0;
  accent-color: var(--cocoa);
  cursor: pointer;
}

.sf-fee-option span {
  display: grid;
  gap: 3px;
}

.sf-fee-option strong {
  line-height: 1.2;
}

.sf-fee-option small {
  color: rgba(74, 44, 33, 0.62);
  font-size: 0.82rem;
  font-weight: 800;
}

.sf-fee-option em {
  color: var(--brown);
  font-style: normal;
  font-weight: 900;
}

.date-picker,
.time-picker {
  display: grid;
  gap: 10px;
}

.date-picker {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.time-picker {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.date-button,
.time-button {
  display: grid;
  gap: 5px;
  align-content: center;
  min-height: 80px;
  padding: 12px;
  color: var(--cocoa);
  cursor: pointer;
  background: rgba(255, 253, 251, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: left;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.time-button {
  min-height: 58px;
}

.date-button:hover:not(:disabled),
.time-button:hover:not(:disabled),
.date-button.is-selected,
.time-button.is-selected {
  background:
    linear-gradient(180deg, rgba(255, 220, 231, 0.72), rgba(255, 253, 251, 0.94)),
    var(--white);
  border-color: var(--pink-200);
  box-shadow: 0 0 0 4px rgba(245, 184, 202, 0.18);
  transform: translateY(-1px);
}

.date-button:disabled,
.time-button:disabled {
  color: rgba(74, 44, 33, 0.38);
  cursor: not-allowed;
  background: rgba(237, 227, 220, 0.56);
}

.date-button.has-selected-slot {
  border-color: rgba(139, 155, 123, 0.72);
}

.date-button.has-selected-slot small,
.time-button.is-selected small {
  color: var(--cocoa);
}

.date-button strong,
.time-button strong {
  font-size: 0.96rem;
  line-height: 1.1;
}

.date-button span {
  color: var(--brown);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.empty-slots {
  grid-column: 1 / -1;
  min-height: 80px;
  padding: 18px;
  color: rgba(74, 44, 33, 0.68);
  background: rgba(237, 227, 220, 0.52);
  border: 1px dashed rgba(109, 70, 53, 0.28);
  border-radius: var(--radius);
  font-weight: 800;
}

.booking-receipt {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  gap: 18px;
  padding: 26px;
}

.booking-receipt h3 {
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 1.3rem;
  line-height: 1.15;
}

.booking-receipt dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.booking-receipt dl div,
.total-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.booking-receipt dt,
.total-row span {
  color: rgba(74, 44, 33, 0.62);
  font-weight: 800;
}

.booking-receipt dd {
  margin: 0;
  color: var(--cocoa);
  font-weight: 900;
  text-align: right;
}

.total-row {
  padding: 12px 0 14px;
}

.total-row strong {
  color: var(--cocoa);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  line-height: 1;
}

.estimator-note {
  margin: -6px 0 0;
  color: rgba(74, 44, 33, 0.72);
  font-size: 0.92rem;
  font-weight: 820;
  line-height: 1.45;
}

.selected-plan {
  padding: 14px;
  color: rgba(74, 44, 33, 0.72);
  background: rgba(255, 248, 239, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 780;
  line-height: 1.45;
}

.selected-plan ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.selected-plan li {
  padding-left: 2px;
}

.turnstile-panel {
  display: grid;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 248, 239, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.turnstile-panel.is-hidden {
  display: none;
}

.turnstile-panel strong,
.turnstile-panel span {
  display: block;
}

.turnstile-panel strong {
  color: var(--cocoa);
  font-size: 0.9rem;
}

.turnstile-panel span {
  margin-top: 3px;
  color: rgba(74, 44, 33, 0.68);
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1.35;
}

.turnstile-widget {
  width: min(100%, 300px);
  min-height: 65px;
}

.compact-field {
  gap: 6px;
}

.compact-field input {
  min-height: 44px;
}

.rover-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--cocoa);
  background: rgba(255, 220, 231, 0.45);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 850;
  text-align: center;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.rover-inline:hover,
.rover-inline:focus-visible {
  background: var(--pink-100);
  border-color: var(--pink-200);
  transform: translateY(-1px);
}

.area-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(250px, 0.75fr);
  gap: 18px;
  align-items: start;
  margin-top: 34px;
}

.area-map-card,
.area-key {
  background: rgba(255, 253, 251, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.area-map-card {
  padding: 14px;
}

.service-image-map {
  position: relative;
  width: 100%;
  aspect-ratio: 1.18;
  overflow: hidden;
  background: #eef8fb;
  border-radius: var(--radius);
  isolation: isolate;
}

.service-image-map img {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: auto;
  filter: saturate(0.82) contrast(0.98);
}

.service-image-map::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: rgba(255, 253, 251, 0.14);
  pointer-events: none;
}

.coverage-fill,
.coverage-label-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.coverage-fill {
  z-index: 2;
  filter: drop-shadow(0 10px 18px rgba(52, 92, 53, 0.12));
}

.coverage-label-layer {
  z-index: 3;
}

.coverage-label-layer text {
  fill: #263f26;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 27px;
  font-weight: 900;
  letter-spacing: 0;
  paint-order: stroke;
  stroke: rgba(255, 253, 251, 0.86);
  stroke-linejoin: round;
  stroke-width: 9px;
}

.area-key {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 20px;
  align-self: start;
}

.legend-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.legend-swatch {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border: 2px solid var(--cocoa);
  border-radius: 4px;
}

.legend-swatch.available {
  background: rgba(126, 171, 108, 0.72);
}

.legend-swatch.unavailable {
  background: #f7f3df;
  border-color: rgba(109, 70, 53, 0.38);
}

.city-chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  padding-top: 2px;
}

.city-chips span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 28px;
  padding-left: 18px;
  color: rgba(74, 44, 33, 0.78);
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.city-chips span::before {
  position: absolute;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: rgba(126, 171, 108, 0.72);
  border: 2px solid var(--cocoa);
  border-radius: 50%;
}

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

.price-card {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.price-group h3 {
  margin: 0;
  color: var(--cocoa);
  font-size: 1.7rem;
}

.price-intro {
  max-width: 44ch;
}

.price-card.featured {
  background: var(--cocoa);
  border-color: var(--cocoa);
  transform: translateY(-10px);
}

.price-card.featured h3,
.price-card.featured .price,
.price-card.featured .price-label {
  color: var(--white);
}

.price-card.featured p,
.price-card.featured li {
  color: rgba(255, 253, 251, 0.78);
}

.price-label {
  width: fit-content;
  padding: 5px 10px;
  color: var(--brown);
  background: var(--pink-100);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  color: var(--cocoa);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

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

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 16px 18px;
  background: rgba(255, 248, 239, 0.72);
  border: 1px solid rgba(112, 66, 48, 0.12);
  border-radius: calc(var(--radius) - 8px);
}

.price-row span {
  display: grid;
  gap: 3px;
}

.price-row strong {
  color: var(--cocoa);
  font-size: 1.02rem;
  line-height: 1.15;
}

.price-row small {
  color: rgba(74, 44, 33, 0.58);
  font-size: 0.82rem;
  font-weight: 820;
}

.price-row b {
  flex: 0 0 auto;
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.price-addons {
  display: grid;
  gap: 8px;
  padding-top: 2px;
}

.price-addons h4 {
  margin: 0 0 2px;
  color: var(--cocoa);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.addon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  color: rgba(74, 44, 33, 0.74);
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
  font-weight: 780;
}

.addon-row strong {
  flex: 0 0 auto;
  color: var(--brown);
  font-weight: 900;
}

.rate-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 2px 0 0 18px;
  color: rgba(74, 44, 33, 0.72);
  font-size: 0.9rem;
  font-weight: 760;
}

.cancel-note {
  align-self: end;
  padding-top: 4px;
  color: rgba(74, 44, 33, 0.62);
  font-size: 0.84rem;
  font-weight: 850;
}

.pricing-note {
  max-width: 760px;
  margin: 24px auto 0;
  color: rgba(74, 44, 33, 0.76);
  font-size: 1.02rem;
  font-weight: 720;
  line-height: 1.7;
  text-align: center;
}

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

.review-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  margin: 0;
  padding: 26px;
}

.review-card::before {
  width: fit-content;
  content: "★★★★★";
  color: #d89a4d;
  font-size: 0.94rem;
  letter-spacing: 0.12em;
}

.review-card blockquote {
  margin: 0;
  font-size: 1.05rem;
}

.review-card figcaption {
  color: var(--brown);
  font-size: 0.9rem;
  font-weight: 850;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 42px;
  align-items: start;
  padding-bottom: 96px;
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-height) + 34px);
}

.contact-copy p {
  max-width: 38ch;
  margin: 20px 0 0;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: var(--white);
}

.hidden-field {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.field-row {
  display: grid;
  gap: 8px;
}

.field-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  color: var(--cocoa);
  font-size: 0.91rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  color: var(--cocoa);
  background: #fffaf6;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

input {
  min-height: 50px;
  padding: 0 14px;
}

select {
  min-height: 50px;
  padding: 0 40px 0 14px;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--brown) 50%),
    linear-gradient(135deg, var(--brown) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 21px,
    calc(100% - 12px) 21px;
  background-repeat: no-repeat;
  background-size: 6px 6px;
}

select:disabled {
  color: rgba(74, 44, 33, 0.48);
  cursor: not-allowed;
  background-color: rgba(255, 250, 246, 0.58);
}

textarea {
  min-height: 164px;
  padding: 12px 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  background: var(--white);
  border-color: var(--pink-200);
  box-shadow: 0 0 0 4px rgba(245, 184, 202, 0.24);
}

.form-button {
  width: fit-content;
  min-width: 176px;
}

.form-note {
  min-height: 24px;
  margin: 0;
  font-size: 0.91rem;
}

.form-note.is-success {
  color: var(--sage);
  font-weight: 800;
}

.form-note.is-error {
  color: #9a4d49;
  font-weight: 800;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
  box-shadow: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 38px;
  border-top: 1px solid var(--line);
}

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

.site-footer strong {
  color: var(--cocoa);
}

.site-footer span {
  color: rgba(74, 44, 33, 0.68);
}

.site-footer a {
  color: var(--brown);
  font-weight: 850;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card.reveal:nth-child(2),
.price-card.reveal:nth-child(2),
.review-card.reveal:nth-child(2),
.trust-item.reveal:nth-child(2) {
  transition-delay: 90ms;
}

.service-card.reveal:nth-child(3),
.price-card.reveal:nth-child(3),
.review-card.reveal:nth-child(3),
.trust-item.reveal:nth-child(3) {
  transition-delay: 180ms;
}

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

@keyframes tailWag {
  0%,
  100% {
    transform: rotate(-16deg);
  }
  50% {
    transform: rotate(18deg);
  }
}

@keyframes earFlopLeft {
  0%,
  100% {
    transform: rotate(20deg);
  }
  50% {
    transform: rotate(28deg);
  }
}

@keyframes earFlopRight {
  0%,
  100% {
    transform: rotate(-21deg);
  }
  50% {
    transform: rotate(-28deg);
  }
}

@keyframes catStretch {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

@keyframes catTail {
  0%,
  100% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(8deg);
  }
}

@keyframes blink {
  0%,
  92%,
  100% {
    transform: scaleY(1);
  }
  95% {
    transform: scaleY(0.12);
  }
}

@keyframes pawAppear {
  0%,
  100% {
    opacity: 0.18;
    transform: translateY(0) rotate(-16deg);
  }
  50% {
    opacity: 0.62;
    transform: translateY(-4px) rotate(-16deg);
  }
}

@keyframes heartFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-45deg) scale(1);
  }
  50% {
    transform: translateY(-7px) rotate(-45deg) scale(1.08);
  }
}

@keyframes sunFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

@keyframes dashWalk {
  to {
    stroke-dashoffset: -34;
  }
}

@keyframes availabilityPulse {
  0%,
  100% {
    box-shadow: 0 0 0 7px rgba(139, 155, 123, 0.18);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(139, 155, 123, 0.08);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: calc(var(--header-height) + 34px);
  }

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

  h1 {
    max-width: 12ch;
    font-size: 4rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .pet-stage {
    min-height: 430px;
  }

  .dog {
    left: 32px;
    scale: 0.9;
  }

  .cat {
    right: 32px;
  }

  .service-grid,
  .care-profile-grid,
  .personal-pets-grid,
  .care-fit-grid,
  .process-list,
  .price-grid,
  .faq-grid,
  .review-grid,
  .booking-layout,
  .area-layout,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .about-copy {
    padding-top: 0;
  }

  .process-card,
  .process-card-right {
    width: 100%;
    justify-self: stretch;
  }

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

  .booking-receipt {
    position: static;
  }

  .date-picker {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .price-card.featured {
    transform: none;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 900px) {
  .section-panel,
  .content-section,
  .trust-strip,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand {
    max-width: calc(100% - 60px);
  }

  .brand span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-toggle {
    position: relative;
    z-index: 22;
    display: grid;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 21;
    display: grid;
    align-content: center;
    justify-items: stretch;
    gap: 10px;
    height: 100svh;
    overflow-y: auto;
    padding: 94px 28px 28px;
    background: var(--cream);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    justify-content: center;
    min-height: 54px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .nav-links .nav-rover {
    background: var(--cocoa);
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 70px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 34px;
  }

  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.16rem;
  }

  .hero-text {
    font-size: 1.04rem;
  }

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

  .button,
  .form-button {
    width: 100%;
  }

  .pet-stage {
    min-height: 360px;
  }

  .owner-photo {
    max-width: 460px;
  }

  .about-copy {
    padding-top: 0;
  }

  .pet-photo-card,
  .pet-photo-card:hover {
    transform: none;
  }

  .sun-soft {
    top: 24px;
    right: 24px;
    width: 76px;
    height: 76px;
    border-width: 7px;
  }

  .leash-line {
    top: 118px;
    left: 2%;
    width: 96%;
  }

  .dog {
    bottom: 70px;
    left: -8px;
    scale: 0.74;
  }

  .cat {
    right: -8px;
    bottom: 72px;
    scale: 0.76;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .trust-item {
    padding: 20px;
  }

  .content-section {
    padding-top: 78px;
  }

  .booking-summary-strip {
    display: grid;
    grid-template-columns: auto 1fr;
  }

  .booking-summary-strip span:last-child {
    grid-column: 2;
    margin-left: 0;
  }

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

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

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

  .booking-main,
  .booking-receipt {
    padding: 20px;
  }

  .animal-row {
    grid-template-columns: 1fr;
  }

  .pet-detail-grid {
    grid-template-columns: 1fr;
  }

  .sf-fee-option {
    grid-template-columns: 22px minmax(0, 1fr);
  }

  .sf-fee-option em {
    grid-column: 2;
  }

  .area-map-card,
  .area-key {
    padding: 18px;
  }

  .service-image-map {
    aspect-ratio: 1.03;
  }

  .city-chips {
    grid-template-columns: 1fr;
  }

  .field-pair {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 20px;
  }
}

@media (max-width: 420px) {
  .brand-mark {
    width: 40px;
    height: 40px;
  }

  h1 {
    font-size: 2.58rem;
  }

  h2 {
    font-size: 1.94rem;
  }

  .pet-stage {
    min-height: 330px;
  }

  .dog {
    left: -32px;
    scale: 0.67;
  }

  .cat {
    right: -30px;
    scale: 0.68;
  }

  .review-card,
  .service-card,
  .price-card,
  .faq-card,
  .service-option {
    min-height: auto;
    padding: 22px;
  }

  .date-picker,
  .time-picker {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
