*,
*::before,
*::after {
  box-sizing: border-box;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body);
  background: var(--paper);
  line-height: 1.75;
  font-size: clamp(1.0625rem, 1rem + 0.25vw, 1.125rem);
  font-weight: 400;
  overflow-x: clip;
  letter-spacing: 0.01em;
}

[data-text="large"] body {
  font-size: clamp(1.125rem, 1.05rem + 0.35vw, 1.25rem);
  line-height: 1.85;
}

[data-text="large"] .btn {
  min-height: 56px;
  font-size: 1.05rem;
}

[data-text="large"] h1 {
  font-size: clamp(2.35rem, 1.5rem + 3vw, 4rem);
}

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

/* Responsive picture shells — contained boxes, no viewport overflow */
picture.img-fill {
  display: block;
  width: 100%;
  max-width: 100%;
  line-height: 0;
  overflow: hidden;
}

picture.img-fill img {
  width: 100%;
  max-width: 100%;
  display: block;
}

/* Shared Bumpa-style photo box */
.img-box {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: var(--img-box-radius);
  background: #fff;
  border: 1px solid rgb(0 148 68 / 12%);
  box-shadow: 0 4px 14px rgb(0 148 68 / 8%);
}

.img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green) 0%, #7ddea8 100%);
  z-index: 2;
  pointer-events: none;
}

.img-box picture.img-fill {
  position: relative;
  aspect-ratio: 16 / 10;
  max-height: var(--img-box-max-md);
}

.img-box picture.img-fill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}

.card__media picture.img-fill {
  aspect-ratio: 16 / 10;
  height: auto;
}

.card__media picture.img-fill img {
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.media-frame picture.img-fill {
  aspect-ratio: 4 / 3;
  max-height: var(--img-box-max-lg);
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 0.45rem);
  background: var(--green-mist);
}

.media-frame picture.img-fill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}

.media-frame--tall picture.img-fill {
  aspect-ratio: 3 / 4;
}

.media-frame--team picture.img-fill {
  aspect-ratio: 4 / 5;
}

.media-frame--team picture.img-fill img {
  object-fit: contain;
  object-position: center center;
  background: transparent;
}

a {
  color: var(--green);
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 0.85rem;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.1rem, 1.35rem + 2.8vw, 3.6rem);
}

h2 {
  font-size: clamp(1.65rem, 1.25rem + 1.4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.1rem, 1rem + 0.4vw, 1.3rem);
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1rem;
  color: var(--body);
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 10000;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

@media (min-width: 480px) {
  .container {
    width: min(100% - 2.5rem, var(--container));
  }
}

@media (min-width: 768px) {
  .container {
    width: min(100% - 3rem, var(--container));
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--green);
  margin-bottom: 0.75rem;
  background: var(--green-soft);
  padding: 0.35rem 0.7rem;
  border-radius: var(--pill);
}

.lead {
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.2rem);
  max-width: 36rem;
  color: var(--muted);
  font-weight: 400;
}

.section {
  padding: clamp(2.75rem, 5.5vw, 5.5rem) 0;
}

.section--wash {
  background: var(--wash);
}

.section--mist {
  background: var(--green-mist);
}

.section--green {
  background: var(--green);
  color: #fff;
}

.section--green h2,
.section--green p,
.section--green .lead {
  color: #fff;
}

.section--green .lead {
  opacity: 0.92;
}

.cta-band {
  padding-block: clamp(2rem, 4vw, 3rem);
  background: var(--wash);
}

.cta-band__card {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  background: #fff;
  border: 1px solid rgb(0 148 68 / 12%);
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 32px rgb(15 15 16 / 6%);
}

.cta-band__copy h2 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.45rem, 1.2rem + 1vw, 2rem);
  line-height: 1.15;
  color: var(--ink);
}

.cta-band__copy .lead {
  margin: 0;
  max-width: 46ch;
  font-size: clamp(0.96rem, 0.92rem + 0.2vw, 1.06rem);
  line-height: 1.55;
  color: var(--body);
}

.cta-band__stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.cta-band__stats li {
  padding: 0.75rem 0.65rem;
  text-align: center;
  background: var(--green-mist);
  border: 1px solid rgb(0 148 68 / 10%);
  border-radius: var(--radius);
}

.cta-band__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--green-deep);
  line-height: 1.2;
}

.cta-band__stats span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  color: var(--body);
  line-height: 1.3;
}

.cta-band__actions {
  width: 100%;
}

.cta-band__actions .cta-pair {
  max-width: none;
  width: 100%;
}

