:root {
  --orange: #f7941d;
  --orange-dark: #d87509;
  --ink: #1f1f1f;
  --ink-soft: #343434;
  --paper: #fffaf2;
  --white: #ffffff;
  --line: #ead7be;
  --sage: #edf3e8;
  --teal: #19777a;
  --shadow: 0 20px 50px rgba(31, 31, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  font-family: "Roboto", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: var(--white);
  border-bottom: 1px solid rgba(31, 31, 31, 0.08);
}

.brand {
  width: clamp(150px, 22vw, 250px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border-radius: 8px;
}

.site-nav a:hover {
  background: var(--ink-soft);
  color: var(--white);
}

.site-nav a[aria-current="page"] {
  background: var(--ink);
  color: var(--white);
}

.site-nav .nav-cta {
  background: var(--orange);
  color: var(--ink);
}

.site-nav .nav-cta[aria-current="page"] {
  background: var(--orange);
  color: var(--ink);
}

.hero {
  min-height: clamp(560px, 72vh, 720px);
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(340px, 500px);
  align-items: stretch;
  gap: clamp(20px, 3vw, 44px);
  padding: clamp(30px, 4.8vw, 64px) clamp(18px, 5vw, 72px) 42px;
  background:
    radial-gradient(circle at 88% 24%, rgba(247, 148, 29, 0.16), transparent 26%),
    linear-gradient(90deg, var(--paper) 0 66%, var(--orange) 66% 100%);
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
  max-width: 980px;
  align-self: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-dark);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 1040px;
  margin-bottom: 20px;
  font-size: clamp(3.2rem, 7.8vw, 7.55rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.lead {
  max-width: 650px;
  color: #45413a;
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  line-height: 1.55;
}

.hero-contact {
  max-width: 980px;
  margin-top: 30px;
}

.hero-contact h2 {
  margin-bottom: 10px;
}

.hero-contact p {
  margin-bottom: 0;
  color: #45413a;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.55;
}

.hero-contact a {
  color: var(--orange-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(31, 31, 31, 0.14);
}

.primary {
  background: var(--orange);
  color: var(--ink);
}

.secondary {
  background: var(--white);
  border-color: var(--ink);
  color: var(--ink);
}

.button.danger {
  background: #9f2f24;
  color: var(--white);
}

.button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

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

.hero-panel {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  padding: clamp(24px, 4vw, 38px);
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18px 18px, var(--orange) 0 5px, transparent 6px),
    radial-gradient(circle at 42px 15px, var(--orange) 0 4px, transparent 5px),
    radial-gradient(circle at 54px 36px, var(--orange) 0 4px, transparent 5px);
  background-size: 130px 110px;
  opacity: 0.16;
}

.panel-logo,
.service-grid {
  position: relative;
}

.panel-logo {
  width: 280px;
  margin-bottom: 30px;
  border: 8px solid var(--white);
}

.service-grid {
  display: grid;
  gap: 18px;
}

.service-grid article,
.values article {
  position: relative;
  padding-left: 46px;
}

.service-grid h2,
.values h2 {
  margin-bottom: 6px;
  font-size: 1.3rem;
}

.service-grid p,
.values p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.paw-mark {
  position: absolute;
  left: 0;
  top: 1px;
  width: 34px;
  height: 31px;
  display: block;
  background: url("assets/paw-print.svg") center / contain no-repeat;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: var(--white);
}

.trust-band div {
  min-height: 96px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 26px clamp(18px, 4vw, 54px);
  border-right: 1px solid var(--line);
  text-align: center;
}

.trust-band div:last-child {
  border-right: 0;
}

.trust-band strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1;
}

.trust-band span {
  color: #6b6257;
  font-weight: 800;
}

.video-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(320px, 1fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
  padding: clamp(48px, 7vw, 84px) clamp(18px, 5vw, 72px);
  background: var(--white);
}

.video-copy,
.video-link {
  grid-column: 1;
}

.video-copy h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.98;
}

.video-frame {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink);
  border: 8px solid var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.video-frame iframe,
.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-frame video {
  display: block;
  object-fit: cover;
}

.video-link {
  width: fit-content;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: var(--orange);
  border-radius: 8px;
  font-weight: 900;
}

.home-stay-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  padding: clamp(48px, 7vw, 86px) clamp(18px, 5vw, 72px);
  background: var(--paper);
}

.home-stay-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.home-stay-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-slideshow .slide {
  opacity: 0;
  transition: opacity 1200ms ease-in-out;
  animation: homeFade 25s infinite;
}

.home-slideshow .slide-1 {
  animation-delay: 0s;
}

