/* ==========================================================================
   Pets On The Run — site stylesheet
   Mobile-first. No frameworks, no external fonts (privacy + speed).
   Palette meets WCAG AA contrast on all text/background pairings used.
   ========================================================================== */

:root {
  --green-900: #1f4038;   /* deep forest — headings, footer */
  --green-700: #2f5d50;   /* primary brand green */
  --green-600: #3a7263;   /* hover */
  --green-050: #e9f2ee;   /* soft tint backgrounds */
  --amber-500: #e8a13a;   /* accent (decorative / large elements only) */
  --amber-100: #fdf3e3;   /* warm tint */
  --cream:     #faf7f2;   /* page background */
  --white:     #ffffff;
  --ink:       #26312e;   /* body text on light (contrast > 12:1 on cream) */
  --ink-soft:  #51605b;   /* secondary text (contrast > 6:1 on cream) */
  --line:      #e3ddd3;

  --radius: 14px;
  --shadow: 0 2px 6px rgba(31, 64, 56, .08), 0 12px 32px rgba(31, 64, 56, .07);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
          Arial, sans-serif;
  --measure: 68ch;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { color: var(--green-900); line-height: 1.2; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 5vw, 3rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); letter-spacing: -.01em; }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1em; max-width: var(--measure); }

a { color: var(--green-700); }
a:hover { color: var(--green-600); }

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

.container { width: min(100% - 2.5rem, 1080px); margin-inline: auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--green-900); color: var(--white);
  padding: .75rem 1.25rem; z-index: 100; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------- header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 242, .95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: .75rem;
}
.brand {
  display: flex; align-items: center; gap: .6rem;
  font-weight: 800; font-size: 1.15rem; color: var(--green-900);
  text-decoration: none; letter-spacing: -.01em;
}
.brand svg { width: 34px; height: 34px; flex: none; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: none; border: 1px solid var(--line); border-radius: 10px;
  cursor: pointer; color: var(--green-900);
}
.site-nav { display: none; }
.site-nav.open {
  display: block;
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--white); border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow); padding: .75rem 1.25rem 1.25rem;
}
.site-nav ul { list-style: none; margin: 0; padding: 0; }
.site-nav a {
  display: block; padding: .7rem .5rem;
  text-decoration: none; font-weight: 600; color: var(--green-900);
  border-radius: 8px;
}
.site-nav a:hover { background: var(--green-050); }
.site-nav a[aria-current="page"] { color: var(--green-700); }
.nav-cta { margin-top: .5rem; }
/* The generic .site-nav a colour (green-900) outranks .btn-primary's white
   text by specificity, which made the nav CTA dark-on-dark-green. These
   higher-specificity rules restore readable white text in every state. */
.site-nav a.btn-primary,
.site-nav a.btn-primary[aria-current="page"] { color: var(--white); background: var(--green-700); }
.site-nav a.btn-primary:hover { color: var(--white); background: var(--green-600); }

@media (min-width: 820px) {
  .nav-toggle { display: none; }
  .site-nav { display: block !important; position: static; }
  .site-nav ul { display: flex; align-items: center; gap: .25rem; }
  .site-nav a { padding: .5rem .8rem; }
  .nav-cta { margin: 0 0 0 .5rem; }
}

/* -------------------------------------------------------------- buttons */
.btn {
  display: inline-block; padding: .8rem 1.5rem;
  border-radius: 999px; border: 2px solid transparent;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  text-align: center; cursor: pointer; transition: background .15s, color .15s;
}
.btn-primary { background: var(--green-700); color: var(--white); }
.btn-primary:hover { background: var(--green-600); color: var(--white); }
.btn-secondary {
  background: var(--white); color: var(--green-900);
  border-color: var(--green-700);
}
.btn-secondary:hover { background: var(--green-050); color: var(--green-900); }
.btn-lg { padding: 1.1rem 2.2rem; font-size: 1.1rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ----------------------------------------------------------------- hero */
.hero {
  background:
    radial-gradient(1200px 500px at 85% -10%, var(--amber-100), transparent 60%),
    linear-gradient(180deg, var(--green-050), var(--cream) 85%);
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2.5rem, 6vw, 4.5rem);
}
.hero .eyebrow {
  display: inline-block; margin-bottom: 1rem;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 999px; padding: .35rem 1rem;
  font-size: .85rem; font-weight: 700; color: var(--green-700);
}
.hero p.lede { font-size: 1.2rem; color: var(--ink-soft); max-width: 56ch; }
.hero .btn-group { margin-top: 1.75rem; }
.hero-note { margin-top: 1rem; font-size: .9rem; color: var(--ink-soft); }

/* ------------------------------------------------------------- sections */
.section { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.section-alt { background: var(--white); border-block: 1px solid var(--line); }
.section-head { max-width: 60ch; margin-bottom: 2rem; }
.section-head p { color: var(--ink-soft); }

.grid { display: grid; gap: 1.25rem; }
@media (min-width: 700px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 700px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }

.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow);
}
.section-alt .card { background: var(--cream); box-shadow: none; }
.card .icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--green-050); color: var(--green-700);
  margin-bottom: 1rem;
}
.card .icon svg { width: 28px; height: 28px; }
.card p { color: var(--ink-soft); font-size: .98rem; }
.card .card-link { font-weight: 700; text-decoration: none; }

/* feature list w/ paw ticks */
.ticks { list-style: none; margin: 0 0 1.25rem; padding: 0; }
.ticks li { padding-left: 1.75rem; position: relative; margin-bottom: .55rem; }
.ticks li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--green-700); font-weight: 800;
}

/* trust strip */
.trust-strip { display: grid; gap: 1rem; }
@media (min-width: 700px) { .trust-strip { grid-template-columns: repeat(4, 1fr); } }
.trust-item {
  display: flex; align-items: center; gap: .7rem;
  font-weight: 600; font-size: .95rem; color: var(--green-900);
}
.trust-item svg { width: 26px; height: 26px; flex: none; color: var(--green-700); }