@media (min-width: 768px) {
  .cta-band__card {
    grid-template-columns: 1.15fr 1fr;
    grid-template-areas:
      "copy stats"
      "actions actions";
    align-items: start;
    gap: 1.35rem 1.5rem;
  }

  .cta-band__copy {
    grid-area: copy;
  }

  .cta-band__stats {
    grid-area: stats;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band__actions {
    grid-area: actions;
  }

  .cta-band__actions .cta-pair {
    max-width: 28rem;
  }
}

.section--dark {
  background: var(--footer);
  color: #fff;
}

.section-head {
  margin-bottom: 1.75rem;
  max-width: 40rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 52px;
  min-width: 48px;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-btn);
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.btn--primary:hover {
  background: var(--green-hover);
  border-color: var(--green-hover);
  color: #fff;
}

.btn--secondary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.btn--secondary:hover {
  background: #292929;
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

.btn--ghost:hover {
  background: var(--wash);
  border-color: var(--muted);
}

.btn--light {
  background: #fff;
  color: var(--green-deep);
  border-color: #fff;
}

.btn--light:hover {
  background: var(--green-soft);
  border-color: var(--green-soft);
  color: var(--green-deep);
}

.btn--block {
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
  align-items: center;
  justify-content: flex-start;
}

.btn-row--center {
  justify-content: center;
}

.btn-row--start {
  justify-content: flex-start;
}

.btn-row--center > .btn {
  min-width: min(100%, 16rem);
}

/* Section footers / standalone CTAs: centered + balanced on all screens */
.section > .container > .btn-row,
.section-cta .btn-row {
  justify-content: center;
}

.hero-cta.btn-row {
  justify-content: flex-start;
  margin-top: 1.25rem;
}

@media (max-width: 639px) {
  .btn-row--center > .btn,
  .section > .container > .btn-row > .btn,
  .section-cta .btn-row > .btn {
    width: 100%;
    max-width: 22rem;
  }

  .btn-row--center,
  .section > .container > .btn-row,
  .section-cta .btn-row {
    width: 100%;
  }

  .form-nav {
    flex-direction: column;
  }

  .form-nav .btn {
    width: 100%;
  }
}

@media (min-width: 640px) {
  .btn-row--center > .btn {
    min-width: 0;
    width: auto;
  }
}

/* Unified contact CTAs — Call (left, primary) + Text (right, secondary) */
.cta-pair {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.65rem;
  width: 100%;
  max-width: 36rem;
}

.cta-pair--compact {
  max-width: 100%;
}

.cta-pair--compact .btn {
  min-height: 48px;
  padding: 0.7rem 0.85rem;
  font-size: 0.9rem;
}

.hero-cta .cta-pair {
  max-width: 28rem;
}

.btn--call {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.btn--call:hover {
  background: var(--green-hover);
  border-color: var(--green-hover);
  color: #fff;
}

.btn--text {
  background: #fff;
  color: var(--green-deep);
  border-color: var(--green);
}

.btn--text:hover {
  background: var(--green-soft);
  border-color: var(--green-hover);
  color: var(--green-deep);
}

.btn--call-hero {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.btn--text-hero {
  background: rgb(255 255 255 / 12%);
  color: #fff;
  border-color: rgb(255 255 255 / 55%);
}

.btn--text-hero:hover {
  background: rgb(255 255 255 / 20%);
  border-color: #fff;
  color: #fff;
}

.btn--call-light {
  background: #fff;
  color: var(--green-deep);
  border-color: #fff;
}

.btn--call-light:hover {
  background: var(--green-soft);
  color: var(--green-deep);
}

.btn--text-light {
  background: transparent;
  color: #fff;
  border-color: rgb(255 255 255 / 65%);
}

.btn--text-light:hover {
  background: rgb(255 255 255 / 12%);
  border-color: #fff;
  color: #fff;
}

.contact-inline .cta-pair,
.form-success__cta .cta-pair {
  margin-top: 0.65rem;
}

.card__body .cta-pair {
  margin-top: 0.9rem;
}

@media (max-width: 380px) {
  .cta-pair:not(.cta-pair--compact) {
    grid-template-columns: 1fr;
  }
}

/* Header — Bumpa clean bar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgb(255 255 255 / 96%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  position: relative;
}

.site-header__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.brand img {
  width: auto;
  height: 48px;
  max-width: 52px;
  object-fit: contain;
  border-radius: 0;
  flex-shrink: 0;
}

.brand__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  font-size: clamp(0.9rem, 0.8rem + 0.45vw, 1.1rem);
  letter-spacing: -0.025em;
}

.brand__tag {
  display: none;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}

@media (min-width: 520px) {
  .brand__tag {
    display: block;
  }
}

.nav-desktop {
  display: none;
  gap: 0.1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-desktop a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.5rem 0.55rem;
  border-radius: 0.5rem;
  white-space: nowrap;
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: var(--green);
  background: var(--green-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--line);
  border-radius: 0.75rem;
  background: #fff;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.menu-toggle:hover {
  border-color: var(--green);
  color: var(--green);
}

.menu-toggle.is-active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.menu-toggle__icon {
  display: grid;
  place-items: center;
}

.menu-toggle__icon--close {
  display: none;
}

.menu-toggle.is-active .menu-toggle__icon--open {
  display: none;
}

.menu-toggle.is-active .menu-toggle__icon--close {
  display: grid;
}

.nav-drawer {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 999;
  border-top: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 16px 40px rgb(15 15 16 / 10%);
  max-height: min(78vh, 32rem);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-drawer[hidden] {
  display: none !important;
}

.nav-drawer.is-open {
  display: block;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .sticky-cta {
  display: none;
}

.nav-drawer__inner {
  padding: 0.85rem 0 calc(1rem + var(--safe-bottom));
}

.nav-drawer__cta {
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.nav-drawer__cta .cta-pair {
  max-width: none;
}

.nav-mobile__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.2rem;
}

.nav-mobile__list a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.55rem;
  border-radius: var(--radius-btn);
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.25;
  min-height: 48px;
}

.nav-mobile__list a:hover,
.nav-mobile__list a[aria-current="page"] {
  background: var(--green-soft);
  color: var(--green-deep);
}

.nav-mobile__icon {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-btn);
  background: var(--green-mist);
  color: var(--green);
  flex-shrink: 0;
}

.nav-mobile__secondary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin: 0.85rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

.nav-mobile__secondary a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  padding: 0.35rem 0.25rem;
}

.nav-mobile__secondary a:hover,
.nav-mobile__secondary a[aria-current="page"] {
  color: var(--green);
}

.nav-mobile__sep {
  color: var(--line-strong);
  user-select: none;
}

.cta-pair--block {
  grid-template-columns: 1fr 1fr;
  max-width: none;
}

.cta-pair--block .btn {
  width: 100%;
}

.soft-banner__later {
  width: 100%;
  margin-top: 0.65rem;
}

.site-footer .cta-pair {
  max-width: none;
  margin-top: 0.75rem;
}

.site-footer .cta-pair .btn {
  width: 100%;
}

@media (min-width: 1100px) {
  .nav-desktop {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .nav-drawer {
    display: none !important;
  }
}

@media (max-width: 1099px) {
  .header-actions .cta-pair {
    display: none;
  }
}

@media (min-width: 1100px) {
  .header-actions .cta-pair {
    max-width: none;
    width: auto;
    grid-template-columns: auto auto;
  }

  .header-actions .cta-pair .btn {
    min-height: 44px;
    padding: 0.55rem 1rem;
    font-size: 0.88rem;
    white-space: nowrap;
  }
}

@media (max-width: 420px) {
  .header-actions .menu-toggle {
    margin-left: 0.15rem;
  }
}

/* Sticky mobile CTA — appears after hero scrolls out */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  padding: 0.55rem 0.75rem calc(0.55rem + var(--safe-bottom));
  background: rgb(255 255 255 / 98%);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 16px rgb(15 15 16 / 5%);
  transform: translateY(110%);
  transition: transform 0.28s var(--ease);
  pointer-events: none;
}

.sticky-cta.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta .cta-pair {
  max-width: none;
  margin: 0 auto;
  width: min(100%, 40rem);
  gap: 0.55rem;
}

.sticky-cta .btn {
  min-height: 48px;
  padding: 0.65rem 0.85rem;
  font-size: 0.92rem;
  border-radius: var(--radius-btn);
}

body.has-sticky-cta {
  padding-bottom: calc(var(--sticky-h) + var(--safe-bottom));
}

@media (min-width: 900px) {
  .sticky-cta {
    display: none;
    transform: none;
    pointer-events: auto;
  }

  body.has-sticky-cta {
    padding-bottom: 0;
  }
}

/* Footer — compact mobile categories, open columns on desktop (SEO / GEO) */
.site-footer {
  background: var(--footer);
  color: #d5dae0;
  padding: 2.25rem 0 calc(1.5rem + var(--safe-bottom));
}

.site-footer a {
  color: #fff;
  text-decoration: none;
  text-underline-offset: 0.18em;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--green-bright);
  text-decoration: underline;
}

.site-footer__grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}

.site-footer__brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none !important;
}

.site-footer__brand-link img {
  width: auto;
  height: 2.75rem;
  max-width: 3rem;
  border-radius: 0;
  object-fit: contain;
  flex-shrink: 0;
}