.home-slideshow .slide-2 {
  animation-delay: 5s;
}

.home-slideshow .slide-3 {
  animation-delay: 10s;
}

.home-slideshow .slide-4 {
  animation-delay: 15s;
}

.home-slideshow .slide-5 {
  animation-delay: 20s;
}

@keyframes homeFade {
  0% {
    opacity: 0;
  }

  4%,
  20% {
    opacity: 1;
  }

  24%,
  100% {
    opacity: 0;
  }
}

.home-stay-copy {
  max-width: 560px;
}

.home-stay-copy p {
  color: #4b463f;
  font-size: 1.08rem;
  line-height: 1.7;
}

.home-stay-copy .button {
  margin-top: 10px;
}

.content-section {
  padding: clamp(50px, 8vw, 100px) clamp(18px, 5vw, 72px);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: start;
}

.content-section p {
  color: #4b463f;
  font-size: 1.08rem;
  line-height: 1.7;
}

.services-section {
  grid-template-columns: minmax(280px, 0.78fr) minmax(430px, 1.22fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}

.services-copy {
  max-width: 570px;
}

.services-copy h2 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 3.4vw, 3.8rem);
  line-height: 1.04;
}

.services-heading-line {
  display: block;
  white-space: nowrap;
}

.services-copy p:last-child {
  max-width: 48ch;
}

.about-intro {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(22px, 4vw, 34px);
  align-items: center;
}

.about-intro .mark-photo {
  flex: 1 1 340px;
  min-width: 0;
  max-width: 420px;
}

.about-intro-copy {
  flex: 2 1 360px;
  min-width: 0;
}

.about-intro h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.about-intro p {
  font-size: clamp(1.12rem, 1.5vw, 1.28rem);
  line-height: 1.65;
}

.mark-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 6px solid var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

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

.price-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price-list span {
  font-weight: 800;
}

.price-list strong {
  color: var(--teal);
  white-space: nowrap;
}

.services-list {
  gap: 10px;
}

.services-list div {
  min-height: 72px;
  align-items: center;
  padding: 18px 22px;
  border-left: 5px solid var(--orange);
}

.services-list span {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

.services-list strong {
  font-size: clamp(0.95rem, 1.15vw, 1.08rem);
}

.orange-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(34px, 5vw, 58px) clamp(18px, 5vw, 72px);
  background: var(--orange);
}

.orange-band .eyebrow,
.orange-band h2 {
  color: var(--ink);
  margin-bottom: 0;
}

.orange-band-contact h2 {
  margin-bottom: 12px;
}

.orange-band-contact p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.55;
}

.orange-band-contact a {
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-hero {
  min-height: 54vh;
  display: flex;
  align-items: center;
  padding: clamp(48px, 8vw, 100px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(31, 31, 31, 0.78), rgba(31, 31, 31, 0.35)),
    url("assets/leaflet-preview.png") center right / contain no-repeat,
    var(--ink);
  color: var(--white);
}

.registration-hero {
  display: grid;
  grid-template-columns: minmax(360px, 620px) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 70px);
  background: var(--ink);
}

.registration-hero-copy {
  grid-column: 2;
  grid-row: 1;
  max-width: 820px;
}

.registration-photo {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  width: 100%;
  margin: 0;
  isolation: isolate;
}

.registration-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 52% center;
  border: 0;
  border-radius: 40px;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.34);
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.84);
}

.page-hero h1 {
  font-size: clamp(2.75rem, 6vw, 5.7rem);
}

.about-hero {
  min-height: 0;
  display: block;
  background:
    linear-gradient(90deg, rgba(31, 31, 31, 0.9), rgba(31, 31, 31, 0.74)),
    var(--ink);
}

.about-hero-copy {
  max-width: 900px;
}

.booking-hero {
  display: grid;
  grid-template-columns: minmax(360px, 620px) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 70px);
  background: var(--ink);
}

.booking-hero-copy {
  grid-column: 2;
  grid-row: 1;
  max-width: 820px;
}

.booking-photo {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  width: 100%;
  margin: 0;
}

.booking-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border: 0;
  border-radius: 40px;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.34);
}

.fact-card,
.booking-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.fact-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 800;
}

.fact-card li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.35;
}

.fact-card li::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 0.38em;
  background: var(--orange);
  border-radius: 50%;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 clamp(18px, 5vw, 72px) clamp(60px, 9vw, 110px);
}

.gallery-section {
  padding: 0 clamp(18px, 5vw, 72px) clamp(60px, 9vw, 110px);
}

.gallery-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.gallery-heading h2 {
  margin-bottom: 0;
}

