/* =======================================================
   Loose Lead Club v3 — warm cream, sage green, soft terracotta
   Type: Fraunces (display serif) + Inter (body)
   ======================================================= */

:root {
  /* colors */
  --cream: #fbf5ea;
  --cream-soft: #fdf9f0;
  --cream-deep: #f1e6cf;
  --ink: #1f2a22;
  --ink-soft: #2e3a31;
  --muted: #5a6b5e;
  --muted-light: #8a998d;
  --rule: #e2d7be;
  /* soft terracotta (used sparingly, mainly on the guarantee moment) */
  --terracotta: #c97a57;
  --terracotta-deep: #a65a39;
  --terracotta-ink: #6b2f14;
  /* sage (primary accent, echoes the outdoor/park feel) */
  --sage: #5f7a5e;
  --sage-deep: #3f5a42;
  --sage-soft: #e7ede3;
  /* legacy aliases so older rules keep working */
  --sienna: var(--terracotta);
  --sienna-deep: var(--terracotta-deep);
  --sienna-ink: var(--terracotta-ink);

  /* typography */
  --ff-display: 'Fraunces', 'Georgia', 'Times New Roman', serif;
  --ff-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* scale */
  --size-eyebrow: 0.78rem;
  --size-body: 1.0625rem;
  --size-lead: 1.15rem;
  --size-h3: 1.45rem;
  --size-h2: clamp(2rem, 4vw, 3rem);
  --size-h1: clamp(2.6rem, 6.2vw, 4.8rem);
  --size-hero: clamp(3rem, 7.5vw, 5.6rem);

  /* layout */
  --max-w: 1240px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(3rem, 6vw, 5rem);
  --radius: 14px;
  --radius-sm: 8px;

  /* motion */
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0s !important; transition-duration: 0s !important; }
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--ff-sans);
  font-size: var(--size-body);
  line-height: 1.6;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--sage-deep);
  outline-offset: 3px;
  border-radius: 4px;
}
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* skip link */
.skip-link {
  position: absolute; left: 1rem; top: 1rem;
  background: var(--ink); color: var(--cream); padding: .6rem 1rem;
  border-radius: 6px; z-index: 1000;
  transform: translateY(-150%); transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* container */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }

/* typography helpers */
.eyebrow, .section-eyebrow {
  font-family: var(--ff-sans);
  font-size: var(--size-eyebrow);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 1.1rem;
}
.section-eyebrow.light { color: var(--cream-deep); }

.section-heading {
  font-family: var(--ff-display);
  font-size: var(--size-h2);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.012em;
  margin: 0 0 1.2rem;
  color: var(--ink);
  font-variation-settings: "opsz" 60;
}
.section-heading em {
  font-style: italic;
  color: var(--sage-deep);
  font-weight: 500;
}
.section-lead {
  font-size: var(--size-lead);
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 1rem;
  max-width: 64ch;
}
.section-lead.narrow { max-width: 52ch; }
.section-header {
  max-width: 780px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.6rem;
  font-family: var(--ff-sans); font-weight: 600; font-size: .98rem;
  letter-spacing: 0.005em;
  border-radius: 999px;
  transition: transform .2s var(--ease), background-color .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease);
  will-change: transform;
  line-height: 1;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--sage-deep);
  color: var(--cream);
  box-shadow: 0 1px 0 rgba(0,0,0,.06), 0 8px 20px -12px rgba(0,0,0,.35);
}
.btn-primary:hover { background: var(--ink); box-shadow: 0 1px 0 rgba(0,0,0,.06), 0 10px 24px -12px rgba(31,42,34,.45); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(29,26,22,.22);
}
.btn-ghost:hover { background: rgba(29,26,22,.05); border-color: var(--ink); }
.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(246,239,228,.35);
}
.btn-ghost-light:hover { background: rgba(246,239,228,.08); border-color: var(--cream); }
.btn-sm { padding: .7rem 1.15rem; font-size: .9rem; }
.btn-lg { padding: 1.1rem 1.8rem; font-size: 1.05rem; }

/* =========================
   HEADER
   ========================= */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  backdrop-filter: saturate(1.2) blur(10px);
  -webkit-backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--rule);
  background: color-mix(in srgb, var(--cream) 96%, transparent);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; gap: 1.5rem;
}
.logo-link {
  display: inline-flex; align-items: center; gap: .65rem;
  font-family: var(--ff-display); font-weight: 600; font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.logo-mark {
  width: 44px; height: 44px;
  border-radius: 8px; object-fit: cover;
  background: var(--ink);
}
.logo-wordmark { font-size: 1.15rem; }
@media (max-width: 520px) { .logo-wordmark { display: none; } }

.primary-nav ul {
  display: flex; align-items: center; gap: 1.9rem;
}
.primary-nav a {
  font-size: .95rem; color: var(--ink-soft); font-weight: 500;
  padding: .4rem .1rem;
  border-bottom: 1px solid transparent;
  transition: color .15s var(--ease), border-color .15s var(--ease);
}
.primary-nav a:hover { color: var(--ink); border-bottom-color: var(--sage); }

.header-cta { display: inline-flex; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  border-radius: 8px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: var(--cream-soft);
  border-top: 1px solid var(--rule);
}
.mobile-nav nav {
  display: flex; flex-direction: column; gap: .25rem;
  padding: 1rem var(--gutter) 1.5rem;
  max-width: var(--max-w); margin: 0 auto;
}
.mobile-nav a {
  padding: .85rem 0;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
}
.mobile-nav a.btn { margin-top: .8rem; border: 0; }

@media (max-width: 900px) {
  .primary-nav, .header-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-nav[data-open="true"] { display: block; }
}

/* =========================
   HERO
   ========================= */
.hero {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2.5rem);
  background:
    radial-gradient(1200px 500px at 85% 0%, rgba(95,122,94,0.12), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 100%);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

/* Stacked hero (photo on top, then headline) */
.hero-inner-stacked {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-photo {
  width: 100%;
  max-width: 420px;
  margin: 0 auto clamp(1.5rem, 3vw, 2.2rem);
}
.hero-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 763 / 800;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--radius);
  box-shadow:
    0 2px 0 rgba(29,26,22,.03),
    0 30px 50px -30px rgba(29,26,22,.32),
    0 15px 25px -18px rgba(29,26,22,.18);
}
.hero-copy { max-width: 720px; }
.hero-stacked .hero-copy { margin: 0 auto; }