.site-footer__brand-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.25;
  max-width: 12rem;
}

.site-footer__tagline {
  margin: 0;
  max-width: 22rem;
  color: #c2c8d0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.site-footer__phone {
  margin: 0.1rem 0 0;
}

.site-footer__phone a {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none !important;
}

.site-footer__areas {
  margin: 0;
  max-width: 22rem;
  color: #b4bbc4;
  font-size: 0.84rem;
  line-height: 1.4;
}

.site-footer__areas-label {
  display: block;
  margin-bottom: 0.12rem;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer__cats {
  display: grid;
  gap: 0;
  border-top: 1px solid rgb(255 255 255 / 12%);
}

.site-footer__nav {
  border-bottom: 1px solid rgb(255 255 255 / 12%);
}

.site-footer__fold {
  margin: 0;
}

.site-footer__heading {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 3rem;
  padding: 0.65rem 0;
  user-select: none;
}

.site-footer__heading::-webkit-details-marker {
  display: none;
}

.site-footer__heading::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid #c2c8d0;
  border-bottom: 2px solid #c2c8d0;
  transform: rotate(45deg);
  transition: transform 0.2s var(--ease);
  flex-shrink: 0;
  margin-top: -0.15rem;
}

.site-footer__fold[open] > .site-footer__heading::after {
  transform: rotate(225deg);
  margin-top: 0.2rem;
}

.site-footer__nav ul {
  list-style: none;
  padding: 0 0 0.85rem;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.site-footer__nav a {
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.35;
  display: inline-block;
  padding: 0.15rem 0;
}

.site-footer__bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgb(255 255 255 / 14%);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.site-footer__dot {
  opacity: 0.7;
}

.site-footer__credit {
  margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.45rem;
  color: #aeb5be;
  font-size: 0.84rem;
  line-height: 1.4;
}

.site-footer__credit a {
  font-weight: 600;
  color: #fff;
}

.site-footer .util-bar {
  margin-top: 0.35rem;
}

@media (min-width: 640px) {
  .site-footer {
    padding: 2.75rem 0 calc(1.75rem + var(--safe-bottom));
  }

  .site-footer__grid {
    gap: 1.75rem;
  }

  .site-footer__bottom {
    margin-top: 1.85rem;
    padding-top: 1.15rem;
  }
}

@media (min-width: 960px) {
  .site-footer {
    padding: 3.5rem 0 calc(2rem + var(--safe-bottom));
  }

  .site-footer__grid {
    grid-template-columns: minmax(14rem, 1.4fr) minmax(0, 2.2fr);
    gap: 2.5rem 2.25rem;
    align-items: start;
  }

  .site-footer__cats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem 2rem;
    border-top: 0;
  }

  .site-footer__nav {
    border-bottom: 0;
  }

  .site-footer__heading {
    min-height: 0;
    padding: 0;
    margin-bottom: 0.85rem;
    cursor: default;
    pointer-events: none;
  }

  .site-footer__heading::after {
    display: none;
  }

  .site-footer__nav ul {
    padding: 0;
    gap: 0.55rem;
  }

  .site-footer__bottom {
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    justify-content: flex-end;
    text-align: right;
  }

  .site-footer__credit {
    font-size: 0.875rem;
  }
}

@media (max-width: 899px) {
  .site-footer {
    padding-bottom: calc(1.35rem + var(--sticky-h) + var(--safe-bottom));
  }
}

/* Hero — full-bleed photo, readable copy, balanced mobile + desktop */
.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(26rem, 78svh, 38rem);
  color: #fff;
  background: var(--paper);
  overflow: hidden;
  isolation: isolate;
  margin-top: -1px;
}

@media (min-width: 900px) {
  .hero {
    min-height: clamp(28rem, 58vh, 38rem);
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .hero {
    min-height: clamp(30rem, 56vh, 40rem);
  }
}

.hero__bg {
  position: absolute;
  inset: -2px 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg picture.img-fill {
  width: 100%;
  height: 100%;
}

.hero__bg picture,
.hero__bg img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__bg img {
  object-fit: cover;
  object-position: center 28%;
  min-width: 100%;
  min-height: 100%;
  will-change: transform;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgb(6 16 12 / 78%) 0%, rgb(6 16 12 / 55%) 28%, rgb(6 16 12 / 32%) 58%, rgb(0 80 45 / 14%) 100%),
    linear-gradient(90deg, rgb(6 16 12 / 68%) 0%, rgb(6 16 12 / 26%) 42%, transparent 72%);
  pointer-events: none;
}

.hero__veil::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(1.25rem, 4vw, 2rem);
  background: linear-gradient(to top, var(--green-mist) 0%, transparent 100%);
  pointer-events: none;
}

@media (min-width: 900px) {
  .hero__veil {
    background:
      linear-gradient(105deg, rgb(5 20 13 / 90%) 0%, rgb(6 18 12 / 68%) 38%, rgb(6 18 12 / 24%) 62%, transparent 100%),
      linear-gradient(to top, rgb(5 18 12 / 72%) 0%, rgb(5 18 12 / 32%) 42%, transparent 74%);
  }

  .hero__veil::after {
    height: 1.5rem;
    background: linear-gradient(to top, var(--green-mist) 0%, transparent 100%);
  }

  .hero__bg img {
    object-position: center 24%;
    min-height: 108%;
    width: 100%;
  }
}

@media (min-width: 1400px) {
  .hero__bg img {
    object-position: center 26%;
    min-height: 110%;
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  width: min(100% - clamp(2.25rem, 7vw, 4rem), var(--container));
  max-width: 38rem;
  margin-inline: auto;
  padding:
    calc(var(--header-h) + clamp(1rem, 3vw, 1.75rem))
    clamp(0.25rem, 1.5vw, 0.75rem)
    clamp(2rem, 5vw, 3rem)
    clamp(0.25rem, 1.5vw, 0.75rem);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.75rem;
  padding: 0.4rem 0.8rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #d4f5e3;
  background: rgb(0 148 68 / 32%);
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: var(--radius-btn);
  backdrop-filter: blur(8px);
}

.hero__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.4rem + 4vw, 3.15rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #fff;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgb(0 0 0 / 42%);
  max-width: 14ch;
}

.hero__lead {
  margin: 0;
  max-width: 32ch;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.15rem);
  line-height: 1.5;
  font-weight: 400;
  color: rgb(255 255 255 / 94%);
  text-shadow: 0 1px 14px rgb(0 0 0 / 36%);
}

.hero__tags {
  display: none;
}

.hero-cta {
  margin-top: 1.25rem;
}

.hero-cta .cta-pair {
  max-width: 24rem;
}

.hero .btn--call,
.hero .btn--text-hero {
  min-height: 50px;
  font-size: 0.94rem;
  font-weight: 600;
  box-shadow: 0 4px 14px rgb(0 0 0 / 18%);
}

