/* ============================================================
   Bedale Dog Grooming — "The Green Room"
   Country-luxe chapters: the page alternates deep forest green
   and warm linen bands so every section is its own room.
   One accent (brass), one serif (Fraunces), modest rounding.

   Band order:  hero F · why L · services F · about L · gallery F
                team L · reviews F · faq L · find-us F ·
                contact L · footer F-deep
   ============================================================ */

:root {
  /* Palette */
  --forest: #1E3B32;
  --forest-deep: #162D26;
  --linen: #F5EFE3;
  --ink: #2A2A22;              /* text on linen */
  --ink-soft: #6E6A5B;         /* secondary text on linen */
  --cream: #F2EDDF;            /* text on forest */
  --cream-soft: rgba(242, 237, 223, 0.74);
  --brass: #C89B4B;
  --brass-soft: #D9B87A;
  --brass-ink: #221A0C;        /* text on brass buttons */
  --hair-linen: rgba(42, 42, 34, 0.16);
  --hair-cream: rgba(242, 237, 223, 0.2);

  /* Type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito Sans", "Segoe UI", Arial, sans-serif;

  /* Shape */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;

  --container: 1080px;
  --header-h: 76px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--linen);
  -webkit-font-smoothing: antialiased;
}

@media (min-width: 768px) {
  body { font-size: 19px; }
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.4rem, 5.6vw, 3.8rem); letter-spacing: -0.015em; line-height: 1.08; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: -0.01em; }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; }

a { color: var(--forest); }
a:hover { color: var(--forest-deep); }

a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 3px;
  border-radius: 4px;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.container-narrow { max-width: 800px; }

section { padding: 72px 0; }
@media (min-width: 768px) { section { padding: 96px 0; } }
section[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

/* Forest bands */
.services, .gallery, .reviews, .find-us { background: var(--forest); color: var(--cream); }
.services h2, .services h3, .gallery h2, .gallery h3,
.reviews h2, .reviews h3, .find-us h2, .find-us h3 { color: var(--cream); }
.services a, .gallery a, .reviews a, .find-us a { color: var(--brass-soft); }
.services a:hover, .gallery a:hover, .reviews a:hover, .find-us a:hover { color: var(--cream); }

.section-heading { text-align: center; }

.section-intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3rem;
  color: var(--ink-soft);
}
.services .section-intro, .gallery .section-intro,
.reviews .section-intro, .find-us .section-intro { color: var(--cream-soft); }

.section-cta { text-align: center; margin-top: 3rem; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--brass); color: var(--brass-ink);
  padding: 12px 20px; z-index: 200; font-weight: 800;
}
.skip-link:focus { left: 0; color: var(--brass-ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 28px;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

/* Primary CTA is always brass — one colour means "book" everywhere.
   The a.btn-primary form outranks the forest bands' pale link colour,
   which otherwise made brass buttons look washed-out/disabled. */
.btn-primary, a.btn-primary { background: var(--brass); color: var(--brass-ink); }
.btn-primary:hover, a.btn-primary:hover { background: var(--brass-soft); color: var(--brass-ink); }

/* Secondary adapts to its band */
.btn-secondary {
  background: transparent;
  color: var(--forest);
  box-shadow: inset 0 0 0 2px var(--forest);
}
.btn-secondary:hover { background: rgba(30, 59, 50, 0.08); color: var(--forest); }

.site-header .btn-secondary, .services .btn-secondary, .gallery .btn-secondary,
.reviews .btn-secondary, .find-us .btn-secondary, .mobile-cta-bar .btn-secondary {
  color: var(--cream);
  box-shadow: inset 0 0 0 2px rgba(242, 237, 223, 0.55);
}
.site-header .btn-secondary:hover, .services .btn-secondary:hover, .gallery .btn-secondary:hover,
.reviews .btn-secondary:hover, .find-us .btn-secondary:hover, .mobile-cta-bar .btn-secondary:hover {
  background: rgba(242, 237, 223, 0.12);
  color: var(--cream);
}

.btn-large { font-size: 1.08rem; min-height: 56px; padding: 15px 32px; }
.btn-block { width: 100%; }
.icon { flex-shrink: 0; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--forest);
  border-bottom: 1px solid var(--hair-cream);
}

.nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--cream);
  text-decoration: none;
  white-space: nowrap;
}
.nav-brand:hover { color: var(--cream); }
.nav-brand .paw-icon { color: var(--brass-soft); }

