/* =================================================================
   Cooperhaus K9 — styles
   Palette: deep warm charcoal base · amber accent · bone surfaces
   Type: Oswald (display) · Inter (body)
   ================================================================= */

/* ---------- Tokens ---------- */
:root {
  --ink:        #17140f;   /* near-black, warm */
  --ink-800:    #211c16;
  --ink-700:    #2c261e;
  --ink-600:    #3a332a;
  --line:       #4a4234;   /* hairlines on dark */

  --bone:       #f4efe6;   /* primary off-white surface */
  --bone-200:   #ece4d6;
  --bone-300:   #ddd2bf;
  --paper:      #fbf8f2;

  --amber:      #c98521;   /* confident accent */
  --amber-600:  #b3711a;   /* hover */
  --amber-300:  #e6a948;
  --amber-100:  #f0d39b;

  --tan:        #9a8260;   /* muted secondary text on dark */
  --tan-ink:    #6b5a3f;   /* secondary text on light */

  --text-on-dark:   #efe9dd;
  --text-on-dark-2: #c3b8a3;
  --text-on-light:  #2a241c;
  --text-on-light-2:#5f5848;

  --maxw: 1200px;
  --gut: clamp(20px, 5vw, 64px);

  --r-sm: 6px;
  --r:    12px;
  --r-lg: 20px;

  --shadow: 0 18px 48px -22px rgba(20, 14, 4, .55);
  --shadow-sm: 0 8px 24px -16px rgba(20, 14, 4, .5);

  --ease: cubic-bezier(.22,.61,.36,1);

  --ff-display: "Oswald", system-ui, "Segoe UI", sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--ff-body);
  background: var(--bone);
  color: var(--text-on-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
:focus-visible {
  outline: 3px solid var(--amber-300);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ---------- Helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.eyebrow {
  font-family: var(--ff-display);
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--amber-600);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--amber);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--amber-300); }
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--amber); color: var(--ink);
  padding: 12px 18px; border-radius: var(--r-sm);
  font-weight: 700; z-index: 200;
  transition: top .18s var(--ease);
}
.skip-link:focus { top: 12px; }

h1, h2, h3 { font-family: var(--ff-display); font-weight: 600; line-height: 1.04; letter-spacing: -.005em; }
h2.section-title {
  font-size: clamp(2rem, 1.2rem + 3.2vw, 3.3rem);
  text-transform: uppercase;
  letter-spacing: .005em;
  color: var(--text-on-light);
  text-wrap: balance;
}
.section-head { max-width: 720px; }
.section-head p { margin-top: 14px; color: var(--text-on-light-2); font-size: 1.08rem; }
.section { padding-block: clamp(64px, 9vw, 120px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .55em;
  font-family: var(--ff-display);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .98rem;
  padding: 15px 26px;
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  text-decoration: none;
  transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--amber); color: #211400; border-color: var(--amber); }
.btn-primary:hover { background: var(--amber-600); border-color: var(--amber-600); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--text-on-dark); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--amber-300); color: #fff; transform: translateY(-2px); }
.btn-ghost-dark { background: transparent; color: var(--text-on-light); border-color: var(--bone-300); }
.btn-ghost-dark:hover { border-color: var(--amber); color: var(--ink); transform: translateY(-2px); }
.btn-lg { padding: 18px 32px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--ink) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.scrolled {
  background: color-mix(in srgb, var(--ink) 96%, transparent);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -20px rgba(0,0,0,.8);
}
.nav {
  display: flex; align-items: center; gap: 22px;
  padding-block: 14px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--text-on-dark);
  margin-right: auto;
}
.brand .mark { width: 40px; height: 40px; flex: none; }
.brand .word { display: flex; flex-direction: column; line-height: 1; }
.brand .word b {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 1.32rem; letter-spacing: .04em; text-transform: uppercase; color: #fff;
}
.brand .word span {
  font-size: .64rem; letter-spacing: .34em; text-transform: uppercase;
  color: var(--amber-300); margin-top: 3px;
}
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; padding: 0; }
.nav-links a {
  text-decoration: none; color: var(--text-on-dark-2);
  font-size: .92rem; font-weight: 500;
  padding: 9px 13px; border-radius: var(--r-sm);
  transition: color .15s var(--ease), background .15s var(--ease);
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.06); }
/* The button inside the link list is for the mobile menu only — the canonical
   desktop CTA lives in .nav-cta. Hide the duplicate on desktop. */