.hero .btn--call-hero {
  box-shadow: 0 4px 18px rgb(0 100 50 / 35%);
}

.hero .btn--text-hero {
  background: rgb(255 255 255 / 10%);
  color: #fff;
  border-color: rgb(255 255 255 / 50%);
  backdrop-filter: blur(4px);
}

.hero .btn--text-hero:hover {
  background: rgb(255 255 255 / 18%);
  border-color: #fff;
  color: #fff;
}

/* Mobile + tablet — content mid-hero, clear of bottom edge */
@media (max-width: 899px) {
  .hero {
    align-items: center;
    min-height: clamp(28rem, 74svh, 36rem);
  }

  .hero__bg img {
    object-position: 52% 18% !important;
  }

  .hero__veil {
    background:
      linear-gradient(
        to bottom,
        rgb(6 16 12 / 38%) 0%,
        rgb(6 16 12 / 52%) 34%,
        rgb(6 16 12 / 66%) 62%,
        rgb(6 16 12 / 74%) 100%
      ),
      linear-gradient(90deg, rgb(6 16 12 / 48%) 0%, rgb(6 16 12 / 18%) 58%, transparent 100%);
  }

  .hero__veil::after {
    height: 1.35rem;
  }

  .hero__content {
    width: min(100% - 2.25rem, var(--container));
    align-self: center;
    margin-block: auto;
    padding:
      calc(var(--header-h) + 0.35rem)
      0.15rem
      clamp(2.75rem, 7vw, 3.5rem)
      0.15rem;
  }

  .hero__title {
    font-size: clamp(1.72rem, 6.8vw, 2.15rem);
    line-height: 1.16;
    letter-spacing: -0.02em;
    max-width: 14ch;
    margin-bottom: 0.7rem;
  }

  .hero__lead {
    font-size: 0.98rem;
    line-height: 1.5;
    max-width: 30ch;
  }

  .hero__eyebrow {
    margin-bottom: 0.7rem;
    font-size: 0.65rem;
    padding: 0.38rem 0.7rem;
  }

  .hero-cta {
    margin-top: 1.15rem;
  }

  .hero-cta .cta-pair {
    max-width: none;
    gap: 0.55rem;
  }

  .hero .btn--call,
  .hero .btn--text-hero {
    min-height: 48px;
    font-size: 0.92rem;
  }
}

@media (max-width: 479px) {
  .hero {
    min-height: clamp(27rem, 72svh, 34rem);
  }

  .hero__content {
    padding:
      calc(var(--header-h) + 0.25rem)
      0.1rem
      3rem
      0.1rem;
  }

  .hero__lead {
    max-width: 28ch;
  }
}

@media (max-width: 899px) and (max-height: 520px) {
  .hero {
    min-height: 22rem;
    align-items: center;
  }

  .hero__content {
    padding-top: calc(var(--header-h) + 0.2rem);
    padding-bottom: 1.5rem;
  }

  .hero__title {
    font-size: 1.55rem;
    margin-bottom: 0.45rem;
  }

  .hero__lead {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .hero-cta {
    margin-top: 0.85rem;
  }

  .hero .btn--call,
  .hero .btn--text-hero {
    min-height: 44px;
    font-size: 0.88rem;
  }
}

@media (min-width: 900px) {
  .hero__content {
    width: min(100% - 4rem, var(--container));
    max-width: 42rem;
    padding:
      calc(var(--header-h) + 2rem)
      0.5rem
      clamp(2.5rem, 6vh, 4rem)
      0.5rem;
  }

  .hero__title {
    font-size: clamp(2.45rem, 1.75rem + 2.2vw, 3.45rem);
    max-width: 14ch;
    margin-bottom: 1.1rem;
  }

  .hero__lead {
    font-size: clamp(1.05rem, 0.98rem + 0.25vw, 1.2rem);
  }

  .hero-cta .cta-pair {
    max-width: 26rem;
  }
}

[data-text="large"] .hero__title {
  font-size: clamp(2.15rem, 1.4rem + 3.5vw, 3.75rem);
}

[data-text="large"] .hero__lead {
  font-size: clamp(1.12rem, 1rem + 0.4vw, 1.32rem);
}

.brand-signal {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 0.95rem + 1.1vw, 1.65rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
  color: #fff;
}

.hero h1,
.hero .lead {
  color: #fff;
}

.hero .lead {
  color: rgb(255 255 255 / 88%);
}

.hero .btn--call,
.hero .btn--text-hero {
  min-height: 52px;
}

.hero .btn--text-hero {
  color: #fff;
  border-color: rgb(255 255 255 / 55%);
}

.hero .btn--text-hero:hover {
  background: rgb(255 255 255 / 20%);
  border-color: #fff;
  color: #fff;
}

/* Trust strip — compact proof points under hero */
.trust-strip {
  position: relative;
  z-index: 2;
  background: var(--green-mist);
  border-bottom: 1px solid rgb(0 148 68 / 10%);
  padding: 1.15rem 0 1.35rem;
  scroll-margin-top: var(--header-h);
}

.trust-strip__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.trust-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.55rem;
  background: #fff;
  border: 1px solid rgb(0 148 68 / 12%);
  border-radius: var(--radius-lg);
  padding: 1rem 0.75rem 0.95rem;
  min-height: 6.75rem;
  box-shadow: 0 6px 18px rgb(15 15 16 / 4%);
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.trust-strip__item:hover {
  transform: translateY(-3px);
  border-color: rgb(0 148 68 / 28%);
  box-shadow: 0 12px 28px rgb(0 148 68 / 10%);
}

.trust-strip__icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 0.85rem;
  background:
    radial-gradient(circle at 30% 25%, #fff 0%, transparent 55%),
    linear-gradient(160deg, #f3fbf6 0%, var(--green-soft) 100%);
  color: var(--green);
  flex-shrink: 0;
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 80%),
    0 4px 10px rgb(0 148 68 / 10%);
  animation: trust-icon-float 3.6s var(--ease) infinite;
  animation-delay: calc(var(--i, 0) * 0.28s);
}

.trust-strip__icon::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 1px solid rgb(0 148 68 / 12%);
  opacity: 0.7;
  pointer-events: none;
}

.trust-strip__icon svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke-width: 2;
  transform-origin: center;
  animation: trust-icon-pulse 3.6s var(--ease) infinite;
  animation-delay: calc(var(--i, 0) * 0.28s);
}

.trust-strip__item:hover .trust-strip__icon {
  color: var(--green-deep);
  background:
    radial-gradient(circle at 30% 25%, #fff 0%, transparent 55%),
    linear-gradient(160deg, #eef9f2 0%, #d7f0e2 100%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 90%),
    0 8px 16px rgb(0 148 68 / 14%);
}

.trust-strip__item:hover .trust-strip__icon svg {
  animation: trust-icon-nudge 0.55s var(--ease) 1;
}

.trust-strip__text {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
  justify-items: center;
}

.trust-strip__text strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--green-deep);
}