.hero-kicker {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 6.8vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.024em;
  color: var(--ink);
  margin: 0 0 .85rem;
  font-variation-settings: "opsz" 144;
}
.hero-subheadline {
  font-family: var(--ff-display);
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  line-height: 1.15;
  margin: 0 0 1.3rem;
  color: var(--sage-deep);
}
.hero-subheadline em {
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.hero-headline {
  font-family: var(--ff-display);
  font-size: var(--size-hero);
  line-height: 0.98;
  letter-spacing: -0.022em;
  font-weight: 600;
  margin: 0 0 1.4rem;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.hero-headline em {
  font-style: italic; font-weight: 500;
  color: var(--sage-deep);
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.12rem; line-height: 1.55; color: var(--ink-soft);
  max-width: 58ch;
  margin: 0 auto 1.6rem;
}
.hero-stacked .hero-sub { margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 0.9rem; }
.hero-stacked .hero-actions { justify-content: center; }
.hero-reassurance {
  margin: 0 0 1.2rem;
  font-size: 0.95rem;
  color: var(--muted);
  letter-spacing: 0.005em;
}
.hero-stacked .hero-reassurance { text-align: center; }
@media (max-width: 640px) {
  .hero-reassurance { font-size: 0.88rem; }
}

/* =========================
   LEGAL PAGES
   ========================= */
.legal-page { background: var(--cream); min-height: 100vh; }
.legal-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) var(--gutter) clamp(4rem, 8vw, 7rem);
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: 0.95rem;
  color: var(--sage-deep);
  text-decoration: none;
  margin-bottom: 2rem;
  font-weight: 500;
}
.legal-back:hover { text-decoration: underline; }
.legal-wrap h1 {
  font-family: var(--font-display, serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 .5rem;
  line-height: 1.1;
}
.legal-meta {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 2.5rem;
  letter-spacing: 0.02em;
}
.legal-wrap h2 {
  font-family: var(--font-display, serif);
  font-size: clamp(1.3rem, 2.3vw, 1.6rem);
  font-weight: 500;
  color: var(--ink);
  margin: 2.4rem 0 .7rem;
  line-height: 1.25;
}
.legal-wrap h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin: 1.6rem 0 .5rem;
  letter-spacing: 0.01em;
}
.legal-wrap p,
.legal-wrap li {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.legal-wrap p { margin: 0 0 1rem; }
.legal-wrap ul { margin: 0 0 1.2rem 1.25rem; padding: 0; }
.legal-wrap li { margin: 0 0 .45rem; }
.legal-wrap a { color: var(--sage-deep); text-decoration: underline; text-underline-offset: 3px; }
.legal-wrap a:hover { color: var(--ink); }
.legal-wrap strong { color: var(--ink); }
.legal-contact {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--sage-soft);
  border-radius: var(--radius);
  border: 1px solid rgba(95, 122, 94, 0.18);
}
.legal-contact p { margin: 0 0 .4rem; font-size: 0.98rem; }
.legal-contact p:last-child { margin-bottom: 0; }
@media (max-width: 640px) {
  .legal-wrap h1 { font-size: 1.9rem; }
  .legal-wrap h2 { font-size: 1.2rem; }
  .legal-wrap p, .legal-wrap li { font-size: 0.96rem; }
}

/* What happens when you apply panel */
.call-panel {
  margin: 1.8rem auto 0;
  max-width: 560px;
  background: var(--sage-soft);
  border: 1px solid rgba(95, 122, 94, 0.22);
  border-radius: var(--radius);
  padding: 1.25rem 1.45rem 1.3rem;
  text-align: left;
}
.call-panel-title {
  margin: 0 0 .65rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-deep);
}
.call-panel-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.call-panel-list li {
  position: relative;
  padding-left: 1.9rem;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.call-panel-tick {
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: var(--sage-deep);
  display: inline-block;
}
.call-panel-tick::after {
  content: "";
  position: absolute;
  left: 0.38rem;
  top: 0.22rem;
  width: 0.32rem;
  height: 0.62rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}
@media (max-width: 640px) {
  .call-panel { padding: 1rem 1.1rem 1.1rem; }
  .call-panel-list li { font-size: 0.93rem; padding-left: 1.75rem; }
  .call-panel-title { font-size: 0.72rem; }
}
.hero-meta {
  display: inline-flex; gap: .75rem; align-items: center;
  font-size: .95rem; color: var(--muted);
  flex-wrap: wrap; justify-content: center;
}
.hero-meta .stars { color: var(--terracotta); letter-spacing: 1px; font-size: 1rem; }

.hero-image {
  position: relative;
}
.hero-image img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--radius);
  box-shadow:
    0 2px 0 rgba(29,26,22,.03),
    0 40px 60px -40px rgba(29,26,22,.35),
    0 20px 30px -20px rgba(29,26,22,.2);
}
.hero-image-caption { display: none; }

@media (max-width: 840px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { max-width: 560px; margin: 0 auto; }
  .hero-photo { max-width: 320px; }
}
@media (max-width: 560px) {
  .hero-photo { max-width: 260px; }
}

/* =========================
   PROOF STRIP
   ========================= */
