/* =============================================================
   DUKE'S DOGGY DAYCARE — styles.css
   Golden Hour direction: Zodiak + Switzer, warm-core palette
   ============================================================= */

/* ── 1. DESIGN TOKENS ─────────────────────────────────────── */
:root {
  /* Paper / backgrounds */
  --cream:        #F6F0E2;
  --cream-soft:   #FBF7EE;
  --cream-deep:   #EFE6D2;
  --off-white:    #F3EFE6;

  /* Ink / text */
  --ink:          #14121A;
  --ink-soft:     #2B2730;
  --ink-muted:    #6B6358;

  /* Camel / warm neutral */
  --camel:        #BC9974;
  --camel-deep:   #8A6E4F;
  --camel-tint:   #E7D8C2;

  /* Gold accent */
  --gold:         #C8932F;
  --gold-deep:    #A2741F;
  --gold-soft:    #EAD9B0;

  /* Blue — whisper only (inline links) */
  --blue:         #0F62EC;

  /* Functional */
  --success:      #3B6D11;
  --error:        #A32D2D;
  --focus-ring:   var(--gold);

  /* Surfaces / lines */
  --line:         #E2D6C0;
  --shadow-warm:  0 1px 2px rgba(20,18,26,.05), 0 8px 24px rgba(138,110,79,.06);

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Switzer', -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Type scale */
  --fs-h1:     clamp(2.25rem, 7vw, 4rem);
  --fs-h2:     clamp(2.25rem, 6vw, 3.75rem);
  --fs-h3:     clamp(1.25rem, 3.5vw, 1.6rem);
  --fs-lead:   clamp(1.125rem, 2.5vw, 1.375rem);
  --fs-body:   1.0625rem;
  --fs-small:  0.875rem;
  --fs-eyebrow:0.8125rem;

  /* Spacing */
  --space-1: .5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 6rem;
  --space-8: 8rem;

  /* Layout */
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-pill:999px;
  --container:  1180px;
  --container-narrow: 760px;
  --gutter:     clamp(1.25rem, 5vw, 4rem);

  /* Nav */
  --nav-h:      60px;
  --bar-h:      40px;
}

/* ── 2. RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--blue); text-decoration: underline; }
a:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 3px; }

button:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 3px; }

/* Mobile-only line break */
.mobile-br { display: block; }
@media (min-width: 640px) { .mobile-br { display: none; } }

/* ── 3. SKIP LINK ─────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-2);
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-small);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  text-decoration: none;
  transition: top .15s;
}
.skip-link:focus { top: var(--space-2); }

/* ── 4. CONTAINER ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ── 5. PAW MARK (inline SVG utility) ────────────────────── */
.paw {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  color: var(--gold);
  flex-shrink: 0;
}
.paw svg { width: 100%; height: 100%; fill: currentColor; }

/* ── 6. EYEBROW ───────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--camel-deep);
  margin-bottom: var(--space-2);
}

/* ── 7. BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  padding: 15px 26px;
  min-height: 50px;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background .18s, color .18s, border-color .18s, transform .14s, box-shadow .14s;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 3px; }

/* Primary: gold fill, ink text */
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(162,116,31,.25);
}

/* Dark: ink fill, cream text */
.btn-dark {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn-dark:hover {
  background: var(--ink-soft);
  border-color: var(--ink-soft);
  transform: translateY(-1px);
}

/* Ghost: transparent, ink border */
.btn-ghost {
  background: transparent;
  color: var(--ink-soft);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: rgba(20,18,26,.06);
  transform: translateY(-1px);
}

/* Ghost on dark (for dark sections) */
.btn-ghost-cream {
  background: transparent;
  color: var(--cream);
  border-color: rgba(246,240,226,.45);
}
.btn-ghost-cream:hover {
  background: rgba(246,240,226,.1);
  border-color: rgba(246,240,226,.7);
  transform: translateY(-1px);
}

/* Full width variant */
.btn-full { width: 100%; }

/* ── 8. SECTION BACKGROUNDS (surface rhythm) ─────────────── */
.bg-cream       { background: var(--cream); }
.bg-cream-deep  { background: var(--cream-deep); }
.bg-off-white   { background: var(--off-white); }
.bg-camel-tint  { background: var(--camel-tint); }
.bg-ink         { background: var(--ink); color: var(--cream); }
.bg-footer      { background: #0d0c11; color: var(--cream); }

/* Section vertical rhythm */
.section-pad {
  padding-block: var(--space-5);
}
@media (min-width: 768px) {
  .section-pad { padding-block: var(--space-7); }
}

/* ── 9. ANNOUNCEMENT BAR ──────────────────────────────────── */
#announcement-bar {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 500;
  overflow: hidden;
  max-height: var(--bar-h);
  transition: max-height .3s ease, opacity .3s ease;
  position: relative;
  z-index: 200;
}
#announcement-bar.dismissed {
  max-height: 0;
  opacity: 0;
}
.bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 44px; /* room for × button */
  height: var(--bar-h);
  position: relative;
}
.bar-link {
  color: var(--cream);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bar-link:hover { text-decoration: underline; }
.bar-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.bar-live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  position: relative;
}
.bar-live-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #4ade80;
  animation: live-pulse 2s ease-out infinite;
}
@keyframes live-pulse {
  0%   { transform: scale(1);   opacity: .8; }
  70%  { transform: scale(2.5); opacity: 0;  }
  100% { transform: scale(1);   opacity: 0;  }
}
@media (prefers-reduced-motion: reduce) {
  .bar-live-dot::after { animation: none; }
}

.bar-stars {
  display: inline-flex;
  gap: 1px;
  color: var(--gold);
  font-size: 11px;
  line-height: 1;
}
.bar-dismiss {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(246,240,226,.6);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 6px;
  min-width: 32px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.bar-dismiss:hover { color: var(--cream); }

/* ── 10. STICKY NAV ───────────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 150;
  background: var(--cream);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s, padding .2s;
  height: var(--nav-h);
}
#site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 1px 12px rgba(20,18,26,.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 44px;
  width: auto;
  max-width: 160px;
  display: block;
  object-fit: contain;
}

/* Desktop nav links */
.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-3);
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 4px 0;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width .2s;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--ink); }

/* Nav right (desktop) */
.nav-right {
  display: none;
  align-items: center;
  gap: var(--space-2);
}
.nav-book-btn {
  padding: 10px 20px;
  min-height: 40px;
  font-size: .9rem;
}

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  border-radius: var(--radius-sm);
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .22s, opacity .22s;
  transform-origin: center;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
#nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--bar-h) + var(--nav-h));
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s;
}
#nav-overlay.open {
  opacity: 1;
  visibility: visible;
}
.overlay-links {
  list-style: none;
  padding: var(--space-2) var(--gutter);
  flex: 1;
}
.overlay-links li + li { border-top: 1px solid var(--line); }
.overlay-links a {
  display: block;
  padding: var(--space-3) 0;
  font-family: var(--font-body);
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}
.overlay-links a:hover { color: var(--gold-deep); }
.overlay-ctas {
  padding: var(--space-3) var(--gutter) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--line);
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-right { display: flex; }
  .nav-hamburger { display: none; }
  #nav-overlay { display: none; }
}

/* ── 11. HERO (S1 — cream) ────────────────────────────────── */
#hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
  background-color: var(--cream);
}

/* Two-layer warm grain — renders in camel color, no blend mode needed.
   feColorMatrix maps noise → warm camel (0.74,0.60,0.47) with noise-driven alpha.
   Layer 1: coarse organic patches (baseFrequency 0.18) — depth
   Layer 2: fine warm speckle (baseFrequency 0.65) — surface grit */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='c'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.18' numOctaves='5' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.74 0 0 0 0 0.60 0 0 0 0 0.47 0.6 0 0 0 -0.25'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23c)'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='f'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.74 0 0 0 0 0.60 0 0 0 0 0.47 0.4 0 0 0 -0.15'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23f)'/%3E%3C/svg%3E");
  background-size: 400px 400px, 200px 200px;
}

/* All hero content above texture — exclude paws overlay */
#hero > *:not(.hero-paws) { position: relative; z-index: 1; }

/* ── Ghosted paw prints — dark sections ──────────────────── */
.dark-paws {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.dark-paw {
  position: absolute;
  pointer-events: none;
  user-select: none;
  /* invert makes the dark paw appear cream on the ink background */
  filter: invert(1);
  opacity: 0.06;
}
.dark-paw-1 {
  width: 160px;
  top: 10%;
  right: -20px;
  transform: rotate(20deg);
}
.dark-paw-2 {
  width: 130px;
  bottom: 15%;
  left: -15px;
  transform: rotate(-25deg);
}
.dark-paw-3 {
  width: 100px;
  top: 50%;
  right: 30%;
  transform: rotate(55deg);
  opacity: 0.04;
  display: none; /* mobile: 2 paws only */
}
.dark-paw-4 {
  width: 150px;
  top: 6%;
  left: -20px;
  transform: rotate(-30deg);
  display: none; /* always hidden — 3 paws max on desktop */
}

/* Desktop: show third paw */
@media (min-width: 768px) {
  .dark-paw-3 { display: block; }
}

/* ── Ghosted paw prints ───────────────────────────────────── */
.hero-paws {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero-paw {
  position: absolute;
  opacity: 0.06;
  user-select: none;
  pointer-events: none;
}

/* Mobile: 2 paws anchored BELOW the video (video = ~44vw tall)
   using calc so they always clear the video regardless of screen width */
.hero-paw-1 {
  width: 170px;
  top: calc(44vw + 160px);
  right: -20px;
  transform: rotate(28deg);
}
.hero-paw-2 {
  width: 140px;
  bottom: 150px;
  left: -20px;
  transform: rotate(-20deg);
}
/* Hidden on mobile */
.hero-paw-3,
.hero-paw-4 { display: none; }

/* Desktop: 4 paws spread across the copy column and behind the video column */
@media (min-width: 900px) {
  .hero-paw-1 {
    width: 210px;
    top: 10%;
    left: 2%;
    transform: rotate(-18deg);
  }
  .hero-paw-2 {
    width: 160px;
    bottom: 6%;
    left: 28%;
    transform: rotate(22deg);
  }
  .hero-paw-3 {
    display: block;
    width: 130px;
    top: 60%;
    right: 8%;
    transform: rotate(52deg);
    opacity: 0.05;
  }
  .hero-paw-4 {
    display: block;
    width: 190px;
    top: 5%;
    right: 20%;
    transform: rotate(-30deg);
    opacity: 0.045;
  }
}

/* Mobile: single column, stacked */
.hero-inner {
  padding-top: var(--space-3);
  padding-bottom: var(--space-5);
}

/* Media band */
.hero-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream-deep);
  margin-bottom: var(--space-3);
  position: relative;
  /* Mobile: tighter height so CTAs clear the fold at 375×667 */
  height: 44vw;
  max-height: 280px;
}
.hero-media-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--camel-deep);
  text-align: center;
  padding: var(--space-2);
}
.hero-media-placeholder .media-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--camel);
}
/* Real video */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.hero-media-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(20,18,26,.7);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
}
.play-icon {
  width: 14px;
  height: 14px;
  border-left: 10px solid var(--cream);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  display: inline-block;
  flex-shrink: 0;
}

/* Review badge */
.hero-review {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-2);
}
.review-avatars {
  display: flex;
  flex-shrink: 0;
}
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid var(--cream);
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  color: var(--camel-deep);
  overflow: hidden;
  flex-shrink: 0;
}
.review-avatar + .review-avatar { margin-left: -10px; }
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }

.review-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.review-score {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.review-stars {
  display: flex;
  gap: 1px;
  color: var(--gold);
  font-size: 13px;
  line-height: 1;
}
.review-label {
  font-size: var(--fs-small);
  color: var(--ink-muted);
  line-height: 1;
}
.google-g {
  width: 14px;
  height: 14px;
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
}

/* H1 */
.hero-h1 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: var(--space-3);
}

/* Paw bullets */
.hero-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--space-4);
}
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--ink-soft);
  line-height: 1.4;
}
.hero-bullets .paw {
  font-size: 15px;
  margin-top: 2px;
}
.hero-bullets strong {
  color: var(--ink);
}

