@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@24,400,0,0");

:root {
  --sky: #10a7d7;
  --sky-dark: #087fa8;
  --sun: #ffe500;
  --sun-dark: #d9bc00;
  --ink: #24132d;
  --grass: #88c441;
  --grass-dark: #5f9f22;
  --cream-bg: #fdf7ed;
  --cream: #fffdf1;
  --cloud: #f2fbff;
  --paper: #ffffff;
  --muted: #667085;
  --border: #d9eef5;
  --shadow: 0 18px 40px rgba(8, 75, 99, 0.14);
  --shadow-soft: 0 12px 26px rgba(8, 75, 99, 0.12);
  --radius: 24px;
  --radius-lg: 28px;
  --max: 1120px;
  --font: "Baloo 2", system-ui, sans-serif;
  --page-fade-duration: 420ms;
  --loader-fade-duration: 300ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: linear-gradient(180deg, var(--cloud), var(--cream) 38%, #fff);
  line-height: 1.55;
}

body,
button,
input,
textarea {
  font-family: var(--font);
}

.site-header-wrap,
main,
body > [data-include] {
  opacity: 0;
  transform: translateY(8px);
  will-change: opacity, transform;
  transition:
    opacity var(--page-fade-duration) ease,
    transform var(--page-fade-duration) ease;
}

body.is-ready .site-header-wrap,
body.is-ready main,
body.is-ready > [data-include] {
  opacity: 1;
  transform: translateY(0);
}

body.is-leaving .site-header-wrap,
body.is-leaving main,
body.is-leaving > [data-include] {
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
}

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

h1,
h2,
h3,
.tagline,
.section-title,
.payments {
  letter-spacing: 0.01em;
}

h1,
h2,
h3,
.section-title {
  font-weight: 800;
  line-height: 1;
}

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 4px;
}

.container {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}

.nav-container .nav-wrap {
  width: 100%;
}

.theme-sky,
.theme-grass,
.theme-sun {
  --theme-color: var(--sky);
  --theme-color-dark: var(--sky-dark);
  --theme-text: var(--paper);
  --theme-button-text: var(--paper);
}

.theme-sky {
  --theme-color: var(--sky);
  --theme-color-dark: var(--sky-dark);
}

.theme-grass {
  --theme-color: var(--grass);
  --theme-color-dark: var(--grass-dark);
}

.theme-sun {
  --theme-color: var(--sun);
  --theme-color-dark: var(--sun-dark);
  --theme-text: var(--ink);
  --theme-button-text: var(--ink);
}

.material-symbols-rounded {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 1.25em;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  text-transform: none;
  letter-spacing: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
}

.site-header-wrap {
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(100px);
  box-shadow: 0 4px 20px rgba(8, 75, 99, 0.08);
}

.nav-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  text-decoration: none;
}

.brand-logo {
  width: min(320px, 52vw);
  max-height: 100px;
  height: auto;
}

.brand:focus-visible {
  border-radius: 16px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  min-height: 3rem;
  border: 2px solid var(--sky-dark);
  border-radius: 14px;
  background: var(--sky);
  color: var(--paper);
  box-shadow: 0 6px 0 var(--sky-dark);
  cursor: pointer;
}

.menu-toggle .material-symbols-rounded {
  font-size: 1.8rem;
  transition: transform 0.2s ease;
}

.menu-toggle.is-open .material-symbols-rounded {
  transform: rotate(90deg);
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  z-index: 500;
}

.primary-nav a,
.btn {
  --button-color: var(--theme-color, var(--sky));
  --button-color-dark: var(--theme-color-dark, var(--sky-dark));
  --button-text: var(--theme-button-text, var(--paper));

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 2px solid var(--button-color-dark);
  border-radius: var(--radius);
  background: var(--button-color);
  color: var(--button-text);
  box-shadow: 0 8px 0 var(--button-color-dark);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background-color 0.15s ease;
}

.primary-nav a {
  margin-bottom: 1rem;
  padding: 0.5rem 1.15rem;
}

.btn {
  width: fit-content;
  padding: 0.85rem 1.15rem;
  cursor: pointer;
}

