/* ============================================================
   Pawsitive Pet Grooming — Local Pick-up & Return one-pager
   Brand: pink atmosphere, Grooming Blue text, white clouds,
   pastel organic blobs, rounded everything.
   ============================================================ */

:root {
  --pink: #f9cbc4;
  --pink-soft: #fbdcd7;
  --pink-deep: #f4a5b8;
  --blue: #115b95;
  --blue-alt: #175491;
  --blue-deep: #0c4673;
  --white: #ffffff;
  --aqua: #99d3d5;
  --sky: #b9e0f7;
  --rose: #f4a5b8;
  --yellow: #f4ce75;

  --cream: #fcf7f4;
  --aqua-tint: #e3f2f3;
  --rose-deep: #d96a87;
  --line: rgba(17, 91, 149, 0.12);

  --blobimg-1: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 709.02 692.16'%3E%3Cpath d='M617.5,124.26c58.46,58.59,106.43,183.21,87.23,265.2-29.93,127.77-120.84,243.82-213.06,283.75-124.41,53.87-300.01-13.23-398.95-124.27C-16.93,425.91-14.07,296.87,23.6,197.33,46.87,135.87,167.07,27.79,284.24,6.74c134.32-24.14,232.91,16.95,333.26,117.52Z'/%3E%3C/svg%3E");
  --blobimg-2: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 418.14 396.65'%3E%3Cpath d='M182.17,2.51c49.84-7.29,132.88-.08,171.58,39.68,48.38,49.7,66,108.18,64.28,171.64-3.31,122.6-89.46,177.6-180.25,182.24-97.01,4.96-154.41-22.03-204.11-82.17C6.1,280.54-13.24,181.73,11.13,121.05,42.28,43.52,96.62,15.02,182.17,2.51Z'/%3E%3C/svg%3E");
  --blobimg-3: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 584.83 552.84'%3E%3Cpath d='M258.75,1.78c69.29-9.83,165.2,21.82,219.62,76.43,66.07,66.3,108.74,129.15,106.36,217.32-4.6,170.36-136.72,256.89-243.5,257.31-134.97.53-239.03-67.61-285.99-124.71C17.04,381.69-19.6,294.18,11.96,208.97,48.8,109.52,122.46,21.12,258.75,1.78Z'/%3E%3C/svg%3E");
  --blobimg-4: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 586.08 572.14'%3E%3Cpath d='M510.42,102.71c48.32,48.43,87.98,151.44,72.1,219.21-24.74,105.62-99.89,201.54-176.12,234.55-102.83,44.53-247.99-10.94-329.78-102.72C-13.99,352.06-11.63,245.39,19.51,163.12,38.74,112.31,138.1,22.98,234.95,5.57c111.03-19.95,192.52,14.01,275.47,97.15Z'/%3E%3C/svg%3E");

  --ink: #115b95;
  --ink-soft: #3b73a3;

  --font-display: "Quicksand", "Fredoka", "Arial Rounded MT Bold", system-ui, sans-serif;
  --font-body: "Nunito Sans", "Nunito", system-ui, sans-serif;

  --shadow-sm: 0 4px 14px rgba(17, 91, 149, 0.08);
  --shadow-md: 0 14px 36px rgba(17, 91, 149, 0.12);
  --shadow-lg: 0 26px 60px rgba(17, 91, 149, 0.16);

  --r-sm: 16px;
  --r-md: 24px;
  --r-lg: 34px;
  --r-xl: 44px;

  --maxw: 1280px;
  --pad: clamp(20px, 5vw, 56px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 999px;
  padding: 16px 28px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .18s ease, background .18s ease;
  min-height: 56px;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; }
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(17, 91, 149, 0.28);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(17,91,149,.34); background: var(--blue-alt); }
.btn-secondary {
  background: var(--white);
  color: var(--blue);
  border-color: rgba(17,91,149,.18);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: transparent;
  color: var(--blue);
  border-color: rgba(17,91,149,.28);
}
.btn-ghost:hover { background: rgba(255,255,255,.55); transform: translateY(-3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 247, 244, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(17,91,149,.08);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: 0 8px 24px rgba(17,91,149,.10); background: rgba(252,247,244,.96); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}

/* Real logo wordmark */
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-img { height: 48px; width: auto; display: block; }
.site-footer .logo-img { height: 42px; }
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; color: var(--blue); text-decoration: none; font-size: .98rem; }
.header-phone svg { width: 18px; height: 18px; }