.proof-strip {
  background: var(--ink);
  color: var(--cream);
  padding: 1.1rem 0;
  font-size: .95rem;
}
.proof-inner {
  display: flex; flex-wrap: wrap; gap: 1.4rem;
  align-items: center; justify-content: center;
  text-align: center;
}
.proof-item { display: inline-flex; align-items: center; gap: .55rem; color: var(--cream); }
.proof-item strong { color: #fff; font-weight: 700; }
.proof-item .stars { color: #e8a884; letter-spacing: 1px; }
.proof-sep {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(246,239,228,.35);
}
a.proof-item { transition: color .15s var(--ease); }
a.proof-item:hover { color: #e8a884; }

/* =========================
   GENERIC SECTIONS
   ========================= */
.problem, .different, .vsl, .videos, .guarantee, .how, .gallery, .programmes, .stories-section, .ambassadors, .team, .faq, .cta {
  padding: var(--section-y) 0;
}
.problem { background: var(--cream); }
.different { background: var(--cream-deep); }
.vsl { background: var(--cream-soft); }

/* Why we're different */
.different-inner { max-width: 1100px; margin: 0 auto; }
.different-header { text-align: center; max-width: 780px; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.different-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
@media (max-width: 960px) {
  .different-grid { grid-template-columns: repeat(2, 1fr); }
}
.different-card {
  background: var(--cream);
  border: 1px solid rgba(31, 42, 34, 0.08);
  border-radius: var(--radius);
  padding: 1.75rem 1.6rem 1.7rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.different-num {
  font-family: var(--font-display, serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--sage-deep);
  letter-spacing: 0.04em;
  margin-bottom: .15rem;
}
.different-title {
  font-family: var(--font-display, serif);
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  line-height: 1.25;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}
.different-body {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
@media (max-width: 760px) {
  .different-grid { grid-template-columns: 1fr; gap: .9rem; }
  .different-card { padding: 1.4rem 1.3rem 1.35rem; }
  .different-title { font-size: 1.08rem; }
  .different-body { font-size: 0.94rem; }
}
.videos { background: var(--cream); }
.videos-header { max-width: 820px; margin: 0 auto clamp(1.75rem, 3.5vw, 2.75rem); text-align: center; }
.videos-header .section-heading { font-size: clamp(1.75rem, 3.6vw, 2.6rem); margin-bottom: 0; }
@media (max-width: 640px) {
  .videos-header .section-heading { font-size: 1.6rem; line-height: 1.18; }
}
.guarantee { background: var(--ink); color: var(--cream); }
.guarantee .section-heading { color: var(--cream); }
.how { background: var(--cream); }
.gallery { background: var(--cream-soft); }
.programmes { background: var(--cream); }
.stories-section { background: var(--cream-soft); }
.ambassadors { background: var(--cream); }
.team { background: var(--cream-soft); }
.faq { background: var(--cream); }
.cta { background: var(--ink); color: var(--cream); }

/* inline CTA band — used after key proof sections */
.inline-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.inline-cta .btn { min-width: 260px; }
.inline-cta-note {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  letter-spacing: 0.005em;
}
.inline-cta-dark .inline-cta-note { color: rgba(246,239,228,0.7); }

/* =========================
   PROBLEM
   ========================= */
.problem-inner {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.problem-inner:has(.problem-copy-full) { display: block; }
.problem-copy { max-width: 580px; }
.problem-copy-full { max-width: 780px; margin: 0 auto; text-align: center; }
.problem-copy-full .section-lead { margin-left: auto; margin-right: auto; }

/* tightened problem copy (section padding now uses the shared rhythm) */
.problem-heading {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  margin-bottom: 0.9rem;
}
.problem-copy-full .section-lead {
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  line-height: 1.55;
  margin-bottom: 0.9rem;
}
.problem-copy-full .section-eyebrow { margin-bottom: 0.7rem; }
@media (max-width: 640px) {
  .problem-heading { font-size: 1.55rem; line-height: 1.15; margin-bottom: 0.75rem; }
  .problem-copy-full .section-lead { font-size: 0.98rem; line-height: 1.5; margin-bottom: 0.75rem; }
  .problem-copy-full .section-eyebrow { font-size: 0.72rem; margin-bottom: 0.5rem; }
}
.problem-media img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 30px 50px -30px rgba(29,26,22,.3);
}
@media (max-width: 840px) { .problem-inner { grid-template-columns: 1fr; } }

/* =========================
   VIDEOS
   ========================= */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.video-card {
  background: transparent;
  display: flex; flex-direction: column; gap: 1rem;
}
.video-thumb {
  position: relative; width: 100%; aspect-ratio: 16/9;
  border-radius: var(--radius); overflow: hidden;
  cursor: pointer; display: block; padding: 0;
  background: var(--ink);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 20px 40px -20px rgba(29,26,22,.3);
}
.video-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s var(--ease), opacity .25s var(--ease);
}
.video-thumb::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(29,26,22,.45) 100%);
  opacity: .7; transition: opacity .25s var(--ease);
  pointer-events: none;
  z-index: 1;
}
.play-icon {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(1);
  width: 76px; height: 54px;
  display: grid; place-items: center;
  transition: transform .25s var(--ease), background-color .2s var(--ease);
  z-index: 2;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,.45));
  /* Override the YouTube-red SVG with a brand terracotta disc */
  background: var(--terracotta);
  border-radius: 16px;
  pointer-events: none;
}
.play-icon svg { display: none; }
.play-icon::after {
  content: "";
  display: block;
  width: 0; height: 0;
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}
.video-thumb:hover .play-icon { background: var(--terracotta-deep); }
.video-duration {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(29,26,22,.85); color: #fff;
  padding: .25rem .5rem; border-radius: 4px;
  font-size: .78rem; font-weight: 600;
  z-index: 2;
  pointer-events: none;
}
.video-thumb:hover { transform: translateY(-4px); box-shadow: 0 30px 50px -20px rgba(29,26,22,.4); }
.video-thumb:hover img { transform: scale(1.04); }
.video-thumb:hover .play-icon { transform: translate(-50%,-50%) scale(1.08); }
.video-thumb:hover::before { opacity: .5; }

.video-title {
  font-family: var(--ff-display);
  font-size: 1.35rem; line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.012em;
  margin: 0;
  color: var(--ink);
}

.videos-more {
  margin-top: clamp(2rem, 4vw, 3rem); text-align: center;
  font-size: 1.05rem;
}
.videos-more a { border-bottom: 1px solid var(--rule); padding-bottom: 2px; color: var(--ink); font-weight: 500; transition: border-color .2s var(--ease); }
.videos-more a:hover { border-bottom-color: var(--sage); }

@media (max-width: 760px) {
  .video-grid { grid-template-columns: 1fr; }
  .play-icon { width: 60px; height: 42px; border-radius: 12px; }
  .play-icon::after {
    border-width: 9px 0 9px 14px;
    margin-left: 3px;
  }
}

/* =========================
   GUARANTEE
   ========================= */
.guarantee-statement { text-align: center; margin-bottom: clamp(3rem, 6vw, 5rem); }
.big-statement {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.022em;
  margin: 0;
  color: var(--cream);
  font-variation-settings: "opsz" 144;
}
.big-statement em {
  font-style: italic; font-weight: 500;
  color: #e8a884;
}

.guarantee-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.guarantee-point {
  padding: 2rem 1.8rem;
  background: rgba(246,239,228,0.04);
  border: 1px solid rgba(246,239,228,0.1);
  border-radius: var(--radius);
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.guarantee-point:hover { transform: translateY(-4px); border-color: rgba(246,239,228,0.2); }
.guarantee-num {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.4rem;
  color: #e8a884;
  margin-bottom: 1rem;
  font-weight: 500;
}
.guarantee-point h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem; font-weight: 600; line-height: 1.2;
  margin: 0 0 .75rem;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.guarantee-point p {
  font-size: 1rem; line-height: 1.6;
  color: rgba(246,239,228,0.78);
  margin: 0;
}
.guarantee-point p + .guarantee-outcomes { margin-top: 0.75rem; }
.guarantee-outcomes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.guarantee-outcomes li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(246,239,228,0.88);
}
.guarantee-outcomes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--terracotta, #c96f4a);
}
.guarantee-outcomes-close {
  margin-top: 0.9rem !important;
  font-style: italic;
  color: rgba(246,239,228,0.72) !important;
}
@media (max-width: 900px) { .guarantee-grid { grid-template-columns: 1fr; } }

/* =========================
   HOW IT WORKS
   ========================= */
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  counter-reset: how;
}
.how-step {
  position: relative;
  padding: 1.8rem 1.5rem 1.8rem;
  background: var(--cream-soft);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}
.how-num {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink); color: var(--cream);
  font-family: var(--ff-display); font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.how-step h3 {
  font-family: var(--ff-display);
  font-size: 1.25rem; font-weight: 600; line-height: 1.25;
  margin: 0 0 .5rem; letter-spacing: -0.01em;
}
.how-step p { font-size: .98rem; color: var(--ink-soft); margin: 0; line-height: 1.55; }
@media (max-width: 1000px) { .how-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .how-steps { grid-template-columns: 1fr; } }

/* =========================
   GALLERY STRIP (horizontal scroll)
   ========================= */
.gallery {
  background: var(--ink);
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
}
.gallery-track {
  display: flex; gap: 1rem;
  overflow-x: auto;
  padding: 0 var(--gutter);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery figure {
  flex: 0 0 auto;
  width: clamp(220px, 26vw, 360px);
  margin: 0;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery figure img {
  width: 100%; height: 300px; object-fit: cover;
  display: block;
  transition: transform .4s var(--ease);
}
.gallery figure:hover img { transform: scale(1.04); }
@media (max-width: 560px) {
  .gallery figure { width: 80%; }
  .gallery figure img { height: 240px; }
}

/* =========================
   PROGRAMMES
   ========================= */
.programme-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.programme-card {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.programme-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 50px -30px rgba(29,26,22,.25);
}
.programme-media img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
}
.programme-body { padding: clamp(1.5rem, 3vw, 2.2rem); }
.programme-tag {
  display: inline-block;
  font-size: .7rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-deep);
  padding: .3rem .7rem;
  border-radius: 999px;
  background: var(--sage-soft);
  margin-bottom: 1rem;
}
.programme-title {
  font-family: var(--ff-display);
  font-size: 1.95rem; font-weight: 600; line-height: 1.1;
  letter-spacing: -0.012em;
  margin: 0 0 .8rem;
  color: var(--ink);
}
.programme-lead {
  font-size: 1.05rem; line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 1.4rem;
}
.programme-points {
  margin: 0 0 1.8rem;
  display: flex; flex-direction: column; gap: .7rem;
  font-size: .98rem; color: var(--ink-soft);
}
.programme-points li {
  position: relative; padding-left: 1.6rem; line-height: 1.5;
}
.programme-points li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sage);
}
.pricing-note {
  margin-top: 2rem; text-align: center;
  font-family: var(--ff-display);
  font-style: italic; color: var(--muted);
  font-size: 1.05rem;
}
@media (max-width: 840px) { .programme-grid { grid-template-columns: 1fr; } }

/* =========================
   REVIEWS
   ========================= */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.review-card {
  background: var(--cream-soft);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  margin: 0;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 40px -24px rgba(29,26,22,.22);
}
.review-card .stars { color: var(--terracotta); letter-spacing: 2px; font-size: .95rem; }
.review-card blockquote {
  font-family: var(--ff-display);
  font-size: 1.22rem; line-height: 1.4;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.005em;
  flex-grow: 1;
}
.review-card figcaption {
  display: flex; flex-direction: column; gap: .1rem;
  font-size: .95rem;
}
.review-card figcaption strong { color: var(--ink); font-weight: 600; }
.review-card figcaption span { color: var(--muted); font-size: .82rem; }