.nav-links {
  display: flex;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: inline-block;
  padding: 10px 13px;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  color: var(--cream);
  border-radius: 8px;
  white-space: nowrap;
}
.nav-links a:hover { background: rgba(242, 237, 223, 0.12); color: #FFFFFF; }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 12px;
  background: none;
  border: 1.5px solid rgba(242, 237, 223, 0.5);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: var(--cream);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--forest);
    border-bottom: 1px solid var(--hair-cream);
    box-shadow: 0 12px 24px rgba(22, 45, 38, 0.35);
    padding: 12px 22px 20px;
    display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { display: block; padding: 14px 16px; font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .nav-brand { font-size: 1.05rem; }
}

/* ---------- Hero (forest) ---------- */
.hero {
  background: var(--forest);
  color: var(--cream);
  padding: 64px 0 84px;
}

.hero-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 860px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
}

.hero h1 { color: var(--cream); max-width: 16ch; }
.hero h1 em { font-style: italic; color: var(--brass-soft); }

.hero-tagline {
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  color: var(--cream-soft);
  max-width: 46ch;
}

.hero-points {
  list-style: none;
  margin: 1.5rem 0 2.2rem;
  padding: 0;
}

.hero-points li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--cream);
}

/* Brass paw-print bullets */
.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background-color: var(--brass-soft);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><g fill="black"><ellipse cx="50" cy="66" rx="22" ry="18"/><circle cx="28" cy="42" r="9"/><circle cx="42" cy="32" r="9"/><circle cx="58" cy="32" r="9"/><circle cx="72" cy="42" r="9"/></g></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><g fill="black"><ellipse cx="50" cy="66" rx="22" ry="18"/><circle cx="28" cy="42" r="9"/><circle cx="42" cy="32" r="9"/><circle cx="58" cy="32" r="9"/><circle cx="72" cy="42" r="9"/></g></svg>') center / contain no-repeat;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* Both hero buttons share the same width */
.hero-ctas .btn { flex: 1 1 240px; max-width: 320px; }
.hero .btn-secondary {
  color: var(--cream);
  box-shadow: inset 0 0 0 2px rgba(242, 237, 223, 0.55);
}
.hero .btn-secondary:hover { background: rgba(242, 237, 223, 0.12); color: var(--cream); }

/* Photo in a brass keyline mount — used for hero and about */
.hero-media, .about-media {
  padding: 12px;
  border: 1.5px solid rgba(200, 155, 75, 0.55);
  border-radius: var(--radius-lg);
}

.hero-photo {
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.hero-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.kenburns { animation: kenburns 24s ease-out forwards; }
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.07); }
}

/* ---------- Why (linen) — icons beside text, hairline rows ---------- */
.why { background: var(--linen); }

.why-grid {
  list-style: none;
  margin: 3rem auto 0;
  padding: 0;
  display: grid;
  gap: 0 64px;
  grid-template-columns: 1fr;
  max-width: 920px;
}

@media (min-width: 700px) { .why-grid { grid-template-columns: 1fr 1fr; } }

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid var(--hair-linen);
}

.why-item h3 { margin-bottom: 0.25em; }
.why-item p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }

/* Icons kept from the original design, recoloured — brass ring echoes
   the chapter numerals and photo mounts */
.why-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  color: var(--forest);
  border: 1.5px solid var(--brass);
  border-radius: 50%;
  padding: 11px;
  margin-top: 2px;
}

/* ---------- Services (forest) — dotted-leader ledger ---------- */
.ledger { max-width: 780px; margin: 0 auto; }

.ledger-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--hair-cream);
}