.primary-nav a:hover,
.btn:hover {
  transform: translateY(3px);
  box-shadow: 0 5px 0 var(--button-color-dark);
}

.primary-nav a.active {
  background: var(--sun);
  color: var(--ink);
  border-color: var(--sun-dark);
  box-shadow: 0 5px 0 var(--sun-dark);
  transform: translateY(3px);
}

.btn.alt {
  --button-color: var(--sun);
  --button-color-dark: var(--sun-dark);
  --button-text: var(--ink);

  background: var(--sun);
  color: var(--ink);
  border-color: var(--sun-dark);
  box-shadow: 0 8px 0 var(--sun-dark);
}

.primary-nav a.active:hover,
.btn.alt:hover {
  box-shadow: 0 5px 0 var(--sun-dark);
}

.primary-nav a .material-symbols-rounded {
  margin-right: 0.25rem;
  transform-origin: 50% 80%;
}

.primary-nav a:hover .material-symbols-rounded,
.primary-nav a:focus-visible .material-symbols-rounded,
.primary-nav a.active .material-symbols-rounded {
  animation: paw-wiggle 0.55s ease-in-out;
}

.tagline {
  overflow: hidden;
  padding: 0.35rem 0;
  border-top: 1px solid rgba(8, 127, 168, 0.12);
  border-bottom: 1px solid rgba(8, 127, 168, 0.12);
  background: var(--sun);
  color: var(--sky-dark);
  font-size: clamp(1rem, 2.4vw, 1.45rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.tagline-track {
  display: flex;
  width: max-content;
  animation: tagline-scroll 24s linear infinite;
}

.tagline-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 1rem;
  padding-right: 1rem;
}

.tagline-group .material-symbols-rounded {
  color: var(--sky);
  font-size: 1.25em;
}

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--cloud);
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(
    --hero-image,
    url("../images/site/hero-running-dogs.png")
  );
  background-repeat: no-repeat;
  background-position: center 24%;
  background-size: cover;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(255, 253, 241, 0.36),
    transparent 70%
  );
}

.hero {
  --hero-image: url("../images/site/hero-running-dogs.png");
}

.play-hero {
  --hero-image: url("../images/site/fetch-dogs.png");
}

.page-hero-about {
  --hero-image: url("../images/site/dog-friends.png");
}

.page-hero-stay {
  --hero-image: url("../images/site/play-yard.png");
}

.page-hero-groom {
  --hero-image: url("../images/site/hero-running-dogs.png");
}

.page-hero-prices {
  --hero-image: url("../images/site/fetch-dogs.png");
}

.page-hero-faq {
  --hero-image: url("../images/site/dog-friends.png");
}

.page-hero-gallery {
  --hero-image: url("../images/site/play-yard.png");
}

.page-hero-contact {
  --hero-image: url("../images/site/hero-running-dogs.png");
}

.hero-inner,
.page-hero .container {
  min-height: 560px;
  display: grid;
  align-items: center;
  padding: 4rem 0 6rem;
}

.hero-card {
  max-width: 630px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 3px solid var(--sky);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.eyebrow {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--sun);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0.7rem 0 0.8rem;
  color: var(--sky);
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.9;
}

.lead {
  margin-bottom: 0;
  font-size: 1.22rem;
  font-weight: 700;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.notice {
  position: relative;
  z-index: 6;
  background: transparent;
  margin: 0;
  height: 0;
  transition:
    height 0.35s ease,
    margin 0.35s ease,
    padding 0.35s ease;
}

.notice .container {
  display: flex;
  justify-content: center;
  z-index: -100;
  transition: transform 0.35s ease;
}

.notice-card {
  width: auto;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  border: 3px solid var(--grass-dark);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
  font-weight: 800;
  transition:
    transform 0.35s ease,
    border-radius 0.35s ease,
    box-shadow 0.35s ease,
    padding 0.35s ease;
}

.notice-card strong {
  color: var(--grass-dark);
}

.notice-card p {
  margin: 0;
}

.notice-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: var(--grass-dark);
  color: var(--paper);
  font-size: 2rem;
  line-height: 1;
}