.gallery-shell {
  position: relative;
}

.dog-gallery {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 2px 4px 18px;
  scroll-padding-inline: 4px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--orange) #ead7be;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.dog-gallery:focus {
  outline: 3px solid rgba(247, 148, 29, 0.36);
  outline-offset: 8px;
}

.dog-gallery::-webkit-scrollbar {
  height: 10px;
}

.dog-gallery::-webkit-scrollbar-track {
  background: #ead7be;
  border-radius: 999px;
}

.dog-gallery::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 999px;
}

.gallery-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(31, 31, 31, 0.86);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(31, 31, 31, 0.2);
  cursor: pointer;
  font: inherit;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
}

.gallery-control:hover {
  background: var(--orange);
  color: var(--ink);
}

.gallery-prev {
  left: 12px;
}

.gallery-next {
  right: 12px;
}

.gallery-item {
  position: relative;
  flex: 0 0 clamp(240px, 28vw, 360px);
  min-height: 260px;
  overflow: hidden;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(31, 31, 31, 0.12);
  scroll-snap-align: start;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, opacity 220ms ease;
}

.gallery-item:hover img {
  opacity: 0.92;
  transform: scale(1.035);
}

.gallery-item.tall {
  min-height: 520px;
}

.gallery-item.wide {
  flex-basis: clamp(360px, 52vw, 680px);
  min-height: 520px;
}

.gallery-item.feature {
  flex-basis: clamp(360px, 52vw, 720px);
  min-height: 520px;
}

body.lightbox-open {
  overflow: hidden;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(8px, 2vw, 24px);
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(16px, 3vw, 42px);
  background: rgba(15, 15, 15, 0.94);
}

.lightbox-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  margin: 0;
}

.lightbox-figure img {
  display: block;
  max-width: 100%;
  max-height: 82vh;
  max-height: 82dvh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
}

.lightbox-figure figcaption {
  margin-top: 12px;
  color: var(--white);
  font-weight: 700;
  text-align: center;
}

.lightbox-close,
.lightbox-control {
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(31, 31, 31, 0.78);
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  line-height: 1;
}

.lightbox-control {
  width: 52px;
  height: 52px;
  font-size: 2.4rem;
}

.lightbox-close {
  position: absolute;
  top: max(16px, env(safe-area-inset-top));
  right: max(16px, env(safe-area-inset-right));
  width: 48px;
  height: 48px;
  z-index: 1;
  font-size: 2rem;
}

.lightbox-close:hover,
.lightbox-control:hover {
  color: var(--ink);
  background: var(--orange);
}

@media (max-width: 600px) {
  .gallery-lightbox {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 6px;
    padding: 72px 8px 24px;
  }

  .lightbox-control {
    width: 42px;
    height: 42px;
    font-size: 2rem;
  }

  .lightbox-figure img {
    max-height: 72dvh;
  }
}

.values article {
  min-height: 210px;
  display: grid;
  align-content: center;
  padding: 28px 24px;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
}

.values-content {
  position: relative;
  padding-left: 44px;
}

.values .paw-mark {
  left: 0;
  top: 1px;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(22px, 4vw, 34px);
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) clamp(18px, 5vw, 72px);
}

.booking-form {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.availability-box {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  background: #fff7e8;
  border: 2px solid var(--line);
  border-radius: 8px;
}

.availability-box strong {
  font-size: 1rem;
}

.availability-box span {
  color: #5b5146;
  line-height: 1.45;
}

.availability-box[data-status="checking"] {
  border-color: #d9c29c;
}

.availability-box[data-status="available"] {
  background: var(--sage);
  border-color: #9fbe8f;
}

.availability-box[data-status="full"] {
  background: #fff0ee;
  border-color: #d86b5d;
}

.booking-availability-calendar {
  display: grid;
  gap: 18px;
  margin-block: 8px;
  padding: clamp(20px, 4vw, 32px);
  background: var(--paper);
  border: 2px solid var(--line);
  border-left: 8px solid var(--orange);
  border-radius: 8px;
}

.booking-calendar-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 20px;
}

.booking-calendar-intro h2,
.booking-calendar-intro p {
  margin: 0;
}

.booking-calendar-intro h2 {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: clamp(1.7rem, 3vw, 2.25rem);
}

.booking-calendar-intro > div > p:last-child {
  max-width: 650px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.booking-calendar-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.82rem;
  font-weight: 900;
}