.reviews-more {
  margin-top: clamp(2rem, 4vw, 3rem); text-align: center;
  font-size: 1.05rem;
}
.reviews-more a { border-bottom: 1px solid var(--rule); padding-bottom: 2px; color: var(--ink); font-weight: 500; transition: border-color .2s var(--ease); }
.reviews-more a:hover { border-bottom-color: var(--sage); }
@media (max-width: 900px) { .review-grid { grid-template-columns: 1fr; } }

/* =========================
   AMBASSADORS (Instagram dog owners)
   ========================= */
.ambassadors {
  /* background + padding set in GENERIC SECTIONS */
}
.amb-lead { max-width: 62ch; margin-top: .6rem; }
.amb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 2.4vw, 2rem);
  margin-top: clamp(2rem, 4vw, 3.2rem);
}
.amb-card {
  display: block;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1.4rem 1.2rem 1.3rem;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.amb-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -24px rgba(29,26,22,.28);
  border-color: var(--sage);
}
.amb-media {
  width: 118px; height: 118px;
  margin: 0 auto .9rem;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream-deep);
  box-shadow: 0 0 0 3px var(--cream-soft), 0 0 0 4px var(--sage-soft);
}
.amb-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.amb-card h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem; font-weight: 600;
  margin: 0 0 .25rem; letter-spacing: 0;
  color: var(--ink);
  line-height: 1.2;
}
.amb-breed {
  font-size: .85rem;
  color: var(--muted);
  margin: 0 0 .4rem;
  line-height: 1.4;
}
.amb-ask {
  font-size: .85rem;
  font-style: italic;
  color: var(--sage-deep);
  margin: 0 0 .55rem;
  line-height: 1.4;
  letter-spacing: 0.005em;
}
.amb-handle {
  font-size: .85rem;
  color: var(--sage-deep);
  font-weight: 600;
  margin: 0;
  letter-spacing: 0;
  word-break: break-word;
}
@media (max-width: 980px) { .amb-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .amb-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .amb-grid { grid-template-columns: 1fr; } }

/* =========================
   TEAM
   ========================= */
.team-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}
.team-grid-single {
  grid-template-columns: minmax(0, 880px);
  justify-content: center;
}
.team-card {
  display: grid; grid-template-columns: 260px 1fr;
  gap: 2rem; align-items: flex-start;
}
.team-grid-single .team-card { grid-template-columns: 300px 1fr; gap: 2.5rem; }
.team-body p + p { margin-top: .9rem; }
.team-media img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: var(--radius);
}
.team-body h3 {
  font-family: var(--ff-display);
  font-size: 2rem; font-weight: 600; margin: 0 0 .2rem;
  letter-spacing: -0.012em;
}
.team-role {
  font-size: .85rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 1rem;
}
.team-body p { margin: 0; color: var(--ink-soft); line-height: 1.65; }
.team-body p strong { color: var(--ink); font-weight: 600; }

@media (max-width: 900px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-grid-single { grid-template-columns: 1fr; }
  .team-grid-single .team-card { grid-template-columns: 260px 1fr; gap: 1.5rem; }
}
@media (max-width: 560px) {
  .team-card,
  .team-grid-single .team-card { grid-template-columns: 1fr; gap: 1rem; }
  .team-media img { aspect-ratio: 4/3; }
}

/* =========================
   FAQ
   ========================= */
.faq-list {
  max-width: 880px; margin: 0 auto;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--rule);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.35rem .5rem;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
  font-family: var(--ff-display);
  font-size: 1.25rem; font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.005em;
  transition: color .2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--sage-deep); }
.faq-icon {
  position: relative;
  width: 22px; height: 22px;
  flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  background: currentColor;
  transition: transform .2s var(--ease);
}
.faq-icon::before { width: 14px; height: 2px; transform: translate(-50%,-50%); }
.faq-icon::after { width: 2px; height: 14px; transform: translate(-50%,-50%); }
.faq-item[open] .faq-icon::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-answer {
  padding: 0 .5rem 1.5rem;
  max-width: 68ch;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.65;
}
.faq-answer p { margin: 0 0 .8rem; }
.faq-answer p:last-child { margin-bottom: 0; }

/* Smooth expand on native details */
.faq-item[open] summary { color: var(--sage-deep); }

/* =========================
   CTA
   ========================= */
.cta-inner { text-align: center; max-width: 800px; margin: 0 auto; }
.cta-heading {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.022em;
  margin: 0 0 1.4rem;
  color: var(--cream);
  font-variation-settings: "opsz" 144;
}
.cta-heading em { font-style: italic; font-weight: 500; color: #e8a884; }
.cta-sub {
  font-size: 1.15rem; line-height: 1.55;
  color: rgba(246,239,228,0.78);
  max-width: 48ch;
  margin: 0 auto 2rem;
}
.cta-actions {
  display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center;
  margin-bottom: 1.8rem;
}
.cta .btn-primary {
  background: var(--cream); color: var(--ink);
}
.cta .btn-primary:hover { background: #fff; }
.cta-detail {
  font-size: .95rem; color: rgba(246,239,228,0.6);
  display: inline-flex; flex-wrap: wrap; justify-content: center; gap: .4rem;
}
.cta-detail a { color: var(--cream); border-bottom: 1px solid rgba(246,239,228,0.3); padding-bottom: 1px; }
.cta-detail a:hover { border-bottom-color: var(--cream); }

/* =========================
   FOOTER
   ========================= */
.site-footer {
  background: #13110e;
  color: rgba(246,239,228,0.75);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0 2rem;
  font-size: .92rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr .8fr 1.3fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(246,239,228,0.08);
}
.footer-brand .logo-link { color: var(--cream); margin-bottom: .8rem; }
.footer-brand p { margin: 0; max-width: 32ch; line-height: 1.55; }
.footer-col h4 {
  font-family: var(--ff-display);
  font-size: 1rem; font-weight: 600;
  color: var(--cream);
  margin: 0 0 1rem;
  letter-spacing: -0.005em;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { transition: color .15s var(--ease); }
.footer-col a:hover { color: var(--cream); }
.footer-areas p { line-height: 1.6; margin: 0 0 1rem; }
.footer-social { display: flex; gap: .6rem; margin-top: 1rem; }
.footer-social a {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(246,239,228,0.15);
  border-radius: 50%;
  color: rgba(246,239,228,0.75);
  transition: color .15s var(--ease), border-color .15s var(--ease), background-color .15s var(--ease);
}
.footer-social a:hover { color: var(--cream); border-color: var(--cream); background: rgba(246,239,228,0.05); }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem;
  padding-top: 1.8rem;
  font-size: .85rem;
  color: rgba(246,239,228,0.55);
}
.footer-bottom p { margin: 0; }
.footer-mini { text-align: right; }
.footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.4rem;
  font-size: .85rem;
}
.footer-legal li { margin: 0; }
.footer-legal a {
  color: rgba(246,239,228,0.75);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}
.footer-legal a:hover { color: var(--cream); border-bottom-color: rgba(246,239,228,0.45); }

@media (max-width: 1000px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-areas { grid-column: span 2; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand, .footer-areas { grid-column: span 1; }
  .footer-mini { text-align: left; }
}

/* =========================
   TOP HOOK STRIP (reactive dog owners)
   ========================= */
.hook-strip {
  background: var(--sage-deep);
  color: var(--cream);
  padding: .85rem 0;
  font-size: .98rem;
  line-height: 1.4;
}
.hook-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
  display: flex; gap: .65rem; justify-content: center; align-items: center;
  flex-wrap: wrap;
}
.hook-inner strong {
  color: #fff;
  font-weight: 600;
}

/* =========================
   VSL VIDEO (single, full-width in problem section)
   ========================= */
.vsl {
  /* background + padding set in GENERIC SECTIONS */
}
.vsl-inner {
  max-width: 920px;
  margin: 0 auto;
}
.vsl-eyebrow {
  text-align: center;
  margin-bottom: 1.25rem;
}
.vsl-heading {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.012em;
  text-align: center;
  margin: 0 0 2rem;
  color: var(--ink);
}
.vsl-heading em {
  font-style: italic; font-weight: 500; color: var(--sage-deep);
}
.vsl-frame {
  position: relative; width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 60px -28px rgba(29,26,22,.45);
}
.vsl-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.vsl-caption {
  margin-top: 1.1rem;
  text-align: center;
  color: var(--muted);
  font-size: .95rem;
  font-style: italic;
  font-family: var(--ff-display);
}

/* =========================
   BEFORE / AFTER STORY CARDS
   ========================= */
.stories-section {
  /* background + padding set in GENERIC SECTIONS */
}
.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.story-card {
  background: var(--cream-soft);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 2.6vw, 2.2rem);
  display: flex; flex-direction: column; gap: 1.1rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.story-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 40px -24px rgba(29,26,22,.22);
}
.story-owner {
  display: flex; flex-direction: column; gap: .15rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rule);
}
.story-owner strong {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.story-owner span {
  font-size: .92rem;
  color: var(--muted);
}
.story-ba {
  display: flex; flex-direction: column; gap: .9rem;
}
.story-ba .label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: .3rem;
}
.story-ba .before .label { color: var(--muted); }
.story-ba .after .label { color: var(--sage-deep); }
.story-ba p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.story-ba .after p {
  color: var(--ink);
  font-weight: 500;
}
.story-quote {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px dashed var(--rule);
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.story-stars {
  color: var(--terracotta);
  letter-spacing: 2px;
  font-size: .9rem;
}

@media (max-width: 760px) {
  .stories-grid { grid-template-columns: 1fr; }
}

/* =========================
   SCROLL REVEAL
   ========================= */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* =========================
   LITE YOUTUBE — played state
   ========================= */
.video-thumb.is-playing { cursor: default; }
.video-thumb iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
  z-index: 3;
}

