/* ============================================================
   VALHALLA K9 SERVICES — "North Country Field Guide"
   Warm black-&-white base · leather-rust accent · trail motifs
   ============================================================ */

:root {
  /* palette — warm B&W, made rustic */
  --parchment: #F4EFE4;
  --parchment-deep: #EAE2CF;
  --card: #FBF8F0;
  --ink: #201C15;
  --ink-2: #171410;
  --ink-soft: #55503f;
  --line: #C9BFA8;
  --rust: #A85321;
  --rust-deep: #8A3F16;
  --pine: #45573F;
  --amber: #D9A441;
  --cream: #F8F4E9;

  /* type */
  --f-display: "Fraunces", Georgia, serif;
  --f-body: "Cabin", "Trebuchet MS", sans-serif;
  --f-hand: "Caveat", cursive;

  --nav-h: 76px;
  --radius: 14px;

  /* textures */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  --topo: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='700' height='700' viewBox='0 0 700 700'%3E%3Cg fill='none' stroke='%23201C15' stroke-width='1.2'%3E%3Cpath d='M170 120c90-45 220-28 268 48 50 80-10 168-118 182-108 15-208-40-198-124 7-56 8-80 48-106z'/%3E%3Cpath d='M190 148c72-36 178-22 216 39 40 64-8 135-95 146-87 12-167-32-159-100 5-45 6-64 38-85z'/%3E%3Cpath d='M212 176c55-27 135-17 164 30 30 48-6 102-72 111-66 9-127-25-121-76 4-34 5-49 29-65z'/%3E%3Cpath d='M238 205c37-18 90-11 110 20 20 32-4 68-48 74-44 6-85-17-81-51 3-23 3-32 19-43z'/%3E%3Cpath d='M470 480c60-30 150-19 182 32 34 54-6 114-80 124-73 10-141-27-135-84 5-38 6-54 33-72z'/%3E%3Cpath d='M492 508c45-22 112-14 136 24 25 40-5 85-60 92-55 8-105-20-101-62 4-28 5-40 25-54z'/%3E%3Cpath d='M516 537c31-15 76-10 93 16 17 27-3 58-41 63-37 5-72-14-69-43 2-19 3-27 17-36z'/%3E%3C/g%3E%3C/svg%3E");
  --paw-step: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='150' viewBox='0 0 60 150'%3E%3Cg fill='%23201C15' opacity='0.9'%3E%3Cg transform='translate(12 20) rotate(-14)'%3E%3Cellipse cx='0' cy='5' rx='6.4' ry='5.2'/%3E%3Cellipse cx='-7.5' cy='-2.5' rx='2.7' ry='3.8' transform='rotate(-15)'/%3E%3Cellipse cx='-2.6' cy='-6.4' rx='2.7' ry='3.8'/%3E%3Cellipse cx='2.6' cy='-6.4' rx='2.7' ry='3.8'/%3E%3Cellipse cx='7.5' cy='-2.5' rx='2.7' ry='3.8' transform='rotate(15)'/%3E%3C/g%3E%3Cg transform='translate(44 95) rotate(12)'%3E%3Cellipse cx='0' cy='5' rx='6.4' ry='5.2'/%3E%3Cellipse cx='-7.5' cy='-2.5' rx='2.7' ry='3.8' transform='rotate(-15)'/%3E%3Cellipse cx='-2.6' cy='-6.4' rx='2.7' ry='3.8'/%3E%3Cellipse cx='2.6' cy='-6.4' rx='2.7' ry='3.8'/%3E%3Cellipse cx='7.5' cy='-2.5' rx='2.7' ry='3.8' transform='rotate(15)'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ---------- reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

body {
  font-family: var(--f-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--parchment);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

/* paper grain over everything */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: var(--grain);
  background-size: 240px;
  opacity: 0.14;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 2000;
}

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

a { color: var(--rust); }

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

::selection { background: var(--rust); color: var(--cream); }

.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

.section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
.section--deep { background: var(--parchment-deep); }
.section--deep::before,
.section--ink::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--topo);
  background-size: 700px;
  opacity: 0.05;
  pointer-events: none;
}
.section--ink {
  background: var(--ink);
  color: var(--cream);
}
.section--ink::before { filter: invert(1); opacity: 0.06; }