.ledger-name {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.ledger-name h3 { margin: 0; font-size: 1.35rem; white-space: nowrap; }

.ledger-icon {
  width: 40px;
  height: 40px;
  color: var(--brass-soft);
  border: 1.5px solid var(--brass);
  border-radius: 50%;
  padding: 9px;
  flex-shrink: 0;
  align-self: center;
}

.ledger-row .leader {
  flex: 1;
  border-bottom: 1.5px dotted rgba(200, 155, 75, 0.5);
  transform: translateY(-6px);
  min-width: 24px;
}

.ledger-row p {
  margin: 0;
  color: var(--cream-soft);
  font-size: 0.95rem;
  max-width: 34ch;
  text-align: right;
}

@media (max-width: 640px) {
  .ledger-row { flex-wrap: wrap; gap: 10px 16px; padding: 20px 0; }
  .ledger-row .leader { display: none; }
  .ledger-row p { text-align: left; max-width: none; flex-basis: 100%; }
}

.service-note {
  text-align: center;
  margin: 2rem auto 0;
  max-width: 56ch;
  color: var(--cream-soft);
  font-style: italic;
  font-size: 0.95rem;
}

/* ---------- About (linen) ---------- */
.about { background: var(--linen); }

/* Heading sits above; portrait below it, beside (or above, on mobile) the bio */
.about-grid {
  display: grid;
  gap: 40px 48px;
  align-items: center;
  margin-top: 2.5rem;
}

@media (min-width: 860px) {
  .about-grid { grid-template-columns: 2fr 3fr; }
}

.about-media img {
  border-radius: var(--radius-sm);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

/* On phones, keep the portrait a sensible height between heading and bio */
@media (max-width: 859px) {
  .about-media { max-width: 420px; margin: 0 auto; }
}

.badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 1.6rem 0 0;
  padding: 0;
}

.badges li {
  border: 1.5px solid var(--brass);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 100px;
  padding: 7px 16px;
}

/* ---------- Gallery (forest) ---------- */
.ba-sliders {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  max-width: 420px;
  margin: 0 auto;
}

/* Three portrait sliders side by side once there's room; stacked and
   phone-width below that, since the sources are 9:16 story crops */
@media (min-width: 620px) { .ba-sliders { grid-template-columns: 1fr 1fr; max-width: 820px; } }
@media (min-width: 900px) { .ba-sliders { grid-template-columns: repeat(3, 1fr); max-width: 1120px; } }

.ba-slider {
  --pos: 50%;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid rgba(200, 155, 75, 0.45);
  touch-action: pan-y;
}

.ba-images { position: relative; }
.ba-before { width: 100%; }

.ba-after-wrap {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

.ba-after { width: 100%; height: 100%; object-fit: cover; }

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 3px;
  margin-left: -1.5px;
  background: var(--brass-soft);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.ba-grip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brass);
  color: var(--brass-ink);
  display: grid;
  place-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.ba-grip { animation: grip-pulse 2.2s ease-in-out 3; }
@keyframes grip-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.12); }
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.ba-range:focus-visible ~ .ba-handle .ba-grip {
  outline: 3px solid var(--cream);
  outline-offset: 3px;
}

.ba-label {
  position: absolute;
  top: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(22, 45, 38, 0.82);
  color: var(--cream);
  pointer-events: none;
}

.ba-label-l { left: 12px; }
.ba-label-r { right: 12px; }

.gallery-subheading { text-align: center; margin: 3.5rem 0 1.6rem; }

.gallery-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 760px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-grid li {
  border-radius: var(--radius-sm);
  overflow: hidden;
}

/* Portrait tiles — the salon photos are shot vertically, and 4:5 keeps
   each dog whole where a square crop would cut it off */
.gallery-grid img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
  transition: transform 0.4s ease;
}

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

/* ---------- Team (linen) ---------- */
.team { background: var(--linen); }

.team-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
}

@media (min-width: 700px) { .team-grid { grid-template-columns: 1fr 1fr; } }

.team-card {
  margin: 0;
  text-align: center;
}