/* =========================
   MOBILE STICKY CTA
   ========================= */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom));
  background: rgba(246, 239, 228, 0.96);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-top: 1px solid rgba(29, 26, 22, 0.08);
  box-shadow: 0 -8px 24px -14px rgba(29, 26, 22, 0.25);
  gap: 0.55rem;
  align-items: center;
}
.mobile-sticky-cta .sticky-apply {
  flex: 1 1 auto;
  text-align: center;
  padding: 0.85rem 1rem;
  font-size: 0.98rem;
  border-radius: 999px;
}
.mobile-sticky-cta .sticky-whatsapp {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  transition: transform .15s ease;
}
.mobile-sticky-cta .sticky-whatsapp:hover { transform: translateY(-1px); }

@media (max-width: 820px) {
  .mobile-sticky-cta { display: flex; }
  /* Push footer/last section padding so the bar does not cover content */
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
}

/* =========================
   404 PAGE
   ========================= */
.notfound-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(3rem, 8vw, 6rem) var(--gutter);
}
.notfound-card {
  max-width: 640px;
  width: 100%;
  text-align: center;
}
.notfound-eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 1.5rem;
}
.notfound-heading {
  font-family: var(--ff-display);
  font-size: clamp(2.1rem, 5vw, 3.3rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 1.2rem;
}
.notfound-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto 2.2rem;
}
.notfound-actions {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.8rem;
}
.notfound-links {
  list-style: none;
  margin: 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  justify-content: center;
}
.notfound-links li { margin: 0; }
.notfound-links a {
  font-size: 0.95rem;
  color: var(--sage-deep);
  text-decoration: none;
  font-weight: 500;
}
.notfound-links a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 540px) {
  .notfound-actions .btn { width: 100%; }
}

/* =========================
   TESTIMONIALS PAGE
   ========================= */
.testimonials-page { background: var(--cream); }
.testimonials-hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}
.testimonials-hero .container { max-width: 880px; }
.testimonials-h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5.4vw, 3.6rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.014em;
  color: var(--ink);
  margin: 0 0 1.2rem;
}
.testimonials-h1 em {
  font-style: italic;
  color: var(--sage-deep);
  font-weight: 500;
}
.testimonials-lead {
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0 auto;
}
.testimonials-section {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(2.5rem, 5vw, 4.5rem);
}
.testimonials-section .section-header {
  max-width: 760px;
  margin: 0 auto clamp(1.75rem, 3.5vw, 2.75rem);
  text-align: center;
}
.testimonials-sub {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0.6rem auto 0;
}
.testimonials-grid {
  /* Inherits .video-grid (2 cols). Override to 3 cols on wide screens. */
}
@media (min-width: 1080px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 2.5vw, 2.25rem);
  }
}
.testimonials-grid .video-title {
  font-size: 1.15rem;
  line-height: 1.3;
}
.testimonials-grid-single {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width: 1080px) {
  .testimonials-grid-single { grid-template-columns: 1fr; }
}

.testimonials-residential {
  background: var(--cream-deep);
  border-top: 1px solid rgba(95, 122, 94, 0.12);
  border-bottom: 1px solid rgba(95, 122, 94, 0.12);
}

