:root {
  --ink: #201914;
  --muted: #676767;
  --paper: #ffffff;
  --cream: #f7f7f4;
  --peach: #ff715b;
  --peach-dark: #d85743;
  --teal: #0ca4a5;
  --blue: #284053;
  --green: #eef4ef;
  --line: rgba(32, 25, 20, 0.14);
  --shadow: 0 12px 28px rgba(40, 64, 83, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Outfit, "Open Sans", "Trebuchet MS", Arial, sans-serif;
  line-height: 1.6;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(12, 164, 165, 0.38);
  outline-offset: 3px;
}

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

button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 82px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.brand img {
  width: 124px;
}

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

.site-nav a,
.nav-menu > button {
  min-height: 42px;
  padding: 10px 13px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
}

.site-nav a:hover,
.nav-menu:hover > button,
.nav-menu > button:focus-visible {
  color: var(--ink);
  background: #fff;
}

.nav-menu {
  position: relative;
}

.nav-menu-list {
  position: absolute;
  right: 0;
  top: 100%;
  display: none;
  min-width: 150px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.nav-menu:hover .nav-menu-list,
.nav-menu:focus-within .nav-menu-list {
  display: grid;
}

.nav-toggle {
  display: none;
}

.hero {
  --hero-shift: 0px;
  position: relative;
  display: grid;
  min-height: 520px;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08) translate3d(0, var(--hero-shift), 0);
  transform-origin: center;
  will-change: transform;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.48) 54%, rgba(255, 255, 255, 0.14));
}

.hero-content {
  position: relative;
  width: min(780px, 72vw);
  padding: 64px 0 64px clamp(20px, 5vw, 72px);
}

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

.hero h1,
.section-heading h2,
.booking-panel h2,
.contact-copy h2,
.memory-hero h1,
.community-hero h1,
.photo-update-copy h2 {
  margin: 0;
  line-height: 1.06;
  font-family: "Chelsea Market", "Cooper Black", "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 700px;
  color: var(--peach);
  text-shadow: rgba(232, 232, 232, 0.82) 0 0 30px;
  font-size: clamp(3rem, 5vw, 4.5rem);
}

.hero p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--blue);
  font-size: 1.08rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--teal);
  box-shadow: rgba(0, 0, 0, 0.18) 0 5px 16px;
}

.button-secondary {
  color: var(--blue);
  border-color: rgba(40, 64, 83, 0.24);
  background: rgba(255, 255, 255, 0.78);
}

.specialty-strip {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(0, 2fr);
  gap: 28px;
  align-items: center;
  padding: 20px clamp(20px, 5vw, 72px);
  color: var(--blue);
  background: #fff;
  border-top: 2px solid var(--peach);
  border-bottom: 1px solid rgba(40, 64, 83, 0.12);
}

.specialty-intro .eyebrow {
  margin-bottom: 3px;
}

.specialty-intro > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.specialty-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.specialty-items span {
  position: relative;
  display: grid;
  min-height: 44px;
  padding: 8px 14px;
  place-items: center;
  font-size: 0.84rem;
  font-weight: 800;
  text-align: center;
}

.specialty-items span + span::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 1px;
  content: "";
  background: rgba(40, 64, 83, 0.12);
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 24px clamp(20px, 5vw, 72px) 18px;
  background: #fff;
  border-bottom: 1px solid rgba(40, 64, 83, 0.1);
}

.quick-links a {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 126px;
  background: transparent;
  color: var(--teal);
  font-weight: 800;
  border-bottom: 3px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.quick-links a:hover,
.quick-links a:focus-visible {
  background: rgba(12, 164, 165, 0.06);
  border-bottom-color: var(--teal);
  transform: translateY(-2px);
}

.quick-links svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.section {
  padding: 96px clamp(20px, 5vw, 72px);
}

.testimonials,
.community {
  --section-shift: 0px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.testimonials::before,
.community::before {
  position: absolute;
  z-index: -2;
  inset: -120px 0;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.38;
  transform: translate3d(0, var(--section-shift), 0);
  will-change: transform;
}

.testimonials::after,
.community::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: rgba(255, 255, 255, 0.58);
}

.testimonials::before {
  background-image: url("../assets/_8504185-1200h.webp");
}

.community::before {
  background-image: url("../assets/_8502922_55371091336_o-1200h.webp");
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

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

.section-heading h2,
.booking-panel h2,
.contact-copy h2,
.photo-update-copy h2 {
  font-size: clamp(2.25rem, 5vw, 4.4rem);
  color: var(--blue);
}

.section-heading p:not(.eyebrow),
.booking-panel p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-grid .service-option,
.testimonial-set article,
.contact-form,
.memory-grid article {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.service-grid .service-option {
  position: relative;
  padding: 8px 18px 26px;
  text-align: center;
}

.service-grid .service-option::after {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 113, 91, 0.45), transparent);
}

.service-grid .service-option {
  display: flex;
  flex-direction: column;
}

.service-grid .service-option img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  margin-bottom: 18px;
  border-radius: 8px;
  transition: transform 180ms ease, filter 180ms ease;
}

