/* Henry’s Dog Walking Selby — premium local service
   Light (cream day) default · dark (woodland night) via data-theme */

:root,
html[data-theme="light"] {
  color-scheme: light;
  --bg: #f7f3ec;
  --surface: #ffffff;
  --ink: #1f2a24;
  --primary: #3d6b4f;
  --primary-hover: #2f5640;
  --on-primary: #ffffff;
  --accent: #c46a3a;
  --accent-soft: #f3e4da;
  --soft: #e4ede6;
  --muted: #6b756e;
  --dark: #1a2a22;
  --line: rgba(31, 42, 36, 0.1);
  --shadow: 0 8px 28px rgba(31, 42, 36, 0.08);
  --shadow-lift: 0 18px 40px rgba(31, 42, 36, 0.14);
  --header-bg: rgba(247, 243, 236, 0.94);
  --form-focus-bg: #ffffff;
  --focus-ring: rgba(61, 107, 79, 0.2);
  --primary-glow: rgba(61, 107, 79, 0.25);
  --promo-bg: #1a221c;
  --cert-bg: #f7f7f5;
  --featured-border: rgba(61, 107, 79, 0.28);
  --phone-border: rgba(196, 106, 58, 0.4);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --radius: 16px;
  --radius-btn: 999px;
  --wrap: 1140px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 80px;
  --mobile-bar: 68px;
  --hero-shade:
    linear-gradient(105deg, rgba(20, 32, 26, 0.88) 0%, rgba(20, 32, 26, 0.5) 46%, rgba(20, 32, 26, 0.18) 100%),
    linear-gradient(to top, rgba(20, 32, 26, 0.72) 0%, transparent 48%);
  --cta-band: linear-gradient(125deg, var(--primary) 0%, #2a4d3a 55%, #3d6b4f 100%);
}

/* Woodland night — deep green-ink, not pure black */
html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #121a16;
  --surface: #1a2420;
  --ink: #eef3ef;
  --primary: #6f9f7e;
  --primary-hover: #88b595;
  --on-primary: #0c1210;
  --accent: #e0a07a;
  --accent-soft: rgba(224, 160, 122, 0.16);
  --soft: #243029;
  --muted: #9aaba0;
  --dark: #0c1210;
  --line: rgba(238, 243, 239, 0.1);
  --shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
  --shadow-lift: 0 16px 40px rgba(0, 0, 0, 0.42);
  --header-bg: rgba(18, 26, 22, 0.92);
  --form-focus-bg: #1a2420;
  --focus-ring: rgba(111, 159, 126, 0.28);
  --primary-glow: rgba(111, 159, 126, 0.3);
  --promo-bg: #0e1512;
  --cert-bg: #1a2420;
  --featured-border: rgba(111, 159, 126, 0.4);
  --phone-border: rgba(224, 160, 122, 0.45);
  --hero-shade:
    linear-gradient(105deg, rgba(8, 12, 10, 0.9) 0%, rgba(8, 12, 10, 0.55) 46%, rgba(8, 12, 10, 0.28) 100%),
    linear-gradient(to top, rgba(8, 12, 10, 0.78) 0%, transparent 48%);
  --cta-band: linear-gradient(125deg, #2f5640 0%, #1a2a22 55%, #3d6b4f 100%);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--mobile-bar);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

@media (min-width: 720px) {
  body { padding-bottom: 0; }
}

img { max-width: 100%; display: block; }
a { color: var(--primary); }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--primary);
  color: var(--on-primary);
  padding: 0.5rem 1rem;
  z-index: 200;
}
.skip:focus { left: 0.5rem; top: 0.5rem; }

.wrap {
  width: min(var(--wrap), calc(100% - 2rem));
  margin-inline: auto;
}
.wrap-wide {
  width: min(1200px, calc(100% - 2rem));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--ink);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--header-h);
  padding: 0.35rem 0;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-plate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  line-height: 0;
}
.brand-logo {
  height: 52px;
  width: 52px;
  max-width: none;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0;
}
.logo-plate { position: relative; }
.brand-logo-dark {
  display: none;
  position: absolute;
  inset: 0;
  margin: auto;
}
html[data-theme="dark"] .brand-logo-light { visibility: hidden; }
html[data-theme="dark"] .brand-logo-dark { display: block; }
@media (min-width: 720px) {
  .brand-logo { height: 64px; width: 64px; }
}
.brand-logo-footer {
  height: 72px;
  width: 72px;
  max-width: none;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0;
}