.testimonials-cta {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 6rem);
}
.testimonials-cta-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  padding: clamp(2.2rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}
.testimonials-cta-card .section-eyebrow.light { color: var(--cream-deep); }
.testimonials-cta-heading {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--cream);
  margin: 0 0 1rem;
}
.testimonials-cta-lead {
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(246, 239, 228, 0.8);
  max-width: 560px;
  margin: 0 auto 1.8rem;
}
.testimonials-cta-back {
  margin: 1.6rem 0 0;
  font-size: 0.95rem;
}
.testimonials-cta-back a {
  color: rgba(246, 239, 228, 0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(246, 239, 228, 0.25);
  padding-bottom: 2px;
}
.testimonials-cta-back a:hover {
  color: var(--cream);
  border-bottom-color: var(--cream);
}

/* Legal page navigation links */
.legal-nav {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  list-style: none;
}
.legal-nav li { margin: 0; }
.legal-nav a {
  font-size: 0.92rem;
  color: var(--sage-deep);
  text-decoration: none;
  font-weight: 500;
}
.legal-nav a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

/* Footer local landing pages line */
.footer-local {
  margin-top: 0.7rem;
  font-size: 0.92rem;
  color: rgba(246, 239, 228, 0.85);
}
.footer-local strong { color: var(--cream); font-weight: 600; }
.footer-local a {
  color: var(--cream);
  border-bottom: 1px solid rgba(246, 239, 228, 0.35);
  padding-bottom: 1px;
  margin-left: 0.25rem;
}
.footer-local a:hover { border-bottom-color: var(--cream); }


/* Local dog spots section */
.local-spots { padding: clamp(56px, 9vw, 120px) 0; background: var(--cream-soft); }
.local-spots-inner { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.local-spots .kicker { color: var(--terracotta); margin-bottom: 12px; }
.local-spots .section-heading { font-family: var(--ff-display); font-weight: 600; font-size: clamp(1.8rem, 3.4vw, 2.6rem); line-height: 1.15; margin: 0 0 18px; max-width: 22ch; }
.local-spot-lead { font-size: 1.05rem; line-height: 1.65; margin: 0 0 36px; max-width: 70ch; color: var(--ink); }
.local-spot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px 32px; margin: 28px 0 24px; }
.local-spot-col { padding: 22px 22px 18px; border: 1px solid var(--rule); border-radius: var(--radius); background: var(--cream); }
.local-spot-h { font-family: var(--ff-display); font-weight: 600; font-size: 1.15rem; margin: 0 0 10px; color: var(--sage-deep); }
.local-spot-list { list-style: none; margin: 0; padding: 0; }
.local-spot-list li { padding: 6px 0; border-bottom: 1px dashed var(--rule); font-size: 0.97rem; color: var(--ink); }
.local-spot-list li:last-child { border-bottom: 0; }
.local-spot-walks { margin: 18px 0 6px; font-size: 0.97rem; line-height: 1.6; color: var(--ink); }
.local-spot-foot { margin: 22px 0 0; font-size: 0.95rem; line-height: 1.6; color: var(--ink); opacity: 0.78; max-width: 70ch; }


/* ============================================================
   Round 7 — WhatsApp, reviews badge, sticky mobile bar, YT facade
   ============================================================ */

/* Reviews badge near hero (and floating top-right on scroll) */
.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 12px;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-family: var(--ff-sans);
  font-size: 0.92rem;
  color: var(--ink);
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
  line-height: 1;
}
.reviews-badge:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,0,0,.07); }
.reviews-badge .stars { color: #e9a83a; letter-spacing: 1px; font-size: 0.95rem; }
.reviews-badge .rb-count { color: var(--ink); opacity: .75; font-size: 0.85rem; }
.reviews-badge .rb-strong { font-weight: 600; }
.hero-reviews-badge { margin: 14px 0 6px; }

/* Rotating review strip (homepage only, below hero) */
.review-strip {
  background: var(--cream-soft);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 20px 24px;
  overflow: hidden;
}
.review-strip-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.review-strip-quote {
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
  margin: 0;
  max-width: 760px;
  min-height: 2.6em;
  transition: opacity .5s ease;
}
.review-strip-attr {
  font-family: var(--ff-sans);
  font-size: 0.88rem;
  color: var(--sage-deep);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: opacity .5s ease;
}
.review-strip-quote.fading,
.review-strip-attr.fading { opacity: 0; }

/* Floating WhatsApp button (bottom-right desktop, hidden mobile in favour of bar) */
.fab-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35), 0 2px 6px rgba(0,0,0,.1);
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.fab-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45); }
.fab-whatsapp svg { width: 30px; height: 30px; fill: #fff; }
.fab-whatsapp::after {
  content: "Chat on WhatsApp";
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: var(--cream);
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.fab-whatsapp:hover::after { opacity: 1; }

/* Universal sticky CTA bar (was mobile-only; now shown on all viewports) */
.mobile-cta-bar {
  display: flex;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  width: min(620px, calc(100vw - 24px));
  z-index: 95;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  gap: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12), 0 2px 6px rgba(0,0,0,.06);
}
.mobile-cta-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 999px;
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1;
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}
.mobile-cta-bar a:hover { transform: translateY(-1px); }
.mobile-cta-bar .mcb-apply {
  flex: 1;
  background: var(--terracotta);
  color: var(--cream);
}
.mobile-cta-bar .mcb-apply:hover { background: var(--terracotta-deep); }
.mobile-cta-bar .mcb-whatsapp {
  background: #25d366;
  color: #fff;
  flex: 0 0 auto;
  width: 50px;
  padding: 13px 0;
}
.mobile-cta-bar .mcb-whatsapp:hover { filter: brightness(0.95); }
.mobile-cta-bar .mcb-whatsapp svg { width: 22px; height: 22px; fill: currentColor; }
.mobile-cta-bar .mcb-whatsapp span { display: none; } /* icon-only on bar */

/* Floating WhatsApp FAB is now superseded by the bar's WhatsApp button. Hide. */
.fab-whatsapp { display: none !important; }

/* Old mobile-sticky-cta block is replaced by .mobile-cta-bar; hide everywhere. */
.mobile-sticky-cta { display: none !important; }

/* Pad bottom of body so footer doesn't sit under the bar */
body { padding-bottom: 84px; }
/* fit-check page has no bar, so no padding needed */
body.fc-body { padding-bottom: 0; }

@media (max-width: 720px) {
  .mobile-cta-bar {
    bottom: 12px;
    width: calc(100vw - 20px);
    padding: 7px 7px calc(7px + env(safe-area-inset-bottom));
  }
  .mobile-cta-bar .mcb-apply { padding: 12px 12px; font-size: 0.9rem; }
  .mobile-cta-bar .mcb-whatsapp { width: 46px; padding: 12px 0; }
  body { padding-bottom: 78px; }
}

/* YouTube facade (click-to-load) */
.yt-facade {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0a0a0a;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 0;
  padding: 0;
  display: block;
}
.yt-facade .yt-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.92;
  transition: opacity .25s ease, transform .4s ease;
}
.yt-facade:hover .yt-thumb { opacity: 1; transform: scale(1.02); }
.yt-facade .yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 54px;
  border-radius: 14px;
  background: var(--terracotta);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .2s ease;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,.35));
}
.yt-facade:hover .yt-play { background: var(--terracotta-deep); transform: translate(-50%, -50%) scale(1.05); }
.yt-facade .yt-play::after {
  content: "";
  display: block;
  width: 0; height: 0;
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}
.yt-facade .yt-label {
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.02em;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
}


/* =====================================================================
   FIT CHECK — quiz page
   ===================================================================== */

.fc-body { background: var(--cream-soft); }
.fc-header { border-bottom: 1px solid var(--rule); }
.fc-main { padding: 3rem 0 4rem; }
.fc-footer { background: var(--cream); border-top: 1px solid var(--rule); padding: 1.5rem 0; margin-top: 3rem; }
.fc-footer .footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; }

.fc-container { max-width: 720px; }
.fc-screen { display: none; }
.fc-screen.is-active { display: block; }
.fc-quiz { animation: fcFade .25s ease-out; }

.fc-title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: .35rem 0 1rem;
}
.fc-lede {
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
  margin-bottom: 1.5rem;
}
.fc-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  gap: .65rem;
}
.fc-bullets li {
  padding-left: 1.75rem;
  position: relative;
  color: var(--ink-soft);
  line-height: 1.5;
}
.fc-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 12px; height: 12px;
  background: var(--sage-deep);
  border-radius: 3px;
  transform: rotate(45deg);
}
.fc-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-top: 1.25rem; }
.fc-actions-stack { flex-direction: column; align-items: stretch; gap: .75rem; }
.fc-actions-stack .btn { width: 100%; text-align: center; }
.fc-link-soft {
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: .95rem;
}

/* Progress bar */
.fc-progress {
  height: 6px;
  background: var(--rule);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: .5rem;
}
.fc-progress-bar {
  height: 100%;
  background: var(--sage-deep);
  width: 11%;
  border-radius: 999px;
  transition: width .35s ease;
}
.fc-progress-label {
  font-size: .85rem;
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
  font-weight: 500;
}

/* Question block */
.fc-question { display: none; border: 0; padding: 0; margin: 0; }
.fc-question.is-active { display: block; animation: fcFade .25s ease-out; }
.fc-q-title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 .5rem;
  padding: 0;
  display: block;
  width: 100%;
}
.fc-q-help {
  color: var(--ink-soft);
  font-size: 1rem;
  margin: 0 0 1.5rem;
  line-height: 1.5;
}

/* Options */
.fc-options {
  display: grid;
  gap: .65rem;
  margin-bottom: 1.5rem;
}
.fc-option {
  display: block;
  width: 100%;
  text-align: left;
  background: #fff;
  border: 2px solid var(--rule);
  color: var(--ink);
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  font-family: var(--ff-sans);
  font-size: 1rem;
  line-height: 1.4;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, transform .1s ease;
}
.fc-option:hover {
  border-color: var(--sage-deep);
  background: var(--cream);
}
.fc-option:focus-visible {
  outline: 2px solid var(--sage-deep);
  outline-offset: 2px;
}
.fc-option.is-selected {
  border-color: var(--sage-deep);
  background: var(--sage-soft);
}
.fc-option.is-selected .fc-opt-label::before {
  content: "✓ ";
  color: var(--sage-deep);
  font-weight: 700;
}