.notice + .section {
  padding-top: 7rem;
}

.section,
.muted {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
  background-image: url("../images/site/cream-paws-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.muted,
.section.alt-bg {
  background-image: url("../images/site/cream-paws-bg-flipped.png");
}

.section::before,
.section::after,
.muted::before,
.muted::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 20rem;
  pointer-events: none;
}

.section::before,
.muted::before {
  top: 0;
  background: linear-gradient(to bottom, var(--cream-bg), transparent);
}

.section::after,
.muted::after {
  bottom: 0;
  background: linear-gradient(to top, var(--cream-bg), transparent);
}

.section > .container,
.muted > .container {
  position: relative;
  z-index: 1;
}

.section-title {
  margin: 0 0 1rem;
  color: var(--sky);
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.section-kicker {
  margin-top: 0;
  color: var(--muted);
  font-weight: 800;
}

.grid {
  display: grid;
  gap: 1.35rem;
}

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

.card,
.content-card,
.price-card,
.gallery-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.card {
  overflow: hidden;
  border: 3px solid var(--theme-color, var(--sky));
  background: var(--paper);
}

.card-media {
  position: relative;
  z-index: 2;
  overflow: visible;
}

.card img,
.image-stack img {
  width: 100%;
  object-fit: cover;
}

.card img {
  aspect-ratio: 16 / 8.5;
}

.card .card-icon.material-symbols-rounded {
  position: absolute;
  left: 1.5rem;
  bottom: -2.1rem;
  z-index: 5;
  display: grid;
  width: 4.2rem;
  height: 4.2rem;
  place-items: center;
  border: 5px solid #fff;
  border-radius: 50%;
  background: var(--theme-color, var(--sky));
  color: var(--theme-text, var(--paper));
  box-shadow: 0 8px 18px rgba(8, 75, 99, 0.18);
  font-size: 2.15rem;
}

.card-body {
  position: relative;
  z-index: 1;
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-body h2 h3 {
  margin-top: 0;
}

.card-body p {
  flex: 1;
}

.card-body .btn {
  align-self: flex-start;
  margin-top: auto;
}

.card-body h3 {
  margin: 0;
  color: var(--theme-color, var(--sky));
  font-size: 1.8rem;
}

.card-body p {
  margin-top: 0.35rem;
}

.card-play {
  --theme-color: var(--sky);
  --theme-color-dark: var(--sky-dark);
}

.card-stay {
  --theme-color: var(--grass);
  --theme-color-dark: var(--grass-dark);
}

.card-groom {
  --theme-color: var(--sun);
  --theme-color-dark: var(--sun-dark);
  --theme-text: var(--ink);
  --theme-button-text: var(--ink);
}

.content-card {
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 3px solid var(--theme-color, var(--sky));
  background: var(--paper);
}

.content-card .section-title,
.content-card h2,
.content-card h3 {
  color: var(--theme-color, var(--sky));
}

.content-card > :first-child {
  margin-top: 0;
}

.content-card a:not(.btn) {
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
}

.service-card {
  overflow: hidden;
  padding: 0;
}

.service-card .card-media {
  overflow: hidden;
}

.service-card .card-media img {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
}

.service-card .card-body {
  padding: clamp(1.4rem, 3vw, 2rem);
}

.service-card .section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.groom-service-grid {
  align-items: stretch;
}

.groom-service-card {
  display: flex;
  flex-direction: column;
}

.groom-service-card .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.groom-service-card .card-body p {
  flex: 1;
}

.groom-service-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.two-col,
.split,
.contact-grid,
.price-grid {
  display: grid;
  gap: 1.25rem;
}

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

.split {
  grid-template-columns: 0.95fr 1.25fr;
  align-items: center;
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

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

.pill-list,
.icon-list,
.love-list,
.play-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.pill-list li {
  padding: 0.3rem 0.65rem;
  border: 1px solid var(--theme-color, var(--sky));
  border-radius: 999px;
  background: var(--theme-color);
  font-size: 0.9rem;
  font-weight: 800;
}

.icon-list li,
.love-list li,
.play-list li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
}

.icon-list .material-symbols-rounded,
.love-list .material-symbols-rounded,
.play-list .material-symbols-rounded {
  color: var(--theme-color, var(--grass));
  font-size: 1.5rem;
}

.image-stack {
  position: relative;
  min-height: 320px;
}

.image-stack img {
  border: 6px solid var(--paper);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.image-stack img:first-child {
  aspect-ratio: 16 / 10;
  transform: rotate(-2deg);
}

.image-stack img:last-child {
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: min(46%, 280px);
  aspect-ratio: 1.1 / 1;
  transform: rotate(4deg);
}

.love-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 2rem;
  align-items: center;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 2rem;
  align-items: center;
}

.play-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.love-copy .section-title,
.play-copy .section-title {
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 0.95;
}

.love-copy .section-title span .play-copy .section-title span {
  color: var(--sky-dark);
}

.love-gallery,
.play-gallery,
.about-gallery {
  position: relative;
  min-height: 285px;
  padding-right: 8rem;
}

.love-image,
.play-image,
.about-image {
  width: 100%;
  border: 6px solid var(--paper);
  border-radius: 22px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.love-image-main,
.play-image-main {
  aspect-ratio: 16 / 8.5;
  transform: rotate(-2deg);
}
.about-image-main {
  aspect-ratio: 16 / 12;
  transform: rotate(-2deg);
}

.love-image-small,
.play-image-small,
.about-image-small {
  position: absolute;
  top: -3rem;
  right: 1rem;
  z-index: 2;
  width: min(34%, 260px);
  aspect-ratio: 1.15 / 1;
  transform: rotate(4deg);
}

.info-strip {
  --theme-color: var(--sky);
  --theme-color-dark: var(--sky-dark);

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  padding: 1.2rem 1.4rem;
  border: 3px solid var(--theme-color);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
}

.info-item {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  align-items: start;
  gap: 1rem;
  padding: 0.4rem 1.2rem;
}

.info-icon {
  display: grid;
  width: 4.5rem;
  height: 4.5rem;
  place-items: center;
  justify-self: center;
  align-self: center;
  font-size: 4.5rem;
}

.info-icon-sun {
  color: var(--sun);
}

.info-icon-paw {
  color: var(--grass);
}

.info-icon-heart {
  color: #d83232;
}

.info-icon-camera {
  color: var(--sky);
}

.info-strip h3 {
  min-height: 1.35rem;
  margin: 0 0 0.35rem;
  color: var(--theme-color-dark);
  font-size: 1.25rem;
}

.info-strip p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.25;
}

.acana-section {
  padding-top: 3rem;
}

.acana-card {
  background: var(--paper);
  border: 3px solid var(--sky);
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 4vw, 2.4rem);
  position: relative;
  overflow: hidden;
}

.acana-card::before {
  content: "pets";
  position: absolute;
  right: 1.5rem;
  top: 1.2rem;
  font-family: "Material Symbols Rounded";
  font-size: 5rem;
  color: rgba(16, 167, 215, 0.08);
  line-height: 1;
}

.acana-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.acana-header .eyebrow {
  margin: 0 0 0.35rem;
  background: transparent;
  color: var(--ink);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  text-transform: none;
  letter-spacing: 0;
  padding: 0;
}

.acana-logo {
  display: block;
  width: min(300px, 50%);
  height: auto;
  margin: 0 auto;
}

.acana-header p {
  margin: 0.8rem auto 0;
  max-width: 42rem;
  font-weight: 800;
  color: var(--muted);
}

.acana-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}

.acana-product {
  border: 2px solid currentColor;
  border-radius: var(--radius);
  padding: 1.2rem;
  background: #fff;
  box-shadow: 0 10px 24px rgba(8, 75, 99, 0.08);
}

.acana-product h3 {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1;
}

.acana-product p {
  margin: 0.25rem 0 1rem;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
}

.acana-sun {
  color: var(--sun);
}

.acana-grass {
  color: var(--grass);
}

.acana-sky {
  color: var(--sky);
}

.acana-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 2px dotted currentColor;
  padding: 0.25rem 0;
  font-size: 1.35rem;
  font-weight: 900;
}