/* ---------- typography ---------- */
h1, h2, h3 { font-family: var(--f-display); line-height: 1.08; }

h2 {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  font-weight: 800;
  font-variation-settings: "opsz" 100;
  letter-spacing: -0.01em;
  margin-bottom: 0.35em;
}

h3 { font-size: 1.35rem; font-weight: 700; }

.center { text-align: center; }

.eyebrow {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: var(--amber); }

.paw-inline { width: 1.25em; height: 1.25em; fill: currentColor; }

.lede {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 1.1rem;
}
.lede.center { margin-inline: auto; }
.lede--light { color: #CFC6B0; }

.accent-swash {
  font-style: italic;
  font-weight: 600;
  font-variation-settings: "opsz" 60, "SOFT" 60, "WONK" 1;
  color: var(--rust);
}
.accent-swash--warm { color: var(--amber); }

.hand {
  font-family: var(--f-hand);
  font-size: 1.25em;
  color: var(--rust);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}
.hand--dark { color: var(--pine); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 0.72em 1.35em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn--rust {
  background: var(--rust);
  color: var(--cream);
  box-shadow: 0 4px 0 var(--rust-deep);
}
.btn--rust:hover { transform: translateY(-2px) rotate(-0.5deg); box-shadow: 0 6px 0 var(--rust-deep); }
.btn--rust:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--rust-deep); }

.btn--ghost {
  background: rgba(20, 17, 12, 0.25);
  color: var(--cream);
  border-color: rgba(248, 244, 233, 0.75);
  backdrop-filter: blur(3px);
}
.btn--ghost:hover { background: rgba(248, 244, 233, 0.16); transform: translateY(-2px); }

.btn--big { font-size: 1.05rem; padding: 0.85em 1.6em; }
.btn--full { width: 100%; justify-content: center; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  color: var(--cream);
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
}

.nav.scrolled {
  background: rgba(244, 239, 228, 0.94);
  color: var(--ink);
  box-shadow: 0 2px 0 var(--ink), 0 8px 24px rgba(32, 28, 21, 0.12);
  backdrop-filter: blur(8px);
  height: 64px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
  margin-right: auto;
}

.nav__logo {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid currentColor;
  flex-shrink: 0;
  background: #000;
}
.nav__logo img { width: 100%; height: 100%; object-fit: cover; }

.nav__wordmark {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav__wordmark em {
  font-style: italic;
  font-weight: 600;
  color: var(--amber);
  margin-left: 0.18em;
  font-variation-settings: "SOFT" 70, "WONK" 1;
}
.nav.scrolled .nav__wordmark em { color: var(--rust); }

.nav__links {
  display: flex;
  gap: clamp(0.8rem, 2vw, 1.6rem);
}
.nav__links a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  padding: 0.3em 0.1em;
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2.5px;
  background: var(--rust);
  transition: right 0.25s ease;
}
.nav__links a:hover::after,
.nav__links a.active::after { right: 0; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav__burger span {
  width: 26px; height: 3px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  isolation: isolate;
  color: var(--cream);
  text-align: center;
  padding: calc(var(--nav-h) + 2rem) 1rem 7rem;
}

.hero__photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 38%;
  animation: heroDrift 24s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.01) translateY(0); }
  to   { transform: scale(1.06) translateY(-1%); }
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom,
      rgba(23, 20, 16, 0.62) 0%,
      rgba(23, 20, 16, 0.25) 30%,
      rgba(23, 20, 16, 0.18) 55%,
      rgba(23, 20, 16, 0.72) 100%),
    radial-gradient(ellipse at center 42%, transparent 30%, rgba(23, 20, 16, 0.35) 100%);
}

.hero__kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.2rem;
}
.hero__kicker .rule {
  display: inline-block;
  width: clamp(30px, 6vw, 70px);
  height: 2px;
  background: currentColor;
  opacity: 0.7;
}