/* CTA trio */
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-ctas .btn-primary { width: 100%; }
.hero-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Desktop: 2-column hero — media bleeds to right viewport edge */
@media (min-width: 900px) {
  .hero-inner {
    display: grid;
    grid-template-columns: 46fr 54fr;
    gap: clamp(3.5rem, 7vw, 6rem);
    align-items: center;
    padding-top: var(--space-6);
    padding-bottom: var(--space-6);
    padding-right: 0; /* let media column bleed to edge */
  }
  .hero-media {
    height: auto;
    aspect-ratio: 5/4;
    max-height: none;
    margin-bottom: 0;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg); /* bleed right */
  }
  .hero-review {
    margin-bottom: var(--space-3);
  }
  .hero-review .review-avatar { width: 48px; height: 48px; }
  .hero-review .review-score { font-size: 1.25rem; }
  .hero-review .review-stars { font-size: 16px; }
  .hero-review .google-g { width: 18px; height: 18px; }
  .hero-h1 {
    margin-bottom: var(--space-3);
    font-size: 3.5rem;
  }
  .hero-bullets {
    margin-bottom: var(--space-5);
  }
  .hero-ctas .btn-primary {
    width: auto;
  }
  /* Call/Text are thumb-zone mobile actions — hide on desktop */
  .hero-cta-row {
    display: none;
  }
}

/* ── 12. REVIEW MARQUEE (S2 — cream-deep) ────────────────── */
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

#review-marquee {
  padding-block: var(--space-4);
  overflow: hidden;
}

.marquee-wrapper {
  overflow: hidden;
  /* Soft fade edges */
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: var(--space-3);
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  flex-shrink: 0;
  width: 240px;
  padding-inline: var(--space-3);
}

.marquee-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
}

.marquee-quote {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.5;
  white-space: normal;
}

.marquee-name {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--ink-muted);
}

/* Screen reader only list */
.marquee-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
  list-style: none;
}

/* Respect reduced motion — show static cards */
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }
}

/* ── 13. S4 — THE WEDGE (dark anchor) ────────────────────── */

/* Eyebrow + headline on dark bg — !important beats source-order specificity conflict */
.eyebrow-cream { color: var(--gold) !important; }
.section-h2-cream { color: var(--cream) !important; }
.section-lead-cream { color: rgba(246,240,226,.88) !important; }

/* Comparison table */
.compare-table {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-5);
}

.compare-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(246,240,226,.12);
}
.compare-col-usual {
  padding: var(--space-2) var(--space-3);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  color: rgba(246,240,226,.55);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.compare-col-dukes {
  padding: var(--space-2) var(--space-3);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .1em;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(200,147,47,.08);
}
.compare-col-dukes .paw { font-size: 12px; }
.compare-dukes-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: 32px;
  object-fit: contain;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(246,240,226,.08);
}
.compare-row:first-of-type { border-top: none; }

.compare-cell-usual {
  padding: var(--space-2) var(--space-3);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: rgba(246,240,226,.55);
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}
.compare-cell-dukes {
  padding: var(--space-2) var(--space-3);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  background: rgba(200,147,47,.08);
}
.compare-cell-dukes .paw { font-size: 11px; margin-top: 5px; flex-shrink: 0; }

.x-mark {
  color: rgba(246,240,226,.3);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.2;
  flex-shrink: 0;
}

.wedge-cta { max-width: 400px; margin-inline: auto; display: flex; }

@media (min-width: 768px) {
  .compare-cell-usual,
  .compare-cell-dukes {
    font-size: var(--fs-body);
    padding: var(--space-3) var(--space-4);
  }
  .compare-col-usual,
  .compare-col-dukes { padding: var(--space-2) var(--space-4); }
}

/* ── 14. S5 — FULL PRICING (cream) ────────────────────────── */

/* Price group wrapper */
.pg {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-soft);
  box-shadow: var(--shadow-warm);
  margin-bottom: var(--space-4);
}

/* Group header */
.pg-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: var(--cream-deep);
  border-bottom: 1px solid var(--line);
}
.pg-title {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.pg-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-muted);
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
  white-space: nowrap;
}

/* Standard row */
.pg-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-3);
  border-top: 1px solid var(--line);
  gap: var(--space-2);
}
.pg-row:first-of-type { border-top: none; }
.pg-row-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pg-name {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--ink);
}
.pg-desc {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--ink-muted);
}
.pg-price {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -.02em;
  white-space: nowrap;
  flex-shrink: 0;
}
.pg-date {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--gold-deep);
  white-space: nowrap;
  flex-shrink: 0;
}
.pg-holiday-note {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--ink-muted);
  padding: var(--space-2) var(--space-3);
  border-top: 1px solid var(--line);
}
.pg-per {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0;
}

/* Featured row — dark, owns the bottom of its group */
.pg-featured {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-3);
  background: var(--ink);
}
.pg-featured-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pg-featured-badge {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}
.pg-featured-name {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -.01em;
}
.pg-featured-note {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: rgba(246,240,226,.65);
}
.pg-featured-price {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 2.75rem);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -.02em;
  white-space: nowrap;
  flex-shrink: 0;
}
.pg-featured-per {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 500;
  color: rgba(200,147,47,.65);
  letter-spacing: 0;
}

/* Footer — addons + policy */
.pg-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: var(--space-5);
  padding-top: var(--space-3);
  border-top: 1px solid var(--line);
}
.pg-footer-note {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--ink-muted);
  line-height: 1.5;
}
.pg-footer-cta {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--gold-deep);
  text-decoration: none;
}
.pg-footer-cta:hover { text-decoration: underline; }

/* Fix pill header wrapping */
.pg-header { flex-wrap: wrap; }
.pg-tag { white-space: nowrap; }

/* ── S5 — HALF-DAY TEASER + GOOD TO KNOW ─────────────────── */

/* Half-day teaser row (dashed border) */
.pg-halftease {
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
  background: var(--cream);
}
.pg-halftease-text {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--ink-muted);
}
.pg-halftease-link {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--gold-deep);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.pg-halftease-link:hover { text-decoration: underline; }

/* Good to know — premium policy panel */
.pg-know {
  background: var(--cream-deep);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  margin-bottom: var(--space-5);
}
.pg-know-eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--camel-deep);
  margin-bottom: var(--space-2);
}
.pg-know-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}
@media (min-width: 560px) {
  .pg-know-grid { grid-template-columns: 1fr 1fr; gap: var(--space-4); }
}
.pg-know-col-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink-muted);
  margin-bottom: var(--space-1);
  padding-bottom: var(--space-1);
  border-bottom: 1px solid var(--line);
}
.pg-know-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-2);
}
.pg-know-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pg-know-item-label {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--ink);
}
.pg-know-item-detail {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--ink-muted);
  line-height: 1.4;
}
.pg-know-link {
  display: block;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--gold-deep);
  text-decoration: none;
  border-top: 1px solid var(--line);
  padding-top: var(--space-2);
}
.pg-know-link:hover { text-decoration: underline; }