.team-card img {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  border: 1.5px solid var(--brass);
  padding: 5px;
  background: var(--linen);
  transition: transform 0.25s ease;
}

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

.team-card figcaption strong { display: block; font-family: var(--font-display); font-size: 1.25rem; }

.team-role {
  display: block;
  color: var(--brass);
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

.team-card figcaption p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 12px auto 0;
  max-width: 30ch;
}

/* ---------- Reviews (forest) — big serif quotes ---------- */
.carousel { max-width: 760px; margin: 0 auto; }

.carousel-viewport { overflow: hidden; }

.carousel-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide { flex: 0 0 100%; padding: 8px 4px; }

.carousel-slide blockquote {
  margin: 0;
  text-align: center;
  padding: 0 12px;
}

.carousel-slide blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.35rem, 3.2vw, 1.9rem);
  line-height: 1.3;
  color: var(--cream);
  max-width: 30ch;
  margin: 0 auto 1em;
}

.carousel-slide blockquote p::before { content: "\201C"; color: var(--brass-soft); }
.carousel-slide blockquote p::after { content: "\201D"; color: var(--brass-soft); }

.carousel-slide blockquote footer {
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-soft);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(242, 237, 223, 0.45);
  background: transparent;
  color: var(--cream);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.carousel-btn:hover { border-color: var(--brass-soft); color: var(--brass-soft); }

.carousel-dots { display: flex; gap: 10px; }

.carousel-dot {
  width: 14px;
  height: 14px;
  padding: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(242, 237, 223, 0.55);
  background: transparent;
  cursor: pointer;
}

.carousel-dot[aria-selected="true"] { background: var(--brass); border-color: var(--brass); }

.reviews-links-intro {
  text-align: center;
  color: var(--cream-soft);
  margin: 3rem 0 1rem;
  font-weight: 700;
}

.reviews-links { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- FAQ (linen) — hairline accordion ---------- */
.accordion { border-top: 1px solid var(--hair-linen); }

.accordion-item { border-bottom: 1px solid var(--hair-linen); }

.accordion-item h3 { margin: 0; }

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.accordion-trigger:hover { color: var(--forest); }

.accordion-trigger .chevron {
  flex-shrink: 0;
  color: var(--brass);
  transition: transform 0.25s ease;
}

.accordion-trigger[aria-expanded="true"] .chevron { transform: rotate(180deg); }

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

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

.accordion-content { overflow: hidden; }

.accordion-content p { padding: 0 4px; margin: 0 0 22px; color: var(--ink-soft); }

/* ---------- Find us (forest) ---------- */
.map-wrap {
  max-width: 940px;
  margin: 0 auto;
  border: 1.5px solid rgba(200, 155, 75, 0.5);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

#map { height: 420px; background: var(--forest-deep); }

.map-loading { text-align: center; padding-top: 180px; color: var(--cream-soft); }

.map-legend {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin: 0;
  padding: 14px 20px;
  background: var(--forest-deep);
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 700;
}

.legend-pin {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  margin-right: 8px;
  vertical-align: -2px;
}

.legend-pin-shop { background: var(--brass); width: 17px; height: 17px; }
.legend-pin-parking { background: #4E7FBF; }
.legend-pin-poi { background: #A79A80; }

/* Leaflet custom pins (built in js/main.js) */
.pin {
  width: 34px;
  height: 34px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: grid;
  place-items: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  border: 2px solid #FFFFFF;
}

.pin > * { transform: rotate(45deg); }

.pin-shop { background: var(--forest); color: var(--brass-soft); width: 44px; height: 44px; }
.pin-parking { background: #4E7FBF; color: #FFFFFF; font-weight: 800; font-size: 15px; }
.pin-poi { background: #A79A80; color: #FFFFFF; width: 28px; height: 28px; opacity: 0.92; }

.find-us-notes {
  display: grid;
  gap: 0 56px;
  grid-template-columns: 1fr;
  max-width: 940px;
  margin: 3rem auto 0;
}

@media (min-width: 820px) { .find-us-notes { grid-template-columns: repeat(3, 1fr); } }

.find-note { padding: 20px 0; border-top: 1px solid var(--hair-cream); }

.find-note h3 { font-size: 1.2rem; }
.find-note p { margin: 0; color: var(--cream-soft); font-size: 0.95rem; }

/* ---------- Contact (linen) ---------- */
.contact { background: var(--linen); }

.contact-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 820px) { .contact-grid { grid-template-columns: 3fr 2fr; } }

.form-field { margin-bottom: 20px; }

.form-field label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}

.label-optional { font-weight: 400; color: var(--ink-soft); }

.form-field input,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--ink);
  background: #FFFFFF;
  border: 1.5px solid #D8D0BC;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  min-height: 52px;
}

.form-field textarea { resize: vertical; }

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--brass);
  outline: 3px solid rgba(200, 155, 75, 0.25);
}