.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2em;
}
.hero__title > span:first-child {
  font-size: clamp(4rem, 13vw, 10rem);
  font-weight: 900;
  font-variation-settings: "opsz" 144;
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
}
.hero__title-k9 {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: clamp(1rem, 2.6vw, 1.5rem);
  letter-spacing: 0.55em;
  text-indent: 0.55em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.95;
}

.hero__tag {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-variation-settings: "opsz" 40, "SOFT" 50, "WONK" 1;
  font-size: clamp(1.15rem, 2.6vw, 1.6rem);
  margin-top: 1.4rem;
  color: #EFE8D8;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  margin-top: 2.2rem;
}

.hero__hint {
  margin-top: 1.1rem;
  font-size: 0.92rem;
  color: #D8CFBB;
}
.hero__hint-hand {
  font-family: var(--f-hand);
  font-size: 1.25rem;
  color: var(--amber);
  margin-left: 0.4em;
  display: inline-block;
  transform: rotate(-2deg);
}

/* rotating hero badge */
.hero__badge {
  position: absolute;
  top: calc(var(--nav-h) + 20px);
  right: clamp(12px, 4vw, 56px);
  width: clamp(96px, 11vw, 148px);
  opacity: 0.95;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,0.35));
}
.hero__badge svg { width: 100%; height: auto; animation: spin 50s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.badge-ring { fill: none; stroke: var(--cream); stroke-width: 2.5; }
.badge-ring--dashed { stroke-width: 1.2; stroke-dasharray: 4 5; }
.badge-text { fill: var(--cream); font-family: var(--f-body); font-weight: 700; font-size: 10.5px; letter-spacing: 0.18em; }
.badge-paw ellipse { fill: var(--cream); }

.hero__scroll {
  position: absolute;
  bottom: 108px;
  left: 50%;
  translate: -50% 0;
  width: 28px; height: 46px;
  border: 2px solid rgba(248, 244, 233, 0.8);
  border-radius: 16px;
  display: grid;
  justify-content: center;
  padding-top: 8px;
}
.hero__scroll span {
  width: 4px; height: 9px;
  background: var(--cream);
  border-radius: 2px;
  animation: scrollNudge 1.8s ease-in-out infinite;
}
@keyframes scrollNudge {
  0%, 100% { transform: translateY(0); opacity: 1; }
  55% { transform: translateY(12px); opacity: 0.2; }
}

/* ---------- ridge dividers ---------- */
.ridge {
  display: block;
  width: 100%;
  height: clamp(44px, 7vw, 90px);
  background: var(--parchment-deep);
  margin-top: -1px;
}
.ridge path { fill: var(--parchment); }

.ridge--hero {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  background: transparent;
  height: clamp(50px, 8vw, 100px);
}

.ridge--flip {
  background: var(--parchment);
  transform: scaleX(-1);
}
.ridge--flip path { fill: var(--parchment-deep); }

.ridge--ink path { fill: var(--ink); }
.ridge--ink-top { background: var(--ink); }
.ridge--ink-top path { fill: var(--parchment); }

/* ---------- about ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.about__creds {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  gap: 0.8rem;
}
.about__creds li {
  padding-left: 2rem;
  position: relative;
}
.about__creds li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.28em;
  width: 1.15em; height: 1.15em;
  background: var(--rust);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cellipse cx='12' cy='15.5' rx='5' ry='4'/%3E%3Cellipse cx='5.5' cy='10' rx='2.2' ry='3'/%3E%3Cellipse cx='9.8' cy='7' rx='2.2' ry='3'/%3E%3Cellipse cx='14.2' cy='7' rx='2.2' ry='3'/%3E%3Cellipse cx='18.5' cy='10' rx='2.2' ry='3'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cellipse cx='12' cy='15.5' rx='5' ry='4'/%3E%3Cellipse cx='5.5' cy='10' rx='2.2' ry='3'/%3E%3Cellipse cx='9.8' cy='7' rx='2.2' ry='3'/%3E%3Cellipse cx='14.2' cy='7' rx='2.2' ry='3'/%3E%3Cellipse cx='18.5' cy='10' rx='2.2' ry='3'/%3E%3C/svg%3E") center / contain no-repeat;
}

.about__photos {
  position: relative;
  min-height: 520px;
}

.polaroid {
  position: absolute;
  background: var(--card);
  padding: 12px 12px 14px;
  box-shadow: 0 10px 30px rgba(32, 28, 21, 0.22);
  border: 1px solid rgba(32, 28, 21, 0.08);
  width: min(320px, 72%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.polaroid img {
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  filter: sepia(0.12) contrast(1.02);
}
.polaroid figcaption {
  font-family: var(--f-hand);
  font-size: 1.35rem;
  color: var(--ink-soft);
  text-align: center;
  padding-top: 8px;
}
.polaroid::before {
  /* tape */
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  translate: -50% 0;
  width: 92px; height: 28px;
  background: rgba(217, 164, 65, 0.4);
  border-left: 1px dashed rgba(32,28,21,0.2);
  border-right: 1px dashed rgba(32,28,21,0.2);
  transform: rotate(-3deg);
}
.polaroid--1 { top: 0; left: 0; transform: rotate(-3.5deg); z-index: 2; }
.polaroid--2 { bottom: 0; right: 0; transform: rotate(2.5deg); }
.polaroid:hover { transform: rotate(0deg) scale(1.03); z-index: 5; box-shadow: 0 18px 44px rgba(32, 28, 21, 0.3); }