.booking-calendar-legend li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.booking-calendar-legend span {
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.booking-calendar-legend [data-calendar-key="available"] {
  color: var(--teal);
  background: #e2f0eb;
}

.booking-calendar-legend [data-calendar-key="limited"] {
  color: var(--orange-dark);
  background: #fff0d7;
}

.booking-calendar-legend [data-calendar-key="unavailable"] {
  color: #6b6257;
  background: #e8ded2;
}

.booking-calendar-shell {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.booking-calendar-header {
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: var(--ink);
  color: var(--white);
}

.booking-calendar-header h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  text-align: center;
}

.booking-calendar-nav {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: var(--orange);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.booking-calendar-nav:hover:not(:disabled),
.booking-calendar-nav:focus-visible {
  background: #ffad3a;
}

.booking-calendar-nav:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.booking-calendar-weekdays,
.booking-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 2px;
  padding-inline: 2px;
  background: var(--line);
}

.booking-calendar-weekdays {
  padding-top: 2px;
}

.booking-calendar-weekdays span {
  min-height: 38px;
  display: grid;
  place-items: center;
  background: #f4e8d8;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-calendar-grid {
  padding-bottom: 2px;
}

.booking-calendar-day {
  min-width: 0;
  min-height: 88px;
  display: grid;
  align-content: space-between;
  gap: 8px;
  padding: 10px;
  color: var(--ink);
  background: var(--white);
  border: 0;
  cursor: default;
  font: inherit;
  text-align: left;
}

button.booking-calendar-day {
  cursor: pointer;
}

button.booking-calendar-day:hover,
button.booking-calendar-day:focus-visible {
  position: relative;
  z-index: 1;
  box-shadow: inset 0 0 0 3px var(--ink);
  outline: 0;
}

.booking-calendar-day[data-status="available"] {
  background: #e2f0eb;
}

.booking-calendar-day[data-status="limited"] {
  background: #fff0d7;
}

.booking-calendar-day[data-status="unavailable"],
.booking-calendar-day[data-status="past"] {
  color: #756b60;
  background: #e8ded2;
}

.booking-calendar-day[data-status="unknown"] {
  background: repeating-linear-gradient(-45deg, #fffaf2, #fffaf2 8px, #f4e8d8 8px, #f4e8d8 16px);
}

.booking-calendar-day[data-status="loading"] {
  color: #8a8177;
  background: #f4e8d8;
}

.booking-calendar-day.is-muted {
  opacity: 0.42;
}

.booking-calendar-day.is-today {
  box-shadow: inset 0 0 0 3px var(--orange);
}

.booking-calendar-day.is-selected {
  color: var(--white);
  background: var(--teal);
  box-shadow: inset 0 0 0 3px var(--ink);
}

.booking-calendar-date {
  font-size: 1.05rem;
  font-weight: 900;
}

.booking-calendar-day-status {
  overflow-wrap: anywhere;
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1.2;
}

.booking-calendar-status,
.booking-calendar-note {
  margin: 0;
  line-height: 1.45;
}

.booking-calendar-status {
  color: var(--teal);
  font-weight: 900;
}

.booking-calendar-status[data-status="unavailable"] {
  color: #8a4800;
}

.booking-calendar-note {
  color: #6b6257;
  font-size: 0.85rem;
  font-weight: 700;
}

.form-page {
  padding: clamp(40px, 7vw, 86px) clamp(18px, 5vw, 72px);
  background: var(--paper);
}

.registration-page {
  background:
    linear-gradient(rgba(255, 250, 242, 0.94), rgba(255, 250, 242, 0.94)),
    var(--paper);
}

.registration-panel {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 28px);
  background: var(--white) !important;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.registration-form {
  max-width: 980px;
  margin: 0 auto;
  color: var(--ink);
  background: var(--white) !important;
  border: 0;
  box-shadow: none;
}

.registration-form label,
.registration-form p,
.registration-form .checkbox-group label {
  color: var(--ink);
}

.bot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

fieldset {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0 0 28px;
  color: var(--ink);
  background: var(--white) !important;
  border: 0;
  border-bottom: 1px solid var(--line);
}

fieldset:last-of-type {
  border-bottom: 0;
}

legend {
  margin-bottom: 2px;
  padding-right: 12px;
  color: var(--teal);
  background: var(--white) !important;
  font-size: 1.35rem;
  font-weight: 900;
}

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

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

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

[data-insurance-detail][hidden] {
  display: none;
}

.consent-intro {
  margin: 0;
  color: #6b6257;
  font-size: 1.05rem;
  font-weight: 700;
}

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

.consent-grid .form-row {
  align-content: start;
}

.consent-grid label {
  line-height: 1.45;
}

.registration-guidance {
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--paper) !important;
  border: 2px solid var(--line);
  border-left: 8px solid var(--orange);
  border-radius: 8px;
}

.registration-guidance h2 {
  color: var(--teal);
  background: transparent !important;
  font-size: 1.35rem;
  margin-bottom: 0;
}

.registration-guidance p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
}