/* ---------- Header nav ---------- */
.site-nav { display: flex; align-items: center; gap: clamp(14px, 2.2vw, 28px); }
.site-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--blue);
  text-decoration: none;
  padding: 6px 2px;
  white-space: nowrap;
}
.site-nav a:hover {
  text-decoration: underline;
  text-decoration-color: var(--pink-deep);
  text-decoration-thickness: 2.5px;
  text-underline-offset: 7px;
}

/* ---------- Section scaffolding ---------- */
section { position: relative; scroll-margin-top: 86px; }
.section { padding: clamp(56px, 9vw, 110px) 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-alt);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--rose); }
.eyebrow::after { content: ""; width: 26px; height: 2px; border-radius: 2px; background: rgba(17,91,149,.2); }
.section-head { max-width: 720px; }
.section-head h2 { font-size: clamp(1.9rem, 5vw, 3rem); margin-top: 18px; }
.section-head .lead { margin-top: 16px; font-size: clamp(1.02rem, 2.4vw, 1.18rem); color: var(--ink-soft); }

/* ---------- Decorative blobs / dots ---------- */
.blob {
  position: absolute;
  filter: blur(.5px);
  z-index: 0;
  pointer-events: none;
  opacity: .9;
  -webkit-mask-image: var(--blobimg-1);
  mask-image: var(--blobimg-1);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
}
.blob.s1 { -webkit-mask-image: var(--blobimg-1); mask-image: var(--blobimg-1); }
.blob.s2 { -webkit-mask-image: var(--blobimg-2); mask-image: var(--blobimg-2); }
.blob.s3 { -webkit-mask-image: var(--blobimg-3); mask-image: var(--blobimg-3); }
.blob.s4 { -webkit-mask-image: var(--blobimg-4); mask-image: var(--blobimg-4); }
.blob.aqua { background: var(--aqua); }
.blob.sky { background: var(--sky); }
.blob.rose { background: var(--rose); }
.blob.yellow { background: var(--yellow); }
.blob.white { background: var(--white); }
.dotrow { display: flex; gap: 10px; }
.dotrow i { width: 10px; height: 10px; border-radius: 50%; background: var(--yellow); display: block; }

.float { animation: floaty 4.5s ease-in-out infinite; }
.float.slow { animation-duration: 7s; }
.float.alt { animation-direction: alternate-reverse; animation-duration: 5.5s; }
@keyframes floaty {
  0%,100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-28px) translateX(12px); }
}

/* ============================================================
   HERO — two directions, toggled by body[data-hero]
   ============================================================ */
.hero { padding: clamp(36px, 6vw, 72px) 0 clamp(48px, 8vw, 96px); overflow: hidden; }
.hero[hidden] { display: none; }
.hero h1 em.hl {
  font-style: normal;
  color: var(--pink-deep);
  text-decoration: none;
}