.stamp--about {
  position: absolute;
  top: 42%;
  right: -10px;
  width: 128px;
  transform: rotate(12deg);
  opacity: 0.9;
  z-index: 3;
}
.stamp--about svg { width: 100%; height: auto; }
.stamp-ring { fill: none; stroke: var(--rust); stroke-width: 3; }
.stamp-ring--dashed { stroke-width: 1.4; stroke-dasharray: 5 4; }
.stamp-text { fill: var(--rust); font-family: var(--f-body); font-weight: 700; font-size: 11.5px; letter-spacing: 0.14em; }
.stamp-big { fill: var(--rust); font-family: var(--f-display); font-weight: 900; font-size: 26px; }
.stamp-small { fill: var(--rust); font-family: var(--f-body); font-weight: 700; font-size: 9.5px; letter-spacing: 0.2em; }

/* paw trail decoration */
.paw-trail {
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: clamp(4px, 2vw, 30px);
  width: 60px;
  background: var(--paw-step);
  background-size: 60px 150px;
  background-repeat: repeat-y;
  opacity: 0.07;
  pointer-events: none;
}

/* ---------- services ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}

.card {
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.9rem 1.6rem 1.6rem;
  position: relative;
  box-shadow: 5px 5px 0 rgba(32, 28, 21, 0.85);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.card::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1.5px dashed var(--line);
  border-radius: calc(var(--radius) - 6px);
  pointer-events: none;
}
.card:hover {
  transform: translate(-3px, -3px) rotate(-0.35deg);
  box-shadow: 9px 9px 0 rgba(168, 83, 33, 0.9);
}

.card__icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--parchment);
  transition: color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}
.card__icon svg { width: 32px; height: 32px; }
.card:hover .card__icon { color: var(--rust); border-color: var(--rust); transform: rotate(-8deg) scale(1.06); }

.card p { color: var(--ink-soft); font-size: 0.98rem; flex-grow: 1; }

.card__tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
  border: 1.5px solid var(--rust);
  border-radius: 999px;
  padding: 0.25em 0.9em;
  margin-top: 0.4rem;
}

/* grooming panel */
.grooming {
  margin-top: 3.4rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.8rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 8px 8px 0 rgba(32, 28, 21, 0.25);
}
.grooming::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--topo);
  background-size: 560px;
  opacity: 0.07;
  filter: invert(1);
  pointer-events: none;
}
.grooming h3 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 0.6rem;
}
.grooming p { color: #D8CFBB; max-width: 52ch; position: relative; }
.grooming p strong { color: var(--amber); }
.grooming__note { margin-top: 0.8rem; font-size: 0.95rem; }
.grooming .hand { color: var(--amber); } /* rust fails contrast on the dark panel */

.grooming__photos {
  display: flex;
  gap: 0.9rem;
  position: relative;
}
.grooming__photos img {
  width: calc(50% - 0.45rem);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 10px;
  border: 3px solid rgba(248, 244, 233, 0.85);
  filter: sepia(0.1);
}
.grooming__photos img:first-child { transform: rotate(-2.5deg) translateY(6px); }
.grooming__photos img:last-child { transform: rotate(2deg); }

.grooming__stamp {
  position: absolute;
  top: 26px;
  right: 30px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-align: center;
  color: #E06A45;
  border: 3px double #E06A45;
  border-radius: 8px;
  padding: 0.5em 0.9em;
  transform: rotate(9deg);
  opacity: 0.95;
  background: rgba(224, 106, 69, 0.08);
}

/* ---------- gallery ---------- */
.gallery__grid {
  columns: 3;
  column-gap: 1.2rem;
  margin-top: 3rem;
}

.shot {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 3px solid var(--card);
  outline: 1.5px solid rgba(32, 28, 21, 0.35);
  box-shadow: 0 8px 22px rgba(32, 28, 21, 0.16);
  cursor: zoom-in;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.shot:nth-child(odd) { transform: rotate(0.4deg); }
.shot:nth-child(even) { transform: rotate(-0.4deg); }

.shot img {
  width: 100%;
  filter: grayscale(0.92) sepia(0.16) contrast(1.04) brightness(1.01);
  transition: filter 0.45s ease, transform 0.45s ease;
}

.shot figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.6rem 0.9rem 0.55rem;
  font-family: var(--f-hand);
  font-size: 1.3rem;
  color: var(--cream);
  background: linear-gradient(to top, rgba(23, 20, 16, 0.82), transparent);
  opacity: 0;
  translate: 0 8px;
  transition: opacity 0.3s ease, translate 0.3s ease;
  pointer-events: none;
}

.shot:hover, .shot:focus-visible, .shot.tapped {
  transform: rotate(0deg) scale(1.015);
  box-shadow: 0 14px 34px rgba(32, 28, 21, 0.28);
  z-index: 2;
}
.shot:hover img, .shot:focus-visible img, .shot.tapped img { filter: none; transform: scale(1.04); }
.shot:hover figcaption, .shot:focus-visible figcaption, .shot.tapped figcaption { opacity: 1; translate: 0 0; }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(18, 15, 11, 0.94);
  display: grid;
  place-items: center;
  padding: 3.5rem 1rem;
}
.lightbox[hidden] { display: none; }
.lightbox figure {
  max-width: min(1000px, 94vw);
  text-align: center;
}
.lightbox img {
  max-height: 78vh;
  max-width: 100%;
  width: auto;
  margin-inline: auto;
  border: 4px solid var(--card);
  border-radius: 6px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}