.nav-links > li.nav-links-cta { display: none; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--text-on-dark);
  font-family: var(--ff-display); font-weight: 600; letter-spacing: .02em;
  font-size: 1rem;
}
.nav-phone svg { width: 17px; height: 17px; color: var(--amber-300); }
.nav-phone:hover { color: var(--amber-300); }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  background: transparent; border: 1px solid var(--line);
  border-radius: var(--r-sm);
  align-items: center; justify-content: center;
  color: var(--text-on-dark);
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .ico-close { display: none; }
.nav-toggle[aria-expanded="true"] .ico-open { display: none; }
.nav-toggle[aria-expanded="true"] .ico-close { display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate;
  color: var(--text-on-dark);
  overflow: hidden;
  background: var(--ink);
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media .ph { width: 100%; height: 100%; border-radius: 0; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(15,12,8,.55) 0%, rgba(15,12,8,.35) 35%, rgba(15,12,8,.85) 100%),
    linear-gradient(90deg, rgba(15,12,8,.92) 0%, rgba(15,12,8,.55) 45%, rgba(15,12,8,.25) 100%);
}
.hero-inner { padding-block: clamp(72px, 13vw, 156px); max-width: 760px; }
.hero h1 {
  font-size: clamp(2.6rem, 1.4rem + 5.4vw, 5rem);
  text-transform: uppercase;
  color: #fff;
  margin-top: 22px;
  text-wrap: balance;
}
.hero h1 .accent { color: var(--amber-300); }
.hero .sub {
  font-size: clamp(1.05rem, .98rem + .5vw, 1.3rem);
  color: var(--text-on-dark-2);
  margin-top: 22px; max-width: 600px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-micro {
  margin-top: 22px;
  font-size: .92rem; color: var(--text-on-dark-2);
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.hero-micro .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--amber); }

/* ---------- Trust strip ---------- */
.trust {
  background: var(--ink-800);
  border-top: 1px solid var(--line);
  color: var(--text-on-dark);
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding-block: 40px;
}
.trust-item { padding-inline: 26px; position: relative; }
.trust-item + .trust-item::before {
  content: ""; position: absolute; left: 0; top: 6px; bottom: 6px;
  width: 1px; background: var(--line);
}
.trust-item .n {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(1.9rem, 1.3rem + 1.6vw, 2.6rem);
  color: var(--amber-300); line-height: 1;
}
.trust-item .l { margin-top: 8px; font-size: .92rem; color: var(--text-on-dark-2); letter-spacing: .01em; }

/* ---------- Services ---------- */
.services { background: var(--bone); }
.service-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; margin-top: 52px;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--bone-300);
  border-radius: var(--r);
  padding: 30px 28px 26px;
  display: flex; flex-direction: column;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--amber); }