/* Theme toggle */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s var(--ease), border-color 0.15s var(--ease), transform 0.15s var(--ease);
}
.theme-toggle:hover {
  border-color: var(--primary);
  background: var(--soft);
  transform: translateY(-1px);
}
.theme-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--focus-ring);
}
.theme-toggle svg {
  width: 18px;
  height: 18px;
  display: block;
}
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
html[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
html[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
@media (max-width: 380px) {
  .theme-toggle { width: 36px; height: 36px; }
}

.nav {
  display: none;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.92rem;
  font-weight: 600;
}
.nav a {
  text-decoration: none;
  color: var(--ink);
  transition: color 0.15s var(--ease);
}
.nav a:hover { color: var(--primary); }
.nav-cta {
  background: var(--primary);
  color: var(--on-primary) !important;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-btn);
  box-shadow: 0 4px 14px var(--primary-glow);
}
.nav-cta:hover { background: var(--primary-hover) !important; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.phone-pill {
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--accent);
  border: 1.5px solid var(--phone-border);
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-btn);
  white-space: nowrap;
}
.phone-pill:hover { background: var(--accent-soft); }
.header-book {
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--on-primary);
  background: var(--primary);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-btn);
}
@media (min-width: 720px) {
  .header-book { display: inline-flex; }
  .phone-pill { font-size: 0.88rem; padding: 0.5rem 0.9rem; }
}
/* Full primary nav only when there is room (design review) */
@media (min-width: 980px) {
  .nav { display: flex; }
  .header-book { display: none; }
  .nav-toggle { display: none; }
}

/* Mobile / tablet menu toggle + drawer */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle:hover { border-color: var(--primary); background: var(--soft); }
.nav-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--focus-ring);
}
.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.5rem 1rem 1rem;
  border-top: 1px solid var(--line);
  background: var(--header-bg);
  backdrop-filter: blur(16px);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 0.85rem 0.5rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.02rem;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--primary); }
.mobile-nav-cta {
  margin-top: 0.35rem;
  text-align: center;
  background: var(--primary);
  color: var(--on-primary) !important;
  border-radius: var(--radius-btn);
  border-bottom: none !important;
}
.mobile-nav-phone {
  text-align: center;
  color: var(--accent) !important;
  font-size: 0.95rem !important;
  border-bottom: none !important;
}
body.nav-open { overflow: hidden; }
@media (min-width: 980px) {
  .mobile-nav,
  .mobile-nav.is-open { display: none !important; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.4rem;
  min-height: 52px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.18s var(--ease), background 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--primary);
  color: var(--on-primary);
  box-shadow: 0 6px 20px var(--primary-glow);
}
.btn-primary:hover { background: var(--primary-hover); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}
.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
  min-height: 44px;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  margin-top: 1rem;
  align-self: flex-start;
}
.btn-ghost-dark:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--soft);
}
.btn-light {
  background: var(--surface);
  color: var(--primary);
  box-shadow: var(--shadow);
}
.btn.full { width: 100%; }

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 880px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: var(--hero-shade);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 0 3.5rem;
  max-width: 40rem;
}
.hero .eyebrow { color: #f0c9a8; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  margin: 0 0 1.1rem;
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: #f5e6d4;
}
.lead {
  margin: 0 0 1.6rem;
  font-size: 1.14rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.93);
  max-width: 32rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.trust-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-btn);
  backdrop-filter: blur(6px);
}
.trust-row li svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.trust-row .trust-link {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}
.trust-row .trust-link:hover {
  text-decoration: underline;
}

/* Strip marquee */
.strip {
  background: var(--dark);
  color: #fff;
  padding: 0.95rem 0;
  overflow: hidden;
}
.strip-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee 32s linear infinite;
  font-size: 0.9rem;
  font-weight: 600;
}
.strip-track span {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  opacity: 0.92;
}
.strip-track .dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  font-style: normal;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .strip-track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
    gap: 0.75rem 1.5rem;
  }
}

/* Sections */
.section { padding: 3.5rem 0; }
.section.soft { background: var(--soft); }
@media (min-width: 720px) {
  .section { padding: 6rem 0; }
}
.hero-response {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.01em;
}
.hero-price {
  margin: 0.85rem 0 0;
  font-weight: 700;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.01em;
}
.section-lead.how-lead { margin-top: 0.75rem; }
.price-note {
  font-style: normal;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--muted);
}
.section-head {
  max-width: 28rem;
  margin-bottom: 2.75rem;
}
.section-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2.05rem, 3.9vw, 2.85rem);
}
.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

