/* ==========================================================================
   Reigning Cats & Dogs - Google Ads landing pages
   Mobile-first, one CTA, text fills the column.
   Palette: the brand's navy #213D75 and sage #84AC9D stay (headings, dark
   bands, checkmarks), with a warm apricot accent added for the primary action
   and highlights so the pages read as a family pet sitter, not a law firm
   (Ross + design-director pass, 2026-09-05). Warm cream backgrounds, rounded
   display type, softer corners. White on --brand-dark passes AA (4.6:1).
   ========================================================================== */

:root {
  --navy: #213d75;
  --navy-dark: #172b55;
  --navy-tint: #e9eef8;
  --sage: #84ac9d;
  --sage-dark: #5f8a7a;
  --sage-tint: #eef4f1;
  --brand: #e5823f;
  --brand-dark: #c2601f;
  --brand-tint: #fdf0e3;
  --cream: #fbf7f0;
  --cream-dark: #f5ecdf;
  --ink: #26221f;
  --ink-soft: #5b544d;
  --line: #e8dfd1;
  --white: #ffffff;
  --star: #f2b33d;

  --font-display: "Nunito", "Nunito Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Nunito Sans", "Segoe UI", system-ui, -apple-system, sans-serif;

  --text-xs: clamp(0.78rem, 0.74rem + 0.2vw, 0.85rem);
  --text-sm: clamp(0.88rem, 0.84rem + 0.2vw, 0.95rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.1rem);
  --text-lg: clamp(1.125rem, 1.05rem + 0.4vw, 1.3rem);
  --text-xl: clamp(1.35rem, 1.2rem + 0.7vw, 1.65rem);
  --text-2xl: clamp(1.7rem, 1.45rem + 1.2vw, 2.25rem);
  --text-3xl: clamp(2rem, 1.6rem + 2vw, 3rem);

  --space-xs: clamp(0.5rem, 0.45rem + 0.3vw, 0.75rem);
  --space-sm: clamp(0.85rem, 0.7rem + 0.6vw, 1.25rem);
  --space-md: clamp(1.4rem, 1.1rem + 1.2vw, 2.1rem);
  --space-lg: clamp(2.2rem, 1.6rem + 2.5vw, 3.6rem);
  --space-xl: clamp(3.2rem, 2.2rem + 4.5vw, 6rem);

  --content-width: min(70rem, 92vw);
  --narrow-width: min(52rem, 92vw);
  --radius: 0.75rem;
  --radius-lg: 1.4rem;
  --shadow: 0 10px 30px rgba(31, 36, 48, 0.08);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  padding-bottom: 4.25rem; /* room for the mobile sticky bar */
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; margin: 0 0 var(--space-sm); color: var(--navy-dark); }
h1 { font-size: var(--text-3xl); font-weight: 700; }
h2 { font-size: var(--text-2xl); font-weight: 700; }
h3 { font-size: var(--text-lg); font-weight: 600; }
p { margin: 0 0 var(--space-sm); }
p:last-child { margin-bottom: 0; }
a { color: var(--navy); }
strong { font-weight: 700; }
.container { width: var(--content-width); margin: 0 auto; }
.narrow { width: var(--narrow-width); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 1.6rem; border-radius: 999px; border: 2px solid transparent;
  font-family: var(--font-body); font-weight: 700; font-size: var(--text-base);
  text-decoration: none; cursor: pointer; line-height: 1.2; transition: background .15s, transform .15s;
}
.btn--primary { background: var(--brand-dark); color: var(--white); box-shadow: 0 6px 16px rgba(194, 96, 31, 0.25); }
.btn--primary:hover { background: #a84f14; transform: translateY(-1px); }
.btn--secondary { background: var(--white); color: var(--navy); border-color: var(--navy); }
.btn--secondary:hover { background: var(--navy-tint); }
.btn--phone { background: var(--navy); color: var(--white); }
.btn--phone:hover { background: var(--navy-dark); }
.btn--large { padding: 1.05rem 1.75rem; font-size: var(--text-lg); width: 100%; }
.btn:disabled { opacity: .7; cursor: wait; }

/* --- Header --- */
.site-header { background: var(--white); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 20; }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-sm); padding: 0.7rem 0; }
.site-header__logo { width: auto; height: 44px; }
.site-header__wordmark { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; line-height: 1.1; color: var(--navy-dark); text-decoration: none; white-space: nowrap; }
.site-header__wordmark span { color: var(--sage-dark); }
.site-header__logo { display: inline-flex; align-items: center; line-height: 0; }
.site-header__logo img { width: 250px; max-width: 48vw; height: auto; }
.site-header__phone { font-weight: 700; color: var(--navy); text-decoration: none; white-space: nowrap; font-size: var(--text-base); }
.site-header__phone small { display: block; font-weight: 400; color: var(--ink-soft); font-size: var(--text-xs); }