/* shared hero bits */
.hero-copy { position: relative; z-index: 2; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 22px; }
.minibadge {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--blue);
  font-weight: 700; font-size: .9rem;
}
.minibadge svg { width: 16px; height: 16px; }
.hero-promo {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 22px;
  background: rgba(244, 206, 117, 0.22);
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  padding: 7px 16px 7px 9px;
  border-radius: 10px;
  border-left: 4px solid var(--yellow);
}
.hero-promo .vanico { width: 28px; height: 28px; border-radius: 50%; background: var(--yellow); display: grid; place-items: center; flex: none; }
.hero-promo .vanico svg { width: 17px; height: 17px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.trustline { margin-top: 22px; font-size: .96rem; color: var(--ink-soft); max-width: 46ch; }

/* image slot frame */
.photo {
  position: relative; z-index: 2;
  width: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--sky);
}
.photo image-slot, .photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.photo-tag {
  position: absolute; z-index: 3;
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 9px 16px;
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; color: var(--blue);
  box-shadow: var(--shadow-sm);
  font-size: .9rem;
  white-space: nowrap;
}
.photo-tag .vanico { width: 26px; height: 26px; border-radius: 50%; background: var(--aqua); display: grid; place-items: center; }
.photo-tag .vanico svg { width: 16px; height: 16px; }

/* ---- Direction A: centered cloud + route ---- */
.heroA .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.heroA .hero-copy h1 { font-size: clamp(2.3rem, 6.4vw, 4.2rem); }
.heroA .hero-copy .eyebrow { margin-bottom: 6px; }
.heroA .hero-sub { margin-top: 20px; font-size: clamp(1.05rem, 2.6vw, 1.3rem); color: var(--ink-soft); max-width: 40ch; }
.heroA .photo-wrap { position: relative; }
.photo-blob {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%; mask-size: 100% 100%;
}
.photo-blob.pinkblob {
  width: 92%;
  height: 92%;
  right: -10%;
  top: -9%;
  background: var(--pink);
  -webkit-mask-image: var(--blobimg-3); mask-image: var(--blobimg-3);
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%; mask-size: 100% 100%;
}
.photo-blob.aquablob {
  width: 38%;
  height: 38%;
  left: -8%;
  bottom: 3%;
  background: var(--aqua);
  opacity: .55;
  rotate: 35deg;
  -webkit-mask-image: var(--blobimg-2); mask-image: var(--blobimg-2);
}
.photo-blob.aquabig {
  width: 90%;
  height: 90%;
  left: -9%;
  top: -8%;
  background: var(--aqua);
  opacity: .5;
  -webkit-mask-image: var(--blobimg-1); mask-image: var(--blobimg-1);
}
.photo-blob.rosesmall {
  width: 36%;
  height: 36%;
  right: -7%;
  bottom: 4%;
  background: var(--rose);
  opacity: .55;
  rotate: -25deg;
  -webkit-mask-image: var(--blobimg-4); mask-image: var(--blobimg-4);
}
.heroA .photo {
  aspect-ratio: 1 / 1;
  border-radius: 44% 56% 52% 48% / 50% 44% 56% 50%;
}
.hero-seal {
  position: absolute;
  z-index: 4;
  width: 106px;
  height: 106px;
  border-radius: 50%;
  bottom: -14px;
  left: -22px;
  transform: rotate(-8deg);
  box-shadow: var(--shadow-md);
}
.heroA .photo-tag.tl { top: 18px; left: -14px; }
.heroA .photo-tag.br { bottom: 22px; right: -10px; }

/* ---- Direction B: bold editorial split ---- */
.heroB .hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 4vw, 44px);
}
.heroB .hero-copy { max-width: 16ch; }
.heroB .hero-copy h1 { font-size: clamp(2.6rem, 9vw, 5.4rem); }
.heroB .hero-mast {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: end;
}
.heroB .hero-sub { font-size: clamp(1.05rem, 2.5vw, 1.28rem); color: var(--ink-soft); max-width: 38ch; }
.heroB .photo { aspect-ratio: 4 / 3; }
.heroB .photo-tag.br { bottom: 20px; right: 18px; }
.heroB .hero-strip {
  margin-top: 18px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(17,91,149,.16);
}
.heroB .strip-card {
  padding: 18px 20px 6px 0;
  display: flex; flex-direction: column; gap: 6px;
  border-left: 1px solid rgba(17,91,149,.16);
  padding-left: 18px;
}
.heroB .strip-card:first-child { border-left: none; padding-left: 0; }
.heroB .strip-card .n { font-family: var(--font-display); font-weight: 700; color: var(--rose); font-size: 1.6rem; }
.heroB .strip-card .l { font-size: .9rem; color: var(--ink-soft); font-weight: 700; line-height: 1.25; }