/* Promo video */
.promo-player {
  max-width: 920px;
  margin: 0 auto;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  background: var(--promo-bg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
}
.promo-player video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: var(--promo-bg);
}

/* Service cards — full bleed photos */
.cards {
  display: grid;
  gap: 1.35rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.card.featured {
  border-color: var(--featured-border);
  box-shadow: var(--shadow-lift);
  position: relative;
}
.card.featured::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary);
  border-radius: calc(var(--radius) + 4px) 0 0 calc(var(--radius) + 4px);
  z-index: 1;
}
.card-photo picture {
  display: block;
  width: 100%;
  height: 100%;
}
.card-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--dark);
  /* Match card top corners so every placement photo clips the same */
  border-radius: calc(var(--radius) + 4px) calc(var(--radius) + 4px) 0 0;
  /* Kill hairline light fringes at rounded corners */
  isolation: isolate;
  transform: translateZ(0);
}
.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transition: transform 0.45s var(--ease);
  display: block;
  /* Slight overscan so cover never leaves a 1px white/light edge */
  transform: scale(1.02);
  transform-origin: center center;
  border-radius: inherit;
  backface-visibility: hidden;
}
.card-photo img.card-photo-faces {
  object-position: center 28%;
}
.card:hover .card-photo img { transform: scale(1.06); }
/* Label under photo — not a clay box on the image */
.card-label {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.card-body {
  padding: 1.5rem 1.5rem 1.55rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.45rem;
}
.price {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--ink);
}
.price span {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}
.price-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0 0 0.85rem;
  padding: 0.75rem 0.9rem;
  background: var(--soft);
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--ink);
}
.price-list span {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.price-list strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent);
  min-width: 2.4rem;
}
.card p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.98rem;
  flex: 1;
}
.card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
}
.card li {
  display: flex;
  gap: 0.45rem;
  padding: 0.28rem 0;
}
.card li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 0.5rem;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  opacity: 0.7;
}
.fine {
  margin: 1.6rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* How it works */
.split { padding: 3.25rem 0; }
@media (min-width: 720px) {
  .split { padding: 5.5rem 0; }
}
.split-grid {
  display: grid;
  gap: 2.75rem;
  align-items: center;
}
.split-media {
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: min(520px, 70vh);
}
.split-media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.split-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 45%;
}
.split-media .float-chip {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--surface);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow);
}
.steps {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}
.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
  box-shadow: var(--shadow);
  transition: transform 0.18s var(--ease);
}
.steps li:hover { transform: translateY(-2px); }
.step-n {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--primary);
  opacity: 0.45;
  line-height: 1;
}
.steps h3 { margin: 0 0 0.25rem; font-size: 1.15rem; }
.steps p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* Areas */
.areas-wrap {
  position: relative;
}
.areas-wrap::before {
  content: "";
  position: absolute;
  inset: -1rem -0.5rem;
  background:
    radial-gradient(ellipse 70% 80% at 20% 50%, rgba(61, 107, 79, 0.07), transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 40%, rgba(196, 106, 58, 0.05), transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.areas {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.areas span {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 0.55rem 1rem;
  border-radius: var(--radius-btn);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  transition: background 0.15s var(--ease), color 0.15s var(--ease), transform 0.15s var(--ease);
}
.areas span.home {
  background: var(--primary);
  color: var(--on-primary);
  border-color: var(--primary);
}
.areas span:hover {
  background: var(--soft);
  color: var(--primary);
  transform: translateY(-1px);
}
.areas span.home:hover {
  background: var(--primary-hover);
  color: var(--on-primary);
}

/* About — one restrained portrait for trust, not a photo takeover */
.about { padding: 3.25rem 0; background: var(--surface); }
@media (min-width: 720px) {
  .about { padding: 5.5rem 0; }
}
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.about-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  max-width: 360px;
  max-height: min(450px, 60vh);
  margin-inline: auto;
  border: 1px solid var(--line);
}
.about-media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.about-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 42%;
}
.about-copy h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
}
.about-tagline {
  margin: 0 0 1rem;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.02rem;
}
.about-copy p { color: var(--muted); margin: 0 0 1rem; }
.quote {
  margin: 1.25rem 0;
  padding: 1.1rem 1.2rem 1.1rem 1.35rem;
  border-left: 3px solid var(--accent);
  background: var(--soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.4;
  box-shadow: var(--shadow);
}
.quote cite {
  display: block;
  margin-top: 0.65rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.checklist {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr 1fr;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--soft);
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
}
.checklist li svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}
.creds {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow);
}
.cred-badge {
  width: 88px;
  height: 88px;
  object-fit: contain;
  flex-shrink: 0;
}
.cred-copy {
  min-width: 0;
}
.cred-title {
  margin: 0 0 0.25rem !important;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink) !important;
}
.cred-meta {
  margin: 0 !important;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.4;
}
.about-copy p strong {
  color: var(--ink);
  font-weight: 700;
}
.about-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.25rem 0 0;
  align-items: center;
}
.cert-figure {
  margin: 1.25rem 0 0;
  padding: 0;
}
.cert-figure a {
  display: block;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--cert-bg);
  transition: box-shadow 0.18s var(--ease), transform 0.18s var(--ease);
}
.cert-figure a:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}
.cert-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  object-position: top center;
  background: var(--cert-bg);
}
.cert-figure figcaption {
  margin-top: 0.55rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}