/* Form fields */
.fc-field { margin-bottom: 1.25rem; }
.fc-label {
  display: block;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .4rem;
  font-size: .95rem;
}
.fc-optional {
  font-weight: 400;
  color: var(--ink-soft);
  font-size: .85rem;
}
.fc-input, .fc-select {
  width: 100%;
  padding: .85rem 1rem;
  border: 2px solid var(--rule);
  border-radius: var(--radius-sm);
  background: #fff;
  font-family: var(--ff-sans);
  font-size: 1rem;
  color: var(--ink);
  box-sizing: border-box;
}
.fc-input:focus, .fc-select:focus {
  outline: none;
  border-color: var(--sage-deep);
}
.fc-input-error {
  border-color: var(--terracotta-deep) !important;
  background: #fdf3ee;
}
.fc-select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='%233f5a42' d='M4 6l4 4 4-4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}

/* Consent */
.fc-consent { margin: 1rem 0 1.25rem; }
.fc-check {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  cursor: pointer;
  font-size: .95rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
.fc-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--sage-deep);
}
.fc-fineprint {
  font-size: .85rem;
  color: var(--ink-soft);
  margin: .75rem 0 0;
  line-height: 1.5;
}
.fc-fineprint a { color: var(--sage-deep); text-decoration: underline; }

/* Nav (back button) */
.fc-nav { margin-top: 1.5rem; }
.fc-back {
  background: none;
  border: 0;
  color: var(--ink-soft);
  font-family: var(--ff-sans);
  font-size: .95rem;
  cursor: pointer;
  padding: .5rem 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.fc-back:hover { color: var(--ink); }

/* Result screens */
.fc-result.is-active { display: block; animation: fcFade .35s ease-out; }
.fc-result-summary {
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
  max-width: 62ch;
}
.fc-result-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin: 1.25rem 0 1.75rem;
}
.fc-result-card h3 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.25rem;
  margin: 0 0 .5rem;
  color: var(--sage-deep);
}
.fc-result-card p { margin: .5rem 0; line-height: 1.55; color: var(--ink); }
.fc-result-card ul { margin: .65rem 0; padding-left: 1.25rem; line-height: 1.6; }
.fc-result-card ul a { color: var(--sage-deep); text-decoration: underline; }
.fc-result-card-emphasis {
  background: var(--sage-soft);
  border-color: var(--sage-deep);
}

.fc-result-notes-card {
  background: var(--cream);
  border: 1.5px solid var(--sage-deep);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin: 0 0 1.75rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.fc-result-notes-card h3 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.2rem;
  margin: 0 0 .35rem;
  color: var(--sage-deep);
}
.fc-result-notes-help {
  margin: 0 0 .85rem;
  font-size: .95rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.fc-result-notes-card .fc-textarea {
  background: #fff;
}
@media (max-width: 720px) {
  .fc-result-notes-card { padding: 1.25rem; }
}

.fc-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

@keyframes fcFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 720px) {
  .fc-main { padding: 1.5rem 0 4rem; }
  .fc-result-card { padding: 1.25rem; }
  .fc-option { padding: .9rem 1rem; font-size: .98rem; }
}

/* Fit Check — location feedback */
.fc-location-feedback {
  margin: .55rem 0 0;
  font-size: .92rem;
  line-height: 1.45;
  min-height: 1.2em;
  color: var(--ink-soft);
  transition: color .2s ease;
}
.fc-location-feedback.is-good { color: var(--sage-deep); font-weight: 500; }
.fc-location-feedback.is-ok { color: var(--terracotta-deep); }
.fc-location-feedback.is-info { color: var(--ink-soft); }