.trust-strip__text span {
  font-size: 0.78rem;
  line-height: 1.3;
  color: var(--muted);
  font-weight: 500;
}

@keyframes trust-icon-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes trust-icon-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.92;
  }
}

@keyframes trust-icon-nudge {
  0% {
    transform: scale(1) rotate(0deg);
  }
  40% {
    transform: scale(1.12) rotate(-4deg);
  }
  70% {
    transform: scale(1.06) rotate(3deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

@media (max-width: 639px) {
  .trust-strip__item {
    padding: 0.9rem 0.55rem 0.85rem;
    min-height: 6.4rem;
    gap: 0.45rem;
  }

  .trust-strip__icon {
    width: 2.45rem;
    height: 2.45rem;
  }

  .trust-strip__text strong {
    font-size: 0.92rem;
  }

  .trust-strip__text span {
    font-size: 0.74rem;
  }
}

@media (min-width: 768px) {
  .trust-strip {
    padding: 1.35rem 0 1.55rem;
  }

  .trust-strip__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
  }

  .trust-strip__item {
    padding: 1.2rem 0.9rem 1.1rem;
    min-height: 7.5rem;
    gap: 0.65rem;
  }

  .trust-strip__icon {
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 0.95rem;
  }

  .trust-strip__icon svg {
    width: 1.3rem;
    height: 1.3rem;
  }

  .trust-strip__text strong {
    font-size: 1.08rem;
  }

  .trust-strip__text span {
    font-size: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-strip__item,
  .trust-strip__icon,
  .trust-strip__icon svg {
    animation: none !important;
    transition: none;
  }

  .trust-strip__item:hover {
    transform: none;
  }
}

/* Legacy metrics (inner pages) */
.trust-metrics {
  display: grid;
  gap: 1rem;
}

.trust-metrics div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
}

.trust-metrics strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: 0.2rem;
}

.trust-metrics span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

@media (min-width: 640px) {
  .trust-metrics {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1000px) {
  .trust-metrics {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Feature split — Bumpa product blocks */
.split {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }

  .split--reverse > :first-child {
    order: 2;
  }

  .split .media-frame picture.img-fill {
    max-height: var(--img-box-max-lg);
  }
}

.media-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgb(0 148 68 / 14%);
  box-shadow: 0 4px 16px rgb(0 148 68 / 8%);
  padding: 0.55rem;
}

@media (min-width: 900px) {
  .media-frame {
    box-shadow:
      0 0 0 4px #fff,
      0 12px 32px rgb(0 148 68 / 10%),
      var(--shadow);
  }
}

.media-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, #7ddea8 100%);
  z-index: 2;
}

.media-frame picture,
.media-frame img {
  display: block;
  width: 100%;
}

.media-frame--team {
  background: linear-gradient(165deg, #fff 0%, var(--green-soft) 100%);
  border-color: rgb(0 148 68 / 22%);
}

@media (min-width: 900px) {
  .media-frame--tall picture.img-fill {
    aspect-ratio: 4 / 5;
  }
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.list-check li {
  position: relative;
  padding-left: 1.55rem;
  margin-bottom: 0.55rem;
  color: var(--body);
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px var(--green-soft);
}

/* Service cards with images */
.grid-2,
.grid-3 {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.card__media {
  aspect-ratio: 16 / 10;
  max-height: 12.5rem;
  overflow: hidden;
  background: linear-gradient(180deg, var(--green-soft) 0%, #fff 100%);
  border-bottom: 3px solid var(--green);
  position: relative;
}

.card__media picture,
.card__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.card__media img {
  object-fit: cover;
}

.card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(to top, rgb(0 148 68 / 16%) 0%, transparent 100%);
  pointer-events: none;
}

.card__body {
  padding: 1.15rem 1.2rem 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__body p {
  margin: 0;
  flex: 1;
  font-size: 0.95rem;
}

.card__body h3 a {
  color: inherit;
  text-decoration: none;
}

.card__body h3 a:hover {
  color: var(--green);
}

.card__link {
  display: inline-block;
  margin-top: 0.9rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
}

.card__link:hover {
  text-decoration: underline;
}

.card__media a {
  display: block;
  height: 100%;
}

.prose h3 {
  margin-top: 1.5rem;
}

.muted {
  color: var(--ink-soft, #5c6670);
  font-size: 0.95rem;
}

/* Life-at-home collage — bento grid, always fills its column */
.mosaic-wrap {
  padding: 0.55rem;
  background: linear-gradient(165deg, #fff 0%, var(--green-mist) 100%);
  border: 1px solid rgb(0 148 68 / 12%);
  border-radius: var(--radius-lg);
  box-shadow:
    0 0 0 4px #fff,
    0 10px 28px rgb(0 148 68 / 9%);
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.section--collage .mosaic-wrap {
  max-width: none;
  margin-inline: 0;
}

.mosaic {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-template-rows: 5rem 5rem;
  gap: 0.35rem;
  width: 100%;
  min-width: 0;
}

.mosaic__item {
  position: relative;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  background: var(--green-mist);
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgb(0 148 68 / 8%);
}

.mosaic__item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(to top, rgb(0 0 0 / 12%) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.mosaic__item picture.img-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
  max-height: none;
}

.mosaic__item picture.img-fill img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center 32%;
}

.mosaic__item--1 {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.mosaic__item--2 {
  grid-column: 2;
  grid-row: 1;
}

.mosaic__item--3 {
  grid-column: 3;
  grid-row: 1;
}

.mosaic__item--4 {
  grid-column: 2;
  grid-row: 2;
}

.mosaic__item--5 {
  grid-column: 3;
  grid-row: 2;
}

@media (min-width: 480px) {
  .mosaic {
    grid-template-rows: 5.5rem 5.5rem;
    gap: 0.4rem;
  }
}

@media (min-width: 640px) {
  .mosaic-wrap {
    padding: 0.65rem;
  }

  .mosaic {
    grid-template-rows: 6.25rem 6.25rem;
    gap: 0.45rem;
  }
}

@media (min-width: 900px) {
  .mosaic-wrap {
    padding: 0.75rem;
  }

  .mosaic {
    grid-template-rows: 7rem 7rem;
    gap: 0.5rem;
  }
}

@media (min-width: 1100px) {
  .mosaic {
    grid-template-rows: 8.25rem 8.25rem;
    gap: 0.6rem;
  }
}

/* Life-at-home section — text + collage side by side on wide screens */
.section--collage .container {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}

.section--collage .section-head,
.section--collage .mosaic-wrap {
  min-width: 0;
}

@media (min-width: 900px) {
  .section--collage .container {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .section--collage .section-head {
    margin-bottom: 0;
  }

  .section--collage .mosaic-wrap {
    justify-self: stretch;
  }
}

/* Steps — timeline stepper (stacked mobile, 3-col desktop) */
.steps--modern {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.step-card {
  position: relative;
  display: grid;
  grid-template-columns: 2.85rem minmax(0, 1fr);
  gap: 0 1rem;
  align-items: start;
  padding-bottom: 1.35rem;
}

.step-card:last-child {
  padding-bottom: 0;
}

.step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 1.425rem;
  top: 2.95rem;
  bottom: 0.2rem;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgb(0 148 68 / 38%) 0%, rgb(0 148 68 / 10%) 100%);
  pointer-events: none;
}

.step-card__marker {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding-top: 0.15rem;
}

.step-card__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: linear-gradient(145deg, var(--green) 0%, var(--green-hover) 100%);
  box-shadow: 0 6px 18px rgb(0 148 68 / 28%);
}

.step-card__content {
  background: #fff;
  border: 1px solid rgb(0 148 68 / 12%);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.2rem 1.25rem;
  box-shadow: 0 4px 18px rgb(0 148 68 / 7%);
}

.step-card__content h3 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.02rem, 0.98rem + 0.18vw, 1.14rem);
  line-height: 1.3;
}

.step-card__content p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--body);
}

@media (min-width: 900px) {
  .steps--modern {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
    padding-top: 0.35rem;
  }

  .steps--modern::before {
    content: "";
    position: absolute;
    top: 1.775rem;
    left: calc(16.666% + 1.425rem);
    right: calc(16.666% + 1.425rem);
    height: 2px;
    background: linear-gradient(90deg, rgb(0 148 68 / 12%) 0%, rgb(0 148 68 / 38%) 50%, rgb(0 148 68 / 12%) 100%);
    pointer-events: none;
    z-index: 0;
  }

  .step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-bottom: 0;
    text-align: center;
  }

  .step-card:not(:last-child)::after {
    display: none;
  }

  .step-card__marker {
    padding-top: 0;
  }

  .step-card__content {
    width: 100%;
    min-height: 100%;
  }
}

/* Legacy step style (inner pages) */
.steps {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.35rem 1.35rem 4.25rem;
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 1.1rem;
  top: 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green);
  font-size: 1.1rem;
}

@media (min-width: 900px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Reviews */
.reviews__viewport {
  overflow: hidden;
  touch-action: pan-y;
}

.reviews__container {
  display: flex;
}

.review-card {
  flex: 0 0 88%;
  min-width: 0;
  margin-right: 0.85rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
}

@media (min-width: 700px) {
  .review-card {
    flex-basis: 48%;
  }
}

@media (min-width: 1100px) {
  .review-card {
    flex-basis: 32%;
  }
}

.stars {
  color: var(--green);
  margin-bottom: 0.7rem;
  letter-spacing: 0.08em;
}

.review-card p {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.45;
}

.review-card__meta {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.carousel-dots {
  display: flex;
  gap: 0.35rem;
  justify-content: center;
  margin-top: 1.25rem;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: var(--line-strong);
  padding: 0;
  cursor: pointer;
}

.carousel-dots button.is-selected {
  width: 20px;
  background: var(--green);
}

.city-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.city-row a,
.city-row span {
  display: inline-flex;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-btn);
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.city-row a:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-soft);
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin: 1.5rem 0;
}

@media (min-width: 700px) {
  .stat-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  background: rgb(255 255 255 / 12%);
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #fff;
}

.stat span {
  font-size: 0.85rem;
  opacity: 0.9;
}

.page-hero {
  padding: clamp(2.5rem, 5vw, 4rem) 0 2rem;
  background: linear-gradient(180deg, var(--green-mist), #fff 70%);
  border-bottom: 1px solid var(--line);
}

.form-layout {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .form-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
}

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  margin-bottom: 1.15rem;
}

.form-progress span {
  height: 4px;
  border-radius: 999px;
  background: var(--line);
}

.form-progress span.is-active {
  background: var(--green);
}

.form-progress span.is-done {
  background: var(--green-deep);
}

.form-step {
  display: none;
}

.form-step.is-active {
  display: block;
}

.field {
  margin-bottom: 0.95rem;
}

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: 0.65rem;
  padding: 0.85rem 1rem;
  background: #fff;
  color: var(--ink);
  font-size: 1.05rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  outline: none;
  box-shadow: 0 0 0 3px var(--green-soft);
}