.acana-price-row:last-child {
  border-bottom: 0;
}

.acana-price-row strong {
  font-size: 1.45rem;
}

.acana-footer {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
}

.acana-loyalty {
  border-radius: var(--radius);
  padding: 1rem;
  font-weight: 900;
}

.acana-loyalty {
  background: var(--sun);
  color: var(--ink);
  border: 3px solid var(--sun-dark);
  text-align: center;
}

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

.quote {
  --theme-color: var(--grass);
  position: relative;
  margin: 0;
  padding: 1.2rem;
  background: var(--paper);
  font-weight: 600;
  border: 3px solid var(--theme-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.quote::after {
  content: "";
  position: absolute;
  left: 2rem;
  bottom: -1.015rem;
  width: 1.6rem;
  height: 1.6rem;
  background: var(--paper);
  border-left: 3px solid var(--theme-color);
  border-bottom: 3px solid var(--theme-color);
  transform: rotate(-45deg);
  border-bottom-left-radius: 0.35rem;
}

.quote cite {
  display: block;
  margin-top: 0.8rem;
  color: var(--theme-color);
  font-style: normal;
  font-weight: 700;
}

.quote:nth-child(1) {
  --theme-color: var(--grass);
}

.quote:nth-child(2) {
  --theme-color: var(--sun);
}

.quote:nth-child(3) {
  --theme-color: var(--sky);
}

.price-card {
  padding: 1.2rem;
  border: 3px solid var(--theme-color, var(--sky));
  background: var(--paper);
}

.price-card h2 {
  margin-top: 0;
  color: var(--theme-color-dark, var(--sky-dark));
  font-size: 1.6rem;
}

.price-card small {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.25;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.42rem 0;
  border-bottom: 1px dotted var(--theme-color, var(--sky));
}

.price-row span:last-child {
  flex: 0 0 auto;
  font-weight: 900;
}

.accordion {
  display: grid;
  gap: 0.8rem;
}

.accordion h2 {
  margin: 0;
  line-height: 1.2;
}

.accordion-item {
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.accordion button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  border-radius: 18px;
  background: var(--sky);
  color: var(--paper);
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  padding: 1rem 1.2rem;
  font-size: 1.2rem;
}

.accordion button::after {
  content: "expand_more";
  font-family: "Material Symbols Rounded";
  font-size: 1.5rem;
  line-height: 1;
}

.accordion button[aria-expanded="true"]::after {
  content: "expand_less";
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  border-top: 0;
  border-radius: 0 0 18px 18px;
  background: var(--paper);
  transition: grid-template-rows 0.28s ease;
}

.accordion-panel.open {
  grid-template-rows: 1fr;
}

.accordion-panel-inner {
  min-height: 0;
  overflow: hidden;
}

.accordion-panel-content {
  padding: 1rem 1.2rem;
}

.accordion-panel-content > :first-child {
  margin-top: 0;
}

.accordion-panel-content > :last-child {
  margin-bottom: 0;
}

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

.gallery-carousel {
  overflow: hidden;
  margin-bottom: 3rem;
  border: 3px solid var(--theme-color, var(--sky));
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.gallery-carousel-stage {
  position: relative;
  min-height: min(58vw, 560px);
  background: var(--cloud);
}

.gallery-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.gallery-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.gallery-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(36, 19, 45, 0.58));
}

.gallery-slide figcaption {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  padding: clamp(1.2rem, 4vw, 2.4rem);
}

.gallery-slide .section-title {
  margin: 0.65rem 0 0;
  color: var(--paper);
  text-shadow: 0 3px 18px rgba(36, 19, 45, 0.45);
}

.gallery-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
}