/* hero switcher pill */
.hero-switch {
  position: fixed;
  z-index: 80;
  right: 16px; bottom: 16px;
  background: var(--white);
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  padding: 6px;
  display: flex; gap: 4px;
  align-items: center;
  border: 1px solid rgba(17,91,149,.1);
}
.hero-switch .lbl { font-size: .72rem; font-weight: 800; color: var(--ink-soft); padding: 0 8px 0 12px; letter-spacing: .02em; }
.hero-switch button {
  font-family: var(--font-display); font-weight: 700;
  border: none; cursor: pointer;
  background: transparent; color: var(--blue);
  padding: 9px 16px; border-radius: 999px; font-size: .9rem;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}
.hero-switch button.active { background: var(--blue); color: var(--white); }

/* ============================================================
   HOW IT WORKS — animated stepper
   ============================================================ */
.how {
  background: var(--pink-soft);
  border-radius: clamp(28px, 4vw, 52px);
  margin: 0 clamp(10px, 2vw, 28px);
}
.steps {
  margin-top: clamp(20px, 3vw, 32px);
  padding-top: 84px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.4vw, 26px);
  position: relative;
}
/* the route line */
.route-line {
  position: absolute;
  top: 35px; left: 12.5%; right: 12.5%;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--blue) 0 12px, transparent 12px 24px);
  opacity: .25;
  z-index: 0;
  border-radius: 4px;
}
.route-van {
  position: absolute;
  top: 17px; left: 12.5%;
  width: 40px; height: 40px;
  z-index: 3;
  transform: translateX(-50%);
  transition: left 1.1s cubic-bezier(.5,0,.2,1);
  filter: drop-shadow(0 6px 10px rgba(17,91,149,.25));
}
.route-van svg { width: 100%; height: 100%; }
.step {
  position: relative; z-index: 1;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px clamp(14px, 1.6vw, 22px) 28px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(17,91,149,.05);
}
.step-num {
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.4rem;
  color: var(--white); background: var(--blue);
  position: absolute;
  top: -76px; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 10px 22px rgba(17,91,149,.28);
  border: 5px solid var(--pink-soft);
}
.step-icon { display: none; }
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { font-size: .96rem; color: var(--ink-soft); max-width: 26ch; margin: 0 auto; }

/* ============================================================
   SALON & DAYCARE FEATURES
   ============================================================ */
.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  margin-top: clamp(40px, 6vw, 72px);
}
.feature-row.rev > .feat-photo { order: 2; }
.feat-photo { position: relative; }
.feat-photo .photo {
  aspect-ratio: 5 / 4;
  border-radius: 48% 52% 45% 55% / 52% 46% 54% 48%;
}
.feat-photo .photo.mini {
  position: absolute;
  z-index: 3;
  width: 42%;
  height: auto;
  aspect-ratio: 1 / 1;
  right: -5%;
  bottom: -12%;
  border-radius: 52% 48% 56% 44% / 48% 54% 46% 52%;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-md);
}
.feature-row.rev .photo.mini { right: auto; left: -5%; }
.photo-tag.tl { top: 18px; left: -14px; }
.feat-copy h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.feat-copy > p { margin-top: 14px; color: var(--ink-soft); font-size: 1.05rem; }
.feat-list { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; margin-top: 20px; }

/* ============================================================
   SERVICE OPTIONS
   ============================================================ */