.lightbox figcaption {
  font-family: var(--f-hand);
  font-size: 1.6rem;
  color: var(--cream);
  margin-top: 1rem;
}
.lightbox__close,
.lightbox__nav {
  position: fixed;
  background: none;
  border: 2px solid rgba(248, 244, 233, 0.5);
  color: var(--cream);
  font-size: 1.6rem;
  line-height: 1;
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(168, 83, 33, 0.85); border-color: transparent; }
.lightbox__close { top: 22px; right: 22px; }
.lightbox__nav--prev { left: 18px; top: 50%; translate: 0 -50%; }
.lightbox__nav--next { right: 18px; top: 50%; translate: 0 -50%; }

/* ---------- reviews ---------- */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  margin-top: 3rem;
}

.review {
  background: var(--card);
  color: var(--ink);
  border-radius: 12px;
  padding: 2.2rem 1.9rem 1.6rem;
  position: relative;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}
.review:nth-child(odd) { transform: rotate(-0.7deg); }
.review:nth-child(even) { transform: rotate(0.7deg); }

.review::before {
  content: "\201C";
  position: absolute;
  top: -0.18em;
  left: 0.32em;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 5.2rem;
  color: rgba(168, 83, 33, 0.22);
  line-height: 1;
}

.review__stars {
  color: var(--amber);
  font-size: 1.15rem;
  letter-spacing: 0.2em;
  margin-bottom: 0.7rem;
}

