/* =========================================================
   Colours and fonts — change these to restyle the whole site
   ========================================================= */
:root {
  --mint: #eef5f0;        /* page background */
  --forest: #1e3b2f;      /* main text + dark sections */
  --moss: #4d7a63;        /* secondary text, borders */
  --marigold: #f2b134;    /* buttons + highlights */
  --blush: #f7d6d0;       /* soft accent panels */
  --white: #ffffff;

  --font-head: "Young Serif", Georgia, "Times New Roman", serif;
  --font-body: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap: 1100px;
  --radius-lg: 28px;
  --radius-sm: 10px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

body {
  margin: 0;
  background: var(--mint);
  color: var(--forest);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
}

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

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1em; max-width: 65ch; }

a { color: var(--forest); text-underline-offset: 3px; }

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

.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}

section { padding-block: clamp(3.5rem, 8vw, 6rem); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85em 1.6em;
  border-radius: 999px;
  background: var(--marigold);
  color: var(--forest);
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--forest);
  cursor: pointer;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: transform 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--ghost { background: transparent; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--mint);
  border-bottom: 2px solid var(--forest);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.9rem;
}
.logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo svg { width: 30px; height: 30px; }

.nav ul {
  list-style: none;
  display: flex;
  gap: 1.6rem;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav a { text-decoration: none; font-weight: 600; }
.nav a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: var(--marigold);
  text-decoration-thickness: 3px;
}
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--forest);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.7rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
  cursor: pointer;
}

@media (max-width: 800px) {
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--mint);
    border-bottom: 2px solid var(--forest);
  }
  .nav.is-open { display: block; }
  .nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem 1.5rem;
    gap: 1rem;
  }
}

/* ---------- Hero ---------- */
.hero .wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero p { font-size: 1.2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }

.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 50% 50% var(--radius-lg) var(--radius-lg);
  background: var(--blush);
  border: 2px solid var(--forest);
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--moss);
  padding: 2rem;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

.availability-tag {
  position: absolute;
  bottom: 1.25rem;
  left: -1rem;
  background: var(--white);
  border: 2px solid var(--forest);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--forest);
  text-decoration: none;
  box-shadow: 4px 4px 0 var(--forest);
}
.availability-tag span { display: block; font-weight: 400; color: var(--moss); font-size: 0.85rem; }

@media (max-width: 800px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-photo { max-width: 360px; }
  .availability-tag { left: 1rem; }
}

/* ---------- Dark band ---------- */
.band {
  background: var(--forest);
  color: var(--mint);
}
.band a { color: var(--marigold); }
.band h2 { color: var(--white); }

.visit-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.visit-steps li { counter-increment: step; }
.visit-steps li::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--marigold);
  color: var(--forest);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

/* ---------- Reviews ---------- */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.review {
  margin: 0;
  background: var(--white);
  border: 2px solid var(--forest);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
}
.review:nth-child(2) { background: var(--blush); }
.stars { color: var(--marigold); letter-spacing: 2px; font-size: 1.2rem; -webkit-text-stroke: 1px var(--forest); }
.review blockquote { margin: 0.6rem 0 1rem; }
.review figcaption { font-weight: 700; }

/* ---------- Pet gallery (swipe on mobile) ---------- */
.gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(200px, 240px);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  margin-top: 2rem;
}
.gallery figure {
  margin: 0;
  scroll-snap-align: start;
}
.gallery .pet-img {
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid var(--forest);
  background: var(--blush);
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--moss);
  font-size: 0.9rem;
}
.gallery .pet-img img { width: 100%; height: 100%; object-fit: cover; }
.gallery figcaption { text-align: center; margin-top: 0.6rem; font-weight: 600; }

/* ---------- Pricing ---------- */
.prices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.price {
  background: var(--white);
  border: 2px solid var(--forest);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.price--featured { background: var(--marigold); }
.price .amount { font-family: var(--font-head); font-size: 2.6rem; line-height: 1; }
.price .per { color: var(--moss); }
.price--featured .per { color: var(--forest); }
.price ul { padding-left: 1.2rem; margin: 1.2rem 0 0; }
.price li { margin-bottom: 0.4rem; }

.extras { width: 100%; border-collapse: collapse; margin-top: 1.5rem; }
.extras th, .extras td { text-align: left; padding: 0.8rem 0.5rem; border-bottom: 1px solid var(--moss); }
.table-scroll { overflow-x: auto; }

/* ---------- Availability ---------- */
.calendar-frame {
  border: 2px solid var(--forest);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  margin-top: 1.5rem;
}
.calendar-frame iframe {
  display: block;
  width: 100%;
  height: 620px;
  border: 0;
}
@media (max-width: 600px) { .calendar-frame iframe { height: 480px; } }

.calendar-setup {
  padding: 2rem;
  background: var(--blush);
}
.calendar-setup ol { padding-left: 1.3rem; }
.calendar-setup code { background: var(--white); padding: 0.1em 0.35em; border-radius: 4px; }

.key { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 1rem; font-size: 0.95rem; }
.key span::before {
  content: "";
  display: inline-block;
  width: 0.9em; height: 0.9em;
  border-radius: 3px;
  margin-right: 0.4em;
  vertical-align: -0.1em;
  border: 1px solid var(--forest);
}
.key .busy::before { background: #9fc3e7; }
.key .free::before { background: var(--white); }

/* ---------- Forms ---------- */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem 1.5rem;
  margin-top: 2rem;
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

label, legend { display: block; font-weight: 600; margin-bottom: 0.35rem; }
input, select, textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 2px solid var(--forest);
  border-radius: var(--radius-sm);
  background: var(--white);
  font: inherit;
  color: var(--forest);
}
textarea { min-height: 130px; resize: vertical; }
fieldset { border: 0; padding: 0; margin: 0; }
.choices { display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; }
.choices label { font-weight: 400; display: flex; align-items: center; gap: 0.45rem; margin: 0; }
.choices input { width: auto; accent-color: var(--forest); }
.req { color: #a33b2b; }

.contact-options { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }

/* ---------- FAQ ---------- */
details {
  border-bottom: 2px solid var(--forest);
  padding: 1.1rem 0;
}
summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-size: 1.5rem; line-height: 1; }
details[open] summary::after { content: "–"; }
details p { margin-top: 0.8rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--forest);
  color: var(--mint);
  padding-block: 2.5rem;
  font-size: 0.95rem;
}
.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-footer a { color: var(--mint); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 1.2rem; }

.page-intro { padding-bottom: 1rem; }