.registration-wishes-field {
  margin-top: 4px;
}

.registration-guidance-information {
  display: grid;
  gap: 14px;
}

.vaccination-card-upload {
  grid-column: 1 / -1;
  padding: 18px;
  border: 2px dashed #d7c4ab;
  border-radius: 8px;
  background: #fffaf2;
}

.vaccination-card-upload input[type="file"] {
  padding: 10px;
  background: var(--white) !important;
}

.booking-update-fieldset {
  display: grid;
  gap: 16px;
}

.booking-update-fieldset legend {
  line-height: 1.4;
}

.booking-update-options {
  display: grid;
  gap: 12px;
}

.booking-update-options label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}

.booking-update-options input[type="radio"] {
  width: 20px;
  min-width: 20px;
  height: 20px;
  margin-top: 1px;
  accent-color: var(--orange);
}

.booking-update-upload {
  margin-top: 2px;
}

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

.file-upload-help {
  color: #6b6257;
  font-weight: 700;
  line-height: 1.45;
}

label {
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 2px solid #d7c4ab;
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--white) !important;
  color-scheme: light;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  outline: 3px solid rgba(247, 148, 29, 0.22);
}

textarea {
  resize: vertical;
}

.checkbox-group {
  display: grid;
  gap: 12px;
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}

.checkbox-group input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--orange);
}

.form-button {
  width: fit-content;
  border: 0;
  font-size: 1rem;
}

.form-note {
  margin: -6px 0 0;
  color: #6b6257;
  font-size: 0.96rem;
  line-height: 1.5;
}

.form-status {
  margin: -4px 0 0;
  padding: 14px 16px;
  border-radius: 8px;
  background: #fff7e8;
  color: #5b5146;
  font-weight: 900;
  line-height: 1.45;
}

.form-status:empty {
  display: none;
}

.form-status[data-status="saving"] {
  border: 2px solid #d9c29c;
}

.form-status[data-status="success"] {
  background: var(--sage);
  border: 2px solid #9fbe8f;
}

.form-status[data-status="error"] {
  background: #fff0ee;
  border: 2px solid #d86b5d;
}

.booking-card {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  align-self: start;
  position: static;
}

.booking-card img {
  margin-bottom: 22px;
}

.booking-card p {
  color: #574f45;
  line-height: 1.6;
}

.full-width {
  width: 100%;
}