.services-split {
  margin-top: clamp(34px, 5vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.svc-photo { position: relative; }
.svc-photo .photo {
  aspect-ratio: 1 / 1;
  border-radius: 52% 48% 44% 56% / 46% 54% 46% 54%;
}
.photo-tag.bl { bottom: 22px; left: -12px; position: absolute; }
.photo-tag.promo { background: var(--yellow); color: var(--blue); }
.photo-tag.promo .vanico { background: var(--white); }
.heroA .photo-tag.bl { bottom: 64px; left: -18px; }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}
.svc {
  position: relative;
  background: var(--white);
  padding: 24px clamp(20px, 2vw, 28px);
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: 0 8px 20px rgba(17,91,149,.05);
}
.svc.featured {
  background: var(--white);
  border: 2px solid var(--rose);
  border-radius: var(--r-md);
  padding: 24px clamp(20px, 2vw, 28px);
  margin-top: 0;
  box-shadow: var(--shadow-md);
}
.svc-badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--blue); color: var(--white);
  font-family: var(--font-display); font-weight: 700; font-size: .8rem;
  padding: 7px 16px; border-radius: 999px; white-space: nowrap;
  margin-bottom: 0;
  box-shadow: var(--shadow-sm);
}
.svc-ico {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  grid-row: 1 / span 4;
  margin-bottom: 0;
}
.svc-ico svg { width: 28px; height: 28px; color: var(--blue); }
.svc-ico.brand { background: transparent !important; border-radius: 0; width: 58px; height: 58px; }
.svc-ico.brand img { width: 100%; height: 100%; object-fit: contain; display: block; }
.svc:nth-child(1) .svc-ico { background: var(--pink-soft); }
.svc:nth-child(2) .svc-ico { background: var(--sky); }
.svc:nth-child(3) .svc-ico { background: var(--aqua); }
.svc h3 { font-size: 1.3rem; margin-bottom: 8px; }
.svc-prices {
  margin-top: 14px;
  justify-self: start;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.svc-price {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  border-radius: 999px;
  background: var(--sky);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
  color: var(--blue);
}
.svc-price svg { flex: none; width: 20px; height: 20px; }
.svc-price.free { background: var(--yellow); }
.svc p { color: var(--ink-soft); font-size: .98rem; }
.svc .note {
  margin-top: 16px; padding-top: 16px;
  border-top: 1px dashed rgba(17,91,149,.22);
  font-size: .86rem; color: var(--ink-soft);
}
.svc .svc-foot { padding-top: 12px; }
.svc .chip {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--blue);
  font-weight: 800; font-size: .82rem;
}
.svc .chip::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--rose); }

/* ============================================================
   WHY — benefits
   ============================================================ */
.why {
  background: var(--aqua-tint);
  color: var(--ink);
  border-radius: clamp(28px, 4vw, 52px);
  margin: 0 clamp(10px, 2vw, 28px);
  overflow: hidden;
}
.why h2, .why .eyebrow { color: var(--blue); }
.why .lead { color: var(--ink-soft); }
.why-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 2px clamp(28px,4vw,48px); margin-top: 8px; }
.benefit {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 2px;
  border-bottom: 1px solid rgba(17,91,149,.14);
}
.benefit .tick {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--white); display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
}
.benefit .tick svg { width: 15px; height: 15px; color: var(--blue); }
.benefit span.txt { font-weight: 700; font-size: 1rem; line-height: 1.3; }
.benefit:nth-last-child(-n+2) { border-bottom: none; }

/* ============================================================
   ON THE DAY — checklist + policy
   ============================================================ */