/* ── S6 — HOW IT WORKS (camel-tint) ──────────────────────── */
#how-it-works { padding-block: var(--space-5); }
@media (min-width: 768px) { #how-it-works { padding-block: var(--space-7); } }

#how-it-works .section-header { margin-bottom: var(--space-4); }
#how-it-works .section-h2 { font-size: clamp(2.5rem, 6vw, 4rem); }

.timeline {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-4);
  border-top: 1px solid rgba(188,153,116,.4);
}

/* Mobile: number + title side by side, desc below title */
.timeline-step {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "num title"
    ".   desc";
  column-gap: var(--space-2);
  row-gap: 4px;
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(188,153,116,.4);
  align-items: start;
}

/* Desktop: num | title | desc on one row */
@media (min-width: 600px) {
  .timeline-step {
    grid-template-columns: auto 1.8fr 1fr;
    grid-template-rows: auto;
    grid-template-areas: "num title desc";
    align-items: center;
    column-gap: var(--space-4);
    row-gap: 0;
    padding: var(--space-4) 0;
  }
}

.timeline-num {
  grid-area: num;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.03em;
}

.timeline-title {
  grid-area: title;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1.2;
}

.timeline-desc {
  grid-area: desc;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--ink-muted);
  line-height: 1.5;
}

.timeline-em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-deep);
}

.timeline-cta {
  display: flex;
  max-width: 340px;
  margin-inline: auto;
}

/* ── S7 — A DAY AT DUKE'S (off-white) ────────────────────── */
.day-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.day-tile-hero {
  grid-column: 1 / -1;
}

.day-tile {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--camel-tint);
}
.day-tile-hero {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
  .day-tile { aspect-ratio: 1; }
  .day-tile-hero { aspect-ratio: 16 / 7; }
}

.day-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.day-caption {
  text-align: center;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--ink-muted);
  margin-bottom: var(--space-4);
}

.day-ig-btn {
  display: flex;
  max-width: 280px;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .day-grid { gap: var(--space-3); }
}

@media (min-width: 768px) {
  .day-tile-hero .day-placeholder { aspect-ratio: 16 / 7; }
  .day-placeholder { aspect-ratio: 1; }
}

/* ── FAQ PAGE ────────────────────────────────────────────── */
.faq-hero {
  padding: var(--space-4) 0 var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.faq-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}
.faq-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -.025em;
  line-height: 1.05;
  margin: var(--space-2) 0 var(--space-3);
}

.faq-section { padding: var(--space-4) 0 var(--space-5); }
.faq-section-first { padding-top: var(--space-2); }

/* Chapter header: big gold numeral + eyebrow */
.faq-chapter-header {
  margin-bottom: var(--space-3);
}
.faq-chapter-num {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 6rem);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.04em;
  display: block;
  margin-bottom: 2px;
}

/* Paw bullet on each question */
.faq-q {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
}
.faq-paw {
  flex-shrink: 0;
  margin-top: 4px;
  display: block;
}
.faq-paw svg { fill: var(--gold); display: block; }
.faq-a { padding-left: 24px; }

/* Still have a question */
.faq-more {
  text-align: center;
  padding: var(--space-4) 0;
}
.faq-more-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--ink);
  letter-spacing: -.02em;
  margin: 0 0 var(--space-3);
}
.faq-more-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── MEET & GREET PAGE ───────────────────────────────────── */

/* Dark hero */
.mg-hero { padding: var(--space-3) 0 var(--space-4); }
@media (min-width: 768px) { .mg-hero { padding: var(--space-6) 0 var(--space-5); } }
.mg-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
}
.mg-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -.025em;
  line-height: 1.05;
  margin: var(--space-2) 0 var(--space-3);
}
.mg-lead {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: rgba(246,240,226,.65);
  line-height: 1.6;
  max-width: 46ch;
  margin: 0 auto var(--space-4);
}

/* Trust chips */
.mg-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  flex-wrap: nowrap;
}
.mg-trust-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
}
.mg-trust-chip-dark { color: rgba(246,240,226,.8); }
.mg-trust-chip-dark .paw svg { fill: var(--gold); }
.mg-trust-divider-dark {
  width: 1px;
  height: 12px;
  background: rgba(246,240,226,.2);
  flex-shrink: 0;
}

/* JotForm embed */
.mg-form-section { padding: var(--space-2) 0 var(--space-5); }
.mg-form-wrap { max-width: 860px; }
.mg-iframe {
  width: 100%;
  min-height: 820px;
  border: 0;
  border-radius: var(--radius-lg);
  display: block;
}

/* Alternative contact */
.mg-alt { padding: var(--space-5) 0; }
.mg-alt-inner { text-align: center; }
.mg-alt-label {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 var(--space-3);
}
.mg-alt-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* What happens next */
.mg-next { padding: var(--space-6) 0; }
.mg-next-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -.02em;
  margin: 0 0 var(--space-5);
}
.mg-steps {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mg-step {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-3) 0;
  border-top: 1px solid var(--line);
}
.mg-step:last-child { border-bottom: 1px solid var(--line); }
.mg-step-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  padding-top: 2px;
  min-width: 2.5rem;
}
.mg-step-title {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}
.mg-step-desc {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.55;
}

/* ── GALLERY PAGE ────────────────────────────────────────── */

/* Hero */
.gallery-hero {
  padding: var(--space-4) 0 var(--space-5);
  overflow: hidden;
  position: relative;
}
.gallery-hero-paws {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.gh-paw {
  position: absolute;
  opacity: 0.06;
  filter: invert(1);
}
.gh-paw-1 {
  width: clamp(180px, 40vw, 420px);
  top: -40px;
  left: -60px;
  transform: rotate(-20deg);
}
.gh-paw-2 {
  width: clamp(160px, 36vw, 380px);
  bottom: -40px;
  right: -60px;
  transform: rotate(160deg);
}
.gallery-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
}
.gallery-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 10vw, 5rem);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -.025em;
  line-height: 1.05;
  margin: 0 0 var(--space-3);
}

/* Review badge on dark hero — smaller on mobile */
.gallery-hero-badge {
  justify-content: center;
  margin-bottom: var(--space-2);
}
.gallery-hero-badge .review-avatar { width: 26px !important; height: 26px !important; }
.gallery-hero-badge .review-avatar + .review-avatar { margin-left: -7px; }
.gallery-hero-badge .review-score { color: var(--cream); font-size: 0.8125rem; }
.gallery-hero-badge .review-stars { color: var(--gold); font-size: 11px; letter-spacing: 1px; }
.gallery-hero-badge .google-g { width: 13px; height: 13px; }
.gallery-hero-badge .review-label { color: rgba(246,240,226,.5); font-size: 0.75rem; }