/* Gallery — equal tiles in rows + lightbox (not auto-slideshow) */
.gallery {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.gallery-item {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--dark);
  /* Same size for every non-hero tile so rows line up */
  aspect-ratio: 4 / 5;
  /* Allow grid tracks to shrink below image intrinsic size */
  min-width: 0;
  min-height: 0;
  width: 100%;
  max-width: 100%;
}
.gallery-open {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  text-align: left;
  color: inherit;
  font: inherit;
  position: relative;
  overflow: hidden;
}
.gallery-open picture {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 0;
  min-width: 0;
  max-width: 100%;
  display: block;
  object-fit: cover;
  object-position: center 35%;
  transition: transform 0.4s var(--ease);
}
/* Face-forward: mild top bias so heads stay in frame without over-zoom */
.gallery-item-faces img {
  object-position: center 22%;
}
/* Face low in frame (e.g. dog lying down) — keep bottom of photo */
.gallery-item-face-low img {
  object-position: center 72%;
}
/* Slightly pulled-back pair / full-body shots */
.gallery-item-pair img {
  object-position: center 40%;
}
/* Zoom out — show full subjects (no cover crop) while keeping the same tile size */
.gallery-item-fit {
  background: var(--soft);
}
.gallery-item-fit .gallery-open {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--soft);
}
.gallery-item-fit img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain !important;
  object-position: center center !important;
}
.gallery-item:hover img,
.gallery-open:focus-visible img { transform: scale(1.03); }
.gallery-open:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}
.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 2rem 0.9rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(transparent, rgba(20, 32, 26, 0.72));
  pointer-events: none;
}
.gallery-wide {
  grid-column: 1 / -1;
  /* Taller on mobile so the whole pack (incl. brown vizsla) stays in frame */
  aspect-ratio: 5 / 4;
  min-height: 0;
}
/* Mobile 2-col: after full-width hero tile, an odd last tile sits alone on the left — centre it */
@media (max-width: 719px) {
  .gallery > .gallery-item:last-child:nth-child(even) {
    grid-column: 1 / -1;
    width: calc((100% - 0.75rem) / 2);
    max-width: 100%;
    justify-self: center;
  }
}
.gallery-wide img {
  min-height: 0;
  aspect-ratio: auto;
  /* Anchor on the pack — not too low (cuts heads) or high (cuts dogs) */
  object-position: center 38%;
}
.gallery-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  margin: 1.75rem 0 0;
  text-align: center;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(12, 18, 16, 0.92);
  backdrop-filter: blur(8px);
}
.lightbox[hidden] { display: none !important; }
.lightbox-figure {
  margin: 0;
  max-width: min(960px, 100%);
  max-height: min(90vh, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-figure img {
  max-width: 100%;
  max-height: min(80vh, 900px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  background: #0c1210;
}
.lightbox-figure figcaption {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.22); }
.lightbox-nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.22); }
@media (max-width: 640px) {
  .lightbox-nav { display: none; }
}