.choice-grid {
  display: grid;
  gap: 0.45rem;
}

.choice {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  padding: 0.95rem 1rem;
  min-height: 52px;
  cursor: pointer;
  font-size: 1.02rem;
}

.choice:has(input:checked) {
  border-color: var(--green);
  background: var(--green-soft);
}

.form-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
  align-items: center;
  justify-content: flex-start;
}

.section-cta {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
}

.section-cta > p {
  margin-inline: auto;
  max-width: 36ch;
}

.match-block__body .btn-row {
  margin-top: 0.15rem;
}

.intro-panel .btn-row {
  margin-top: 1.15rem;
}

.split .btn-row {
  margin-top: 1.15rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 1.25rem 0.5rem;
}

.form-success.is-visible {
  display: block;
}

.contact-panel {
  display: grid;
  gap: 0.75rem;
}

.contact-panel a {
  font-weight: 600;
  text-decoration: none;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.35rem 1rem;
  margin-bottom: 0.55rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  min-height: 52px;
  align-items: center;
  color: var(--ink);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--green);
  font-size: 1.25rem;
}

.faq details[open] summary::after {
  content: "–";
}

.faq p {
  margin: 0 0 0.9rem;
}

.soft-banner {
  position: fixed;
  right: 0.75rem;
  bottom: calc(var(--sticky-h) + 0.75rem + var(--safe-bottom));
  z-index: 1050;
  width: min(20rem, calc(100vw - 1.5rem));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.1rem;
  display: none;
}

.soft-banner.is-visible {
  display: block;
}

.soft-banner__close {
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--muted);
}

@media (min-width: 900px) {
  .soft-banner {
    bottom: 1.25rem;
  }
}

.util-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.util-bar button {
  min-height: 40px;
  border: 1px solid rgb(255 255 255 / 28%);
  background: transparent;
  border-radius: var(--pill);
  padding: 0.4rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  color: #d0d5db;
}

.util-bar button[aria-pressed="true"] {
  border-color: var(--green-bright);
  color: #fff;
  background: rgb(23 219 113 / 12%);
}

.util-bar button:hover,
.util-bar button:focus-visible {
  color: #fff;
  border-color: rgb(255 255 255 / 55%);
}

.booking-frame {
  width: 100%;
  min-height: 640px;
  border: 0;
  border-radius: var(--radius);
  background: #fff;
}

.prose {
  max-width: 40rem;
}

@media (max-width: 899px) {
  .split .media-frame {
    order: -1;
    max-width: 28rem;
    margin-inline: auto;
    width: 100%;
  }

  .split .media-frame picture.img-fill {
    aspect-ratio: 16 / 10;
    max-height: var(--img-box-max-sm);
  }

  .section {
    padding-block: clamp(2.25rem, 6vw, 3.5rem);
  }

  .card__media {
    min-height: 0;
  }

  .media-frame--team picture.img-fill {
    aspect-ratio: 4 / 5;
    max-height: 20rem;
    margin-inline: auto;
  }
}