.form-status { margin: 16px 0 0; font-weight: 700; }
.form-status.is-success { color: var(--forest); }
.form-status.is-error { color: #A4372B; }

.form-success { text-align: center; padding: 40px 10px; }
.form-success .paw-icon { color: var(--brass); margin: 0 auto 16px; }

.contact-aside { display: grid; gap: 28px; align-content: start; }

/* Phone panel — a small forest room of its own */
.contact-phone-card {
  background: var(--forest);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  text-align: center;
}

.contact-phone-card h3 { color: var(--cream); }
.contact-phone-card p { margin-bottom: 0.5em; color: var(--cream-soft); }
.contact-phone-card .btn-secondary {
  color: var(--cream);
  box-shadow: inset 0 0 0 2px rgba(242, 237, 223, 0.55);
}
.contact-phone-card .btn-secondary:hover { background: rgba(242, 237, 223, 0.12); color: var(--cream); }

.contact-aside-note { font-size: 0.92rem; margin: 1em 0 0; }

.contact-hours { padding: 4px 8px; }
.contact-hours h3 { text-align: center; }
.contact-hours table { width: 100%; border-collapse: collapse; }
.contact-hours th, .contact-hours td { padding: 12px 4px; text-align: left; border-top: 1px solid var(--hair-linen); }
.contact-hours td { text-align: right; font-weight: 800; }

/* ---------- Footer (deep forest) ---------- */
.site-footer {
  background: var(--forest-deep);
  color: var(--cream-soft);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  padding-bottom: 40px;
}

@media (min-width: 720px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream);
}

.footer-brand .paw-icon { color: var(--brass-soft); }

.site-footer h3 { color: var(--cream); font-size: 1.05rem; }
.site-footer a { color: var(--brass-soft); }
.site-footer a:hover { color: var(--cream); }
.site-footer address { font-style: normal; line-height: 1.8; }

.footer-bottom {
  border-top: 1px solid var(--hair-cream);
  padding-top: 20px;
  padding-bottom: 96px;   /* clears the sticky action bar on every screen size */
  text-align: center;
  font-size: 0.88rem;
}

.paw-inline { display: inline-block; vertical-align: -2px; color: var(--brass-soft); }

/* ---------- Mobile sticky action bar ---------- */
/* Three actions: message (primary), call, and directions to the map */
.mobile-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: var(--forest-deep);
  border-top: 1px solid var(--hair-cream);
  transition: transform 0.25s ease;
}

.mobile-cta-bar .btn {
  font-size: 0.92rem;
  padding: 12px 10px;
  gap: 7px;
  white-space: nowrap;
}

.mobile-cta-bar.is-hidden { transform: translateY(110%); }

/* On desktop the bar stays — centred, so it reads as a dock, not a stripe */
@media (min-width: 901px) {
  .mobile-cta-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
  }

  .mobile-cta-bar .btn {
    flex: 0 1 auto;
    min-width: 200px;
    font-size: 0.98rem;
    padding: 12px 28px;
  }
}

/* ---------- Scroll-in reveal ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

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

  .kenburns { animation: none; }
  .ba-grip { animation: none; }
  .js .reveal { opacity: 1; transform: none; }
}