/* Testimonials */
.reviews-head { max-width: 32rem; }
.review-summary {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.85rem;
  margin-top: 1.15rem;
  padding: 0.65rem 1.05rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-btn);
  font-size: 0.9rem;
  color: var(--muted);
  box-shadow: var(--shadow);
}
.review-summary strong { color: var(--ink); }
.review-stars { color: #e6a817; letter-spacing: 0.06em; }

.testimonials {
  display: grid;
  gap: 1.15rem;
}
.testimonial {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.5rem 1.4rem 1.35rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: 0.6rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.22;
}
.testimonial blockquote { margin: 0; padding: 0; border: 0; flex: 1; }
.testimonial blockquote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
}
.testimonial figcaption {
  margin-top: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
  display: block;
}
.testimonial-source {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

/* Review proof — one primary Google action + light secondary links */
.review-proof {
  margin-top: 1.75rem;
  display: grid;
  gap: 0.85rem;
  max-width: 36rem;
}
.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), border-color 0.18s var(--ease);
}
.social-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}
.social-card-primary {
  border-color: var(--featured-border);
}
.social-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg);
}
.social-card strong { display: block; font-size: 1.02rem; }
.social-meta {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 0.12rem;
}
.social-arrow {
  margin-left: auto;
  color: var(--muted);
  font-weight: 600;
  font-size: 1.2rem;
}
.review-proof-more {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 500;
}
.review-proof-more a {
  font-weight: 700;
  text-decoration: none;
  color: var(--primary);
}
.review-proof-more a:hover { text-decoration: underline; }
.review-proof-sep {
  margin: 0 0.25rem;
  opacity: 0.55;
}

/* Promo follow-up CTA */
.promo-cta {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}
.promo-cta-note {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}
.promo-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* CTA band */
.cta-band {
  background: var(--cta-band);
  color: #fff;
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  right: -80px;
  top: -100px;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}
.cta-inner h2 {
  color: #fff;
  margin: 0 0 0.4rem;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}
.cta-inner p {
  margin: 0;
  opacity: 0.93;
  max-width: 34rem;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}
.contact-phone {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
  margin: 0.25rem 0 0.15rem;
}
.contact-phone-hint {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
}
/* Equal, labelled contact options — not a mystery green block */
.contact-quick {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 0.35rem 0 1.35rem;
  max-width: 28rem;
}
.quick-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  padding: 0.75rem 0.85rem;
  min-height: 64px;
  border-radius: 14px;
  border: 1.5px solid var(--line);
  background: var(--surface);
  text-decoration: none !important;
  color: var(--ink) !important;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: border-color 0.15s var(--ease), transform 0.15s var(--ease), background 0.15s var(--ease);
}
.quick-btn:hover {
  border-color: var(--primary);
  background: var(--soft);
  transform: translateY(-1px);
}
.quick-label {
  font-size: 0.95rem;
  color: var(--primary);
}
.quick-sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.01em;
}
@media (max-width: 420px) {
  .contact-quick { grid-template-columns: 1fr; max-width: none; }
  .quick-btn { min-height: 52px; flex-direction: row; align-items: center; gap: 0.65rem; }
}
.contact-details p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.98rem;
}
.contact-details strong {
  color: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-details a {
  font-weight: 700;
  text-decoration: none;
  color: var(--primary);
}
.faq {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.5rem;
}
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 1rem;
}
.faq summary {
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
}
.faq details p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.6rem;
  display: grid;
  gap: 0.9rem;
  box-shadow: var(--shadow-lift);
}
.form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 700;
}
.form input,
.form textarea {
  font: inherit;
  padding: 0.85rem 0.95rem;
  min-height: 52px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.form textarea { min-height: 120px; }
.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--form-focus-bg);
  box-shadow: 0 0 0 3px var(--focus-ring);
}
.form-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem 0 2.75rem;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}
.footer-logo-plate {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.footer-note { margin: 0; font-size: 0.88rem; }
.footer-seo {
  margin-top: 0.65rem !important;
  font-size: 0.8rem !important;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
}
.footer-seo a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}
.footer-seo a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-credit {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}
.footer-credit a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}
.footer-credit a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.7);
}
.lead strong {
  color: inherit;
  font-weight: 700;
}
.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
}
.footer-trust span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-btn);
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 0.85rem;
}
.footer-social a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.footer-social a:hover {
  color: #fff;
  border-bottom-color: #fff;
}

/* Walk video */
.video-wrap { max-width: 900px; }
.video-frame {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 1px solid var(--line);
  background: var(--dark);
}
.walk-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: #0c1210;
  vertical-align: middle;
}