@media (min-width: 768px) {
  .gallery-hero { padding: var(--space-6) 0 var(--space-5); }
  .gallery-hero-badge .review-avatar { width: 36px !important; height: 36px !important; }
  .gallery-hero-badge .review-avatar + .review-avatar { margin-left: -10px; }
  .gallery-hero-badge .review-score { font-size: 1rem; }
  .gallery-hero-badge .review-stars { font-size: 14px; letter-spacing: 2px; }
  .gallery-hero-badge .google-g { width: 18px; height: 18px; }
  .gallery-hero-badge .review-label { font-size: var(--fs-small); }
}

/* Wave break — dark → cream (ink bg, cream cut from bottom) */
.wave-break-ink {
  background: var(--ink);
  margin-top: -1px;
  line-height: 0;
}

/* Content section */
.gallery-content { padding: var(--space-3) 0 var(--space-5); }

/* Video block */
.gl-video-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-4);
}
.gl-video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
@media (min-width: 768px) {
  .gl-video { aspect-ratio: 21 / 9; }
}

/* Photo grid */
.gl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}
.gl-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--camel-tint);
}
.gl-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.gl-photo:hover img { transform: scale(1.03); }
.gl-photo-full {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 7;
  border-radius: var(--radius-lg);
}
.gl-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--ink-muted);
  background: var(--cream-deep);
  border: 1px dashed var(--line);
}
@media (min-width: 640px) {
  .gl-grid { gap: 12px; margin-bottom: 12px; }
}
@media (min-width: 768px) {
  .gl-grid { grid-template-columns: repeat(3, 1fr); }
  .gl-photo-full { aspect-ratio: 21 / 7; }
}

/* Instagram CTA */
.gl-ig-cta {
  text-align: center;
  padding: var(--space-4) 0 var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}
.gl-ig-label {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--ink-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0;
}
.gl-ig-btn {
  width: 100%;
  max-width: 320px;
}

/* ── COMMUNITY PARTNER STRIP ─────────────────────────────── */
.partner-strip {
  background: var(--cream-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--space-4) 0;
}
.partner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}
.partner-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  opacity: .9;
  transition: opacity .2s;
}
.partner-logo-link:hover { opacity: 1; }
.partner-logo {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}
.partner-divider {
  width: 1px;
  height: 44px;
  background: var(--line);
  flex-shrink: 0;
  margin: 0 var(--space-2);
}
.partner-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.partner-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.partner-rates {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  margin: 0;
}
.partner-rates-link {
  color: var(--gold-deep);
  text-decoration: none;
  font-weight: 600;
}
.partner-rates-link:hover { text-decoration: underline; }

@media (max-width: 639px) {
  .partner-logo { height: 28px; }
  .partner-divider { height: 28px; }
  .partner-label { font-size: 0.625rem; }
  .partner-rates { font-size: 0.8125rem; }
  .partner-strip { padding: var(--space-3) 0; }
}

/* ── S8 — REVIEWS (cream-deep) ───────────────────────────── */
.reviews-badge {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-5);
}
.reviews-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.review-arrow {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--ink-muted);
}

/* S8 badge — mobile */
#reviews .reviews-hero-badge { gap: 10px; }
#reviews .review-avatar { width: 36px; height: 36px; }
#reviews .review-meta { gap: 6px; flex-wrap: nowrap; }
#reviews .review-score { font-size: 1.0625rem; }
#reviews .review-stars { font-size: 13px; letter-spacing: 1.5px; }
#reviews .google-g { width: 16px; height: 16px; }
#reviews .review-arrow { font-size: 1rem; }

/* S8 badge — desktop */
@media (min-width: 640px) {
  #reviews .reviews-hero-badge { gap: 14px; }
  #reviews .review-avatar { width: 48px; height: 48px; }
  #reviews .review-meta { gap: 8px; }
  #reviews .review-score { font-size: 1.375rem; }
  #reviews .review-stars { font-size: 16px; letter-spacing: 2px; }
  #reviews .google-g { width: 20px; height: 20px; }
  #reviews .review-arrow { font-size: 1.125rem; }
}
.google-g-badge { display: inline-block; flex-shrink: 0; vertical-align: middle; }
.google-badge-stars { color: var(--gold); font-size: 12px; letter-spacing: 1px; line-height: 1; }
.google-badge-score {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.google-badge-sep { color: var(--line); }
.google-badge-label {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--ink-muted);
  line-height: 1;
}

.review-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
@media (min-width: 768px) {
  .review-cards { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-warm);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.review-card-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1;
}
.review-card-quote {
  flex: 1;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: -.01em;
  margin: 0;
}
.review-card-footer {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding-top: var(--space-3);
  border-top: 1px solid var(--line);
}
.review-dog-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--camel-tint);
  border: 2px solid var(--cream-deep);
  flex-shrink: 0;
  overflow: hidden;
}
.review-dog-photo img { width: 100%; height: 100%; object-fit: cover; }
.review-card-name {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink);
}
.reviews-ghost-btn {
  display: flex;
  max-width: 240px;
  margin-inline: auto;
}

/* Wave break modifier — cream-deep preceding section */
.wave-break.wave-break-cd {
  background: var(--cream-deep);
  margin-top: -1px; /* seal top seam against preceding section */
}

/* ── S9 — MEET ALEX & DUKE (ink — dark anchor 2) ─────────── */
.alex-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
@media (min-width: 768px) {
  .alex-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
  }
}

.alex-photo-wrap { position: relative; }
.alex-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.alex-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.alex-photo-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(20,18,26,.75);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}

.alex-story .section-h2-cream { margin-bottom: var(--space-4); }
.alex-copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}
.alex-copy p {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: rgba(246,240,226,.82);
  line-height: 1.65;
}
.alex-signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  color: var(--gold);
  margin-bottom: var(--space-4);
  display: block;
}

/* ── S10 — FAQ TEASER (cream) ────────────────────────────── */
.faq-list {
  border-top: 1px solid rgba(20,18,26,.15);
  margin-bottom: var(--space-4);
}
.faq-item {
  padding: var(--space-4) 0;
  border-bottom: 1px solid rgba(20,18,26,.15);
}
.faq-q {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: var(--space-2);
  letter-spacing: -.01em;
  line-height: 1.25;
}
.faq-a {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--ink-muted);
  line-height: 1.6;
}
.faq-a strong {
  color: var(--ink);
  font-weight: 700;
}
.faq-placeholder {
  color: var(--camel);
  font-style: italic;
}
.faq-ghost-btn {
  display: flex;
  max-width: 220px;
  margin-inline: auto;
}