.day-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); margin-top: clamp(32px,5vw,52px); align-items: start; }
.day-grid > .policy-card { border-left: 1px solid rgba(17,91,149,.14); padding-left: clamp(30px,5vw,64px); }
.checklist { background: transparent; padding: 0; }
.checklist h3 { font-size: 1.3rem; margin-bottom: 18px; }
.checklist ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.checklist li { display: flex; align-items: center; gap: 14px; font-size: 1rem; padding: 13px 0; border-bottom: 1px solid rgba(17,91,149,.1); }
.checklist li .cb {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--sky); display: grid; place-items: center;
}
.checklist li .cb svg { width: 14px; height: 14px; color: var(--blue); }
.checklist li:last-child { border-bottom: none; }
.policy-card {
  background: transparent;
  padding: 0;
}
.policy-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.policy-card > p { color: var(--ink-soft); font-size: .98rem; margin-bottom: 18px; }
.policy-list { display: grid; gap: 0; }
.policy {
  display: flex; gap: 14px; align-items: center;
  padding: 14px 0; font-size: .96rem; font-weight: 600;
  border-bottom: 1px solid rgba(17,91,149,.1);
}
.policy .pico { flex: none; width: 24px; height: 24px; color: var(--blue); }
.policy .pico svg { width: 24px; height: 24px; }
.policy:last-child { border-bottom: none; }

/* ============================================================
   IS THIS RIGHT — split callout
   ============================================================ */
.right-for { }
.right-for {
  background: var(--pink-soft);
  border-radius: clamp(28px, 4vw, 52px);
  margin: 0 clamp(10px, 2vw, 28px);
  overflow: hidden;
}
.rf-card {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(28px,4vw,64px);
  align-items: center;
  position: relative;
}
.rf-card h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
.rf-card p { color: var(--ink-soft); margin-top: 16px; }
.rf-pets { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.rf-pet {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--blue);
  padding: 9px 0; font-weight: 800;
}
.rf-pet svg { width: 22px; height: 22px; }
.rf-pet + .rf-pet { padding-left: 22px; border-left: 1px solid rgba(17,91,149,.2); }
.rf-side {
  background: var(--white); border-radius: var(--r-lg);
  padding: clamp(28px,3vw,40px); text-align: center;
  box-shadow: var(--shadow-md);
}
.rf-side .big {
  width: 116px; height: 116px; border-radius: 50%;
  display: grid; place-items: center; margin: 0 auto 18px;
}
.rf-side .big img { width: 100%; height: 100%; display: block; }
.rf-side h3 { font-size: 1.2rem; margin-bottom: 6px; }
.rf-side p { font-size: .94rem; color: var(--ink-soft); margin-bottom: 20px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: transparent; }
.faq-grid { margin-top: clamp(32px,5vw,52px); display: grid; gap: 0; max-width: 820px; border-top: 1px solid rgba(17,91,149,.14); }
.faq-item {
  background: transparent;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left;
  background: transparent; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 4px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.08rem;
  color: var(--blue);
  border-radius: 14px;
  transition: color .2s ease, background .2s ease, padding .25s ease;
}
.faq-q:hover {
  color: var(--blue-deep);
}
.faq-item:not(.open) .faq-q:hover .icon { background: var(--blue); }
.faq-item:not(.open) .faq-q:hover .icon svg { color: var(--white); }
.faq-q .icon {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--pink-soft); display: grid; place-items: center;
  transition: transform .3s ease, background .2s ease;
}
.faq-item.open .faq-q .icon { background: var(--blue); transform: rotate(135deg); }
.faq-q .icon svg { width: 16px; height: 16px; color: var(--blue); transition: color .2s ease; }
.faq-item.open .faq-q .icon svg { color: var(--white); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .34s ease; }
.faq-a-inner { padding: 0 4px 24px; color: var(--ink-soft); font-size: .99rem; max-width: 64ch; }
.faq-a-inner p + p { margin-top: 12px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final {
  padding: clamp(56px,8vw,104px) 0;
  background: var(--blue);
  color: var(--white);
  border-radius: clamp(28px, 4vw, 52px);
  margin: 0 clamp(10px, 2vw, 28px);
  overflow: hidden;
  position: relative;
}
.final-card {
  position: relative;
  background: transparent;
  color: var(--white);
  padding: 0;
}
.final-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  text-align: left;
}
.final .eyebrow { color: var(--white); }
.final .eyebrow .dot { background: var(--yellow); }
.final .eyebrow::after { background: rgba(255,255,255,.32); }
.final-card h2 { color: var(--white); font-size: clamp(1.9rem, 4.6vw, 3rem); margin-top: 16px; }
.final-card p { color: rgba(255,255,255,.85); margin: 16px 0 0; max-width: 56ch; font-size: 1.08rem; }
.final-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-self: end;
  min-width: 250px;
}
.final-cta .btn { width: 100%; }
.final-card .btn-secondary { background: var(--white); }
.final-card .btn-ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.final-card .btn-ghost:hover { background: rgba(255,255,255,.14); }
.final-blob { position: absolute; z-index: 0; opacity: .16; }