.contact-card {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.contact-card a {
  color: var(--teal);
  font-weight: 900;
}

.admin-layout {
  display: grid;
  gap: clamp(24px, 4vw, 42px);
  padding: clamp(44px, 7vw, 86px) clamp(18px, 5vw, 72px);
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-tab {
  min-height: 48px;
  padding: 0 20px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.admin-tab:hover {
  background: #f3eadf;
}

.admin-tab.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.admin-tab-panel {
  display: grid;
  gap: clamp(32px, 5vw, 58px);
}

.admin-tab-panel[hidden] {
  display: none;
}

.admin-section {
  display: grid;
  gap: 22px;
}

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

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.admin-list {
  display: grid;
  gap: 18px;
}

.admin-card {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 28px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.admin-card:target {
  outline: 4px solid rgba(247, 148, 29, 0.32);
}

.admin-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.admin-card h3 {
  margin: 0 0 6px;
  font-size: 1.5rem;
}

.admin-card p {
  margin: 0;
  color: #6b6257;
  line-height: 1.5;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff7e8;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: capitalize;
}

.status-pill[data-status="confirmed"] {
  background: var(--sage);
  color: #315824;
}

.status-pill[data-status="declined"] {
  background: #fff0ee;
  color: #8a2e22;
}

.availability-summary {
  padding: 14px 16px;
  background: #fff7e8;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

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

.detail-grid div {
  min-width: 0;
  padding: 13px 14px;
  background: #fffaf2;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-grid dt {
  margin-bottom: 4px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-grid dd {
  margin: 0;
  overflow-wrap: anywhere;
  line-height: 1.45;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-actions .button {
  border: 0;
  cursor: pointer;
}

.registration-delete-actions {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.admin-confirm-dialog {
  width: min(520px, calc(100% - 32px));
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(31, 31, 31, 0.35);
}

.admin-confirm-dialog::backdrop {
  background: rgba(31, 31, 31, 0.72);
}

.admin-confirm-dialog-content {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 5vw, 38px);
}

.admin-confirm-dialog-content h2,
.admin-confirm-dialog-content p {
  margin: 0;
}

.admin-confirm-dialog-content .admin-actions {
  justify-content: flex-end;
}

.registration-document {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf2;
}

.registration-document div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.registration-document span {
  color: #6b6257;
  overflow-wrap: anywhere;
}

.registration-document-missing {
  margin-top: 18px;
}

.availability-form {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
}

.availability-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.availability-form input,
.availability-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: #fffaf2;
  color: var(--ink);
  font: inherit;
}

.availability-form .availability-notes {
  grid-column: span 2;
}

.availability-block-card .detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.availability-calendar {
  gap: 14px;
  overflow: hidden;
}

.availability-calendar-header {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 12px;
}

.availability-calendar-header h3 {
  margin: 0;
  text-align: center;
}

.calendar-nav-button {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 8px;
  background: var(--orange);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.calendar-nav-button:hover {
  background: #ffad3a;
}

.availability-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.availability-calendar-weekdays {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.availability-calendar-weekdays span {
  min-height: 42px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.calendar-day {
  min-height: 126px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 8px;
  padding: 10px;
  background: var(--white);
}

.calendar-day.is-muted {
  background: #f3eadf;
  color: #918474;
}

.calendar-day.is-today {
  box-shadow: inset 0 0 0 3px rgba(247, 148, 29, 0.48);
}

.calendar-day-number {
  font-size: 0.9rem;
  font-weight: 900;
}

.calendar-day-entries {
  display: grid;
  align-content: start;
  gap: 5px;
  min-width: 0;
}

.calendar-entry {
  display: block;
  padding: 6px 7px;
  border-radius: 7px;
  background: #fff7e8;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.calendar-entry[data-type="Boarding"] {
  background: #ffe4b8;
  color: #5e3500;
}

.calendar-entry[data-type="Day care"] {
  background: #d8f1ed;
  color: #0e5652;
}

.calendar-entry[data-type="Holiday"],
.calendar-entry[data-type="Unavailable"] {
  background: #ffe0dd;
  color: #8a2e22;
}

.calendar-entry.is-more {
  background: #eee3d7;
  color: #574f45;
}

.calendar-entry.is-icloud {
  border: 1px dashed currentColor;
}

.calendar-source-status {
  margin: 0;
  color: #6b6257;
  font-size: 0.85rem;
  font-weight: 800;
}

.admin-action-status,
.admin-note {
  align-self: center;
  color: #6b6257;
  font-weight: 900;
}

.admin-note {
  margin: 0;
}

.empty-state {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #6b6257;
  font-weight: 900;
}

@media (max-width: 820px) {
  .about-hero,
  .about-intro {
    grid-template-columns: 1fr;
  }

  .registration-document {
    align-items: stretch;
    flex-direction: column;
  }

  .availability-form,
  .availability-block-card .detail-grid {
    grid-template-columns: 1fr;
  }

  .availability-form .availability-notes {
    grid-column: auto;
  }

  .availability-calendar-grid {
    min-width: 760px;
  }

  .availability-calendar {
    overflow-x: auto;
  }
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--ink);
}

.site-footer span,
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer strong,
.site-footer span,
.footer-contact a {
  display: block;
}

.footer-contact {
  text-align: right;
  font-weight: 800;
}

.dog-count-row {
  max-width: 420px;
}

.dog-registration-card {
  padding: clamp(18px, 3vw, 32px);
  margin-bottom: 26px;
  border: 1px solid var(--line);
  border-left: 6px solid var(--orange);
  border-radius: 8px;
  background: #fffaf2;
}

.dog-registration-card > h2 {
  margin: 0 0 20px;
  font-size: 1.65rem;
}

.dog-registration-card fieldset {
  padding-inline: 0;
}

.terms-agreement a,
.legal-page a,
.form-note a {
  color: #8a4800;
  font-weight: 900;
}

.registered-dog {
  padding-top: 22px;
  margin-top: 22px;
  border-top: 2px solid var(--orange);
}

.registered-dog h4 {
  margin: 0 0 14px;
  font-size: 1.3rem;
}

.legal-page {
  background: var(--paper);
}

.legal-header,
.legal-content {
  width: min(100% - 36px, 980px);
  margin-inline: auto;
}

.legal-header {
  padding: clamp(52px, 8vw, 100px) 0 clamp(34px, 5vw, 64px);
}

.legal-header h1 {
  max-width: 850px;
  margin: 12px 0 18px;
  font-size: clamp(2.5rem, 6vw, 5.6rem);
  line-height: 0.98;
}

.legal-header .lead {
  max-width: 760px;
}

.legal-updated {
  margin-top: 22px;
  color: var(--muted);
  font-weight: 700;
}

.legal-content {
  padding-bottom: clamp(60px, 8vw, 110px);
}

.legal-content section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
}

.legal-content p,
.legal-content li,
.legal-content address {
  max-width: 850px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.legal-content p,
.legal-content address {
  margin: 0;
}

.legal-content ol,
.legal-content ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 26px;
}

.legal-content section > p + ol,
.legal-content section > p + ul {
  margin-top: 16px;
}

.legal-content ol + p,
.legal-content ul + p {
  margin-top: 18px;
}

.legal-content address {
  margin-top: 14px;
  font-style: normal;
}

@media (max-width: 1400px) {
  .site-header {
    gap: 18px;
    padding: 16px 28px;
  }

  .brand {
    width: clamp(165px, 20vw, 205px);
    flex: 0 0 auto;
  }

  .site-nav a {
    padding-inline: 12px;
  }

  .two-column,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .services-section {
    grid-template-columns: minmax(260px, 0.72fr) minmax(430px, 1.28fr);
    gap: 36px;
  }

  .video-section {
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
    gap: 36px;
  }

  .video-frame {
    grid-column: 1;
    grid-row: 1;
  }

  .video-copy {
    grid-column: 2;
    grid-row: 1;
  }

  .home-stay-section {
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.08fr);
    gap: 36px;
  }

  .home-stay-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .home-stay-image {
    grid-column: 2;
    grid-row: 1;
  }

  .hero-copy,
  .hero-panel,
  .video-copy,
  .video-frame,
  .home-stay-image,
  .home-stay-copy,
  .about-intro,
  .about-intro > *,
  .two-column > *,
  .page-hero > * {
    min-width: 0;
  }

  .hero {
    min-height: 0;
    grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
    padding: 48px 36px;
    background:
      radial-gradient(circle at 88% 18%, rgba(247, 148, 29, 0.18), transparent 28%),
      linear-gradient(90deg, var(--paper) 0 58%, var(--orange) 58% 100%);
  }

  .hero h1 {
    max-width: 850px;
    font-size: clamp(3.2rem, 5.5vw, 5rem);
    line-height: 0.96;
  }

  .hero-panel {
    width: 100%;
    margin-inline: 0;
  }

  .page-hero {
    min-height: 0;
    padding: 56px 36px;
  }

  .about-hero,
  .registration-hero,
  .booking-hero {
    grid-template-columns: minmax(380px, 0.82fr) minmax(0, 1fr);
    gap: 36px;
  }

  .about-hero-copy,
  .registration-hero-copy,
  .booking-hero-copy {
    max-width: 820px;
  }

  .page-hero h1 {
    max-width: 820px;
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 0.98;
  }

  .about-hero h1 {
    font-size: clamp(3rem, 5vw, 4.15rem);
  }

  .about-hero-photo,
  .registration-photo,
  .booking-photo {
    width: 100%;
    margin-inline: 0;
  }

  .about-intro {
    width: 100%;
    align-items: center;
  }

  .mark-photo {
    width: min(100%, 420px);
  }

  .content-section,
  .video-section,
  .home-stay-section {
    padding-inline: 36px;
  }

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

  .gallery-item.tall,
  .gallery-item.wide,
  .gallery-item.feature {
    min-height: 420px;
  }

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

  .booking-card {
    position: static;
  }

  .footer-contact {
    text-align: left;
  }
}

@media (min-width: 901px) and (max-width: 1400px) {
  .values {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding-inline: 36px;
  }

  .values article {
    min-height: 0;
    padding: 24px 20px;
  }

  .values h2 {
    font-size: 1.45rem;
  }

  .values p {
    font-size: 1rem;
    line-height: 1.45;
  }

  .services-copy h2 {
    max-width: 15ch;
    font-size: clamp(2.4rem, 3.6vw, 3.15rem);
  }
}

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

  .video-copy,
  .home-stay-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .video-frame,
  .home-stay-image {
    grid-column: 1;
    grid-row: 2;
  }

  .hero,
  .about-hero,
  .registration-hero,
  .booking-hero {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .about-hero-copy,
  .registration-hero-copy,
  .booking-hero-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-panel,
  .about-hero-photo,
  .registration-photo,
  .booking-photo {
    grid-column: 1;
    grid-row: 2;
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .hero {
    background:
      radial-gradient(circle at 12% 18%, rgba(247, 148, 29, 0.18), transparent 28%),
      linear-gradient(180deg, var(--paper) 0 68%, var(--orange) 68% 100%);
  }
}

@media (max-width: 900px) {
  .services-heading-line {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .booking-layout {
    padding-inline: 12px;
  }

  .booking-form {
    padding-inline: 16px;
  }

  .booking-availability-calendar {
    gap: 14px;
    margin-inline: -8px;
    padding: 18px 12px;
    border-left-width: 6px;
  }

  .booking-calendar-intro {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
  }

  .booking-calendar-legend {
    justify-content: flex-start;
    gap: 8px 12px;
  }

  .booking-calendar-header {
    grid-template-columns: 44px 1fr 44px;
    gap: 7px;
    padding: 10px;
  }

  .booking-calendar-nav {
    width: 44px;
    height: 44px;
  }

  .booking-calendar-weekdays span {
    min-height: 34px;
    font-size: 0.66rem;
  }

  .booking-calendar-day {
    min-height: 54px;
    align-content: center;
    justify-items: center;
    gap: 5px;
    padding: 6px 4px;
    text-align: center;
  }

  .booking-calendar-date {
    font-size: 0.92rem;
  }

  .booking-calendar-day-status {
    width: 9px;
    height: 9px;
    overflow: hidden;
    color: transparent;
    background: currentColor;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 0;
  }

  .booking-calendar-day[data-status="available"] .booking-calendar-day-status {
    color: var(--teal);
  }

  .booking-calendar-day[data-status="limited"] .booking-calendar-day-status {
    color: var(--orange-dark);
  }

  .booking-calendar-day[data-status="unavailable"] .booking-calendar-day-status,
  .booking-calendar-day[data-status="past"] .booking-calendar-day-status {
    color: #756b60;
  }

  .booking-calendar-day[data-status="unknown"] .booking-calendar-day-status,
  .booking-calendar-day[data-status="loading"] .booking-calendar-day-status {
    color: #a6998c;
  }

  .trust-band div {
    min-width: 0;
    padding: 22px 6px;
  }

  .trust-band strong {
    font-size: 1.1rem;
  }

  .trust-band span {
    font-size: 0.78rem;
  }

  .form-grid,
  .date-grid,
  .consent-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding: 18px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .site-nav a {
    flex: 1;
    justify-content: center;
    padding: 0 10px;
  }

  .two-column,
  .about-intro {
    grid-template-columns: minmax(0, 1fr);
  }

  .content-section.two-column,
  .about-intro {
    width: 100%;
  }

  .about-intro {
    gap: 24px;
    align-items: start;
  }

  .about-intro > *,
  .about-intro > div,
  .about-intro h2,
  .about-intro p {
    width: 100%;
    min-width: 0;
    max-width: none;
  }

  .mark-photo {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide,
  .gallery-item.feature {
    flex-basis: min(82vw, 360px);
    min-height: 430px;
  }

  .gallery-control {
    width: 44px;
    height: 44px;
    font-size: 1.7rem;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4rem);
  }

  .hero {
    padding: 32px 18px 38px;
  }

  .hero h1 {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: clamp(2.45rem, 10.8vw, 3rem);
    line-height: 1;
  }

  .hero .lead {
    max-width: 100%;
    font-size: 1.05rem;
    line-height: 1.48;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 26px;
  }

  .hero-actions .button {
    flex: 1 1 180px;
    padding-inline: 14px;
  }

  .panel-logo {
    width: min(100%, 260px);
  }

  .page-hero {
    min-height: 0;
    background:
      linear-gradient(90deg, rgba(31, 31, 31, 0.88), rgba(31, 31, 31, 0.72)),
      url("assets/paws-and-pixels-white-logo.jpg") center right / 100% auto no-repeat,
      var(--ink);
  }

  .about-hero {
    grid-template-columns: 1fr;
    background:
      linear-gradient(90deg, rgba(31, 31, 31, 0.9), rgba(31, 31, 31, 0.74)),
      var(--ink);
  }

  .about-hero-photo {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .about-hero-photo img {
    border-radius: 24px;
  }

  .registration-hero {
    display: grid;
    grid-template-columns: 1fr;
    background: var(--ink);
  }

  .registration-photo {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .registration-photo img {
    border-radius: 24px;
  }

  .booking-hero {
    grid-template-columns: 1fr;
    background: var(--ink);
  }

  .booking-photo {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .booking-photo img {
    border-radius: 24px;
  }

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

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

  .price-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .services-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .services-copy {
    max-width: none;
  }

  .services-list div {
    min-height: 0;
  }

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