/* Wave break modifier — cream preceding section */
.wave-break.wave-break-cr {
  background: var(--cream);
  margin-top: -1px;
}

/* ── S11 — FINAL CTA (ink — dark anchor 3) ───────────────── */
.final-cta-inner {
  max-width: 480px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}
.final-paw {
  width: 32px;
  height: 32px;
  color: var(--gold);
}
.final-paw svg { fill: var(--gold); width: 100%; height: 100%; }
.final-cta-h2 {
  font-size: clamp(2.25rem, 6vw, 4.5rem) !important;
  line-height: 1.05 !important;
}
.final-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.final-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Cream button — Call on dark sections */
.btn-cream {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.btn-cream:hover {
  background: var(--cream-deep);
  border-color: var(--cream-deep);
  transform: translateY(-1px);
}

/* ── FOOTER (#0d0c11) ─────────────────────────────────────── */
#footer {
  padding-block: var(--space-6);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
}
/* [LOGO BADGE] placeholder removed — real logo in use */
.footer-logo-link { display: inline-block; margin-bottom: var(--space-2); }
.footer-logo-link img { height: 140px; width: auto; opacity: .92; }
.footer-logo-link:hover img { opacity: 1; }

.footer-tagline {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 500;
  color: rgba(246,240,226,.55);
}
.footer-nap {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-style: normal;
  color: rgba(246,240,226,.45);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 8px;
  max-width: 540px;
}
.footer-nap a {
  color: rgba(246,240,226,.65);
  text-decoration: none;
}
.footer-nap a:hover { color: var(--cream); text-decoration: underline; }
.footer-sep { color: rgba(246,240,226,.2); }
.footer-hours {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: rgba(246,240,226,.4);
}
.footer-social {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.footer-social a {
  display: flex;
  align-items: center;
  color: rgba(246,240,226,.5);
  text-decoration: none;
  transition: color .15s;
}
.footer-social a:hover { color: var(--cream); }

.footer-nav {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 20px;
  margin-top: var(--space-1);
}
.footer-nav a {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(246,240,226,.5);
  text-decoration: none;
  transition: color .15s;
}
.footer-nav a:hover { color: var(--cream); }
.footer-copy {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(246,240,226,.80);
  margin-top: var(--space-2);
}
.footer-legal {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(246,240,226,.35);
  margin-top: var(--space-2);
}
.footer-legal a {
  color: rgba(246,240,226,.35);
  text-decoration: none;
}
.footer-legal a:hover { color: var(--cream); }
.footer-credit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-2);
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(246,240,226,.70);
}
.footer-credit img {
  height: 26px;
  width: auto;
  opacity: 0.80;
  transition: opacity .2s;
}
.footer-credit a:hover img { opacity: 1; }

/* ── LEGAL CONTENT PAGES ──────────────────────────────────── */
.legal-updated {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--ink-muted);
  margin-bottom: var(--space-4);
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  color: var(--ink);
  margin-top: var(--space-4);
  margin-bottom: var(--space-2);
}
.legal-content p,
.legal-content li {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: var(--space-2);
}
.legal-content ul {
  padding-left: 1.25rem;
  margin-bottom: var(--space-2);
}
.legal-content a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-content a:hover { color: var(--ink); }
.legal-content code {
  font-family: monospace;
  font-size: .9em;
  background: var(--cream-deep);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ── CHATBOT BUBBLE — hide on mobile, visible on desktop ─── */
.dm-chatbot .dm-bubble {
  display: none;
}
@media (min-width: 768px) {
  .dm-chatbot .dm-bubble {
    display: flex;
  }
}

/* ── MOBILE STICKY ACTION BAR ─────────────────────────────── */
.sticky-bar {
  position: fixed;
  bottom: 14px;
  left: 12px;
  right: 12px;
  z-index: 130;
  height: 58px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 28px rgba(20,18,26,.45), 0 1px 4px rgba(20,18,26,.2);
  transform: translateY(calc(100% + 20px));
  opacity: 0;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), opacity .3s ease;
  bottom: calc(14px + env(safe-area-inset-bottom));
}
.sticky-bar.visible {
  transform: translateY(0);
  opacity: 1;
}

/* Desktop: hide entirely */
@media (min-width: 768px) { .sticky-bar { display: none; } }

.sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-decoration: none;
  color: rgba(246,240,226,.8);
  background: transparent;
  border: none;
  cursor: pointer;
  min-height: 58px;
  position: relative;
  transition: background .15s, color .15s;
  -webkit-tap-highlight-color: transparent;
}
.sticky-btn:first-child { border-radius: var(--radius-md) 0 0 var(--radius-md); }
.sticky-btn:last-child  { border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.sticky-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

/* Dividers between buttons */
.sticky-btn + .sticky-btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: rgba(246,240,226,.1);
}

.sticky-btn-book {
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}
.sticky-btn-book:hover { background: var(--gold-deep); }
.sticky-btn-call:hover,
.sticky-btn-text:hover,
.sticky-btn-ask:hover { background: rgba(246,240,226,.08); color: var(--cream); }

/* Ask button — typing indicator */
.ask-typing {
  display: inline-flex;
  align-items: center;
  gap: 2.5px;
  margin-left: 5px;
  position: relative;
  top: -1px;
}
.ask-typing span {
  display: block;
  width: 3.5px;
  height: 3.5px;
  border-radius: 50%;
  background: var(--gold);
  animation: typing-bounce .9s ease-in-out infinite;
}
.ask-typing span:nth-child(2) { animation-delay: .15s; }
.ask-typing span:nth-child(3) { animation-delay: .3s; }

@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0);    opacity: .45; }
  30%            { transform: translateY(-4px); opacity: 1;   }
}

@media (prefers-reduced-motion: reduce) {
  .ask-typing span { animation: none; opacity: .6; }
}

@media (prefers-reduced-motion: reduce) {
  .sticky-bar { transition: none; }
}