.carousel-control,
.carousel-dots button {
  border: 2px solid var(--theme-color-dark, var(--sky-dark));
  background: var(--theme-color, var(--sky));
  color: var(--theme-button-text, var(--paper));
  box-shadow: 0 6px 0 var(--theme-color-dark, var(--sky-dark));
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    opacity 0.15s ease,
    background-color 0.15s ease;
}

.carousel-control:hover,
.carousel-control:focus-visible,
.carousel-dots button:hover,
.carousel-dots button:focus-visible {
  transform: translateY(3px);
  box-shadow: 0 3px 0 var(--theme-color-dark, var(--sky-dark));
}

.carousel-control {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 50%;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.carousel-dots button {
  width: 0.95rem;
  height: 0.95rem;
  padding: 0;
  border-radius: 50%;
  opacity: 0.45;
  box-shadow: none;
}

.carousel-dots button.is-active {
  opacity: 1;
  background: var(--sun);
  border-color: var(--sun-dark);
}

.gallery-card {
  display: block;
  overflow: hidden;
  border: 5px solid var(--paper);
  background: var(--paper);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.contact-visit-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
}

.contact-details {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1.15rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.contact-detail > .material-symbols-rounded {
  flex: 0 0 auto;
  margin-top: 0.2rem;
  color: var(--theme-color, var(--sky));
  font-size: 2rem;
}

.contact-detail h3 {
  margin: 0;
  color: var(--theme-color-dark, var(--sky-dark));
}

.contact-detail p {
  margin: 0.2rem 0 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.contact-detail:last-child {
  margin-top: auto;
}

.map-placeholder {
  overflow: hidden;
  margin: 1rem 0;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  background: var(--cloud);
}

.map-placeholder iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.form {
  display: grid;
  gap: 0.9rem;
}

.form label {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--theme-color, var(--grass));
  font-weight: 900;
}

.form input,
.form textarea {
  width: 100%;
  border: 2px solid var(--theme-color, var(--grass));
  border-radius: 14px;
  padding: 0.85rem;
  background: var(--paper);
  color: var(--ink);
}

.form textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--theme-color, var(--grass));
  font-weight: 800;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: rgba(255, 253, 241, 0.86);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: opacity;
  transition:
    opacity var(--loader-fade-duration) ease,
    visibility var(--loader-fade-duration) ease;
}