/* service detail blocks */
.service-block {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: clamp(1.5rem, 4vw, 2.5rem); margin-bottom: 2rem;
  scroll-margin-top: 90px;
}
.service-block h2 { display: flex; align-items: center; gap: .75rem; }
.service-block h2 svg { width: 34px; height: 34px; color: var(--green-700); flex: none; }
.service-cols { display: grid; gap: 1.5rem; margin-block: 1.25rem; }
@media (min-width: 760px) { .service-cols { grid-template-columns: 1fr 1fr; } }
.service-cols h3 { font-size: 1.05rem; }

/* testimonials */
.quote-card { position: relative; }
.quote-card blockquote { margin: 0; font-style: italic; color: var(--ink); }
.quote-card figcaption { margin-top: .9rem; font-weight: 700; color: var(--green-900); font-size: .95rem; }
.placeholder-flag {
  display: inline-block; margin-top: .35rem;
  font-size: .78rem; font-weight: 700; font-style: normal;
  color: #8a5a00; background: var(--amber-100);
  border: 1px solid #ecd9b4; border-radius: 6px; padding: .1rem .5rem;
}

/* placeholder embed panels (reviews feed / instagram feed) */
.embed-placeholder {
  border: 2px dashed var(--line); border-radius: var(--radius);
  background: var(--white); padding: 2.5rem 1.5rem; text-align: center;
  color: var(--ink-soft);
}
.embed-placeholder strong { color: var(--green-900); }