.review p {
  font-family: var(--f-display);
  font-weight: 500;
  font-variation-settings: "opsz" 30;
  font-size: 1.12rem;
  line-height: 1.55;
}

.review footer {
  margin-top: 1.1rem;
  padding-top: 0.9rem;
  border-top: 1.5px dashed var(--line);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.review cite {
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
}
.review footer span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
}

.reviews__note {
  margin-top: 2rem;
  font-size: 0.92rem;
  color: #B7AD97;
}
.reviews__note a { color: var(--amber); }

/* ---------- community ---------- */
.community__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3.5vw, 2.8rem);
  margin-top: 3rem;
}

.waypoint {
  position: relative;
  padding-top: 0.5rem;
}
.waypoint__marker {
  position: absolute;
  top: -14px;
  left: -12px;
  z-index: 3;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--rust);
  color: var(--cream);
  border: 3px solid var(--parchment);
  outline: 2px solid var(--rust);
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.25rem;
  transform: rotate(-8deg);
  box-shadow: 0 6px 16px rgba(32, 28, 21, 0.25);
}

.waypoint__photo {
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid var(--card);
  outline: 1.5px solid rgba(32, 28, 21, 0.35);
  box-shadow: 0 10px 28px rgba(32, 28, 21, 0.18);
  margin-bottom: 1.1rem;
}
.waypoint__photo img {
  aspect-ratio: 16 / 9.5;
  width: 100%;
  object-fit: cover;
  filter: sepia(0.1) contrast(1.02);
  transition: transform 0.4s ease;
}
.waypoint:hover .waypoint__photo img { transform: scale(1.045); }

.waypoint h3 { margin-bottom: 0.4rem; }
.waypoint p { color: var(--ink-soft); font-size: 0.99rem; max-width: 52ch; }
.waypoint p strong { color: var(--ink); }

/* ---------- contact ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

.contact__rows {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

.contact__row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid rgba(248, 244, 233, 0.22);
  border-radius: 12px;
  color: var(--cream);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
a.contact__row:hover {
  border-color: var(--amber);
  background: rgba(248, 244, 233, 0.06);
  transform: translateX(4px);
}
.contact__row-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--amber);
  color: var(--amber);
  display: grid;
  place-items: center;
}
.contact__row span:last-child { display: grid; }
.contact__row strong { font-size: 1.05rem; }
.contact__row small { color: #B7AD97; font-size: 0.85rem; }

.contact__area-label {
  margin-top: 2.2rem;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
}
.contact__towns {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}
.contact__towns li {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.3em 0.95em;
  border: 1.5px solid rgba(248, 244, 233, 0.3);
  border-radius: 999px;
  color: #E3DBC6;
}

/* form */
.contact__form {
  background: var(--card);
  color: var(--ink);
  border-radius: 14px;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
  transform: rotate(-0.6deg);
  position: relative;
}
.contact__form::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  translate: -50% 0;
  width: 110px; height: 30px;
  background: rgba(217, 164, 65, 0.45);
  border-left: 1px dashed rgba(32,28,21,0.25);
  border-right: 1px dashed rgba(32,28,21,0.25);
  transform: rotate(-2deg);
}
.contact__form h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 1.3rem;
}

.field { margin-bottom: 1.05rem; }
.field label {
  display: block;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.35rem;
}
.field input,
.field textarea {
  width: 100%;
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--parchment);
  border: 2px solid var(--ink);
  border-radius: 9px;
  padding: 0.7em 0.9em;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input::placeholder,
.field textarea::placeholder { color: #A29A85; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--rust);
  box-shadow: 3px 3px 0 rgba(168, 83, 33, 0.35);
}
.field textarea { resize: vertical; min-height: 108px; }

.contact__form-note {
  margin-top: 0.9rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  text-align: center;
}