.service-grid .service-option:hover img,
.service-grid .service-option:focus-visible img {
  transform: translateY(-3px);
  filter: saturate(1.08);
}

.service-grid h3 {
  margin: 14px 0 8px;
  font-size: 1.35rem;
  color: var(--blue);
}

.service-grid p {
  margin: 0;
  color: var(--muted);
  flex: 1;
}

.booking,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: 92px clamp(20px, 5vw, 72px);
  background: #fff;
}

.booking img {
  width: 100%;
  height: min(560px, 58vw);
  min-height: 360px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: none;
}

.service-duration {
  display: block;
  margin-top: 18px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.photo-updates {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
  min-height: 620px;
  padding: 76px clamp(20px, 7vw, 110px);
  overflow: hidden;
  background: #edf7f5;
}

.photo-update-copy {
  max-width: 560px;
}

.photo-update-copy h2 {
  color: var(--blue);
  font-size: clamp(2.25rem, 4vw, 3.8rem);
}

.photo-update-copy > p:last-child {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.08rem;
}

.instant-photo-stack {
  position: relative;
  width: min(100%, 650px);
  height: 470px;
  margin: 0 auto;
}

.instant-photo {
  position: absolute;
  width: clamp(210px, 24vw, 290px);
  margin: 0;
  padding: 12px 12px 42px;
  background: #fff;
  border: 1px solid rgba(40, 64, 83, 0.1);
  box-shadow: 0 18px 35px rgba(40, 64, 83, 0.17);
}

.instant-photo img {
  width: 100%;
  aspect-ratio: 1 / 0.9;
  object-fit: cover;
}

.instant-photo figcaption {
  position: absolute;
  right: 12px;
  bottom: 10px;
  left: 12px;
  color: var(--blue);
  font-family: "Chelsea Market", "Cooper Black", "Arial Rounded MT Bold", sans-serif;
  font-size: 0.8rem;
  text-align: center;
}

.photo-one {
  top: 104px;
  left: 0;
  z-index: 1;
  transform: rotate(-7deg);
}

.photo-two {
  top: 12px;
  left: 31%;
  z-index: 3;
  transform: rotate(3deg);
}

.photo-three {
  right: 0;
  bottom: 10px;
  z-index: 2;
  transform: rotate(8deg);
}

.testimonials {
  background: #fff;
}

.testimonial-stage {
  display: grid;
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
}

.testimonial-viewport {
  width: 100%;
  overflow: hidden;
  padding: 8px 0 16px;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.testimonial-track {
  display: flex;
  gap: 22px;
  align-items: stretch;
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.testimonial-track.no-transition {
  transition: none;
}

.testimonial-set {
  display: grid;
  flex: 0 0 calc(100% - 170px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  opacity: 0.24;
  filter: saturate(0.65);
  transform: scale(0.95);
  transition: opacity 500ms ease, filter 500ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-set.is-active {
  opacity: 1;
  filter: none;
  transform: scale(1);
}

.testimonial-set article {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  min-height: 430px;
  overflow: hidden;
  padding: 0;
  background: #fff;
  border-top: 3px solid rgba(255, 113, 91, 0.72);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(40, 64, 83, 0.08);
}

.testimonial-set article > img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.testimonial-copy {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.testimonial-set p {
  position: relative;
  margin: 0;
  padding-top: 24px;
  color: var(--ink);
  font-size: 1.02rem;
}

.testimonial-set p::before {
  position: absolute;
  top: -14px;
  left: 0;
  content: "\201C";
  color: var(--peach);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
}

.testimonial-set strong {
  margin-top: auto;
  padding-top: 24px;
  color: var(--blue);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.testimonial-controls button {
  display: grid;
  width: 44px;
  min-height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.testimonial-controls button:hover,
.testimonial-controls button:focus-visible {
  color: #fff;
  border-color: var(--teal);
  background: var(--teal);
}

.testimonial-prev svg,
.testimonial-next svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dots button {
  width: 12px;
  min-height: 12px;
  padding: 0;
}

.testimonial-dots button.is-active {
  background: var(--teal);
}

@keyframes testimonial-card-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.booking {
  grid-template-columns: 1fr 0.82fr;
  background: linear-gradient(90deg, rgba(12, 164, 165, 0.08), rgba(255, 113, 91, 0.05));
}

.booking-panel {
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.community {
  background: #fff;
}

.community-gateways {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.community-gateway {
  display: flex;
  min-height: 290px;
  padding: 36px;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--blue);
  border: 1px solid rgba(40, 64, 83, 0.13);
  border-top: 4px solid var(--peach);
  border-radius: 8px;
  background: rgba(249, 251, 251, 0.9);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.community-gateway:hover,
.community-gateway:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(12, 164, 165, 0.45);
  box-shadow: var(--shadow);
}

.community-gateway-icon {
  color: var(--teal);
  font-size: 2.2rem;
}

.community-gateway h3 {
  margin: 18px 0 4px;
  font-size: 1.65rem;
}

.community-gateway p {
  margin: 0 0 20px;
  color: var(--muted);
}

.text-link {
  color: var(--teal);
  font-weight: 800;
}

.contact {
  grid-template-columns: 0.8fr 1fr;
  align-items: start;
  background: #f9fbfb;
}

.seal-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  font-weight: 800;
}

.seal-row img {
  width: 74px;
}

.contact-dog {
  width: min(100%, 520px);
  margin: -28px -34px -20px auto;
  pointer-events: none;
  filter: drop-shadow(0 14px 16px rgba(40, 64, 83, 0.16));
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(40, 64, 83, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

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

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(20px, 5vw, 72px);
  background: var(--blue);
  color: #fff;
}

.site-footer img {
  width: 112px;
  filter: invert(1);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.memory-hero {
  min-height: 440px;
  display: grid;
  align-items: end;
  padding: 110px clamp(20px, 5vw, 72px) 70px;
  color: #fff;
  background: linear-gradient(rgba(28, 22, 18, 0.5), rgba(28, 22, 18, 0.74)), url("../assets/_8504185-1200h.webp") center / cover;
}

.community-hero {
  padding: 96px clamp(20px, 5vw, 72px) 72px;
  text-align: center;
  background: #edf7f5;
}

.community-hero > div {
  max-width: 790px;
  margin: 0 auto;
}

.community-hero h1 {
  color: var(--blue);
  font-size: clamp(3rem, 7vw, 5.5rem);
}

.community-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.15rem;
}

.partner-section {
  padding: 80px clamp(20px, 5vw, 72px);
}

.partner-section + .partner-section {
  background: #f9fbfb;
}

.partner-inner {
  display: grid;
  grid-template-columns: minmax(230px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(40px, 7vw, 100px);
  max-width: 1180px;
  margin: 0 auto;
}

.partner-heading h2 {
  margin: 0;
  color: var(--blue);
  font-family: "Chelsea Market", "Cooper Black", "Arial Rounded MT Bold", sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
}

.partner-heading p:not(.eyebrow) {
  color: var(--muted);
}

.partner-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(40, 64, 83, 0.14);
}

.partner-list article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 150px;
  padding: 26px 24px;
  border-bottom: 1px solid rgba(40, 64, 83, 0.14);
}

.partner-logo {
  display: grid;
  width: 64px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--teal);
  border: 1px dashed rgba(12, 164, 165, 0.5);
  border-radius: 8px;
  background: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.partner-list article:nth-child(odd) {
  border-right: 1px solid rgba(40, 64, 83, 0.14);
}

.partner-list h3 {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 1.08rem;
}

.partner-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.memory-hero div {
  max-width: 760px;
}

.memory-hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
}

.memory-hero p:not(.eyebrow) {
  max-width: 620px;
  font-size: 1.2rem;
}

.memory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.memory-grid article {
  text-align: center;
}

.memorial-portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(40, 64, 83, 0.1);
}

.memory-grid h2 {
  margin: 18px 0 2px;
  color: var(--peach);
  font-family: "Chelsea Market", "Cooper Black", "Arial Rounded MT Bold", sans-serif;
  font-size: 1.7rem;
}

.memory-grid p {
  margin: 0;
  color: var(--muted);
}

.memory-note {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px 88px;
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  text-align: center;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: grid;
    gap: 5px;
    width: 46px;
    height: 46px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 21px;
    height: 2px;
    background: var(--ink);
  }

  .site-nav:not(.is-simple) {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 8px);
    display: none;
    align-items: stretch;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .nav-menu-list {
    position: static;
    display: grid;
    box-shadow: none;
  }

  .quick-links,
  .service-grid,
  .booking,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .specialty-strip,
  .photo-updates,
  .partner-inner {
    grid-template-columns: 1fr;
  }

  .photo-updates {
    gap: 22px;
  }

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

  .testimonial-set {
    grid-template-columns: 1fr;
  }

  .testimonial-set article {
    grid-template-columns: 240px minmax(0, 1fr);
    min-height: 360px;
  }

  .testimonial-set article > img {
    min-height: 360px;
  }

  .booking img {
    height: 420px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 72px;
  }

  .brand img {
    width: 104px;
  }

  .hero {
    min-height: 510px;
  }

  .hero-content {
    width: auto;
    padding-top: 70px;
    padding-right: 20px;
    padding-bottom: 62px;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .specialty-strip {
    gap: 14px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

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

  .specialty-items span {
    min-height: 48px;
    padding: 10px;
    font-size: 0.82rem;
  }

  .specialty-items span + span::before {
    display: none;
  }

  .specialty-items span:nth-child(odd) {
    border-right: 1px solid rgba(40, 64, 83, 0.12);
  }

  .specialty-items span:nth-child(n + 3) {
    border-top: 1px solid rgba(40, 64, 83, 0.12);
  }

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

  .quick-links a {
    min-height: 104px;
  }

  .section,
  .feature-band,
  .booking,
  .contact {
    padding-top: 58px;
    padding-bottom: 58px;
  }

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

  .contact-dog {
    display: none;
  }

  .testimonial-set article {
    display: none;
    grid-template-columns: 1fr;
    grid-template-rows: 140px auto;
    align-content: start;
    min-height: 0;
  }

  .testimonial-set article.is-mobile-active {
    display: grid;
    animation: testimonial-card-in 360ms ease both;
  }

  .testimonial-track {
    gap: 10px;
  }

  .testimonial-viewport {
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
  }

  .testimonial-set {
    flex-basis: calc(100% - 46px);
    grid-template-columns: 1fr;
    gap: 0;
  }

  .testimonial-set article > img {
    height: 140px;
    min-height: 0;
  }

  .testimonial-copy {
    min-height: 0;
    padding: 18px 12px;
  }

  .testimonial-set p {
    padding-top: 18px;
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .testimonial-set p::before {
    top: -8px;
    font-size: 2.8rem;
  }

  .testimonial-set strong {
    padding-top: 16px;
    font-size: 0.78rem;
  }

  .community-gateways,
  .partner-list {
    grid-template-columns: 1fr;
  }

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

  .memory-grid h2 {
    margin-top: 12px;
    font-size: 1.3rem;
  }

  .memory-grid p {
    font-size: 0.78rem;
  }

  .community-gateway {
    min-height: 250px;
    padding: 28px;
  }

  .partner-list article:nth-child(odd) {
    border-right: 0;
  }

  .instant-photo-stack {
    height: 340px;
  }

  .instant-photo {
    width: 43vw;
    max-width: 172px;
    padding: 8px 8px 32px;
  }

  .instant-photo figcaption {
    right: 8px;
    bottom: 7px;
    left: 8px;
    font-size: 0.66rem;
  }

  .photo-one {
    top: 92px;
    left: 0;
  }

  .photo-two {
    top: 10px;
    left: 28%;
  }

  .photo-three {
    right: 0;
    bottom: 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

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

  .hero-media img,
  .testimonials::before,
  .community::before,
  .testimonial-track,
  .testimonial-set,
  .button,
  .quick-links a,
  .service-grid .service-option img,
  .community-gateway,
  .testimonial-controls button {
    transition: none;
    transform: none;
  }
}

/* Booking flow */
.booking-page {
  background: #f9fbfb;
}

.booking-hero {
  padding: 70px clamp(20px, 7vw, 110px) 62px;
  background: #edf7f5;
  border-bottom: 1px solid rgba(40, 64, 83, 0.1);
}

.booking-hero > div {
  max-width: 860px;
}

.booking-hero h1,
.booking-step h2,
.confirmation-step h2 {
  margin: 4px 0 14px;
  color: var(--blue);
  font-family: "Chelsea Market", "Cooper Black", "Arial Rounded MT Bold", sans-serif;
  letter-spacing: 0;
  line-height: 1.08;
}

.booking-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.booking-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.booking-app {
  width: min(1320px, calc(100% - 40px));
  min-height: 760px;
  margin: 0 auto;
  padding: 42px 0 84px;
}

.booking-progress {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 980px;
  margin: 0 auto 42px;
  padding: 0;
  list-style: none;
}

.booking-progress li {
  position: relative;
  display: grid;
  gap: 7px;
  justify-items: center;
  color: #8a8a8a;
  font-size: 0.76rem;
  text-align: center;
}

.booking-progress li::before {
  position: absolute;
  top: 17px;
  right: 50%;
  left: -50%;
  height: 2px;
  content: "";
  background: #dfe6e6;
}

.booking-progress li:first-child::before {
  display: none;
}

.booking-progress span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 2px solid #dfe6e6;
  border-radius: 50%;
  background: #f9fbfb;
  font-weight: 800;
}

.booking-progress li.is-current,
.booking-progress li.is-complete {
  color: var(--blue);
}

.booking-progress li.is-current span {
  color: #fff;
  border-color: var(--teal);
  background: var(--teal);
}

.booking-progress li.is-complete span {
  color: var(--teal);
  border-color: var(--teal);
  background: #fff;
}

.booking-progress li.is-complete::before,
.booking-progress li.is-current::before {
  background: var(--teal);
}

.booking-alert {
  max-width: 980px;
  margin: 0 auto 24px;
  padding: 14px 16px;
  color: #7d3023;
  border: 1px solid rgba(216, 87, 67, 0.35);
  border-left: 4px solid var(--peach);
  border-radius: 6px;
  background: #fff5f2;
}

.booking-step {
  animation: booking-step-in 240ms ease both;
}

.booking-step[hidden] {
  display: none;
}

@keyframes booking-step-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-heading {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.step-heading h2,
.confirmation-step h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.step-heading > p:last-child {
  margin: 0;
  color: var(--muted);
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: 1120px;
  text-align: left;
}

.split-heading h2 {
  margin-bottom: 8px;
}

.pricing-hint {
  margin-top: 10px !important;
  color: var(--teal) !important;
  font-size: 0.85rem;
  font-weight: 700;
}

.specialty-pricing-note {
  margin-top: 3px !important;
  color: var(--muted) !important;
  font-size: 0.8rem;
}

.schedule-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(310px, 0.7fr);
  gap: 28px;
  align-items: start;
}

.appointment-builder,
.itinerary-panel,
.checkout-summary {
  border: 1px solid rgba(40, 64, 83, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(40, 64, 83, 0.07);
}

.appointment-builder {
  padding: clamp(20px, 3vw, 34px);
}

.service-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 30px;
  padding: 0;
  border: 0;
}

.service-picker legend,
.pet-editor legend {
  width: 100%;
  margin-bottom: 10px;
  color: var(--blue);
  font-weight: 800;
}

.service-picker label {
  position: relative;
  cursor: pointer;
}

.service-picker input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-picker span {
  display: grid;
  min-height: 124px;
  padding: 18px;
  align-content: start;
  border: 2px solid rgba(40, 64, 83, 0.12);
  border-radius: 8px;
  background: #fff;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.service-picker label:hover span {
  border-color: rgba(12, 164, 165, 0.45);
}

.service-picker input:checked + span {
  border-color: var(--teal);
  background: #f0fbfa;
  box-shadow: inset 0 0 0 1px var(--teal);
}

.service-picker input:focus-visible + span {
  outline: 3px solid rgba(12, 164, 165, 0.3);
  outline-offset: 3px;
}

.service-picker strong {
  color: var(--blue);
}

.service-picker small {
  margin: 3px 0 12px;
  color: var(--muted);
}

.service-picker b {
  margin-top: auto;
  color: var(--peach-dark);
}

.calendar-shell {
  padding: 22px;
  border: 1px solid rgba(40, 64, 83, 0.12);
  border-radius: 8px;
}

.calendar-toolbar {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.calendar-toolbar h3 {
  margin: 0;
  color: var(--blue);
  font-size: 1.2rem;
  text-align: center;
}

.icon-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--blue);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 1.2rem;
}

.icon-button:hover:not(:disabled) {
  color: #fff;
  border-color: var(--teal);
  background: var(--teal);
}

.icon-button:disabled {
  cursor: default;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.calendar-weekdays {
  margin-bottom: 6px;
}

.calendar-weekdays span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.calendar-grid {
  min-height: 332px;
}

.calendar-day {
  position: relative;
  min-width: 0;
  min-height: 52px;
  padding: 7px 5px 13px;
  color: var(--blue);
  border: 1px solid transparent;
  border-radius: 6px;
  background: #f6f9f9;
  cursor: pointer;
  font-weight: 700;
}

.calendar-day::after {
  position: absolute;
  right: 50%;
  bottom: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  transform: translateX(50%);
  background: var(--teal);
}

.calendar-day.is-limited::after {
  background: #e19d30;
}

.calendar-day.is-selected {
  color: #fff;
  border-color: var(--teal);
  background: var(--teal);
}

.calendar-day.is-selected::after {
  background: #fff;
}

.calendar-day.has-appointment {
  box-shadow: inset 0 0 0 2px var(--peach);
}

.calendar-day:disabled,
.calendar-day.is-outside {
  color: #a7aaaa;
  background: #f3f3f1;
  cursor: default;
}

.calendar-day:disabled::after,
.calendar-day.is-outside::after {
  background: #c6caca;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.72rem;
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.calendar-legend i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
}

.calendar-legend .limited { background: #e19d30; }
.calendar-legend .unavailable { background: #c6caca; }
.calendar-legend .selected { background: var(--peach); }

.time-picker {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.time-picker h3 {
  margin: 0;
  color: var(--blue);
}

.time-picker p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  min-height: 46px;
}

.time-slot {
  min-height: 44px;
  padding: 8px;
  color: var(--blue);
  border: 1px solid rgba(40, 64, 83, 0.2);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 700;
}

.time-slot:hover,
.time-slot.is-selected {
  color: #fff;
  border-color: var(--teal);
  background: var(--teal);
}

.builder-submit {
  width: 100%;
  margin-top: 26px;
}

.itinerary-panel {
  position: sticky;
  top: 106px;
  padding: 24px;
}

.itinerary-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.itinerary-heading p {
  margin: 0;
}

.itinerary-heading h3 {
  margin: 2px 0 0;
  color: var(--blue);
  font-size: 1.45rem;
}

.appointment-count {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--peach);
  font-weight: 800;
}

.empty-state {
  padding: 36px 20px;
  color: var(--muted);
  border: 1px dashed rgba(40, 64, 83, 0.22);
  border-radius: 8px;
  background: #fafcfc;
  text-align: center;
}

.appointment-list {
  display: grid;
  gap: 0;
}

.appointment-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.appointment-item-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.appointment-item h4 {
  margin: 0;
  color: var(--blue);
  font-size: 1rem;
}

.appointment-item p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.appointment-item small {
  display: block;
  margin-top: 8px;
  color: var(--teal);
  font-weight: 700;
}

.item-actions {
  display: flex;
  flex-shrink: 0;
  gap: 3px;
}

.item-actions button,
.review-section-heading button,
.text-button {
  min-height: 40px;
  padding: 7px 9px;
  color: var(--teal);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.item-actions button:hover,
.review-section-heading button:hover,
.text-button:hover {
  text-decoration: underline;
}

.item-actions .remove-item {
  color: var(--peach-dark);
}

.text-button {
  width: 100%;
  margin-top: 12px;
  text-align: left;
}

.priced-action {
  position: relative;
  padding-right: 72px;
}

.priced-action span {
  position: absolute;
  top: -10px;
  right: 8px;
  padding: 2px 7px;
  color: var(--peach-dark);
  border: 1px solid rgba(216, 87, 67, 0.26);
  border-radius: 999px;
  background: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1.5;
}

.itinerary-total {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 2px solid var(--blue);
  color: var(--blue);
}

.step-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  max-width: 1120px;
  margin: 36px auto 0;
}

.step-actions.end { justify-content: flex-end; }
.step-actions.start { justify-content: flex-start; }

.intake-grid,
.pet-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}

.intake-grid label,
.pet-fields label {
  display: grid;
  gap: 7px;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 800;
}

.intake-grid input,
.intake-grid select,
.intake-grid textarea,
.pet-fields input,
.pet-fields select,
.pet-fields textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--ink);
  border: 1px solid rgba(40, 64, 83, 0.2);
  border-radius: 7px;
  background: #fff;
  font-weight: 400;
}

.intake-grid textarea,
.pet-fields textarea {
  resize: vertical;
}

.pet-list {
  display: grid;
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
}

.pet-empty {
  max-width: 720px;
  margin: 0 auto;
}

.pet-empty h3 {
  margin: 0;
  color: var(--blue);
}

.pet-card {
  border: 1px solid rgba(40, 64, 83, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(40, 64, 83, 0.06);
}

.pet-summary {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
}

.pet-summary[hidden] {
  display: none;
}

.pet-avatar {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  overflow: hidden;
  color: var(--teal);
  border-radius: 50%;
  background: #edf7f5;
  font-weight: 900;
}

.pet-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pet-summary h3 {
  margin: 0;
  color: var(--blue);
}

.pet-summary p {
  margin: 2px 0 0;
  color: var(--muted);
}

.pet-price-note {
  display: block;
  margin-top: 4px;
  color: var(--peach-dark);
  font-size: 0.75rem;
  font-weight: 800;
}

.pet-editor {
  padding: 24px;
  border-top: 1px solid var(--line);
}

.pet-editor fieldset {
  margin: 0 0 22px;
  padding: 0;
  border: 0;
}

.pet-photo-label {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: center;
}

.pet-photo-preview {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  overflow: hidden;
  color: var(--muted);
  border: 1px dashed rgba(40, 64, 83, 0.28);
  border-radius: 8px;
  background: #f7f9f9;
  font-size: 0.72rem;
  text-align: center;
}

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

.checkbox-label {
  display: flex !important;
  min-height: 48px;
  align-items: center;
  gap: 10px !important;
}

.checkbox-label input {
  width: 20px;
  min-height: 20px;
}

.medication-details[hidden] {
  display: none;
}

.pet-editor-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.review-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: start;
}

.review-main {
  border-top: 1px solid var(--line);
}

.review-section {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.review-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.review-section-heading h3 {
  margin: 0;
  color: var(--blue);
  font-size: 1.4rem;
}

.review-appointment {
  padding: 18px;
  border-left: 4px solid var(--peach);
  background: #fff;
}

.review-appointment + .review-appointment {
  margin-top: 12px;
}

.review-appointment h4,
.review-pet h4 {
  margin: 0;
  color: var(--blue);
}

.review-appointment p,
.review-pet p,
#review-customer p {
  margin: 4px 0;
  color: var(--muted);
}

.pet-assignment {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.pet-assignment label {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
}

.assignment-price-note {
  margin: 9px 0 0 !important;
  color: var(--peach-dark) !important;
  font-size: 0.78rem;
  font-weight: 800;
}

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

.review-pet {
  padding: 16px;
  border-left: 3px solid var(--teal);
  background: #fff;
}

.checkout-summary {
  position: sticky;
  top: 106px;
  padding: 24px;
}

.addon-option {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 16px 0 20px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.addon-option input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.addon-option span {
  display: grid;
  color: var(--blue);
}

.addon-option small {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.45;
}

.addon-option b {
  color: var(--peach-dark);
}

.checkout-lines {
  padding: 14px 0;
}

.checkout-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.checkout-line.is-addon {
  padding-left: 14px;
  color: var(--teal);
  border-left: 2px solid rgba(12, 164, 165, 0.35);
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  color: var(--blue);
  border-top: 2px solid var(--blue);
  font-size: 1.15rem;
}

.checkout-summary > .button {
  width: 100%;
}

.payment-note {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.confirmation-step {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.confirmation-mark {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--teal);
  font-size: 2.2rem;
  font-weight: 900;
}

.confirmation-step > p:not(.eyebrow) {
  color: var(--muted);
}

.confirmation-itinerary {
  display: grid;
  gap: 16px;
  margin: 34px 0;
  text-align: left;
}

.confirmation-pair {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.confirmation-care {
  padding: 20px;
}

.confirmation-pair h3 {
  margin: 0 0 5px;
  color: var(--blue);
  font-size: 1rem;
}

.confirmation-pair p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.confirmation-pair .confirmation-price {
  margin-top: 12px;
  color: var(--peach-dark);
  font-weight: 800;
}

.confirmation-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.email-preview-tool {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 20px;
  align-items: center;
  margin: 28px 0;
  padding: 22px;
  border: 1px dashed rgba(12, 164, 165, 0.48);
  border-radius: 8px;
  background: #edf7f5;
  text-align: left;
}

.email-preview-tool h3 {
  margin: 0;
  color: var(--blue);
}

.email-preview-tool p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.email-download-status {
  grid-column: 1 / -1;
}

@media (max-width: 980px) {
  .schedule-layout,
  .review-layout {
    grid-template-columns: 1fr;
  }

  .itinerary-panel,
  .checkout-summary {
    position: static;
  }

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

@media (max-width: 640px) {
  .booking-hero {
    padding-top: 48px;
    padding-bottom: 44px;
  }

  .booking-hero h1 {
    font-size: 2.55rem;
  }

  .booking-app {
    width: min(100% - 28px, 1320px);
    padding-top: 28px;
  }

  .booking-progress {
    margin-bottom: 30px;
  }

  .booking-progress strong {
    display: none;
  }

  .booking-progress li {
    min-height: 38px;
  }

  .step-heading {
    margin-bottom: 26px;
    text-align: left;
  }

  .step-heading h2 {
    font-size: 2rem;
  }

  .split-heading {
    align-items: stretch;
    flex-direction: column;
  }

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

  .service-picker span {
    min-height: 0;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .service-picker small {
    margin-bottom: 0;
  }

  .service-picker b {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .appointment-builder,
  .itinerary-panel,
  .checkout-summary {
    padding: 18px;
  }

  .calendar-shell {
    padding: 14px 10px;
  }

  .calendar-grid {
    gap: 3px;
    min-height: 294px;
  }

  .calendar-day {
    min-height: 46px;
    padding-right: 2px;
    padding-left: 2px;
    font-size: 0.8rem;
  }

  .calendar-legend {
    gap: 8px 12px;
  }

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

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

  .intake-grid,
  .pet-fields,
  .review-pets {
    grid-template-columns: 1fr;
  }

  .pet-photo-label {
    grid-template-columns: 72px 1fr;
  }

  .pet-photo-preview {
    width: 72px;
    height: 72px;
  }

  .pet-summary {
    grid-template-columns: 52px 1fr;
  }

  .pet-avatar {
    width: 52px;
    height: 52px;
  }

  .pet-summary .item-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  .pet-editor,
  .review-appointment {
    padding: 16px;
  }

  .step-actions,
  .confirmation-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .step-actions.end {
    align-items: stretch;
  }

  .step-actions .button,
  .confirmation-actions .button {
    width: 100%;
    text-align: center;
  }

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

  .email-preview-tool {
    grid-template-columns: 1fr;
  }

  .email-preview-tool .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .booking-step {
    animation: none;
  }
}

/* Site-owned calendar */
.site-calendar {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 100px;
}

.calendar-admin-heading,
.calendar-schedule-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.calendar-admin-heading {
  margin-bottom: 48px;
}

.calendar-admin-heading h1 {
  margin: 2px 0 8px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: 0.95;
}

.calendar-admin-heading p,
.calendar-feed-panel p {
  margin: 0;
  color: var(--muted);
}

.calendar-feed-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(420px, 1.2fr);
  gap: 48px;
  padding: 34px 0;
  border-block: 1px solid var(--line);
}

.calendar-feed-panel h2,
.calendar-schedule h2 {
  margin: 2px 0 8px;
  color: var(--blue);
  font-size: 1.8rem;
}

.feed-controls label {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
}

.feed-controls > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
}

.feed-controls input {
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  background: #fff;
}

.feed-status {
  min-height: 1.4em;
  margin-top: 7px !important;
  color: var(--teal) !important;
  font-size: 0.8rem;
  font-weight: 700;
}

.calendar-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 42px 0 64px;
  border-block: 1px solid var(--line);
}

.calendar-summary div {
  padding: 24px 30px;
  border-right: 1px solid var(--line);
}

.calendar-summary div:last-child {
  border-right: 0;
}

.calendar-summary strong,
.calendar-summary span {
  display: block;
}

.calendar-summary strong {
  color: var(--peach-dark);
  font-size: 1.8rem;
}

.calendar-summary span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.calendar-schedule-heading {
  margin-bottom: 24px;
}

.calendar-bookings {
  display: grid;
  gap: 18px;
}

.site-calendar-booking {
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 3px solid var(--peach);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.site-calendar-booking > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
}

.site-calendar-booking h3,
.site-calendar-booking h4 {
  margin: 0;
  color: var(--blue);
}

.site-calendar-booking header p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.calendar-address,
.calendar-addon {
  margin: 0;
  padding: 11px 24px;
  color: var(--muted);
  background: #f7f9f8;
  font-size: 0.84rem;
}

.calendar-addon {
  color: var(--teal);
  font-weight: 800;
}

.site-calendar-appointments {
  padding: 0 24px;
}

.site-calendar-appointment {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.site-calendar-appointment:last-child {
  border-bottom: 0;
}

.site-calendar-appointment time strong,
.site-calendar-appointment time span {
  display: block;
}

.site-calendar-appointment time strong {
  color: var(--ink);
}

.site-calendar-appointment time span,
.site-calendar-appointment p {
  margin: 1px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-calendar-booking details {
  padding: 15px 24px 20px;
  border-top: 1px solid var(--line);
}

.site-calendar-booking summary {
  cursor: pointer;
  color: var(--teal);
  font-weight: 800;
}

.calendar-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  padding-top: 18px;
}

.calendar-detail-grid p {
  color: var(--muted);
  font-size: 0.84rem;
}

.calendar-admin-alert,
.calendar-empty {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.calendar-admin-alert {
  margin-bottom: 20px;
  color: #8b291d;
  background: #fff0ed;
}

.calendar-empty {
  text-align: center;
  background: #f7f9f8;
}

.calendar-empty[hidden] {
  display: none;
}

.calendar-empty h3 {
  margin: 0;
  color: var(--blue);
}

.calendar-empty p {
  margin: 4px 0 18px;
  color: var(--muted);
}

@media (max-width: 760px) {
  .site-calendar {
    width: min(100% - 28px, 1180px);
    padding-top: 44px;
  }

  .calendar-admin-heading,
  .calendar-schedule-heading,
  .site-calendar-booking > header {
    align-items: stretch;
    flex-direction: column;
  }

  .calendar-feed-panel,
  .calendar-detail-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .feed-controls > div {
    grid-template-columns: 1fr 1fr;
  }

  .feed-controls input {
    grid-column: 1 / -1;
  }

  .calendar-summary div {
    padding: 18px 12px;
  }

  .calendar-summary strong {
    font-size: 1.2rem;
  }

  .calendar-summary span {
    font-size: 0.68rem;
  }

  .site-calendar-appointment {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