/* Fit Check - 'Tell Paul more' notes textarea on the contact step */
.fc-notes-help {
  margin: -.25rem 0 .55rem;
  font-size: .9rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
.fc-textarea {
  width: 100%;
  min-height: 140px;
  padding: .9rem 1rem;
  border: 2px solid #d8d2c4;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  background: #fbf8f3;
  resize: vertical;
  box-sizing: border-box;
  transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease;
}
.fc-textarea::placeholder {
  color: #9a9588;
  opacity: 1;
  white-space: pre-line;
}
.fc-textarea:focus {
  outline: none;
  border-color: var(--sage-deep);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(120, 144, 109, .18);
}
.fc-book-btn {
  position: relative;
}

/* Fit Check — result screen 'right fit' confirmation badge */
.fc-fit-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .5rem .85rem .5rem .65rem;
  border-radius: 999px;
  background: var(--sage-soft, #e8eee0);
  color: var(--sage-deep, #4a5c3a);
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .01em;
  margin: 0 0 1rem;
  border: 1.5px solid var(--sage-deep, #4a5c3a);
}
.fc-fit-badge-tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sage-deep, #4a5c3a);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  line-height: 1;
}

/* Fit Check — result lede paragraph (sits between title and summary) */
.fc-result-lede {
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 1.1rem;
  max-width: 62ch;
  font-weight: 500;
}
@media (max-width: 720px) {
  .fc-result-lede { font-size: 1.05rem; }
}

/* Extra-large primary button for the final booking CTA */
.btn.btn-xl,
.btn-xl {
  font-size: 1.15rem;
  padding: 1.1rem 1.85rem;
  min-height: 60px;
  font-weight: 700;
  letter-spacing: .005em;
  box-shadow: 0 8px 18px -8px rgba(217, 121, 73, .55);
}
@media (max-width: 720px) {
  .btn.btn-xl, .btn-xl {
    font-size: 1.02rem;
    padding: 1rem 1.25rem;
    width: 100%;
  }
}

/* Fit Check — location autocomplete dropdown */
.fc-field { position: relative; }
.fc-suggest {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 30;
  list-style: none;
  padding: .35rem;
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(33, 30, 28, .14);
  max-height: 280px;
  overflow-y: auto;
}
.fc-suggest[hidden] { display: none; }
.fc-suggest-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  padding: .7rem .85rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: .98rem;
  line-height: 1.3;
  color: var(--ink);
  border: 1.5px solid transparent;
  transition: background-color .1s ease, border-color .1s ease, color .1s ease;
}
.fc-suggest-item:hover,
.fc-suggest-item.is-active {
  background: var(--sage-deep, #4a5c3a);
  border-color: var(--sage-deep, #4a5c3a);
  color: #fff;
}
.fc-suggest-item:hover .fc-sg-tag,
.fc-suggest-item.is-active .fc-sg-tag {
  background: rgba(255, 255, 255, .18);
  color: #fff;
}
.fc-suggest-item:hover mark,
.fc-suggest-item.is-active mark {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.fc-suggest-item mark {
  background: transparent;
  color: var(--sage-deep);
  font-weight: 700;
}
.fc-sg-tag {
  font-size: .72rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--sage-deep);
  background: rgba(120, 144, 109, .12);
  padding: .18rem .5rem;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===========================================================
   LEAD MAGNET — Free Reactive Dog Guide download box
   =========================================================== */
.lead-magnet {
  background: linear-gradient(135deg, var(--cream-warm, #f7f2e9) 0%, #efe7d7 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(1.75rem, 4vw, 3rem);
  margin: clamp(3rem, 6vw, 5rem) auto;
  max-width: 1080px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
@media (max-width: 760px) {
  .lead-magnet { grid-template-columns: 1fr; padding: 1.5rem; }
}
.lead-magnet-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  line-height: 1.18;
  margin: 0 0 .75rem;
  color: var(--ink);
}
.lead-magnet-copy .eyebrow {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 600;
  margin: 0 0 .65rem;
}
.lead-magnet-copy p {
  margin: 0 0 .9rem;
  color: var(--ink-soft);
  line-height: 1.55;
  font-size: 1rem;
}
.lead-magnet-bullets {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.lead-magnet-bullets li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .45rem;
  color: var(--ink);
  font-size: .95rem;
  line-height: 1.45;
}
.lead-magnet-bullets li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sage-deep);
  font-weight: 700;
}
.lead-magnet-form {
  background: #fff;
  border-radius: 14px;
  padding: 1.5rem;
  border: 1px solid rgba(33, 30, 28, .06);
  box-shadow: 0 8px 24px rgba(33, 30, 28, .06);
}
.lead-magnet-form .lm-label {
  display: block;
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin: 0 0 .4rem;
}
.lead-magnet-form input[type="text"],
.lead-magnet-form input[type="email"] {
  width: 100%;
  padding: .95rem 1.05rem;
  border: 2px solid #d8d2c4;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  background: #fbf8f3;
  margin-bottom: 1rem;
  box-sizing: border-box;
  transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease;
}
.lead-magnet-form input[type="text"]::placeholder,
.lead-magnet-form input[type="email"]::placeholder {
  color: #9a9588;
  opacity: 1;
}
.lead-magnet-form input:hover {
  border-color: #b8b0a0;
  background: #fff;
}
.lead-magnet-form input:focus {
  outline: none;
  border-color: var(--sage-deep);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(120, 144, 109, .18);
}
.lead-magnet-form button {
  width: 100%;
  margin-top: .25rem;
}
.lead-magnet-form .lm-fine {
  font-size: .78rem;
  color: var(--ink-soft);
  margin: .9rem 0 0;
  line-height: 1.45;
  text-align: center;
}
.lead-magnet-form .lm-success {
  text-align: center;
  padding: 1rem 0;
  color: var(--sage-deep);
  font-weight: 500;
}
.lead-magnet-form .lm-success strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: .4rem;
  color: var(--ink);
  font-family: var(--font-display);
}

/* ===========================================================
   SCROLL POPUP - mid-scroll lead magnet prompt
   =========================================================== */
.llc-popup {
  position: fixed;
  bottom: 88px;
  right: 20px;
  width: 340px;
  max-width: calc(100vw - 32px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(33, 30, 28, .22);
  border: 1px solid rgba(33, 30, 28, .08);
  z-index: 9000;
  opacity: 0;
  transform: translateY(16px) scale(.98);
  transition: opacity .28s ease, transform .28s ease;
  pointer-events: none;
}
.llc-popup.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
@media (max-width: 480px) {
  .llc-popup {
    bottom: 76px;
    right: 12px;
    left: 12px;
    width: auto;
  }
}
.llc-popup-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: transparent;
  border: 0;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
  padding: .25rem .5rem;
  border-radius: 6px;
}
.llc-popup-close:hover { color: var(--ink); background: rgba(0,0,0,.04); }
.llc-popup-inner { padding: 1.5rem 1.4rem 1.4rem; }
.llc-popup-eyebrow {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 600;
  margin: 0 0 .4rem;
}
.llc-popup-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.2;
  margin: 0 0 .5rem;
  color: var(--ink);
}
.llc-popup-blurb {
  font-size: .9rem;
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0 0 1rem;
}
.llc-popup-form input[type="text"],
.llc-popup-form input[type="email"] {
  width: 100%;
  padding: .7rem .9rem;
  border: 2px solid #d8d2c4;
  border-radius: 8px;
  font-size: .95rem;
  font-family: inherit;
  color: var(--ink);
  background: #fbf8f3;
  margin-bottom: .55rem;
  box-sizing: border-box;
  transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease;
}
.llc-popup-form input:focus {
  outline: none;
  border-color: var(--sage-deep);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(120, 144, 109, .18);
}
.llc-popup-form input::placeholder { color: #9a9588; }
.llc-popup-form button {
  width: 100%;
  margin-top: .3rem;
  padding: .75rem 1rem;
  font-size: .95rem;
}
.llc-popup-success {
  padding: .8rem 0;
  text-align: center;
  color: var(--sage-deep);
}
.llc-popup-success strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: .3rem;
  color: var(--ink);
  font-family: var(--font-display);
}

/* ===========================================================
   SQUEEZE PAGE (/guide.html)
   Light, single-purpose lead capture for paid social / Reels.
   =========================================================== */
.squeeze-body { background: #fbf5ea; color: var(--ink); }

.squeeze-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  background: #fbf5ea;
  border-bottom: 1px solid rgba(33, 30, 28, .06);
}
.squeeze-brand img { height: 38px; display: block; }
.squeeze-trust {
  font-size: .85rem;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.squeeze-stars { color: #e7a948; letter-spacing: .05em; font-size: .95rem; }
@media (max-width: 520px) {
  .squeeze-trust { font-size: .75rem; }
  .squeeze-trust .squeeze-stars { font-size: .85rem; }
}

.squeeze-hero {
  padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem) clamp(2rem, 5vw, 3.5rem);
  background: #fbf5ea;
}
.squeeze-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 820px) {
  .squeeze-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.squeeze-eyebrow {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 600;
  margin: 0 0 .8rem;
}
.squeeze-h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 0 0 1rem;
  color: var(--ink);
}
.squeeze-lede {
  font-size: clamp(1.05rem, 2.2vw, 1.18rem);
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 1.4rem;
  max-width: 38ch;
}
.squeeze-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}
.squeeze-bullets li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: .55rem;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.5;
}
.squeeze-bullets li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.3rem;
  height: 1.3rem;
  text-align: center;
  background: rgba(120, 144, 109, .15);
  color: var(--sage-deep);
  border-radius: 50%;
  font-weight: 700;
  font-size: .85rem;
  line-height: 1.3rem;
}
.squeeze-form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
  box-shadow: 0 18px 50px rgba(33, 30, 28, .12);
  border: 1px solid rgba(33, 30, 28, .06);
}
.squeeze-form-h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.15;
  margin: 0 0 .35rem;
  color: var(--ink);
}
.squeeze-form-sub {
  font-size: .92rem;
  color: var(--ink-soft);
  margin: 0 0 1.2rem;
}
.squeeze-form { box-shadow: none; border: 0; padding: 0; background: transparent; }

.squeeze-about {
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1rem, 4vw, 2rem);
  background: #fff;
}
.squeeze-about-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
@media (max-width: 760px) {
  .squeeze-about-grid { grid-template-columns: 1fr; }
}
.squeeze-about-img {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #efe7d7;
}
.squeeze-about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.squeeze-about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  line-height: 1.18;
  margin: 0 0 .9rem;
  color: var(--ink);
}
.squeeze-about-copy p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 .9rem;
  max-width: 56ch;
}

.squeeze-programmes {
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1rem, 4vw, 2rem);
  background: #fbf5ea;
}
.squeeze-programmes-grid {
  max-width: 1000px;
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 700px) {
  .squeeze-programmes-grid { grid-template-columns: 1fr; }
}
.squeeze-prog-card {
  display: block;
  text-decoration: none;
  background: #fff;
  padding: 1.6rem 1.5rem 1.5rem;
  border-radius: 14px;
  border: 1px solid rgba(33, 30, 28, .08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  color: var(--ink);
}
.squeeze-prog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(33, 30, 28, .12);
  border-color: rgba(120, 144, 109, .35);
}
.squeeze-prog-tag {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 600;
  margin: 0 0 .5rem;
}
.squeeze-prog-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.2;
  margin: 0 0 .55rem;
  color: var(--ink);
}
.squeeze-prog-card p {
  font-size: .95rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 1rem;
}
.squeeze-prog-cta {
  color: var(--terracotta-deep);
  font-weight: 600;
  font-size: .92rem;
}
.squeeze-prog-cta span { transition: transform .18s ease; display: inline-block; margin-left: .15rem; }
.squeeze-prog-card:hover .squeeze-prog-cta span { transform: translateX(3px); }

.squeeze-footer {
  padding: 2rem clamp(1rem, 4vw, 2rem);
  background: #171410;
  color: #b8b0a0;
  text-align: center;
  font-size: .85rem;
  line-height: 1.6;
}
.squeeze-footer p { margin: 0 0 .3rem; }
.squeeze-footer a { color: #d8d2c4; text-decoration: none; }
.squeeze-footer a:hover { color: #fff; }