/* ---------- footer ---------- */
.footer {
  background: var(--ink-2);
  color: #CFC6B0;
  padding: 3.5rem 0 2.5rem;
  text-align: center;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--rust) 0 22px, transparent 22px 34px);
  opacity: 0.75;
}

.footer__inner { display: grid; gap: 1.2rem; justify-items: center; }

.footer__logo {
  mix-blend-mode: screen;
  width: 76px;
  opacity: 0.95;
}
.footer__name {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--cream);
}
.footer__tag { font-size: 0.92rem; }

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.3rem;
  margin-top: 0.4rem;
}
.footer__links a {
  color: #CFC6B0;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.footer__links a:hover { color: var(--amber); }

.footer__paws {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  color: #8D8471;
}
.footer__paws .paw-inline { width: 1.05rem; height: 1.05rem; }
.footer__paws .paw-inline:nth-child(2) { transform: rotate(14deg) translateY(-2px); }
.footer__paws .paw-inline:nth-child(1) { transform: rotate(-10deg); }

.footer__legal { font-size: 0.82rem; opacity: 0.75; }
.footer__legal a { color: var(--amber); }

.footer__sign {
  font-family: var(--f-hand);
  font-size: 1.5rem;
  color: var(--amber);
}

/* ---------- reveal animations ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.js .reveal.in { opacity: 1; transform: none; }
.js .d1 { transition-delay: 0.08s; }
.js .d2 { transition-delay: 0.18s; }
.js .d3 { transition-delay: 0.3s; }
.js .d4 { transition-delay: 0.44s; }
.js .d5 { transition-delay: 0.58s; }

/* keep transforms on decorated elements when revealed */
.js .polaroid--1.reveal { transform: translateY(26px) rotate(-3.5deg); }
.js .polaroid--1.reveal.in { transform: rotate(-3.5deg); }
.js .polaroid--2.reveal { transform: translateY(26px) rotate(2.5deg); }
.js .polaroid--2.reveal.in { transform: rotate(2.5deg); }
.js .stamp--about.reveal { transform: translateY(26px) rotate(12deg); }
.js .stamp--about.reveal.in { transform: rotate(12deg); }

@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;
  }
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------- screenshot/dev mode (?shot=1): freeze viewport-relative layout ---------- */
html.shotmode .hero { min-height: 880px; }
html.shotmode .hero__photo img { animation: none; }
html.shotmode .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
html.shotmode .polaroid--1.reveal { transform: rotate(-3.5deg) !important; }
html.shotmode .polaroid--2.reveal { transform: rotate(2.5deg) !important; }
html.shotmode .stamp--about.reveal { transform: rotate(12deg) !important; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { columns: 2; }
}

@media (max-width: 860px) {
  .nav__links {
    position: fixed;
    inset: 0;
    background: var(--parchment);
    color: var(--ink);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.8rem;
    font-size: 1.3rem;
    transform: translateY(-102%);
    visibility: hidden; /* keep closed-menu links out of the tab order */
    transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0s 0.35s;
    z-index: -1;
  }
  .nav__links a { font-size: 1.35rem; }
  .nav.menu-open .nav__links {
    transform: translateY(0);
    visibility: visible;
    transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0s 0s;
  }
  .nav.menu-open { color: var(--ink); }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }

  .about__grid { grid-template-columns: 1fr; }
  .about__photos { min-height: 460px; margin-top: 1rem; }

  .grooming { grid-template-columns: 1fr; }
  .grooming__photos { max-width: 380px; }
  .grooming__stamp { position: static; display: inline-block; width: max-content; justify-self: start; margin-bottom: 0.4rem; transform: rotate(-3deg); }

  .reviews__grid { grid-template-columns: 1fr; }
  .community__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__form { transform: none; margin-top: 1rem; }

  .hero__badge { display: none; }
  .paw-trail { display: none; }
}

@media (max-width: 560px) {
  .services__grid { grid-template-columns: 1fr; }
  .gallery__grid { columns: 1; }
  .hero__title-k9 { letter-spacing: 0.34em; text-indent: 0.34em; }
  .hero__scroll { display: none; }
  .br-desk { display: none; }
}