/* Intro + showcase — editorial card + living proof carousel */
.intro-showcase {
  padding-block: clamp(2rem, 5vw, 3.5rem);
}

.intro-showcase__grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.intro-panel {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid rgb(0 148 68 / 10%);
  box-shadow: 0 12px 40px rgb(0 148 68 / 8%);
  overflow: hidden;
  min-width: 0;
}

.intro-panel__body {
  padding: clamp(1.35rem, 3vw, 2rem);
  border-left: 4px solid var(--green);
}

.intro-panel .lead {
  margin-bottom: 1.15rem;
}

.intro-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 1.15rem;
  display: grid;
  gap: 0.65rem;
}

.intro-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.96rem;
  color: var(--body);
  line-height: 1.45;
}

.intro-benefits__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  margin-top: 0.1rem;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
}

.intro-benefits__icon svg {
  width: 1rem;
  height: 1rem;
}

.intro-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.intro-trust__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--green-deep);
  background: var(--green-soft);
  border: 1px solid rgb(0 148 68 / 14%);
  border-radius: var(--pill);
}

.intro-showcase__media {
  min-width: 0;
  width: 100%;
}

.intro-showcase__caption {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--green-deep);
}

@media (min-width: 900px) {
  .intro-showcase__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 4.5vw, 3.75rem);
    align-items: center;
  }
}

/* Matched caregivers — clean split card, rectangular photo */
.section--match {
  padding-block: clamp(2.25rem, 5vw, 3.75rem);
  background: var(--wash);
}

.match-block {
  display: grid;
  gap: clamp(1.35rem, 3vw, 2rem);
  align-items: stretch;
  background: #fff;
  border: 1px solid rgb(0 148 68 / 10%);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 2.4vw, 1.35rem);
  box-shadow: 0 10px 32px rgb(15 15 16 / 5%);
}

.match-block__media {
  margin: 0;
  min-width: 0;
  display: flex;
}

.match-block__frame {
  position: relative;
  width: 100%;
  flex: 1;
  border-radius: 0.5rem;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--green-mist);
  border: 1px solid rgb(0 148 68 / 10%);
  box-shadow: none;
}

.match-block__frame::before {
  content: none;
}

.match-block__frame picture.img-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
  max-height: none;
}

.match-block__frame picture.img-fill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.match-block__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.15rem 0.15rem 0.25rem;
}

.match-block__body .eyebrow {
  margin-bottom: 0.55rem;
  align-self: flex-start;
}

.match-block__body h2 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.5rem, 1.2rem + 1.1vw, 2.05rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.match-block__body .lead {
  margin-bottom: 1.1rem;
  max-width: 38ch;
  font-size: clamp(0.96rem, 0.92rem + 0.18vw, 1.05rem);
  line-height: 1.55;
  color: var(--body);
}

.match-list {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.match-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.93rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink-soft);
  padding: 0.45rem 0.55rem;
  border-radius: 0.55rem;
  background: var(--green-mist);
  border: 1px solid transparent;
  transition:
    border-color 0.3s var(--ease),
    background 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.match-list li:hover {
  background: #fff;
  border-color: rgb(0 148 68 / 16%);
  transform: translateX(2px);
}

.match-list__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: #fff;
  color: var(--green);
  border: 1px solid rgb(0 148 68 / 12%);
  box-shadow: 0 2px 6px rgb(0 148 68 / 8%);
}

.match-list__icon svg {
  width: 1rem;
  height: 1rem;
  stroke-width: 2.1;
  transition: transform 0.35s var(--ease);
}

.match-list li:hover .match-list__icon svg {
  transform: scale(1.08);
}

@media (min-width: 900px) {
  .match-block {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: clamp(1.5rem, 3vw, 2.25rem);
    padding: 1.15rem;
    align-items: stretch;
  }

  .match-block__frame {
    aspect-ratio: 4 / 3;
    max-height: none;
    min-height: 100%;
    border-radius: 0.55rem;
  }

  .match-block__frame picture.img-fill img {
    object-position: center 30%;
  }

  .match-block__body {
    padding: 0.85rem 0.85rem 0.85rem 0.35rem;
  }
}

@media (max-width: 899px) {
  .match-block {
    padding: 0.85rem;
  }

  .match-block__frame {
    aspect-ratio: 16 / 10;
    max-height: none;
    border-radius: 0.45rem;
  }

  .match-block__body {
    padding: 0.35rem 0.15rem 0.25rem;
  }

  .match-block__body h2 {
    font-size: clamp(1.4rem, 5.2vw, 1.8rem);
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .match-list li,
  .match-list__icon svg {
    transition: none;
  }

  .match-list li:hover {
    transform: none;
  }
}

/* Homepage showcase — contained Bumpa box */
.showcase-fade {
  width: 100%;
  min-width: 0;
}

.section--showcase-standalone {
  padding: 1rem 0 1.15rem;
  background: var(--green-mist);
  border-bottom: 1px solid rgb(0 148 68 / 10%);
}

.section--showcase-standalone .showcase-fade {
  max-width: min(var(--container), 56rem);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 1.5rem);
}

.showcase-fade--embed {
  max-width: 100%;
}

.showcase-fade__track {
  display: grid;
  grid-template: 1fr / 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  position: relative;
}

.showcase-fade--embed .showcase-fade__track {
  aspect-ratio: 4 / 3;
  width: 100%;
  min-height: clamp(14rem, 52vw, 18rem);
}

@media (min-width: 640px) {
  .showcase-fade--embed .showcase-fade__track {
    aspect-ratio: 4 / 3;
    min-height: clamp(16rem, 42vw, 22rem);
  }
}

@media (min-width: 900px) {
  .showcase-fade--embed .showcase-fade__track {
    aspect-ratio: 3 / 2;
    min-height: clamp(18rem, 28vw, 26rem);
  }
}

.showcase-fade__slide {
  grid-area: 1 / 1;
  position: relative;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
  min-height: 0;
  min-width: 0;
}

.showcase-fade__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.showcase-fade__frame {
  position: absolute;
  inset: 0;
  background: #fff;
  border: 1px solid rgb(0 148 68 / 12%);
  box-shadow:
    0 0 0 4px #fff,
    0 8px 22px rgb(0 148 68 / 10%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 0.45rem;
}

.showcase-fade__frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green) 0%, #7ddea8 100%);
  z-index: 2;
  pointer-events: none;
}

.showcase-fade__frame picture.img-fill {
  position: absolute;
  inset: 0.45rem;
  width: auto;
  height: auto;
  aspect-ratio: unset;
  max-height: none;
  border-radius: calc(var(--radius-lg) - 5px);
  overflow: hidden;
  background: var(--green-mist);
}