/* Enquiry form dual actions */
.form-actions {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.25rem;
}
.form-actions .btn.full { width: 100%; }
@media (min-width: 520px) {
  .form-actions {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile sticky conversion bar */
.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  gap: 0.45rem;
  padding: 0.65rem 0.75rem calc(0.65rem + env(safe-area-inset-bottom));
  background: var(--header-bg);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px var(--shadow);
}
.mobile-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
}
.mobile-bar .mb-call {
  color: var(--ink);
  border: 1.5px solid var(--line);
  background: var(--surface);
}
.mobile-bar .mb-wa {
  color: var(--primary);
  border: 1.5px solid var(--featured-border);
  background: var(--surface);
}
.mobile-bar .mb-book {
  color: var(--on-primary);
  background: var(--primary);
  box-shadow: 0 4px 14px var(--primary-glow);
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  align-items: center;
}
.cta-soft-link {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-color: rgba(255, 255, 255, 0.45);
}
.cta-soft-link:hover {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.85);
}
.btn-light-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-btn);
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  background: transparent;
}
.btn-light-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}
@media (min-width: 720px) {
  .mobile-bar { display: none; }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Responsive */
@media (min-width: 720px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
  .split-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }
  .about-grid {
    grid-template-columns: minmax(220px, 300px) 1fr;
    gap: 3rem;
    align-items: start;
  }
  .about-media {
    margin-inline: 0;
    max-width: 300px;
  }
  .cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .contact-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 3rem;
    align-items: start;
  }
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .testimonials { grid-template-columns: repeat(3, 1fr); }
  .review-proof { max-width: 28rem; }
  .promo-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
  /* Equal columns so every small tile is the same size (tidy bottom row) */
  .gallery {
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: auto;
    min-height: 0;
    align-items: start;
  }
  .gallery-wide {
    grid-column: 1;
    grid-row: 1 / span 2;
    aspect-ratio: auto;
    min-height: 0;
    height: 100%;
    align-self: stretch;
  }
  .gallery-wide img {
    height: 100%;
    min-height: 100%;
    /* Keep brown vizsla + whole pack visible in the tall left panel */
    object-position: center 42%;
  }
  .gallery-item:not(.gallery-wide) {
    aspect-ratio: 4 / 5;
    min-width: 0;
    width: 100%;
    height: auto;
    align-self: start;
  }
  .gallery-item img {
    min-height: 0;
    min-width: 0;
    height: 100%;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
  }
  .gallery-item-faces img {
    object-position: center 22%;
  }
  .gallery-item-face-low img {
    object-position: center 72%;
  }
  .gallery-item-pair img {
    object-position: center 40%;
  }
  .gallery-item-fit img {
    object-fit: contain !important;
    object-position: center center !important;
  }
}

@media (max-width: 520px) {
  .checklist { grid-template-columns: 1fr; }
  .hero { min-height: min(88vh, 720px); }
}

/* Legal pages (privacy / terms) */
.legal-page .nav { display: none; }
.legal-main {
  padding: 2.5rem 0 4rem;
  min-height: 60vh;
}
.legal-wrap {
  max-width: 42rem;
}
.legal-wrap h1 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.4rem);
  line-height: 1.2;
}
.legal-updated {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
}
.legal-wrap h2 {
  margin: 1.75rem 0 0.6rem;
  font-size: 1.15rem;
  font-family: var(--font-display);
}
.legal-wrap p,
.legal-wrap li {
  color: var(--muted);
  font-size: 1rem;
}
.legal-wrap ul {
  padding-left: 1.2rem;
  margin: 0.5rem 0 1rem;
}
.legal-wrap li { margin-bottom: 0.4rem; }
.legal-wrap a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-note {
  margin-top: 2rem;
  padding: 1rem 1.1rem;
  background: var(--soft);
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 0.92rem !important;
}
.legal-back { margin-top: 2rem; }
.legal-page .site-footer {
  padding: 1.5rem 0 calc(1.5rem + env(safe-area-inset-bottom));
}
.legal-page .footer-inner {
  justify-content: flex-start;
}
.legal-page .footer-note a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  margin: 0 0.25rem;
}

/* Slightly taller mobile bar on notched phones */
@media (max-width: 719px) {
  :root { --mobile-bar: calc(72px + env(safe-area-inset-bottom)); }
}