/* --- Hero --- */
.hero { background: linear-gradient(180deg, var(--brand-tint) 0%, var(--cream) 60%, var(--white) 100%); padding: var(--space-lg) 0 var(--space-md); }
.hero__inner { display: grid; gap: var(--space-md); align-items: start; }
.hero__badge { display: inline-flex; align-items: center; gap: .4rem; background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: .35rem .8rem; font-size: var(--text-sm); font-weight: 600; color: var(--navy-dark); margin-bottom: var(--space-sm); }
.hero__badge .stars { color: var(--star); letter-spacing: .05em; }
.hero__subtitle { font-size: var(--text-lg); color: var(--ink-soft); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--space-xs); margin: var(--space-sm) 0; }
.hero__price { font-size: var(--text-sm); color: var(--ink-soft); }
.hero__trust { display: grid; grid-template-columns: repeat(2, max-content); gap: .5rem 1.4rem; margin-top: var(--space-sm); padding: 0; list-style: none; font-size: var(--text-sm); font-weight: 600; color: var(--navy-dark); }
.hero__trust li::before { content: "\2713"; color: var(--brand-dark); margin-right: .4rem; font-weight: 800; }
.hero__image { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; object-fit: cover; aspect-ratio: 4 / 3; }

/* --- Trust bar --- */
.trust-bar { background: var(--navy); color: var(--white); padding: var(--space-sm) 0; }
.trust-bar__inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-xs) var(--space-sm); }
.trust-bar__item { display: flex; gap: .6rem; align-items: flex-start; font-size: var(--text-sm); }
.trust-bar__item strong { display: block; color: var(--white); }
.trust-bar__item span { color: #d7deee; }

/* --- Sections --- */
.section { padding: var(--space-lg) 0; }
.section--cream { background: var(--cream); }
.section--tint { background: var(--sage-tint); }
.section__intro { margin-bottom: var(--space-md); }
.section__kicker { display: block; font-size: var(--text-sm); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--brand-dark); margin-bottom: .4rem; }

/* --- Benefits --- */
.benefits { display: grid; gap: var(--space-sm); }
.benefit { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--space-md); }
.benefit h3 { margin-bottom: .4rem; }
.benefit p { color: var(--ink-soft); margin: 0; }

/* --- Comparison (us vs the alternatives) --- */
.compare { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; font-size: var(--text-sm); }
.compare th, .compare td { padding: .8rem .9rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.compare th { background: var(--navy-tint); color: var(--navy-dark); font-weight: 700; }
.compare td:first-child { font-weight: 600; }
.compare .yes { color: var(--sage-dark); font-weight: 700; }
.compare .no { color: var(--ink-soft); }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* --- Steps --- */
.steps { display: grid; gap: var(--space-sm); counter-reset: step; padding: 0; margin: 0; list-style: none; }
.step { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--space-md) var(--space-md) var(--space-md) 4.2rem; }
.step::before { counter-increment: step; content: counter(step); position: absolute; left: 1.1rem; top: 1.25rem; width: 2.1rem; height: 2.1rem; border-radius: 50%; background: var(--brand-dark); color: var(--white); font-weight: 800; display: grid; place-items: center; font-family: var(--font-display); }
.step h3 { margin-bottom: .3rem; }
.step p { color: var(--ink-soft); margin: 0; }

/* --- Pricing --- */
.pricing { display: grid; gap: var(--space-sm); }
.price-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--space-md); display: flex; justify-content: space-between; align-items: baseline; gap: var(--space-sm); }
.price-card h3 { margin: 0; }
.price-card small { display: block; color: var(--ink-soft); font-weight: 400; font-family: var(--font-body); font-size: var(--text-sm); margin-top: .2rem; }
.price-card .price { font-family: var(--font-display); font-size: var(--text-xl); color: var(--navy-dark); white-space: nowrap; }
.pricing__note { font-size: var(--text-sm); color: var(--ink-soft); margin-top: var(--space-sm); }

/* --- Reviews --- */
.reviews { display: grid; gap: var(--space-sm); }
.review { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--space-md); display: flex; flex-direction: column; }
/* Reviews differ a lot in length. Let the quote take the slack so every attribution
   sits on the same baseline across the row instead of leaving a void under the short
   ones (2026-09-12, after filling the placeholder slots with the real reviews). */