.service-icon {
  width: 52px; height: 52px; border-radius: var(--r-sm);
  background: var(--ink); color: var(--amber-300);
  display: grid; place-items: center; margin-bottom: 20px;
}
.service-icon svg { width: 27px; height: 27px; }
.service-card h3 {
  font-size: 1.42rem; text-transform: uppercase; letter-spacing: .01em;
  color: var(--text-on-light);
}
.service-card p { margin-top: 12px; color: var(--text-on-light-2); font-size: .98rem; flex: 1; }
.service-link {
  margin-top: 20px; align-self: flex-start;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--amber-600);
  font-family: var(--ff-display); font-weight: 600; text-transform: uppercase;
  font-size: .9rem; letter-spacing: .05em;
}
.service-link svg { width: 15px; height: 15px; transition: transform .18s var(--ease); }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ---------- Approach ---------- */
.approach { background: var(--ink); color: var(--text-on-dark); }
.approach .section-title { color: #fff; }
.approach .section-head p { color: var(--text-on-dark-2); }
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 26px; margin-top: 56px; counter-reset: step;
}
.step { position: relative; padding-top: 28px; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--ff-display); font-weight: 700;
  font-size: 3.4rem; color: var(--ink-600);
  line-height: 1; display: block; margin-bottom: 14px;
}
.step .bar { width: 46px; height: 3px; background: var(--amber); margin-bottom: 18px; }
.step h3 { font-size: 1.5rem; text-transform: uppercase; color: #fff; }
.step p { margin-top: 10px; color: var(--text-on-dark-2); }

/* ---------- Our Dogs / Breeding ---------- */
.dogs { background: var(--bone-200); }
.dogs-split {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 64px); align-items: center;
}
.dogs-media { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dogs-media .ph:first-child { grid-column: 1 / -1; aspect-ratio: 16/10; }
.dogs-media .ph { aspect-ratio: 4/5; }
.dogs-copy h2 { color: var(--text-on-light); }
.dogs-copy p { margin-top: 16px; color: var(--text-on-light-2); font-size: 1.06rem; }
.adopt-callout {
  margin-top: 28px;
  background: var(--ink); color: var(--text-on-dark);
  border-radius: var(--r); padding: 24px 26px;
  display: flex; gap: 18px; align-items: center;
}
.adopt-callout .ic {
  flex: none; width: 48px; height: 48px; border-radius: var(--r-sm);
  background: var(--amber); color: #211400; display: grid; place-items: center;
}
.adopt-callout .ic svg { width: 26px; height: 26px; }
.adopt-callout h3 { font-size: 1.18rem; text-transform: uppercase; color: #fff; }
.adopt-callout p { margin-top: 4px; font-size: .95rem; color: var(--text-on-dark-2); }

/* ---------- About ---------- */
.about { background: var(--bone); }
.about-split {
  display: grid; grid-template-columns: .95fr 1.05fr;
  gap: clamp(28px, 5vw, 64px); align-items: center;
}
.about-media .ph { aspect-ratio: 4/3; }
.about-copy p { color: var(--text-on-light-2); font-size: 1.1rem; margin-top: 18px; }
.about-copy p.lead {
  font-family: var(--ff-display); font-weight: 500;
  font-size: clamp(1.3rem, 1rem + 1vw, 1.7rem);
  line-height: 1.3; color: var(--text-on-light); letter-spacing: -.01em;
}
.gens { display: flex; gap: 26px; margin-top: 30px; flex-wrap: wrap; }
.gens .g { }
.gens .g b { font-family: var(--ff-display); font-weight: 700; font-size: 2rem; color: var(--amber-600); display: block; line-height: 1; }
.gens .g span { font-size: .9rem; color: var(--text-on-light-2); }

/* ---------- Reviews ---------- */
.reviews { background: var(--ink-800); color: var(--text-on-dark); }
.reviews .section-title { color: #fff; }
.reviews-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.yelp-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ink-700); border: 1px solid var(--line);
  border-radius: var(--r); padding: 14px 18px;
}
.yelp-badge .stars { color: var(--amber-300); font-size: 1.1rem; letter-spacing: 2px; }
.yelp-badge .txt b { font-family: var(--ff-display); color: #fff; font-size: 1.1rem; }
.yelp-badge .txt span { display: block; font-size: .8rem; color: var(--text-on-dark-2); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.review-card {
  background: var(--ink-700); border: 1px solid var(--line);
  border-radius: var(--r); padding: 28px 26px;
  display: flex; flex-direction: column;
}
.review-card .stars { color: var(--amber-300); letter-spacing: 2px; font-size: 1rem; }
.review-card blockquote { margin-top: 14px; font-size: 1.04rem; color: var(--text-on-dark); flex: 1; }
.review-card .who { margin-top: 20px; display: flex; align-items: center; gap: 12px; }
.review-card .ava {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--amber); color: #211400; display: grid; place-items: center;
  font-family: var(--ff-display); font-weight: 700; font-size: 1.1rem;
}
.review-card .who b { color: #fff; font-size: .96rem; }
.review-card .who span { display: block; font-size: .8rem; color: var(--text-on-dark-2); }

/* ---------- Visit ---------- */
.visit { background: var(--bone); }
.visit-split { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px,5vw,56px); align-items: stretch; }
.map-ph {
  border-radius: var(--r); overflow: hidden; min-height: 380px;
  position: relative; border: 1px solid var(--bone-300);
}
.map-ph .ph { position: absolute; inset: 0; }
.map-pin {
  position: absolute; left: 50%; top: 48%; transform: translate(-50%,-100%);
  z-index: 2; color: var(--amber); filter: drop-shadow(0 8px 10px rgba(0,0,0,.4));
}
.map-pin svg { width: 46px; height: 46px; }
.visit-info { display: flex; flex-direction: column; gap: 22px; }
.info-card {
  background: var(--paper); border: 1px solid var(--bone-300);
  border-radius: var(--r); padding: 24px 26px;
}
.info-card h3 {
  font-size: 1.05rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--amber-600); font-weight: 600;
}
.info-card .addr { margin-top: 12px; font-size: 1.18rem; color: var(--text-on-light); font-weight: 500; }
.info-card .note { margin-top: 10px; color: var(--text-on-light-2); font-size: .95rem; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 6px; }
.hours-table th, .hours-table td { text-align: left; padding: 11px 0; font-size: 1rem; border-bottom: 1px solid var(--bone-200); }
.hours-table th { font-weight: 500; color: var(--text-on-light); }
.hours-table td { color: var(--text-on-light-2); text-align: right; font-variant-numeric: tabular-nums; }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: none; }