.showcase-fade__frame picture.img-fill img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.showcase-fade__dots {
  margin-top: 0.65rem;
  justify-content: center;
}

.showcase-fade--embed .showcase-fade__dots {
  justify-content: flex-start;
}

@media (min-width: 900px) {
  .showcase-fade--embed .showcase-fade__dots {
    justify-content: center;
  }
}

/* Standalone showcase (if used elsewhere) */
.section--showcase-standalone .showcase-fade__track {
  aspect-ratio: 16 / 9;
  max-height: var(--img-box-max-lg);
  position: relative;
}

.section--showcase-standalone .showcase-fade__frame picture.img-fill {
  position: absolute;
  inset: 0.45rem;
}

html.js-ready .showcase-fade {
  opacity: 1 !important;
  transform: none !important;
}

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

/* Blog listing */
.blog-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

.blog-card {
  display: grid;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 10px rgb(15 15 16 / 4%);
}

.blog-card__media {
  display: block;
  text-decoration: none;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.blog-card__media picture.img-fill {
  aspect-ratio: 16 / 10;
  max-height: 15rem;
}

.blog-card__media picture.img-fill img {
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.blog-card__body {
  padding: 1.15rem 1.2rem 1.25rem;
}

.blog-card__meta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 0.45rem;
}

.blog-card__title {
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
  line-height: 1.25;
}

.blog-card__title a {
  color: var(--ink);
  text-decoration: none;
}

.blog-card__title a:hover {
  color: var(--green);
}

.blog-card__body p {
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

.blog-card__link {
  font-weight: 600;
  text-decoration: none;
}

.blog-card__link:hover {
  text-decoration: underline;
}

/* Blog article pages */
.article-head {
  padding: clamp(1.75rem, 4vw, 2.75rem) 0 0.75rem;
  background: linear-gradient(180deg, var(--green-mist), #fff 85%);
}

.article-head h1 {
  max-width: 42rem;
  font-size: clamp(1.65rem, 1.2rem + 1.5vw, 2.35rem);
  line-height: 1.15;
  margin-bottom: 0.65rem;
}

.article-head .lead {
  max-width: 38rem;
  margin-bottom: 0;
}

.article-head__back {
  color: var(--green-deep);
  text-decoration: none;
  font-weight: 600;
}

.article-head__back:hover {
  text-decoration: underline;
}

.section--article {
  padding-top: 1.25rem;
}

.section--article .container {
  max-width: 46rem;
}

.article__hero {
  margin: 0 0 1.25rem;
  max-width: 100%;
}

.article__hero.media-frame {
  aspect-ratio: auto;
  max-height: none;
  padding: 0.45rem;
  background: #fff;
  border: 1px solid rgb(0 148 68 / 12%);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 14px rgb(0 148 68 / 8%);
}

.article__hero.media-frame picture.img-fill {
  aspect-ratio: 16 / 10;
  max-height: 18rem;
  border-radius: calc(var(--radius-lg) - 0.35rem);
  overflow: hidden;
}

@media (min-width: 768px) {
  .article__hero.media-frame picture.img-fill {
    max-height: 20rem;
  }
}

.article__hero picture.img-fill img {
  height: 100%;
  object-fit: cover;
}

.article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.article__prose p {
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 42rem;
}

[data-text="large"] .article__prose p {
  font-size: 1.18rem;
  line-height: 1.75;
}

.article__cta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  max-width: 36rem;
}

.article__cta p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.article__related {
  margin-top: 2rem;
  max-width: 36rem;
}

.article__related h2 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.article__related ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.article__related a {
  font-weight: 600;
}

.intro-block {
  max-width: 40rem;
}

.intro-block .lead {
  margin-bottom: 1rem;
}

/* Never hide photos behind scroll animations */
html.js-ready .card__media,
html.js-ready .blog-card__media,
html.js-ready .article__hero picture.img-fill,
html.js-ready .media-frame,
html.js-ready .match-block__frame,
html.js-ready .match-block__media,
html.js-ready .intro-panel,
html.js-ready .mosaic__item,
html.js-ready .hero__bg,
html.js-ready .showcase-fade,
html.js-ready .showcase-fade__frame,
html.js-ready .trust-strip {
  opacity: 1 !important;
  transform: none !important;
}

html.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
}

html.js-ready.reduced-motion [data-reveal],
html:not(.js-ready) [data-reveal],
html.no-motion [data-reveal] {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html.js-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .card:hover,
  .btn:active {
    transform: none;
  }
}

@supports (view-transition-name: none) {
  @view-transition {
    navigation: auto;
  }
}

main {
  overflow-x: clip;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-help,
.field-hint,
.contact-inline {
  font-size: 0.98rem;
  color: var(--muted);
}

.form-help {
  margin-bottom: 1rem;
}

.field-hint {
  display: block;
  margin-top: 0.35rem;
}

.req {
  color: var(--green-deep);
  font-weight: 700;
}

.choice-fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.carousel-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.carousel-pause {
  min-height: 48px;
}

@media (min-width: 1400px) {
  .container {
    width: min(100% - 3rem, var(--container-wide));
  }
}

/* Lead capture popup — compact, one-tap SMS request */
.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1rem;
  padding-bottom: calc(1rem + var(--safe-bottom));
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s var(--ease), visibility 0.28s;
}

.lead-popup.is-open {
  opacity: 1;
  visibility: visible;
}

.lead-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgb(8 18 14 / 55%);
  backdrop-filter: blur(3px);
}

.lead-popup__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 20rem);
  overflow: hidden;
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid rgb(0 148 68 / 14%);
  box-shadow: 0 20px 48px rgb(15 15 16 / 20%);
  padding: 1.15rem 1.1rem 1.1rem;
  transform: translateY(0.75rem) scale(0.98);
  transition: transform 0.32s var(--ease);
}

.lead-popup.is-open .lead-popup__panel {
  transform: translateY(0) scale(1);
}

.lead-popup__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0.5rem;
  background: transparent;
  color: var(--muted);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.lead-popup__close:hover {
  color: var(--ink-soft);
  background: var(--wash);
}

.lead-popup__panel h2 {
  margin: 0 1.75rem 0.4rem 0;
  font-size: 1.2rem;
  line-height: 1.2;
  color: var(--ink);
}

.lead-popup__lead {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--body);
}

.lead-popup__form {
  display: grid;
  gap: 0.65rem;
}

.lead-popup__form input {
  width: 100%;
  min-height: 46px;
  padding: 0.65rem 0.85rem;
  font-size: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-btn);
  background: #fff;
  color: var(--ink);
}

.lead-popup__form input:focus {
  outline: 2px solid var(--focus);
  outline-offset: 1px;
  border-color: var(--green);
}

.lead-popup__submit {
  min-height: 48px;
  font-size: 0.95rem;
  font-weight: 600;
}

body.lead-popup-open {
  overflow: hidden;
}