/* ── 15. SERVICES SUMMARY (S3 — off-white) ────────────────── */
#services-summary {
  position: relative;
  z-index: 1;
  margin-bottom: -3px; /* overlap S4 — eliminates subpixel render gap */
}
.section-header {
  text-align: center;
  max-width: var(--container-narrow);
  margin-inline: auto;
  margin-bottom: var(--space-5);
}
.section-h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.025em;
  color: var(--ink);
  margin-bottom: var(--space-2);
}
.section-lead {
  font-size: var(--fs-lead);
  color: var(--ink-muted);
  line-height: 1.5;
}

/* Pricing cards */
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
@media (min-width: 640px) {
  .pricing-cards { grid-template-columns: 1fr 1fr; }
}

.pricing-card {
  background: var(--cream-soft);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 4px rgba(20,18,26,.04), 0 12px 32px rgba(138,110,79,.08);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.pricing-card-title {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 400;
  color: var(--ink);
}
.pricing-card-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: var(--space-2);
}
.price-from {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--ink-muted);
}
.price-amount {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.price-unit {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 500;
  color: var(--ink-muted);
}

/* What's included list */
.pricing-card-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pricing-card-includes li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.4;
}
.pricing-card-includes .paw { font-size: 12px; margin-top: 2px; flex-shrink: 0; }

/* No hidden fees line */
.pricing-no-hidden {
  text-align: center;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: .02em;
  margin-bottom: var(--space-3);
}

/* Reassurance line */
.pricing-reassurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--space-4);
}
.pricing-reassurance .paw { font-size: 15px; }

.pricing-ghost-btn {
  display: flex;
  width: 100%;
  max-width: 340px;
  margin-inline: auto;
}

/* ── 14. HERO MEDIA — mobile/desktop visibility ──────────── */
/* Mobile: media sits above copy, inside .hero-copy column */
.hero-media-mobile-only { display: block; }
.hero-media-desktop-only { display: none; }

@media (min-width: 900px) {
  .hero-media-mobile-only { display: none; }
  .hero-media-desktop-only { display: block; }
}

/* ── 13. DARK ANCHOR BREAK (diagonal clip-path) ───────────── */
/* Signature diagonal entry into S4, S9, S11 dark sections.
   Pattern: place a .diagonal-entry div immediately BEFORE
   the dark section. It inherits the preceding section's bg
   color via a modifier class, then uses clip-path so it
   appears as a diagonal ramp cutting into the dark block. */
.dark-section {
  background: var(--ink);
  color: var(--cream);
  position: relative;
}

/* Wave break + paw medallion — sits between sections */
.wave-break {
  position: relative;
  height: 80px;
  margin-bottom: -1px; /* seal the seam */
  background: var(--off-white); /* matches S3 */
}
.wave-break-svg {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 100%;
  display: block;
}
.wave-break-medal {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.wave-break-medal svg {
  width: 26px;
  height: 26px;
  fill: var(--gold);
}

.dark-section .container {
  position: relative;
  z-index: 1;
}

/* The diagonal ramp that sits atop each dark section.
   Its background matches the PRECEDING section's surface.
   clip-path cuts bottom-left to top-right, revealing dark
   ink below. Height is the ramp depth. */
.diagonal-entry {
  height: clamp(40px, 5vw, 72px);
  background: var(--ink);
  position: relative;
  overflow: hidden;
  margin-top: -2px; /* close render gap between preceding section and cut */
  display: block;
}
/* The lighter "tooth" that forms the diagonal shape */
.diagonal-entry::before {
  content: '';
  position: absolute;
  inset: 0;
  /* The preceding section color — set via modifier */
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.diagonal-entry.from-cream::before      { background: var(--cream); }
.diagonal-entry.from-cream-deep::before { background: var(--cream-deep); }
.diagonal-entry.from-off-white::before  { background: var(--off-white); }

/* ── 13. MOTION — respect prefers-reduced-motion ──────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Hero entrance animation (stagger) */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-fade-up {
  opacity: 0;
  animation: fadeUp .5s cubic-bezier(.2,.7,.2,1) forwards;
}
.anim-fade-up:nth-child(1) { animation-delay: .05s; }
.anim-fade-up:nth-child(2) { animation-delay: .13s; }
.anim-fade-up:nth-child(3) { animation-delay: .21s; }
.anim-fade-up:nth-child(4) { animation-delay: .29s; }
.anim-fade-up:nth-child(5) { animation-delay: .37s; }
.anim-fade-up:nth-child(6) { animation-delay: .45s; }

/* Scroll reveal (IntersectionObserver adds .revealed class) */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s cubic-bezier(.2,.7,.2,1), transform .55s cubic-bezier(.2,.7,.2,1);
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* ── REVIEWS PAGE ─────────────────────────────────────────── */

/* Gap between the two card rows */
.rv-cards-top { margin-bottom: var(--space-3); }

/* Initial avatar (reviews without dog photos) */
.rv-initial {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--camel-deep);
  background: var(--camel-tint);
  border-color: var(--cream-deep);
  user-select: none;
}

/* Verify on Google link */
.rv-verify {
  text-align: center;
  padding-top: var(--space-4);
}
.rv-verify-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color .15s;
}
.rv-verify-link:hover { color: var(--ink); }
.rv-verify-g { width: 16px; height: 16px; flex-shrink: 0; }

/* Instagram strip */
.rv-ig-strip {
  padding-block: var(--space-6);
}
.rv-ig-inner {
  display: flex;
  justify-content: center;
}
.rv-ig-text {
  text-align: center;
  max-width: 520px;
}
.rv-ig-text .eyebrow { margin-bottom: 6px; }
.rv-ig-text .section-h2 { margin-bottom: var(--space-2); }
.rv-ig-text .section-lead { margin-bottom: var(--space-4); }
.rv-ig-btn {
  display: inline-flex;
  margin-inline: auto;
}

/* ── ABOUT PAGE ───────────────────────────────────────────── */

.about-hero {
  padding: var(--space-4) 0 var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.about-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}
.about-hero-inner .eyebrow { margin-bottom: 4px; }
.about-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -.025em;
  line-height: 1.05;
  margin: 0 0 var(--space-2);
}
.about-lead {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: rgba(246,240,226,.65);
  line-height: 1.6;
}

/* Bio splits */
.about-split {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
@media (min-width: 768px) {
  .about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
  }
  .about-split--reverse .about-photo-wrap { order: 2; }
  .about-split--reverse .about-story      { order: 1; }
}

/* Photo */
.about-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
}
.about-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-photo-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(20,18,26,.75);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}