.page-loader.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.page-loader img {
  width: clamp(4rem, 12vw, 6.5rem);
  height: clamp(4rem, 12vw, 6.5rem);
  will-change: transform;
  animation: loader-spin 0.85s linear infinite;
}

.page-loader-icon-wrap {
  display: grid;
  place-items: center;
  transform: scale(0.94);
  transition: transform var(--loader-fade-duration) ease;
  will-change: transform;
}

.page-loader.is-active .page-loader-icon-wrap {
  transform: scale(1);
}

.footer {
  position: relative;
  overflow: hidden;
  box-shadow: 0 -8px 28px rgba(8, 75, 99, 0.08);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/site/fenced-hills.png");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  opacity: 0.25;
}

.footer > * {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  gap: 2rem;
  padding: 2.2rem 0;
}

.footer h2,
.footer h3 {
  margin: 0.2rem 0;
  color: var(--sky);
  font-size: 1.35rem;
}

.footer a {
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
}

.copyright {
  padding: 1rem 0;
  border-top: 1px solid var(--sky);
  color: var(--muted);
  font-weight: 500;
  font-size: 0.75rem;
}

@keyframes tagline-scroll {
  from {
    transform: translateX(0);
  }

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

@keyframes paw-wiggle {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  20% {
    transform: rotate(-12deg) scale(1.08);
  }

  40% {
    transform: rotate(10deg) scale(1.08);
  }

  60% {
    transform: rotate(-7deg) scale(1.05);
  }

  80% {
    transform: rotate(5deg) scale(1.03);
  }
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    animation-duration: 0.001ms;
    animation-iteration-count: 1;
    transition-duration: 0.001ms;
  }

  .accordion-panel,
  .page-loader,
  .gallery-slide {
    transition: none;
  }

  .page-loader img {
    animation: none;
  }

  .site-header-wrap,
  main,
  body > [data-include],
  .page-loader img {
    transform: none;
    transition: none;
  }
}