/* ---------- FAQ ---------- */
.faq { background: var(--bone-200); }
.faq-list { margin-top: 44px; max-width: 860px; }
.faq-item {
  border-bottom: 1px solid var(--bone-300);
}
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; gap: 18px;
  padding: 22px 4px;
  font-family: var(--ff-display); font-weight: 500;
  font-size: clamp(1.1rem, 1rem + .4vw, 1.35rem);
  color: var(--text-on-light); text-transform: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .q-ic {
  margin-left: auto; flex: none; width: 30px; height: 30px;
  border: 1.5px solid var(--amber); border-radius: 50%;
  display: grid; place-items: center; color: var(--amber-600);
  transition: transform .25s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.faq-item .q-ic svg { width: 15px; height: 15px; }
.faq-item[open] .q-ic { transform: rotate(45deg); background: var(--amber); color: #211400; }
.faq-item .a { padding: 0 4px 24px; color: var(--text-on-light-2); font-size: 1.05rem; max-width: 720px; }

/* ---------- Contact ---------- */
.contact { background: var(--ink); color: var(--text-on-dark); }
.contact .section-title { color: #fff; }
.contact-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px,5vw,64px); }
.contact-aside p { color: var(--text-on-dark-2); margin-top: 16px; font-size: 1.06rem; }
.contact-points { list-style: none; padding: 0; margin-top: 30px; display: flex; flex-direction: column; gap: 18px; }
.contact-points li { display: flex; align-items: flex-start; gap: 14px; }
.contact-points .ic { flex: none; width: 44px; height: 44px; border-radius: var(--r-sm); background: var(--ink-700); border: 1px solid var(--line); display: grid; place-items: center; color: var(--amber-300); }
.contact-points .ic svg { width: 20px; height: 20px; }
.contact-points b { display: block; color: #fff; font-family: var(--ff-display); font-weight: 500; letter-spacing: .02em; font-size: 1.08rem; }
.contact-points a { color: var(--text-on-dark-2); text-decoration: none; }
.contact-points a:hover { color: var(--amber-300); }
.contact-points span { color: var(--text-on-dark-2); font-size: .95rem; }

.form-card { background: var(--paper); border-radius: var(--r-lg); padding: clamp(26px, 4vw, 40px); color: var(--text-on-light); box-shadow: var(--shadow); }
.form-card h3 { font-size: 1.5rem; text-transform: uppercase; color: var(--text-on-light); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 22px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--text-on-light-2); }
.field input, .field textarea, .field select {
  font: inherit; padding: 13px 14px;
  border: 1.5px solid var(--bone-300); border-radius: var(--r-sm);
  background: #fff; color: var(--text-on-light);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(201,133,33,.18);
}
.form-card .btn { width: 100%; margin-top: 6px; }
.form-note { margin-top: 14px; font-size: .82rem; color: var(--text-on-light-2); text-align: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-800); color: var(--text-on-dark-2); border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-block: 60px 44px; }
.footer-brand .brand { margin-right: 0; }
.footer-brand p { margin-top: 18px; font-size: .95rem; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 42px; height: 42px; border-radius: var(--r-sm); border: 1px solid var(--line); display: grid; place-items: center; color: var(--text-on-dark-2); text-decoration: none; transition: all .18s var(--ease); }
.footer-social a:hover { border-color: var(--amber); color: var(--amber-300); transform: translateY(-2px); }
.footer-social svg { width: 20px; height: 20px; }
.footer-col h4 { font-family: var(--ff-display); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: #fff; font-size: .92rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { text-decoration: none; color: var(--text-on-dark-2); font-size: .95rem; }
.footer-col a:hover { color: var(--amber-300); }
.footer-col address { font-style: normal; font-size: .95rem; line-height: 1.7; }
.footer-bottom { border-top: 1px solid var(--line); padding-block: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; }

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; gap: 10px; padding: 12px;
  background: color-mix(in srgb, var(--ink) 96%, transparent);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
}
.mobile-cta .btn { flex: 1; padding: 14px; }