/* Story copy */
.about-story .eyebrow { margin-bottom: 6px; }
.about-story .section-h2 { margin-bottom: var(--space-2); }
.about-copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}
.about-copy p {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--ink-muted);
  line-height: 1.7;
}
.about-signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  color: var(--gold-deep);
  display: block;
  margin-bottom: var(--space-2);
}

/* Philosophy pillars */
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
@media (min-width: 640px) {
  .about-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
  }
}

.about-pillar {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-pillar-paw {
  font-size: 22px;
  flex-shrink: 0;
}
.about-pillar-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1.2;
}
.about-pillar-desc {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--ink-muted);
  line-height: 1.65;
  margin: 0;
}
.dark-section .about-pillar-title { color: var(--cream); }
.dark-section .about-pillar-desc  { color: rgba(246, 240, 226, 0.82); }

/* Safety items */
.about-safety {
  border-top: 1px solid var(--line);
  margin-bottom: var(--space-4);
}
.about-safety-item {
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: var(--space-1);
}
@media (min-width: 600px) {
  .about-safety-item {
    grid-template-columns: 1fr 2fr;
    gap: var(--space-4);
    align-items: start;
  }
}
.about-safety-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1.2;
}
.about-safety-desc {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--ink-muted);
  line-height: 1.65;
  margin: 0;
}

.about-faq-btn {
  display: flex;
  max-width: 240px;
  margin-inline: auto;
}

/* Wave break from off-white */
.wave-break.wave-break-ow {
  background: var(--off-white);
  margin-top: -1px;
}

/* ── CONTACT PAGE ─────────────────────────────────────────── */

.ct-hero {
  padding: var(--space-4) 0 var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.ct-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
}
.ct-hero-inner .eyebrow { margin-bottom: 4px; }
.ct-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -.025em;
  line-height: 1.05;
  margin: 0 0 var(--space-2);
}
.ct-lead {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: rgba(246,240,226,.65);
  line-height: 1.6;
}

/* 2-col grid: info left, map right */
.ct-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
@media (min-width: 768px) {
  .ct-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
  }
}

/* CTAs */
.ct-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--space-5);
}
.ct-call-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ct-email-link {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--gold-deep);
  text-decoration: none;
  padding: var(--space-1) 0;
}
.ct-email-link:hover { text-decoration: underline; }

/* Section label (Hours / Address) */
.ct-section-label {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--camel-deep);
  margin-bottom: var(--space-2);
}

/* Hours table */
.ct-hours { margin-bottom: var(--space-5); }
.ct-hours-table {
  width: 100%;
  border-collapse: collapse;
}
.ct-hours-table tbody tr {
  border-bottom: 1px solid var(--line);
}
.ct-hours-table tbody tr:first-child {
  border-top: 1px solid var(--line);
}
.ct-hours-table td {
  padding: 14px 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  vertical-align: top;
}
.ct-hours-day {
  color: var(--ink);
  font-weight: 600;
  width: 42%;
}
.ct-hours-time { color: var(--ink-muted); }
.ct-hours-closed { color: var(--ink-muted); }
.ct-hours-note {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--ink-muted);
  line-height: 1.5;
  margin-top: var(--space-2);
}

/* Address */
.ct-address {
  font-style: normal;
}
.ct-address-name {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.ct-address-link {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--gold-deep);
  text-decoration: none;
  line-height: 1.6;
}
.ct-address-link:hover { text-decoration: underline; }

/* Map */
.ct-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  position: relative;
  background: var(--cream-deep);
}
@media (min-width: 768px) {
  .ct-map-wrap {
    aspect-ratio: unset;
    min-height: 480px;
    height: 100%;
  }
}
.ct-map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ── SERVICES PAGE ────────────────────────────────────────── */

/* Hero */
.svc-hero {
  padding: var(--space-3) 0 var(--space-4);
}
.svc-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
/* Collapse eyebrow → H1 gap */
.svc-hero-inner .eyebrow {
  margin-bottom: 4px;
}
.svc-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 7vw, 3.75rem);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -.025em;
  line-height: 1.08;
  margin: 0 0 var(--space-2);
}
.svc-lead {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: rgba(246,240,226,.65);
  line-height: 1.6;
  max-width: 46ch;
  margin: 0 auto var(--space-3);
}

/* Hero image */
.svc-hero-img {
  overflow: hidden;
  background: var(--ink-soft);
}
.svc-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* Mobile: same size as homepage hero video */
.svc-hero-img-mobile {
  display: block;
  border-radius: var(--radius-md);
  height: 44vw;
  max-height: 280px;
  margin-top: var(--space-3);
}
.svc-hero-img-desktop { display: none; }

/* Desktop: 2-col split */
@media (min-width: 900px) {
  .svc-hero {
    padding: var(--space-6) 0 var(--space-5);
  }
  .svc-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    text-align: left;
  }
  .svc-hero-inner .eyebrow {
    justify-content: flex-start;
  }
  .svc-lead { margin-inline: 0; }
  .svc-hero-img-mobile { display: none; }
  .svc-hero-img-desktop {
    display: block;
    border-radius: var(--radius-lg);
    aspect-ratio: 4 / 3;
  }
}

/* Pull pricing section up closer to hero */
#services-pricing {
  padding-top: var(--space-2);
}
@media (min-width: 768px) {
  #services-pricing { padding-top: var(--space-5); }
}

/* Payment methods */
.svc-payment {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  margin-bottom: var(--space-4);
}
.svc-payment-label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 11px;
  color: var(--ink-muted);
}
.svc-payment-methods {
  color: var(--ink-soft);
  font-weight: 500;
}

/* What's always included — feature list */
.svc-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--space-5);
}

.svc-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.svc-feature-paw {
  font-size: 22px;
  margin-top: 2px;
  flex-shrink: 0;
}

.svc-feature-title {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px;
}

.svc-feature-desc {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--ink-muted);
  line-height: 1.55;
  margin: 0;
}

/* Three-column on desktop */
@media (min-width: 768px) {
  .svc-features {
    flex-direction: row;
    gap: var(--space-5);
    max-width: none;
  }
  .svc-feature {
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
  }
  .svc-feature-paw { margin-top: 0; }
}

/* Transportation note */
.svc-transport {
  text-align: center;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--ink-muted);
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: var(--space-4);
}

.svc-transport-link {
  color: var(--gold-deep);
  font-weight: 600;
  text-decoration: none;
}
.svc-transport-link:hover { text-decoration: underline; }

/* Included section CTA */
.svc-incl-cta {
  display: flex;
  max-width: 340px;
  margin-inline: auto;
}