.review blockquote { flex: 1; }
.review__stars { color: var(--star); letter-spacing: .08em; margin-bottom: .4rem; }
.review blockquote { margin: 0 0 .6rem; font-style: italic; }
.review cite { font-style: normal; font-size: var(--text-sm); color: var(--ink-soft); }
/* Unfilled review slots: one consistent "pending" state on every page, never raw tokens. */
.review--placeholder { border-style: dashed; background: var(--cream); display: grid; place-items: center; min-height: 9rem; }
.review--placeholder blockquote, .review--placeholder figcaption { display: none; }
.review--placeholder::before { content: "Client review pending"; color: var(--ink-soft); font-size: var(--text-sm); font-weight: 600; }

/* --- Form section --- */
.form-section { background: var(--navy); color: var(--white); padding: var(--space-lg) 0; }
.form-section__inner { display: grid; gap: var(--space-md); }
.form-section h2 { color: var(--white); }
.form-section__lead { color: #d7deee; }
.form-section__trust-list { list-style: none; padding: 0; margin: var(--space-sm) 0 0; display: grid; gap: .5rem; color: #e9eef8; }
.form-section__trust-list li::before { content: "\2713"; color: var(--sage); margin-right: .5rem; font-weight: 700; }
.form-card { background: var(--white); color: var(--ink); border-radius: var(--radius-lg); padding: var(--space-md); box-shadow: var(--shadow); }
.lead-form__field { margin-bottom: var(--space-sm); }
.lead-form__row { display: grid; gap: var(--space-sm); }
.lead-form label { display: block; font-weight: 600; font-size: var(--text-sm); margin-bottom: .3rem; color: var(--navy-dark); }
.lead-form__optional { font-weight: 400; color: var(--ink-soft); }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%; padding: .8rem .9rem; border: 1px solid #c9c4b9; border-radius: var(--radius);
  font: inherit; color: var(--ink); background: var(--white);
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { outline: 3px solid rgba(33, 61, 117, .25); border-color: var(--navy); }
.lead-form__privacy { font-size: var(--text-xs); color: var(--ink-soft); margin-top: var(--space-xs); }

/* --- FAQ --- */
.faq__list { display: grid; gap: .6rem; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 0 var(--space-sm); }
.faq-item summary { cursor: pointer; padding: var(--space-sm) 0; font-weight: 700; color: var(--navy-dark); list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--brand-dark); font-size: 1.3em; line-height: 1; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item__answer { padding: 0 0 var(--space-sm); color: var(--ink-soft); }

/* --- Final CTA --- */
.final-cta { text-align: left; padding: var(--space-lg) 0; background: var(--cream); }
.final-cta .btn { margin-top: var(--space-sm); }

/* --- Footer --- */
.site-footer { background: var(--navy-dark); color: #c9d2e6; font-size: var(--text-sm); padding: var(--space-md) 0; }
.site-footer__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-xs); }
.site-footer a { color: var(--white); }

/* --- Mobile sticky bar --- */
.mobile-cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  display: grid; grid-template-columns: 1fr 1fr; gap: .5rem;
  padding: .6rem .75rem; background: var(--white); border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(31, 36, 48, .08);
}
.mobile-cta-bar .btn { padding: .8rem .5rem; font-size: var(--text-sm); }

/* --- Thank you --- */
.thankyou { padding: var(--space-xl) 0; background: var(--sage-tint); min-height: 60vh; }
.thankyou__inner { width: var(--narrow-width); }
.thankyou__icon { width: 3.2rem; height: 3.2rem; border-radius: 50%; background: var(--navy); color: var(--white); display: grid; place-items: center; font-size: 1.5rem; margin-bottom: var(--space-sm); }
.thankyou__next-steps { background: var(--white); border-radius: var(--radius-lg); padding: var(--space-md); margin-top: var(--space-md); }
.thankyou__next-steps ol { margin: 0; padding-left: 1.3rem; display: grid; gap: .5rem; }
.thankyou__portal { margin-top: var(--space-md); }