/* ---------- Photo placeholders ---------- */
.ph {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(201,133,33,.16), transparent 55%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.022) 0 2px, transparent 2px 9px),
    linear-gradient(150deg, var(--ink-700), var(--ink));
  border-radius: var(--r);
  display: grid; place-items: center;
  color: var(--text-on-dark-2);
  min-height: 160px;
}
.ph::before {
  content: "PHOTO"; position: absolute; top: 14px; left: 14px;
  font-family: var(--ff-display); font-weight: 600; letter-spacing: .2em;
  font-size: .62rem; color: var(--amber-300);
  border: 1px solid var(--line); padding: 4px 9px; border-radius: 4px;
  background: rgba(0,0,0,.25);
}
.ph .ph-body { text-align: center; padding: 30px; max-width: 320px; }
.ph .ph-body svg { width: 40px; height: 40px; color: var(--tan); margin: 0 auto 12px; opacity: .8; }
.ph .ph-body .cap { font-size: .85rem; line-height: 1.5; color: var(--text-on-dark-2); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 0; }
  .trust-item:nth-child(3)::before { display: none; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .dogs-split, .about-split, .visit-split, .contact-split { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
/* Hide the phone in the bar until there's room for it next to the full nav. */
@media (max-width: 1319px) {
  .nav-phone { display: none; }
}

@media (max-width: 1199px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn { display: none; }
  .site-header.menu-open .nav-links {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--ink-800); border-bottom: 1px solid var(--line);
    padding: 14px var(--gut) 22px; gap: 2px;
  }
  .site-header.menu-open .nav-links a { padding: 13px 12px; font-size: 1.05rem; }
  .site-header.menu-open .nav-links > li.nav-links-cta { display: block; margin-top: 12px; }
  .site-header.menu-open .nav-links .btn { display: inline-flex; width: 100%; }
  .service-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 8px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 76px; }
  .map-ph { min-height: 280px; }
}