/* --------------------------------------------------------------- forms */
form { max-width: 640px; }
.field { margin-bottom: 1.1rem; }
label { display: block; font-weight: 700; margin-bottom: .35rem; color: var(--green-900); }
.hint { font-size: .85rem; color: var(--ink-soft); margin-top: .25rem; }
input, select, textarea {
  width: 100%; padding: .75rem .9rem; font: inherit; color: var(--ink);
  background: var(--white); border: 1.5px solid #c9c2b6; border-radius: 10px;
}
input:focus, select:focus, textarea:focus {
  outline: 3px solid var(--amber-500); outline-offset: 1px;
  border-color: var(--green-700);
}
fieldset { border: none; margin: 0 0 1.1rem; padding: 0; }
legend { font-weight: 700; color: var(--green-900); margin-bottom: .35rem; padding: 0; }
.radio-row { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.radio-row label { display: flex; align-items: center; gap: .5rem; font-weight: 500; margin: 0; }
.radio-row input { width: auto; }
.privacy-note {
  font-size: .9rem; color: var(--ink-soft);
  background: var(--green-050); border-radius: 10px; padding: 1rem 1.25rem;
  margin-block: 1.25rem;
}
/* honeypot — hidden from humans, present for bots */
.hp-field { position: absolute !important; left: -9999px !important; }

/* --------------------------------------------------------- portal page */
.portal-buttons { display: grid; gap: 1.25rem; max-width: 720px; }
@media (min-width: 640px) { .portal-buttons { grid-template-columns: 1fr 1fr; } }
.portal-card {
  display: block; text-decoration: none; text-align: center;
  background: var(--white); border: 2px solid var(--green-700);
  border-radius: var(--radius); padding: 2.5rem 1.5rem;
  box-shadow: var(--shadow); transition: transform .15s;
}
.portal-card:hover { transform: translateY(-3px); }
.portal-card .icon { margin: 0 auto 1rem; }
.portal-card h2 { font-size: 1.3rem; margin-bottom: .4rem; }
.portal-card p { color: var(--ink-soft); font-size: .95rem; margin: 0 auto; }

/* ------------------------------------------------------------- CTA band */
.cta-band {
  background: var(--green-900); color: var(--white);
  border-radius: var(--radius); padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: #cfe0da; margin-inline: auto; }
.cta-band .btn-group { justify-content: center; margin-top: 1.5rem; }
.cta-band .btn-secondary { border-color: var(--white); background: transparent; color: var(--white); }
.cta-band .btn-secondary:hover { background: rgba(255,255,255,.12); color: var(--white); }
.cta-band .btn-primary { background: var(--amber-500); color: var(--green-900); }
.cta-band .btn-primary:hover { background: #f0b95a; color: var(--green-900); }

/* --------------------------------------------------------------- footer */
.site-footer {
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  background: var(--green-900); color: #cfe0da;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 1.5rem;
  font-size: .95rem;
}
.footer-grid { display: grid; gap: 2rem; margin-bottom: 2.5rem; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.site-footer h3 { color: var(--white); font-size: 1rem; text-transform: uppercase; letter-spacing: .05em; }
.site-footer a { color: #e9f2ee; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .5rem; }
.footer-brand { display: flex; align-items: center; gap: .6rem; color: var(--white); font-weight: 800; font-size: 1.1rem; margin-bottom: .75rem; }
.footer-brand svg { width: 30px; height: 30px; }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,.15); padding-top: 1.25rem;
  font-size: .85rem; color: #9db8b0;
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
}

/* --------------------------------------------------- notice + FAQ panel */
.notice {
  background: var(--amber-100); border: 1px solid #ecd9b4;
  border-radius: 12px; padding: 1.1rem 1.4rem;
  color: var(--ink); font-size: 1rem;
}
.notice strong { color: var(--green-900); }

.panel {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: clamp(1.75rem, 4vw, 2.75rem); text-align: center;
}
.panel h3 { margin-bottom: .4rem; }
.panel p { color: var(--ink-soft); margin-inline: auto; }
.panel .btn { margin-top: .75rem; }
.stars { color: var(--amber-500); font-size: 1.3rem; letter-spacing: .15em; }

.faq details {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 10px; padding: .9rem 1.25rem; margin-bottom: .75rem;
}
.faq summary { font-weight: 700; color: var(--green-900); cursor: pointer; }
.faq summary:hover { color: var(--green-700); }
.faq details[open] summary { margin-bottom: .5rem; }
.faq details p { color: var(--ink-soft); margin: 0; }

/* contact option cards */
.option-card { text-align: left; }
.option-card .icon { margin-bottom: .75rem; }
.option-card h3 { margin-bottom: .3rem; }
.option-card p { font-size: .95rem; }
.option-card .btn { margin-top: .5rem; }

/* ------------------------------------------------------------ utilities */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .portal-card, .btn { transition: none; }
}

/* ==========================================================================
   V3 media layer — cinematic hero, photography, icons
   Assets from the Higgsfield set (see docs/12-brand-visual-system.md).
   Everything degrades cleanly: if an asset is missing the layout holds and
   the gradient/scrim still renders — no broken-image states.
   ========================================================================== */

/* cinematic hero (home) */
.hero-cinematic {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: clamp(540px, 72vh, 720px);
  background: linear-gradient(160deg, var(--green-900), var(--green-700));
  padding: clamp(3.5rem, 9vw, 7rem) 0;
}
.hero-media-bg,
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  z-index: 0; margin: 0; max-width: none;
}
.hero-video { z-index: 1; opacity: 0; transition: opacity .8s ease; }
.hero-video.is-playing { opacity: 1; }
/* scrim keeps overlaid text at WCAG AA contrast over any frame of the loop */
.hero-scrim {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(90deg, rgba(20, 40, 34, .82) 0%, rgba(20, 40, 34, .55) 45%, rgba(20, 40, 34, .12) 75%),
    linear-gradient(0deg, rgba(20, 40, 34, .45) 0%, transparent 35%);
}
.hero-cinematic .container { position: relative; z-index: 3; }
.hero-cinematic h1 { color: var(--white); }
.hero-cinematic .lede { color: #eef2ec; }
.hero-cinematic .hero-note,
.hero-cinematic .hero-note a { color: #d7e3dc; }
.hero-cinematic .eyebrow {
  background: rgba(250, 247, 242, .14);
  border-color: rgba(250, 247, 242, .35);
  color: var(--white);
}
.hero-cinematic .btn-secondary {
  background: transparent; border-color: var(--white); color: var(--white);
}
.hero-cinematic .btn-secondary:hover { background: rgba(255, 255, 255, .14); color: var(--white); }
.hero-cinematic .btn-primary { background: var(--amber-500); color: var(--green-900); }
.hero-cinematic .btn-primary:hover { background: #f0b95a; color: var(--green-900); }

/* photography in cards / service blocks */
.card-media {
  width: calc(100% + 3.5rem); max-width: none;
  margin: -1.75rem -1.75rem 1.25rem;
  aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}
.service-media { margin: 0 0 1.5rem; }
.service-media img {
  width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
  border-radius: 12px;
}

/* icon chips holding the generated line icons (self-coloured orange) */
.icon-img { background: var(--amber-100); }
.icon-img img { width: 30px; height: 30px; }

/* gentle hover lift on cards (guarded below for reduced motion) */
.card, .panel { transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 4px 10px rgba(31,64,56,.1), 0 18px 40px rgba(31,64,56,.12); }

/* Mobile keeps the cinematic hero but swaps to a lighter portrait loop —
   main.js replaces the sources from data-mobile-* and only then loads.
   Reduced-motion users get no hero video at all (JS removes it; this CSS
   rule is the belt-and-braces fallback). */
@media (max-width: 819px) {
  .hero-cinematic { min-height: clamp(480px, 62vh, 600px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
  .card, .panel { transition: none; }
  .card:hover { transform: none; }
}

/* --------------------------------------------------------------------------
   Motion system — decorative micro-loops and tap-to-play previews.
   Poster image is always the base layer; video is injected by main.js only
   when safe (desktop, no reduced-motion, no save-data, element in view) and
   fades in over the poster. Missing/failed video = poster stays, no gap.
   -------------------------------------------------------------------------- */
.media-loop { position: relative; overflow: hidden; }
.media-loop video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity .6s ease;
}
.media-loop video.is-playing { opacity: 1; }

/* home service cards: wrapper takes over the full-bleed geometry */
.card-media-wrap {
  width: calc(100% + 3.5rem); margin: -1.75rem -1.75rem 1.25rem;
  aspect-ratio: 4 / 3; border-radius: var(--radius) var(--radius) 0 0;
}
.card-media-wrap .card-media {
  width: 100%; height: 100%; margin: 0; max-width: 100%; border-radius: 0;
}

/* services page figures */
.service-media.media-loop { border-radius: 12px; }
.service-media.media-loop img { border-radius: 0; }

/* tap-to-play vertical previews (Instagram page) — nothing downloads until tapped */
.reel-grid { display: grid; gap: 1.25rem; max-width: 640px; margin-inline: auto; }
@media (min-width: 640px) { .reel-grid { grid-template-columns: 1fr 1fr; } }
.reel-tile {
  position: relative; aspect-ratio: 9 / 16; overflow: hidden;
  border-radius: var(--radius); box-shadow: var(--shadow);
  background: var(--green-900);
}
.reel-tile img, .reel-tile video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.tap-play {
  position: absolute; inset: 0; z-index: 2;
  display: grid; place-items: center;
  background: linear-gradient(0deg, rgba(20,40,34,.38), transparent 45%);
  border: none; cursor: pointer; padding: 0;
}
.tap-play .play-badge {
  width: 62px; height: 62px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(250,247,242,.94); color: var(--green-900);
  font-size: 1.4rem; box-shadow: var(--shadow);
  transition: transform .2s ease;
}
.tap-play:hover .play-badge { transform: scale(1.08); }
.reel-tile.is-active .tap-play { background: transparent; }
.reel-tile.is-active .play-badge { opacity: 0; }
.reel-caption { text-align: center; font-size: .9rem; color: var(--ink-soft); margin-top: 1rem; }

/* Instagram link-out tiles (homepage) — zero external requests */
.insta-grid { display: grid; gap: 1rem; }
@media (min-width: 700px) { .insta-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
.insta-tile {
  display: block; text-decoration: none; overflow: hidden;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.insta-tile:hover { transform: translateY(-4px); }
.insta-tile-art { display: grid; place-items: center; aspect-ratio: 16 / 10; color: var(--white); }
.insta-tile-art svg { width: 46px; height: 46px; }
.insta-tile-art.art-1 { background: linear-gradient(135deg, #e8a13a, #d97742); }
.insta-tile-art.art-2 { background: linear-gradient(135deg, var(--green-700), var(--green-900)); }
.insta-tile-art.art-3 { background: linear-gradient(135deg, #7fb3ad, var(--green-700)); }
.insta-tile-body { display: block; padding: 1rem 1.25rem; }
.insta-tile-body strong { display: block; color: var(--green-900); }
.insta-tile-body span { color: var(--ink-soft); font-size: .9rem; }

/* click-to-load official Instagram embeds (Instagram page) */
.ig-embeds { display: grid; gap: 1.25rem; }
@media (min-width: 900px) { .ig-embeds { grid-template-columns: repeat(3, 1fr); } }
.ig-embed {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.5rem; text-align: center;
}
.ig-embed iframe {
  width: 100%; max-width: 540px; height: 620px; border: 0;
  border-radius: 12px; margin: 0 auto 1rem; display: block;
  background: var(--cream);
}
.ig-embed .btn { margin: .25rem; }
.ig-note { font-size: .85rem; color: var(--ink-soft); margin-top: .5rem; }

/* subtle client-gallery polish */
.photo-grid img { transition: transform .25s ease; }
.photo-grid img:hover { transform: scale(1.02); }
@media (prefers-reduced-motion: reduce) {
  .insta-tile, .photo-grid img { transition: none; }
  .insta-tile:hover, .photo-grid img:hover { transform: none; }
}

/* ==========================================================================
   V4 — agency-grade layer: display typography, surfaces, editorial layouts,
   motion tokens, sticky mobile CTA. Motion language: docs/34.
   ========================================================================== */

:root {
  --fs-display: clamp(2.7rem, 7.5vw, 4.6rem);
  --fs-h2: clamp(1.9rem, 4.5vw, 2.9rem);
  --ease-out: cubic-bezier(.22, .61, .36, 1);
  --dur-reveal: .7s;
  --amber-350: #f0b95a;
  --forest-ink: #cfe0da;
}

/* display + editorial type */
.hero-cinematic h1 { font-size: var(--fs-display); line-height: 1.04; letter-spacing: -.025em; max-width: 12ch; }
.section-head h2 { font-size: var(--fs-h2); }
.eyebrow-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .82rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .14em; color: var(--green-700); margin: 0 0 .75rem;
}
.eyebrow-label::before { content: ""; width: 22px; height: 3px; border-radius: 2px; background: var(--amber-500); }
.surface-forest .eyebrow-label { color: var(--amber-350); }

/* hero action hierarchy */
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.9rem; }
.hero-links { margin-top: 1.1rem; font-size: .95rem; color: #d7e3dc; }
.hero-links a { color: var(--white); font-weight: 700; }
.hero-links .dot { opacity: .55; margin: 0 .45rem; }

/* forest surface — the dark editorial contrast moment */
.surface-forest {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='120' viewBox='0 0 420 120'%3E%3Cg fill='%23ffffff' fill-opacity='0.035'%3E%3Cellipse cx='24' cy='84' rx='9' ry='7.5'/%3E%3Ccircle cx='13' cy='72' r='3.4'/%3E%3Ccircle cx='21' cy='67' r='3.4'/%3E%3Ccircle cx='29' cy='68' r='3.4'/%3E%3Ccircle cx='35' cy='74' r='3.4'/%3E%3Cellipse cx='140' cy='40' rx='9' ry='7.5'/%3E%3Ccircle cx='129' cy='28' r='3.4'/%3E%3Ccircle cx='137' cy='23' r='3.4'/%3E%3Ccircle cx='145' cy='24' r='3.4'/%3E%3Ccircle cx='151' cy='30' r='3.4'/%3E%3Cellipse cx='268' cy='88' rx='9' ry='7.5'/%3E%3Ccircle cx='257' cy='76' r='3.4'/%3E%3Ccircle cx='265' cy='71' r='3.4'/%3E%3Ccircle cx='273' cy='72' r='3.4'/%3E%3Ccircle cx='279' cy='78' r='3.4'/%3E%3Cellipse cx='386' cy='34' rx='9' ry='7.5'/%3E%3Ccircle cx='375' cy='22' r='3.4'/%3E%3Ccircle cx='383' cy='17' r='3.4'/%3E%3Ccircle cx='391' cy='18' r='3.4'/%3E%3Ccircle cx='397' cy='24' r='3.4'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(160deg, var(--green-900), #163029);
  color: var(--forest-ink);
}
.surface-forest h2, .surface-forest h3 { color: var(--white); }
.surface-forest .section-head p { color: var(--forest-ink); }

/* how-it-works steps */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.75rem; counter-reset: step; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } }
.steps li { border-top: 1px solid rgba(255,255,255,.18); padding-top: 1.25rem; }
.step-num {
  display: block; font-size: 2.6rem; font-weight: 800; line-height: 1;
  color: var(--amber-350); letter-spacing: -.02em; margin-bottom: .6rem;
}
.steps h3 { margin-bottom: .35rem; }
.steps p { color: var(--forest-ink); font-size: .98rem; margin: 0; }

/* meet-the-pack editorial mosaic */
.pack-mosaic { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
.pack-mosaic img {
  width: 100%; height: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: 18px; box-shadow: var(--shadow);
}
@media (min-width: 760px) {
  .pack-mosaic {
    grid-template-columns: 1.35fr 1fr 1fr; grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
  .pack-mosaic img:nth-child(1) { grid-row: 1 / span 2; aspect-ratio: auto; border-radius: 26px 90px 26px 26px; }
  .pack-mosaic img:nth-child(2) { border-radius: 90px 18px 18px 18px; }
  .pack-mosaic img:nth-child(4) { border-radius: 18px 18px 90px 18px; }
}
.provenance { font-size: .84rem; color: var(--ink-soft); margin-top: .9rem; }

/* social editorial spread */
.social-editorial { display: grid; gap: 1.25rem; }
@media (min-width: 820px) {
  .social-editorial { grid-template-columns: 1.5fr 1fr; align-items: start; }
  .social-side { display: grid; gap: 1.25rem; transform: translateY(2.25rem); }
  .social-feature .insta-tile-art { aspect-ratio: 4 / 3.4; }
}
@media (max-width: 819px) {
  .social-editorial {
    grid-auto-flow: column; grid-auto-columns: 78%;
    overflow-x: auto; scroll-snap-type: x mandatory;
    padding-bottom: .75rem; -webkit-overflow-scrolling: touch;
  }
  .social-side { display: contents; }
  .social-editorial .insta-tile { scroll-snap-align: start; }
}
.source-chip {
  display: inline-block; font-size: .74rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
  background: rgba(255,255,255,.9); color: var(--green-900);
  border-radius: 999px; padding: .25rem .7rem; margin-bottom: .5rem;
}
.insta-tile { position: relative; }
.insta-tile .source-chip { position: absolute; top: .9rem; left: .9rem; margin: 0; }

/* featured editorial review (home: first of the three) */
.reviews-slot[data-reviews-limit="3"] .grid { grid-template-columns: 1fr; }
@media (min-width: 820px) {
  .reviews-slot[data-reviews-limit="3"] .grid { grid-template-columns: 1fr 1fr; }
  .reviews-slot[data-reviews-limit="3"] .quote-card:first-child { grid-row: 1 / span 2; }
}
.reviews-slot[data-reviews-limit="3"] .quote-card:first-child {
  background: var(--green-050); border-color: transparent;
  padding: clamp(1.75rem, 4vw, 2.75rem);
}
.reviews-slot[data-reviews-limit="3"] .quote-card:first-child blockquote {
  font-size: clamp(1.15rem, 2.4vw, 1.5rem); line-height: 1.5; color: var(--green-900);
}

/* cinematic closing section */
.closer { position: relative; overflow: hidden; padding: clamp(4rem, 10vw, 7.5rem) 0; }
.closer-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.closer-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,48,41,.72), rgba(22,48,41,.55)); }
.closer .container { position: relative; }
.closer h2 { color: var(--white); font-size: var(--fs-h2); max-width: 18ch; }
.closer-trust { color: #ecdfc3; font-weight: 600; margin: .75rem 0 0; }
.closer-trust .review-stars { display: inline; margin-right: .4rem; }
.closer .btn-group { margin-top: 1.75rem; }
.closer .btn-primary { background: var(--amber-500); color: var(--green-900); }
.closer .btn-primary:hover { background: var(--amber-350); color: var(--green-900); }
.closer .btn-secondary { border-color: var(--white); color: var(--white); background: transparent; }
.closer .btn-secondary:hover { background: rgba(255,255,255,.14); color: var(--white); }

/* services page: numbered editorial blocks with alternating crops */
.service-block { counter-increment: svc; }
.service-block h2::before {
  content: "0" counter(svc);
  display: block; font-size: 1rem; font-weight: 800;
  letter-spacing: .18em; color: var(--amber-500); margin-bottom: .4rem;
}
.service-block:nth-of-type(odd) .service-media img { border-radius: 26px 90px 26px 26px; }
.service-block:nth-of-type(even) .service-media img { border-radius: 90px 26px 26px 90px; }

/* scroll reveals (elements are tagged by JS only, so no-JS keeps full opacity) */
.reveal { opacity: 0; transform: translateY(20px); }
.revealed { opacity: 1; transform: none; transition: opacity var(--dur-reveal) var(--ease-out), transform var(--dur-reveal) var(--ease-out); }
.reveal-d1.revealed { transition-delay: .08s; }
.reveal-d2.revealed { transition-delay: .16s; }

/* sticky mobile CTA — safe-area aware, appears after the hero */
.sticky-cta {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: rgba(22, 48, 41, .96); backdrop-filter: blur(10px);
  padding: .6rem .75rem calc(.6rem + env(safe-area-inset-bottom));
  gap: .6rem;
  transform: translateY(110%); transition: transform .35s var(--ease-out);
}
.sticky-cta.visible { transform: none; }
.sticky-cta a {
  flex: 1; text-align: center; text-decoration: none; font-weight: 800;
  font-size: .95rem; padding: .75rem .5rem; border-radius: 12px;
  color: var(--white); background: rgba(255,255,255,.12);
}
.sticky-cta a.primary { background: var(--amber-500); color: var(--green-900); }
@media (max-width: 819px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 0; }
  body.has-sticky-cta { scroll-padding-bottom: 84px; }
  .site-footer { padding-bottom: calc(6rem + env(safe-area-inset-bottom)); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .revealed { transition: none; }
  .sticky-cta { transition: none; }
}

/* ==========================================================================
   V4.5 — signature interaction layer
   ========================================================================== */

/* "Find the right care" concierge */
.concierge {
  max-width: 620px; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: clamp(1.5rem, 4vw, 2.5rem);
}
.concierge-step {
  font-size: .8rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .12em; color: var(--green-700); margin: 0 0 .5rem;
}
.progress-track { height: 6px; border-radius: 3px; background: var(--green-050); overflow: hidden; margin-bottom: 1.25rem; }
.progress-fill { height: 100%; border-radius: 3px; background: var(--amber-500); transition: width .3s var(--ease-out); }
.concierge-q { font-size: 1.35rem; color: var(--green-900); margin-bottom: 1rem; outline: none; }
.concierge-options { display: grid; gap: .6rem; }
.concierge-option {
  text-align: left; font: inherit; font-weight: 600; color: var(--ink);
  background: var(--cream); border: 1.5px solid var(--line);
  border-radius: 12px; padding: .9rem 1.1rem; cursor: pointer;
  transition: border-color .15s, background .15s, transform .15s;
  min-height: 52px;
}
.concierge-option:hover { border-color: var(--green-700); background: var(--green-050); }
.concierge-option:active { transform: scale(.99); }
.concierge-nav { display: flex; gap: 1.25rem; margin-top: 1.25rem; }
.concierge-link {
  background: none; border: none; padding: .25rem 0; cursor: pointer;
  font: inherit; font-weight: 700; color: var(--green-700); text-decoration: underline;
}
.concierge-result .btn-group { margin-top: 1.25rem; }
.concierge-alt { color: var(--ink-soft); font-size: .95rem; }
.concierge-note { background: var(--green-050); border-radius: 10px; padding: .8rem 1rem; font-size: .92rem; color: var(--ink); }
.concierge-learn { display: inline-block; margin-top: .9rem; }
.concierge-fallback p { margin-bottom: .75rem; }
@media (prefers-reduced-motion: reduce) {
  .progress-fill, .concierge-option { transition: none; }
  .concierge-option:active { transform: none; }
}

/* form async states */
.form-error {
  background: #fbeee9; border: 1px solid #e5b8a5; border-radius: 10px;
  padding: .9rem 1.1rem; margin-bottom: 1.1rem; color: #7a2e0e; font-size: .95rem;
}
.form-error a { color: #7a2e0e; }
.form-success { text-align: center; max-width: 640px; }
.form-success h2 { outline: none; }
.form-success .stars { font-size: 2rem; margin-bottom: .25rem; }

/* client-gallery lightbox */
.lightbox-trigger {
  display: block; padding: 0; border: none; background: none; cursor: zoom-in;
  border-radius: inherit; width: 100%; height: 100%;
}
.lightbox-trigger img { display: block; }
.lightbox {
  border: none; padding: 0; background: transparent;
  width: min(94vw, 900px); max-height: 92vh;
}
.lightbox::backdrop { background: rgba(16, 32, 27, .92); }
.lightbox figure { margin: 0; }
.lightbox img {
  width: 100%; max-height: 78vh; object-fit: contain;
  border-radius: 14px; background: #10201b;
}
.lightbox figcaption { color: #cfe0da; text-align: center; font-size: .9rem; padding: .6rem .5rem 0; }
.lb-count { color: #9db8b0; text-align: center; font-size: .8rem; margin: .25rem 0 0; }
.lb-close, .lb-prev, .lb-next {
  position: fixed; z-index: 2; border: none; cursor: pointer;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(250, 247, 242, .92); color: var(--green-900);
  font-size: 1.3rem; line-height: 1; display: grid; place-items: center;
}
.lb-close { top: 14px; right: 14px; }
.lb-prev { left: 10px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 10px; top: 50%; transform: translateY(-50%); }

/* ==========================================================================
   V4.6 — signature visual identity layer
   Living paw-route · cross-page view transitions · logo-derived devices ·
   cinematic image treatment. All decorative, all reduced-motion-safe, all
   fully visible with JS disabled. Docs: 44–46.
   ========================================================================== */

/* ---- living paw-route connectors (home) ---------------------------------
   Static (fully visible) by default. In browsers with CSS scroll-driven
   animations AND no reduced-motion preference, the trail fades in and the
   paw clusters "walk in" one by one as the connector scrolls into view.
   Pure CSS — no JS dependency, nothing to fail. */
.paw-route {
  max-width: 700px; margin: 0 auto; padding: 0 1.5rem;
  pointer-events: none;
}
.paw-route svg { display: block; width: 100%; height: auto; }
.paw-route.flip svg { transform: scaleX(-1); }
.route-line {
  fill: none; stroke: var(--amber-500); stroke-width: 2.5;
  stroke-linecap: round; stroke-dasharray: 2.5 11; opacity: .65;
}
.route-paws { fill: var(--green-700); opacity: .48; }
@media (max-width: 819px) {
  .paw-route { max-width: 340px; margin: -.25rem auto; }
}
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .paw-route svg {
      animation: route-in linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 70%;
    }
    .route-paws g {
      animation: paw-in linear both;
      animation-timeline: view();
    }
    .route-paws g:nth-child(1) { animation-range: entry 10% entry 45%; }
    .route-paws g:nth-child(2) { animation-range: entry 25% entry 60%; }
    .route-paws g:nth-child(3) { animation-range: entry 40% entry 75%; }
    .route-paws g:nth-child(4) { animation-range: entry 55% entry 90%; }
  }
}
@keyframes route-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes paw-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ---- cross-page view transitions (progressive, MPA) ---------------------
   Supporting browsers get a fast cross-fade plus shared-element morphs for
   the brand mark, the three service images, the review stars and the social
   feature. Unsupported browsers ignore all of this and navigate instantly;
   reduced-motion users never opt in. */
@media (prefers-reduced-motion: no-preference) {
  @view-transition { navigation: auto; }
}
::view-transition-old(root) { animation-duration: .25s; }
::view-transition-new(root) { animation-duration: .3s; }
::view-transition-group(brand-logo),
::view-transition-group(svc-1),
::view-transition-group(svc-2),
::view-transition-group(svc-3),
::view-transition-group(vt-review-stars),
::view-transition-group(vt-social) { animation-duration: .38s; }
.brand img { view-transition-name: brand-logo; }
.grid-3 article:nth-of-type(1) .card-media { view-transition-name: svc-1; }
.grid-3 article:nth-of-type(2) .card-media { view-transition-name: svc-2; }
.grid-3 article:nth-of-type(3) .card-media { view-transition-name: svc-3; }
.service-block:nth-of-type(1) .service-media img { view-transition-name: svc-1; }
.service-block:nth-of-type(2) .service-media img { view-transition-name: svc-2; }
.service-block:nth-of-type(3) .service-media img { view-transition-name: svc-3; }
.agg-rating .review-stars { view-transition-name: vt-review-stars; }
.hero .lede .review-stars { view-transition-name: vt-review-stars; }
.social-feature .insta-tile-art { view-transition-name: vt-social; }
.ig-embeds .ig-embed:first-child { view-transition-name: vt-social; }

/* ---- logo-derived graphic devices --------------------------------------- */
/* editorial quotation signature on the featured review */
.reviews-slot[data-reviews-limit="3"] .quote-card:first-child::before {
  content: "\201C";
  display: block; font-family: Georgia, "Times New Roman", serif;
  font-size: 4.6rem; line-height: .55; color: var(--amber-500);
  margin-bottom: .35rem;
}
/* circular-badge ring device echoing the logo's framing, on the closer */
.closer::after {
  content: ""; position: absolute; inset: 16px;
  border: 1px solid rgba(240, 185, 90, .38); border-radius: 20px;
  pointer-events: none;
}
/* faint paw constellation carried into the closing scrim (matches the
   forest band, bookending the page in the same brand texture) */
.closer-scrim {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='120' viewBox='0 0 420 120'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cellipse cx='24' cy='84' rx='9' ry='7.5'/%3E%3Ccircle cx='13' cy='72' r='3.4'/%3E%3Ccircle cx='21' cy='67' r='3.4'/%3E%3Ccircle cx='29' cy='68' r='3.4'/%3E%3Ccircle cx='35' cy='74' r='3.4'/%3E%3Cellipse cx='268' cy='88' rx='9' ry='7.5'/%3E%3Ccircle cx='257' cy='76' r='3.4'/%3E%3Ccircle cx='265' cy='71' r='3.4'/%3E%3Ccircle cx='273' cy='72' r='3.4'/%3E%3Ccircle cx='279' cy='78' r='3.4'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(180deg, rgba(22,48,41,.72), rgba(22,48,41,.55));
}

/* ---- cinematic image treatment (selective, not global) ------------------ */
/* hero: slow ambient light drift across the scrim */
.hero-scrim::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 32%, rgba(240,185,90,.10) 50%, transparent 68%);
  background-size: 260% 100%;
  animation: light-drift 16s ease-in-out infinite alternate;
}
@keyframes light-drift { from { background-position: 0% 0; } to { background-position: 100% 0; } }
/* featured pack portrait: gentle settle-in scale (scroll-driven only) */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .pack-mosaic img:first-child {
      animation: settle-in linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 60%;
    }
  }
}
@keyframes settle-in { from { transform: scale(1.035); } to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) {
  .hero-scrim::after { animation: none; background: none; }
  .paw-route svg, .route-paws g, .pack-mosaic img:first-child { animation: none; }
}

/* ---- heritage / family-business devices -------------------------------- */
/* hero trust credential line */
.hero-heritage {
  display: inline-flex; align-items: center; gap: .6rem; flex-wrap: wrap;
  margin-top: 1.25rem; font-size: .95rem; color: #eef2ec;
}
.hero-heritage .est {
  font-weight: 800; letter-spacing: .04em; color: var(--amber-350);
  border: 1.5px solid rgba(240,185,90,.5); border-radius: 999px;
  padding: .2rem .7rem; white-space: nowrap;
}
.hero-heritage .sep { opacity: .5; }

/* family story split section */
.family-split { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
@media (min-width: 860px) { .family-split { grid-template-columns: 1.05fr .95fr; } }
.family-copy .lead { font-size: 1.15rem; color: #f2ede4; } /* warm ivory lead on forest */
.surface-forest .family-copy p { color: var(--forest-ink); }
.surface-forest .family-copy .lead { color: #f2ede4; }
.family-portrait {
  position: relative; border-radius: 26px 90px 26px 26px; overflow: hidden;
  box-shadow: var(--shadow); background: linear-gradient(155deg, var(--green-700), var(--green-900));
  aspect-ratio: 4 / 5;
}
.family-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center bottom; display: block; }
/* Figure variants: the frame lives on the IMG so the caption can sit
   below the photo — text never overlays anyone (incl. Jett). */
figure.family-portrait { aspect-ratio: auto; overflow: visible; background: none; box-shadow: none; border-radius: 0; }
figure.family-portrait img {
  width: 100%; height: auto; object-fit: cover;
  border-radius: 26px 90px 26px 26px; box-shadow: var(--shadow);
}
/* HOME: tighter, family-focused editorial crop (bottom-anchored keeps Jett) */
.family-portrait-tight img { aspect-ratio: 1 / 1.08; object-position: center 88%; }
/* ABOUT: full frame at the photo's native ratio — no crop, full setting */
.family-portrait-full img { aspect-ratio: 3 / 4; object-position: center; }
/* captions sit under the frame, muted but accessible on the forest surface */
figure.family-portrait .family-caption {
  position: static; background: none; text-align: left;
  color: var(--forest-ink); font-size: .85rem; padding: .65rem .25rem 0;
}
/* About uses <figure>; the caption sits inside the frame on a soft scrim */
figure.family-portrait { margin: 0; }
.family-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2rem 1.25rem .9rem;
  background: linear-gradient(180deg, transparent, rgba(16,32,27,.78));
  color: #f2ede4; font-size: .88rem; text-align: center;
}
/* graceful fallback when no Rex-and-Emma photo yet: branded crest, no "placeholder" text */
.family-portrait .portrait-fallback {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem; text-align: center;
  color: var(--forest-ink); padding: 2rem;
}
.family-portrait .portrait-fallback img { width: 96px; height: 96px; border-radius: 50%; background: #fff; }
.family-portrait .portrait-fallback span { font-weight: 700; color: var(--white); letter-spacing: .01em; }
.family-portrait .portrait-fallback small { color: var(--forest-ink); font-size: .85rem; }

/* heritage timeline strip (1998 → 2016 → Today) */
.heritage-timeline { list-style: none; margin: 1.75rem 0 0; padding: 0; display: grid; gap: 1.1rem; }
@media (min-width: 620px) { .heritage-timeline { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.heritage-timeline li { position: relative; padding-top: 1.1rem; border-top: 2px solid var(--line); }
.heritage-timeline .yr {
  display: block; font-size: 1.5rem; font-weight: 800; letter-spacing: -.01em;
  color: var(--amber-500); line-height: 1; margin-bottom: .35rem;
}
.heritage-timeline .lbl { font-weight: 700; color: var(--green-900); display: block; margin-bottom: .2rem; }
.heritage-timeline p { font-size: .92rem; color: var(--ink-soft); margin: 0; }
.surface-forest .heritage-timeline li { border-top-color: rgba(255,255,255,.2); }
.surface-forest .heritage-timeline .lbl { color: var(--white); }
.surface-forest .heritage-timeline p { color: var(--forest-ink); }

/* compact heritage fact strip */
.heritage-strip {
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; align-items: center;
  margin-top: 1.5rem; font-size: .95rem; color: var(--ink);
}
.heritage-strip .fact { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; }
.heritage-strip .fact::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--amber-500); }

/* ---- brand-film feature + dialog --------------------------------------- */
.film-poster {
  position: relative; display: block; width: 100%; max-width: 480px;
  margin: 0 auto; padding: 0; border: none; cursor: pointer;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  background: var(--green-900);
}
.film-poster img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; transition: transform .4s var(--ease-out); }
.film-poster:hover img { transform: scale(1.03); }
.film-play {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .75rem;
  background: linear-gradient(180deg, rgba(22,48,41,.15), rgba(22,48,41,.5));
  color: var(--white);
}
.film-play-badge {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(250,247,242,.94); color: var(--green-900);
  display: grid; place-items: center; font-size: 1.6rem; padding-left: 5px;
  box-shadow: var(--shadow); transition: transform .2s var(--ease-out);
}
.film-poster:hover .film-play-badge { transform: scale(1.08); }
.film-play-label { font-weight: 800; letter-spacing: .02em; text-shadow: 0 1px 6px rgba(0,0,0,.4); }

.film-dialog {
  border: none; padding: 0; background: transparent;
  width: min(96vw, 520px); max-height: 94vh;
}
.film-dialog::backdrop { background: rgba(16,32,27,.94); }
.film-stage { position: relative; }
.film-video { width: 100%; max-height: 88vh; border-radius: 14px; background: #10201b; display: block; }
.film-controls { position: absolute; top: 12px; right: 12px; display: flex; gap: .5rem; }
.film-ctl {
  width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(250,247,242,.92); color: var(--green-900);
  font-size: 1rem; display: grid; place-items: center;
}
.film-fallback { color: #cfe0da; text-align: center; padding: 1rem; }
.film-fallback a { color: var(--amber-350); }
@media (prefers-reduced-motion: reduce) {
  .film-poster img, .film-play-badge { transition: none; }
  .film-poster:hover img, .film-poster:hover .film-play-badge { transform: none; }
}

/* save-contact row + service-area panel */
.utility-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.area-panel .paw-trail { width: min(100%, 320px); margin: .5rem auto 1rem; display: block; }
.area-chips { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin: 0; padding: 0; }
.area-chips li {
  background: var(--green-050); color: var(--green-900); font-weight: 600;
  border-radius: 999px; padding: .35rem .9rem; font-size: .92rem;
}

/* rendered real Google reviews (js/reviews.js + data/reviews.json) */
/* .card p outranks a bare class, so scope the star colour explicitly */
.review-stars, .card p.review-stars { color: var(--amber-500); font-size: 1.05rem; letter-spacing: .12em; margin: 0 0 .6rem; }
.review-meta { color: var(--ink-soft); font-weight: 400; font-size: .85rem; }
.review-source-link { display: inline-block; margin-top: .75rem; font-size: .9rem; }
.agg-rating { font-size: 1.05rem; color: var(--ink); }
.agg-rating .review-stars { display: inline; margin-right: .35rem; }
.hero .lede .review-stars { display: inline; margin-right: .35rem; }
.review-provenance { font-size: .85rem; color: var(--ink-soft); margin-top: 1rem; }
.reviews-actions { margin-top: 1.5rem; display: flex; gap: 1rem 1.5rem; align-items: center; flex-wrap: wrap; }

/* real brand logo (white-background badge presented as a circle) */
.brand img, .footer-brand img {
  border-radius: 50%; flex: none; background: #fff;
  box-shadow: 0 0 0 1px var(--line);
}
.footer-brand img { box-shadow: none; }

/* owner-supplied client photo grids */
.photo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem; }
@media (min-width: 700px) { .photo-grid { grid-template-columns: repeat(4, 1fr); gap: 1.1rem; } }
.photo-grid.photo-grid-2 { max-width: 720px; }
@media (min-width: 700px) { .photo-grid.photo-grid-2 { grid-template-columns: repeat(2, 1fr); } }
.photo-grid img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
@media (prefers-reduced-motion: reduce) {
  .media-loop video { transition: none; }
  .tap-play .play-badge { transition: none; }
}