/* --- Desktop --- */
@media (min-width: 48rem) {
  body { padding-bottom: 0; }
  .mobile-cta-bar { display: none; }
  .hero__inner { grid-template-columns: 1.15fr 1fr; align-items: center; }
  .trust-bar__inner { grid-template-columns: repeat(4, 1fr); }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: repeat(3, 1fr); }
  .form-section__inner { grid-template-columns: 1fr 1.1fr; align-items: start; }
  .lead-form__row { grid-template-columns: 1fr 1fr; }
  .btn--large { width: auto; }
  .lead-form .btn--large { width: 100%; }
}
@media (min-width: 64rem) {
  .benefits { grid-template-columns: repeat(3, 1fr); }
  .benefits--four { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   2026-09-11 lander restructure (reference hunt: Meowtel, Park Cities,
   Woofie's, Critter Sitters, TrustedHousesitters). New blocks only; nothing
   above changed.
   ========================================================================== */

/* Hero short form: phone only. The anchor button hides on phone because the
   form is right there; the Call button stays. */
.hero__short-form { margin-top: var(--space-sm); }
.short-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--space-md); box-shadow: var(--shadow); }
.short-form__title { font-family: var(--font-display); font-weight: 700; color: var(--navy-dark); font-size: var(--text-lg); margin-bottom: var(--space-sm); }
.short-form__field { margin-bottom: var(--space-xs); }
.short-form label { display: block; font-weight: 600; font-size: var(--text-sm); margin-bottom: .25rem; color: var(--navy-dark); }
.short-form input { width: 100%; padding: .8rem .9rem; border: 1px solid #c9c4b9; border-radius: var(--radius); font: inherit; color: var(--ink); background: var(--white); }
.short-form input:focus { outline: 3px solid rgba(33, 61, 117, .25); border-color: var(--navy); }
.short-form .btn--large { margin-top: var(--space-xs); }
.short-form__note { font-size: var(--text-xs); color: var(--ink-soft); margin: var(--space-xs) 0 0; }
@media (max-width: 47.99rem) {
  /* Let the logo shrink and the service-area caption wrap beside the phone. */
  .site-header__logo { min-width: 0; }
  .site-header__logo img { max-width: 100%; }
  .site-header__phone { flex-shrink: 0; }
  .site-header__phone small { max-width: 11em; white-space: normal; }
  .hero__ctas .btn--primary { display: none; }
  .hero__ctas .btn--phone { width: 100%; padding: 1.05rem 1.75rem; font-size: var(--text-lg); }
  .hero__trust { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 48rem) { .hero__short-form { display: none; } }

/* Proof band: the number carries the tile */
.trust-bar__item strong { font-family: var(--font-display); font-size: var(--text-lg); line-height: 1.2; }

/* Visit-length cards */
.plans { display: grid; gap: var(--space-sm); }
.plan { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--space-md); display: grid; gap: .35rem; align-content: start; }
.plan--featured { border: 2px solid var(--brand-dark); background: var(--brand-tint); }
.plan__flag { position: absolute; top: -0.75rem; left: var(--space-md); background: var(--brand-dark); color: var(--white); font-size: var(--text-xs); font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: .25rem .7rem; border-radius: 999px; }
.plan h3 { margin: 0; }
.plan__price { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 700; color: var(--navy-dark); line-height: 1; }
.plan__price small { font-family: var(--font-body); font-size: var(--text-sm); font-weight: 400; color: var(--ink-soft); }
.plan p { color: var(--ink-soft); margin: 0; font-size: var(--text-sm); }
.plan ul { margin: .3rem 0 0; padding: 0; list-style: none; display: grid; gap: .3rem; font-size: var(--text-sm); }
.plan li::before { content: "\2713"; color: var(--brand-dark); margin-right: .4rem; font-weight: 800; }
.plans__note { font-size: var(--text-sm); color: var(--ink-soft); margin-top: var(--space-sm); }

/* Scenario contrasts */
.scenarios { display: grid; gap: var(--space-sm); }
.scenario { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.scenario h3 { margin: 0; padding: var(--space-sm) var(--space-md); background: var(--navy-tint); color: var(--navy-dark); }
.scenario__pair { display: grid; }
.scenario__before, .scenario__after { padding: var(--space-md); }
.scenario__before { color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.scenario__after { background: var(--sage-tint); }
.scenario__label { display: block; font-size: var(--text-xs); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: .4rem; }
.scenario__before .scenario__label { color: var(--ink-soft); }
.scenario__after .scenario__label { color: var(--sage-dark); }
.scenario p { margin: 0; }

/* Pet table reuses .compare */

/* Safety tiles reuse .benefits; give them a heading style */
.safety .benefit h3 { display: flex; align-items: center; gap: .5rem; font-size: var(--text-base); }
.safety .benefit h3::before { content: "\2713"; color: var(--brand-dark); font-weight: 800; }

/* Phone band */
.phone-band { background: var(--navy); color: var(--white); padding: var(--space-lg) 0; text-align: center; }
.phone-band__lead { color: #d7deee; font-size: var(--text-lg); margin-bottom: var(--space-xs); }
.phone-band__number { display: inline-block; font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 1.4rem + 3.5vw, 3.6rem); color: var(--white); text-decoration: none; letter-spacing: .01em; line-height: 1.1; }
.phone-band__number:hover { color: var(--brand-tint); }
.phone-band__hours { color: #d7deee; font-size: var(--text-sm); margin: var(--space-xs) 0 0; }

/* Coverage chips */
.coverage { background: var(--cream); }
.chips { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.chips li { background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: .4rem .9rem; font-weight: 600; font-size: var(--text-sm); color: var(--navy-dark); }
.coverage__note { margin-top: var(--space-sm); color: var(--ink-soft); font-size: var(--text-sm); }

@media (min-width: 48rem) {
  .plans { grid-template-columns: repeat(3, 1fr); }
  .plans--two, .plans--four { grid-template-columns: repeat(2, 1fr); }
  .scenario__pair { grid-template-columns: 1fr 1fr; }
  .scenario__before { border-bottom: 0; border-right: 1px solid var(--line); }
}

/* Reviews: Google mark, centered proof line and buttons (Ross, 2026-09-11) */
.g-icon { width: 1.15em; height: 1.15em; vertical-align: -0.2em; margin-right: .4rem; display: inline-block; }
.reviews__badge { display: inline-flex; align-items: center; gap: .45rem; background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: .4rem .9rem; font-weight: 700; color: var(--navy-dark); font-size: var(--text-sm); margin: 0 0 var(--space-md); }
.reviews__badge .g-icon { margin-right: 0; width: 1.3em; height: 1.3em; }
.reviews__badge .stars { color: var(--star); letter-spacing: .05em; }
.review figcaption { display: flex; align-items: center; }
.reviews__proof { text-align: center; margin-top: var(--space-md); }
.reviews__proof .pricing__note { margin-top: 0; }
.reviews__proof p { margin-top: var(--space-sm); }
.reviews__proof .btn { margin: .25rem; }

/* Hero accreditation badges (Ross, 2026-09-11: no trust icons above the fold).
   Marks the client already publishes or owns: her BBB accreditation kit, the NAPPS
   Certified seal on her own homepage, her own bonded-and-insured shield. Her
   "34 years" rosette is deliberately excluded: it is a year count, which she has
   asked us never to use, and it is stale. Provenance: src/images/SOURCES.md. */
.hero__badges { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-md); margin: var(--space-sm) 0 0; padding: var(--space-sm) 0 0; border-top: 1px solid var(--line); list-style: none; }
/* Size the marks by box, not by height alone (Ross, 2026-09-12: "all jacked up and
   huge"). At a shared 76px height the 150x240 portrait BBB file rendered 48x76, a tall
   skinny sliver beside a 98x76 NAPPS and a 195x76 pill. Each mark now sits in a fixed-
   height cell and is contained inside it, so it keeps its own proportions and no mark
   can dominate the row. */
/* One treatment for the whole row. Each mark sits in the same white chip as the
   Google rating, so a baked-in white card (BBB), a circular ribbon seal (NAPPS) and
   a text pill stop reading as three unrelated components. Contained, never stretched,
   so each keeps its own proportions. */
.hero__badges > li { display: flex; align-items: center; justify-content: center;
  height: 38px; box-sizing: border-box; padding: 0 .7rem;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.hero__badges img { max-height: 26px; max-width: 90px; width: auto; height: auto;
  object-fit: contain; mix-blend-mode: multiply; }
@media (min-width: 48rem) {
  .hero__badges > li { height: 44px; padding: 0 .85rem; }
  .hero__badges img { max-height: 30px; max-width: 104px; }
}

/* Google rating badge in the hero row (Ross, 2026-09-11: swap the bonded shield for a
   Google reviews badge). Rating and count re-derived live 2026-09-11 from the Google
   knowledge panel: 5.0 from 59 reviews. Yelp is 4.4 on 26 and is deliberately not shown.
   Not a link: this page carries one action. Update the two numbers here and in
   src/content/dog-sitting.json together. */
.hero__badges .gbadge { gap: .55rem; }
.hero__badges .gbadge .g-icon { width: 1.9em; height: 1.9em; margin: 0; flex: none; }
.gbadge__body { display: grid; gap: .1rem; }
.gbadge__top { display: flex; align-items: center; gap: .4rem; }
.gbadge__top strong { font-family: var(--font-display); font-size: var(--text-lg); line-height: 1; color: var(--navy-dark); }
.gbadge__top .stars { color: var(--star); letter-spacing: .04em; font-size: var(--text-sm); }
.gbadge__note { font-size: var(--text-xs); color: var(--ink-soft); line-height: 1.1; }
@media (min-width: 48rem) { .hero__badges .gbadge { padding: 0 .25rem; } }