/* ---------- Footer ---------- */
.site-footer { padding: 40px 0 56px; border-top: 1px solid var(--line); margin-top: 8px; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; }
.footer-inner p { font-size: .9rem; color: var(--ink-soft); }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { font-weight: 700; text-decoration: none; font-size: .92rem; }
.footer-links a:hover { text-decoration: underline; }

/* ============================================================
   SCROLL REVEAL
   Visible is the BASE state so content always renders (print,
   export, offscreen capture). The rise is a one-shot animation
   layered on when JS adds .in — animations fall back to the
   base style when not running, unlike transitions.
   ============================================================ */
.reveal { opacity: 1; transform: none; }
@media screen and (prefers-reduced-motion: no-preference) {
  .reveal { transition: opacity .85s cubic-bezier(.2,.7,.2,1), transform .85s cubic-bezier(.2,.7,.2,1); }
  .reveal.pre { opacity: 0; transform: translateY(34px); }
  .reveal.d1 { transition-delay: .1s; }
  .reveal.d2 { transition-delay: .2s; }
  .reveal.d3 { transition-delay: .3s; }
  .reveal.d4 { transition-delay: .4s; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .site-nav { display: none; }
  .heroA .hero-grid { grid-template-columns: 1fr; }
  .heroA .photo-wrap { width: 100%; max-width: 460px; margin: 0 auto; }
  .heroB .hero-mast { grid-template-columns: 1fr; }
  .heroB .hero-copy { max-width: none; }
  .heroB .photo-wrap { width: 100%; max-width: 460px; }
  .steps { grid-template-columns: 1fr 1fr; padding-top: 0; }
  .route-line, .route-van { display: none; }
  .step-num { position: static; transform: none; margin: 0 auto 16px; }
  .services-split { grid-template-columns: 1fr; }
  .svc-photo { width: 100%; max-width: 460px; margin: 0 auto; }
  .feature-row { grid-template-columns: 1fr; gap: 36px; }
  .feature-row.rev > .feat-photo { order: 0; }
  .feat-photo { width: 100%; max-width: 460px; margin: 0 auto 7%; }
  .why-grid { grid-template-columns: 1fr; }
  .day-grid { grid-template-columns: 1fr; }
  .day-grid > .policy-card { border-left: none; padding-left: 0; }
  .rf-card { grid-template-columns: 1fr; }
  .final-grid { grid-template-columns: 1fr; }
  .final-cta { justify-self: start; flex-direction: row; flex-wrap: wrap; }
  .final-cta .btn { width: auto; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .header-phone span { display: none; }
  .header-cta .btn { padding: 12px 18px; min-height: 48px; font-size: .95rem; }
  .steps { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; }
  .heroB .hero-strip { grid-template-columns: 1fr 1fr; }
  .hero-switch .lbl { display: none; }
  .btn { width: 100%; }
  .hero-cta .btn, .final-cta .btn { flex: 1 1 auto; }
  .logo-sub { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .float { animation: none; }
  html { scroll-behavior: auto; }
  .route-van { transition: none; }
}
