/* Bespoke Property Solutions - Site Stylesheet
   Faithful refresh: lime + gray, modernised type & spacing */

:root {
  /* Brand palette */
  --bps-lime: #A4CC29;
  --bps-lime-deep: #8FB820;
  --bps-lime-pale: #ECF4D5;
  --bps-charcoal: #1F2622;
  --bps-graphite: #3A3F3C;
  --bps-slate: #5C625E;
  --bps-mute: #8B918D;
  --bps-line: #E4E6E2;
  --bps-paper: #FAFAF7;
  --bps-card: #FFFFFF;
  --bps-bg: #FFFFFF;
  --bps-fg: var(--bps-charcoal);
  --bps-fg-soft: var(--bps-slate);

  /* Type */
  --bps-font-head: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bps-font-body: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing scale */
  --bps-radius: 6px;
  --bps-radius-lg: 14px;
  --bps-radius-pill: 999px;
  --bps-shadow-sm: 0 1px 2px rgba(31, 38, 34, 0.04), 0 2px 6px rgba(31, 38, 34, 0.05);
  --bps-shadow: 0 8px 28px rgba(31, 38, 34, 0.07), 0 2px 6px rgba(31, 38, 34, 0.04);
  --bps-shadow-deep: 0 24px 64px rgba(31, 38, 34, 0.10), 0 6px 20px rgba(31, 38, 34, 0.06);

  /* Layout */
  --bps-container: 1240px;
  --bps-container-narrow: 880px;
  --bps-container-wide: 1360px;
  --bps-gutter: clamp(20px, 4vw, 40px);

  /* 4px-base spacing scale */
  --bps-space-1: 4px;
  --bps-space-2: 8px;
  --bps-space-3: 12px;
  --bps-space-4: 16px;
  --bps-space-5: 24px;
  --bps-space-6: 32px;
  --bps-space-7: 48px;
  --bps-space-8: 64px;
  --bps-space-9: 96px;
  --bps-space-10: 128px;

  /* Section padding tiers */
  --bps-section-y: clamp(72px, 9vw, 128px);
  --bps-section-y-tight: clamp(48px, 6vw, 88px);
  --bps-section-y-breathe: clamp(96px, 12vw, 168px);

  /* Rule weights */
  --bps-rule-strong: 2px;
  --bps-hairline: 1px solid var(--bps-line);

  /* Motion tokens - Emil-style restraint with custom Bezier curves.
     Default CSS `ease` lacks strength; these match the snappier Linear-style feel. */
  --dur-fast: 140ms;     /* hover micro-states, icon nudges */
  --dur-base: 200ms;     /* default UI transitions */
  --dur-slow: 320ms;     /* expand / collapse, mobile drawer */
  --ease-out: cubic-bezier(0.2, 0, 0, 1);       /* entering elements (Emil) */
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);  /* moving existing elements (Emil) */
  --ease-emphasis: cubic-bezier(0.32, 0.72, 0, 1); /* iOS-native curve (Vaul) */
}

[data-theme="dark"] {
  --bps-charcoal: #F0F1ED;
  --bps-graphite: #D8DAD3;
  --bps-slate: #A8ADA5;
  --bps-mute: #6E736E;
  --bps-line: #2A2F2B;
  --bps-paper: #15191A;
  --bps-card: #1B1F1F;
  --bps-bg: #0F1212;
  --bps-fg: #F0F1ED;
  --bps-fg-soft: #B8BDB6;
  --bps-lime-pale: #1A2310;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--bps-font-body);
  font-size: 16.5px;
  line-height: 1.6;
  letter-spacing: -0.005em;
  color: var(--bps-fg);
  background: var(--bps-bg);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4, h5 {
  font-family: var(--bps-font-head);
  color: var(--bps-fg);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); letter-spacing: -0.032em; line-height: 1.04; font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: -0.028em; line-height: 1.08; }
h3 { font-size: 1.22rem; line-height: 1.28; letter-spacing: -0.018em; font-weight: 700; }
h4 { font-size: 1.02rem; letter-spacing: -0.01em; line-height: 1.3; }

/* Display weight - hero h1 + pullquote body get one weight up */
.hero h1,
.pullquote__body {
  font-weight: 800;
  letter-spacing: -0.034em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--bps-fg-soft);
  margin-bottom: 1.4em;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--bps-lime);
  border-radius: 2px;
}

/* Numeric eyebrow variant - opt-in via .eyebrow--num with data-num attr */
.eyebrow--num::before {
  content: attr(data-num);
  width: auto;
  height: auto;
  background: transparent;
  color: var(--bps-lime-deep);
  font-family: var(--bps-font-head);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
}

/* Byline - kicker line that sits under a heading. Same family as .eyebrow
   but positioned to read as the heading's tagline rather than its prelude.
   Use as <p class="byline"> or <span class="byline">. */
.byline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--bps-font-head);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--bps-lime-deep);
  margin: 0 0 1.2em;
}
.byline::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--bps-lime);
  border-radius: 2px;
  flex-shrink: 0;
}

.lead {
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--bps-fg-soft);
  max-width: 60ch;
  text-wrap: pretty;
}

.container {
  max-width: var(--bps-container);
  margin: 0 auto;
  padding: 0 var(--bps-gutter);
}
.container-narrow { max-width: var(--bps-container-narrow); margin: 0 auto; padding: 0 var(--bps-gutter); }
.container-wide { max-width: var(--bps-container-wide); margin: 0 auto; padding: 0 var(--bps-gutter); }

section { padding: var(--bps-section-y) 0; }
section.tight { padding: var(--bps-section-y-tight) 0; }
section.breathe { padding: var(--bps-section-y-breathe) 0; }
section.flush-top { padding-top: 0; }
section.flush-bottom { padding-bottom: 0; }

/* Utility: vertical rhythm. Replaces ad-hoc inline margin-top values. */
.mt-3 { margin-top: var(--bps-space-3); }
.mt-4 { margin-top: var(--bps-space-4); }
.mt-5 { margin-top: var(--bps-space-5); }
.mt-6 { margin-top: var(--bps-space-6); }
.mt-7 { margin-top: var(--bps-space-7); }
.mt-8 { margin-top: var(--bps-space-8); }

/* ---------- NAV ---------- */
.bps-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bps-bg) 88%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bps-line);
}
.bps-nav__topbar {
  background: var(--bps-charcoal);
  color: #C8CDC4;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}
[data-theme="dark"] .bps-nav__topbar { background: #060808; color: #989E97; }
.bps-nav__topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 10px var(--bps-gutter);
  max-width: var(--bps-container);
  margin: 0 auto;
}
.bps-nav__topbar a { color: inherit; opacity: 0.85; }
.bps-nav__topbar a:hover { color: var(--bps-lime); opacity: 1; }
.bps-nav__topbar-meta { display: flex; gap: 22px; align-items: center; }
.bps-nav__inner {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 18px var(--bps-gutter);
  max-width: var(--bps-container);
  margin: 0 auto;
}
.bps-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.bps-logo img { height: 40px; width: auto; }
.bps-nav__links {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}
.bps-nav__links a {
  display: block;
  padding: 8px 14px;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: var(--bps-radius);
  color: var(--bps-fg);
  position: relative;
}
.bps-nav__links a:hover { color: var(--bps-lime-deep); }
.bps-nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 2px;
  background: var(--bps-lime);
  border-radius: 0;
}
.bps-nav__cta { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }

/* Mega menu */
.bps-nav__links li.has-mega { position: relative; }
.bps-nav__caret {
  font-size: 0.7em;
  margin-left: 2px;
  display: inline-block;
  transition: transform 0.18s var(--ease-out);
  vertical-align: middle;
  color: var(--bps-mute);
}
.bps-nav__links li.has-mega:hover > a .bps-nav__caret { transform: rotate(180deg); color: var(--bps-fg); }

.bps-mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px) scale(0.98);
  transform-origin: top center;
  min-width: 600px;
  max-width: 640px;
  background: var(--bps-bg);
  border: 1px solid var(--bps-line);
  border-radius: var(--bps-radius-lg);
  box-shadow: var(--bps-shadow-deep);
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
  z-index: 60;
}
.bps-nav__links li.has-mega:hover > .bps-mega,
.bps-nav__links li.has-mega:focus-within > .bps-mega {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}
.bps-mega::before {
  /* hover bridge */
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.bps-mega__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.bps-mega__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-radius: var(--bps-radius);
  text-decoration: none !important;
  color: var(--bps-fg) !important;
  transition: background 0.15s;
}
.bps-mega__item:hover {
  background: var(--bps-paper);
}
.bps-mega__item:hover .bps-mega__arrow {
  transform: translateX(2px);
  color: var(--bps-lime-deep);
}
.bps-mega__label {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--bps-fg);
  letter-spacing: -0.012em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bps-mega__arrow {
  color: var(--bps-mute);
  font-weight: 500;
  transition: transform 0.18s var(--ease-out), color 0.18s var(--ease-out);
}
.bps-mega__desc {
  font-size: 0.84rem;
  color: var(--bps-fg-soft);
  line-height: 1.5;
}

/* Mobile burger + menu */
.bps-nav__burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--bps-line);
  border-radius: var(--bps-radius);
  background: var(--bps-bg);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 0;
}
.bps-nav__burger span {
  width: 18px;
  height: 2px;
  background: var(--bps-fg);
  border-radius: 2px;
}
.bps-nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px 18px 24px;
  border-top: 1px solid var(--bps-line);
  background: var(--bps-bg);
}
.bps-nav__mobile a {
  display: block;
  padding: 10px 0;
  color: var(--bps-fg);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--bps-line);
}
.bps-nav__mobile details {
  border-bottom: 1px solid var(--bps-line);
  padding: 4px 0;
}
.bps-nav__mobile details summary {
  padding: 10px 0;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.bps-nav__mobile details summary::after {
  content: "▾";
  position: absolute;
  right: 0;
  top: 10px;
  color: var(--bps-mute);
  transition: transform 0.18s var(--ease-out);
}
.bps-nav__mobile details[open] summary::after { transform: rotate(180deg); }
.bps-nav__mobile details a {
  padding: 8px 0 8px 12px;
  font-size: 0.95rem;
  border: none;
  color: var(--bps-fg-soft);
}
.bps-nav__mobile a.btn { display: inline-flex; padding: 12px 22px; }

/* Mobile drawer + burger - smooth enter/exit and X morph.
   Triggered by `is-open` class on .bps-nav__mobile and aria-expanded on .bps-nav__burger. */
.bps-nav__mobile {
  display: flex;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  border-top: 0 solid var(--bps-line);
  transition:
    max-height var(--dur-slow) var(--ease-emphasis),
    opacity var(--dur-base) var(--ease-out),
    padding-top var(--dur-slow) var(--ease-emphasis),
    padding-bottom var(--dur-slow) var(--ease-emphasis),
    border-top-width var(--dur-fast) var(--ease-out);
}
.bps-nav__mobile.is-open {
  max-height: 80vh;
  opacity: 1;
  padding-top: 16px;
  padding-bottom: 24px;
  border-top-width: 1px;
  overflow: auto;
}

/* Hamburger -> X. The three spans morph in place: top rotates down, middle
   fades out, bottom rotates up. */
.bps-nav__burger span {
  transition:
    transform var(--dur-base) var(--ease-emphasis),
    opacity var(--dur-fast) var(--ease-out);
  transform-origin: center;
}
.bps-nav__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.bps-nav__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.bps-nav__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 980px) {
  .bps-nav__topbar { display: none; }
  .bps-nav__links { display: none; }
  .bps-nav__inner { padding: 12px 18px; }
  .bps-nav__burger { display: inline-flex; }
  .bps-nav__cta .btn { display: none; }
  .bps-nav__mobile { display: flex; }
}
@media (min-width: 981px) {
  .bps-nav__mobile { display: none !important; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--bps-radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out),
              background-color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--bps-lime);
  color: var(--bps-charcoal);
  border-color: var(--bps-lime);
}
.btn-primary:hover { background: var(--bps-lime-deep); border-color: var(--bps-lime-deep); transform: translateY(-1px); }
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--bps-lime) 50%, transparent);
}
.btn-ghost {
  background: transparent;
  color: var(--bps-fg);
  border-color: var(--bps-line);
}
.btn-ghost:hover { border-color: var(--bps-fg); }
.btn-dark {
  background: var(--bps-charcoal);
  color: #fff;
  border-color: var(--bps-charcoal);
}
.btn-dark:hover { background: #000; }
[data-theme="dark"] .btn-dark { background: var(--bps-lime); color: var(--bps-charcoal); border-color: var(--bps-lime); }
.btn-arrow::after { content: "→"; transition: transform 0.18s var(--ease-out); }
.btn-arrow:hover::after { transform: translateX(3px); }
.btn:active { transform: scale(0.97); }
.btn-arrow:active::after { transform: translateX(1px); }


/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: clamp(96px, 13vw, 168px) 0 clamp(80px, 10vw, 128px);
  background:
    radial-gradient(60% 80% at 8% 0%, color-mix(in srgb, var(--bps-lime) 9%, transparent) 0%, transparent 60%),
    radial-gradient(50% 60% at 100% 100%, color-mix(in srgb, var(--bps-lime-pale) 80%, transparent) 0%, transparent 70%),
    linear-gradient(180deg, var(--bps-paper) 0%, var(--bps-bg) 100%);
  overflow: hidden;
}

/* Hero photo variant - background-image on the section with a dark overlay
   so the text reads cleanly. Set background-image inline:
     <section class="hero hero--photo" style="background-image: url(...);"> */
.hero--photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--bps-charcoal);
  color: #fff;
  min-height: 560px;
  display: flex;
  align-items: center;
  isolation: isolate;
}
.hero--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(31,38,34,0.78) 0%, rgba(31,38,34,0.45) 55%, rgba(31,38,34,0.10) 100%);
  pointer-events: none;
  z-index: 0;
}
.hero--photo > .container { width: 100%; position: relative; z-index: 1; }
.hero--photo h1,
.hero--photo h2,
.hero--photo h3 { color: #fff; }
.hero--photo p { color: rgba(255,255,255,0.9); }
.hero--photo .byline { color: var(--bps-lime); white-space: nowrap; }
.hero--photo .hero__grid { grid-template-columns: minmax(0, 1fr); }
.hero--photo .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.55); background: rgba(0,0,0,0.15); }
.hero--photo .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.hero--photo .hero__grid > div:last-child::before { display: none; }
@media (max-width: 880px) {
  .hero--photo .byline { white-space: normal; }
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 880px) { .hero__grid { grid-template-columns: 1fr; } }

/* Lime corner-frame decoration anchoring the hero visual */
.hero__grid > div:last-child { position: relative; }
.hero__grid > div:last-child::before {
  content: "";
  position: absolute;
  top: -28px;
  right: -28px;
  width: 96px;
  height: 96px;
  border-top: 2px solid var(--bps-lime);
  border-right: 2px solid var(--bps-lime);
  border-top-right-radius: var(--bps-radius-lg);
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 880px) {
  .hero__grid > div:last-child::before { display: none; }
}

.hero__visual {
  aspect-ratio: 4 / 5.2;
  border-radius: var(--bps-radius-lg);
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.45) 100%),
    linear-gradient(135deg, #6F8459 0%, #3A4A33 100%);
  position: relative;
  overflow: hidden;
  box-shadow: var(--bps-shadow-deep);
}
.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(164, 204, 41, 0.25), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255,255,255,0.08), transparent 50%);
}
.hero__visual-tag {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  color: #fff;
  z-index: 2;
}
.hero__visual-tag .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  opacity: 0.78;
  margin-bottom: 6px;
}
.hero__visual-tag .title { font-size: 1.5rem; font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }

.hero__cta {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Hero proof - three short statements stacked beneath the CTAs.
   Replaces the SaaS hero-metric template. */
.hero__proof {
  list-style: none;
  margin: 48px 0 0;
  padding: 32px 0 0;
  border-top: 2px solid var(--bps-line);
  display: grid;
  gap: 12px 32px;
  max-width: 60ch;
  grid-template-columns: 1fr;
}
.hero__proof li {
  position: relative;
  padding-left: 28px;
  font-size: 0.98rem;
  color: var(--bps-fg-soft);
  line-height: 1.45;
}
.hero__proof li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 14px;
  height: 2px;
  background: var(--bps-lime);
}
.hero__proof strong {
  color: var(--bps-fg);
  font-weight: 700;
}

/* ---------- SECTIONS ---------- */
.section-head { max-width: 760px; margin-bottom: clamp(40px, 5.5vw, 72px); }
.section-head h2 { margin-bottom: 0.4em; }
.section-head .lead { margin-top: 0; }
.section-head--narrow { max-width: 620px; }
.section-head--wide { max-width: 920px; }
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .lead { max-width: 56ch; margin-inline: auto; }
.section-head--sub h2 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  letter-spacing: -0.024em;
}
.section-head--split {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1.4fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: end;
  max-width: none;
}
.section-head--split .eyebrow + h2 { margin-bottom: 0; }
.section-head--split .lead { margin: 0; }
@media (max-width: 880px) {
  .section-head--split { grid-template-columns: 1fr; align-items: start; }
}

/* ---------- CARDS ---------- */
.card {
  background: var(--bps-card);
  border: 1px solid var(--bps-line);
  border-radius: var(--bps-radius-lg);
  padding: 30px 30px 32px;
  transition: border-color 0.2s var(--ease-out), transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
  color: inherit;
  text-decoration: none;
  display: block;
}
.card:hover { border-color: var(--bps-fg); transform: translateY(-3px); box-shadow: var(--bps-shadow); }
a.card:focus-visible {
  outline: none;
  border-color: var(--bps-lime-deep);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--bps-lime) 35%, transparent);
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--bps-fg-soft); margin: 0; font-size: 0.95rem; line-height: 1.55; }

/* Inline CTA marker for the bottom of a .card. Small lime caps + arrow that
   nudges on card hover. Use as <span class="card__cta">Learn More</span>. */
.card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--bps-lime-deep);
}
.card__cta::after {
  content: "\2192"; /* right arrow */
  font-size: 1rem;
  letter-spacing: 0;
  transition: transform var(--dur-fast) var(--ease-out);
}
a.card:hover .card__cta::after { transform: translateX(4px); }
a.card h3 { transition: color 0.18s var(--ease-out); }
a.card:hover h3 { color: var(--bps-lime-deep); }

/* Card-grid footer: trailing CTA + context below a grid */
.card-grid__footer {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.card-grid__footer p {
  margin: 0;
  color: var(--bps-fg-soft);
  font-size: 0.95rem;
  max-width: 52ch;
}
.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--bps-lime-pale);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--bps-lime-deep);
  position: relative;
}
.card__icon::after {
  /* subtle inner ring for editorial polish */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid color-mix(in srgb, var(--bps-lime) 35%, transparent);
  pointer-events: none;
}
[data-theme="dark"] .card__icon { color: var(--bps-lime); }
.card__icon svg { width: 24px; height: 24px; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
/* Auto-fit variant lets dense card lists absorb odd-count orphans. */
.card-grid--fit { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
@media (max-width: 1080px) and (min-width: 720px) {
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .card-grid--2, .card-grid--3, .card-grid--4 { grid-template-columns: 1fr; }
}

/* ---------- BLOG ARTICLE ----------
   Long-form text content for individual blog post pages. Uses the narrow
   container for comfortable reading width. */
.blog-article p {
  margin: 0 0 1.1em;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--bps-fg);
}
.blog-article p:last-child { margin-bottom: 0; }
.blog-article h2 {
  font-family: var(--bps-font-head);
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  letter-spacing: -0.018em;
  margin: 1.6em 0 0.6em;
}
.blog-article h3 {
  font-family: var(--bps-font-head);
  font-size: 1.25rem;
  letter-spacing: -0.018em;
  margin: 1.4em 0 0.5em;
}
.blog-article__list {
  margin: 0.3em 0 1.3em;
  padding-left: 22px;
}
.blog-article__list li {
  margin: 0 0 8px;
  line-height: 1.6;
  font-size: 1.02rem;
}
.blog-article__table { margin: 1.2em 0 1.6em; }

/* Map cards (contact page) - office location with embedded map. */
.map-card {
  background: #fff;
  border: 1px solid var(--bps-line);
  border-radius: var(--bps-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.map-card__embed {
  position: relative;
  background: var(--bps-paper);
  line-height: 0;
}
.map-card__embed iframe { width: 100%; display: block; }
.map-card__body {
  padding: 22px 26px 26px;
}
.map-card__body h3 {
  margin: 0 0 8px;
  font-family: var(--bps-font-head);
  font-size: 1.25rem;
  letter-spacing: -0.018em;
}
.map-card__body p { margin: 0 0 12px; line-height: 1.55; }

/* Contact form success state */
.contact-form__success h3 {
  font-family: var(--bps-font-head);
  font-size: 1.4rem;
  margin: 0 0 10px;
  letter-spacing: -0.018em;
}
.contact-form__success p { color: var(--bps-fg-soft); line-height: 1.6; margin: 0; }

/* Service tile (image-led) */
.service-tile {
  display: block;
  position: relative;
  border-radius: var(--bps-radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5.2;
  border: 1px solid var(--bps-line);
  transition: transform 0.25s var(--ease-out);
  background: var(--bps-card);
}
.service-tile:hover { transform: translateY(-3px); }
.service-tile__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.service-tile__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.78) 92%);
}
.service-tile__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 26px 26px 28px;
  color: #fff;
  z-index: 2;
}
.service-tile__body h3 { color: #fff; margin: 0 0 6px; font-size: 1.24rem; letter-spacing: -0.018em; }
.service-tile__body p { color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.45; margin: 0; }
.service-tile__arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  display: grid; place-items: center;
  color: #fff;
  z-index: 2;
  transition: transform var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
}
.service-tile:hover .service-tile__arrow {
  background: var(--bps-lime);
  color: var(--bps-charcoal);
}

/* Image placeholder palettes - backed by real photography in /assets/img/ */
.img-placeholder {
  background-size: cover;
  background-position: center;
  position: relative;
}
.img-placeholder::before {
  /* hide the data-label hint when a real image is loaded */
  content: "";
}

/* Service line tiles */
.img-cleaning  { background-image: url("img/cleaning/hero.jpg"); background-size: cover; background-position: center; }
.img-maint     { background-image: url("img/maintenance/hero.jpg"); background-size: cover; background-position: center; }
.img-trade     { background-image: url("img/trade/hero.jpg"); background-size: cover; background-position: center; }
.img-landscape { background-image: url("img/home/sectors.jpg"); background-size: cover; background-position: center; }
.img-pest      { background-image: url("img/pest/hero.jpg"); background-size: cover; background-position: center; }
.img-waste     { background-image: url("img/services/specialist.jpg"); background-size: cover; background-position: center; }
.img-mgmt      { background-image: url("img/services/easy.jpg"); background-size: cover; background-position: center; }

/* Hero / About */
.img-hero      { background-image: url("img/home/hero.jpg"); background-size: cover; background-position: center; }
.img-about     { background-image: url("img/about/hero.jpg"); background-size: cover; background-position: center; }
.img-about-story { background-image: url("img/about/our-story.jpg"); background-size: cover; background-position: center; }
.img-sustainability { background-image: url("img/home_24.jpg"); background-size: cover; background-position: center; }

/* Blog imagery */
.img-blog-feature   { background-image: url("img/blog_14.jpg"); background-size: cover; background-position: center; }
.img-blog-maint     { background-image: url("img/blog_06.png"); background-size: cover; background-position: center center; background-color: #C8D5DA; }
.img-blog-cleaning  { background-image: url("img/blog_07.png"); background-size: cover; background-position: center; }
.img-blog-test      { background-image: url("img/blog_08.png"); background-size: cover; background-position: center; }
.img-blog-ops       { background-image: url("img/blog_09.png"); background-size: cover; background-position: center; }
.img-blog-fm        { background-image: url("img/blog_04.jpg"); background-size: cover; background-position: center; }
.img-blog-safety    { background-image: url("img/blog_03.png"); background-size: contain; background-position: center; background-repeat: no-repeat; background-color: #F4F6F1; }
.img-blog-process   { background-image: url("img/blog_05.png"); background-size: contain; background-position: center; background-repeat: no-repeat; background-color: #1F2622; }
.img-blog-client-1  { background-image: url("img/blog_02.png"); background-size: contain; background-position: center; background-repeat: no-repeat; background-color: #F4F6F1; }
.img-blog-client-2  { background-image: url("img/blog_10.png"); background-size: contain; background-position: center; background-repeat: no-repeat; background-color: #F4F6F1; }

/* Make the hero visual lighter - image speaks for itself, no overlay tint */
.hero__visual.img-hero {
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.55) 100%),
    url("img/home/hero.jpg") center/cover no-repeat;
}
.hero__visual.img-hero::after { display: none; }

/* Stat strip */
.statstrip {
  background: var(--bps-charcoal);
  color: #fff;
  padding: 60px 0;
}
[data-theme="dark"] .statstrip { background: #060808; }
.statstrip h2 { color: #fff; }
.statstrip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 880px) { .statstrip__grid { grid-template-columns: repeat(2, 1fr); } }
.statstrip__item .num {
  font-family: var(--bps-font-head);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  color: var(--bps-lime);
  letter-spacing: -0.03em;
  display: block;
  line-height: 1;
}
.statstrip__item .lbl {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
  display: block;
}

/* CTA banner */
.cta-banner {
  border-radius: var(--bps-radius-lg);
  background: var(--bps-charcoal);
  color: #fff;
  padding: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.4fr auto;
  align-items: center;
  gap: 32px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--bps-lime) 40%, transparent) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
[data-theme="dark"] .cta-banner { background: #060808; border: 1px solid #1F2622; }
.cta-banner h2 { color: #fff; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.7); margin: 0; max-width: 56ch; }
@media (max-width: 720px) { .cta-banner { grid-template-columns: 1fr; } }

/* Sectors grid */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.2vw, 18px);
}
@media (max-width: 880px) { .sector-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .sector-grid { grid-template-columns: 1fr; } }
.sector-card {
  display: block;
  position: relative;
  border-radius: var(--bps-radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3.6;
  border: 1px solid var(--bps-line);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.sector-card:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--bps-lime) 50%, transparent);
}
.sector-card__bg { position: absolute; inset: 0; }
.sector-card__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.sector-card__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(31,38,34,0.55) 35%, rgba(31,38,34,0.95) 100%);
  transition: background var(--dur-base) var(--ease-out);
}
.sector-card__body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 26px 26px;
  color: #fff;
  z-index: 2;
}
.sector-card__body h3 {
  color: #fff;
  margin: 0 0 6px;
  font-size: 1.32rem;
  letter-spacing: -0.022em;
}
.sector-card__body p {
  color: rgba(255,255,255,0.86);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0 0 12px;
}
.sector-card__body p strong { color: #fff; font-weight: 700; }
.sector-card__body span {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 6px;
}
.sector-card__body span::after { content: "→"; transition: transform 0.2s; }
.sector-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--bps-shadow-deep);
}
.sector-card:hover .sector-card__body span::after { transform: translateX(4px); }
.sector-card:hover .sector-card__bg::after {
  background: linear-gradient(180deg, rgba(164,204,41,0.10) 0%, rgba(31,38,34,0.95) 100%);
}
.sector-card:hover .sector-card__bg img { transform: scale(1.04); }

/* Featured-card variant - first card spans double-height as section anchor */
.sector-grid--featured {
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 1fr;
}
.sector-grid--featured > .sector-card:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}
.sector-grid--featured > .sector-card:first-child .sector-card__body {
  padding: 32px 36px 36px;
}
.sector-grid--featured > .sector-card:first-child .sector-card__body h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}
@media (max-width: 880px) {
  .sector-grid--featured { grid-template-columns: repeat(2, 1fr); }
  .sector-grid--featured > .sector-card:first-child {
    grid-row: auto;
    aspect-ratio: 4 / 3.6;
  }
}

/* About / story portrait - extracted from inline styles in about.html */
.story-portrait {
  aspect-ratio: 5 / 6;
  border-radius: var(--bps-radius-lg);
}

/* Two-up content */
.two-up {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 880px) { .two-up { grid-template-columns: 1fr; } }
.two-up__visual {
  aspect-ratio: 5 / 6;
  border-radius: var(--bps-radius-lg);
  position: relative;
  overflow: hidden;
}

/* Alt-row pattern: stacked alternating two-up rows (image left/right swap).
   Used on the Services Why-Choose section to break a uniform card grid into
   an editorial sequence. Image keeps the 5/6 two-up__visual; text side gets
   slightly larger heading and breathing room. */
.alt-row {
  margin-bottom: clamp(56px, 8vw, 112px);
  align-items: center;
}
.alt-row:last-of-type { margin-bottom: clamp(32px, 4vw, 56px); }
.alt-row .two-up__visual {
  aspect-ratio: 1 / 1;
  box-shadow: var(--bps-shadow);
}
.alt-row__title {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0;
}
@media (max-width: 880px) {
  .alt-row .two-up__visual { aspect-ratio: 16 / 10; max-height: 320px; }
  .alt-row { margin-bottom: clamp(40px, 7vw, 64px); }
}

/* Why-choose checklist */
.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 720px) { .checklist { grid-template-columns: 1fr; } }
.checklist li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}
.checklist li::before {
  content: "";
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--bps-lime);
  margin-top: 4px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F2622' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}
.checklist h4 { margin: 0 0 4px; font-size: 1rem; }
.checklist p { color: var(--bps-fg-soft); font-size: 0.93rem; margin: 0; }

/* FAQ */
.faq {
  border-top: 1px solid var(--bps-line);
}
.faq__item {
  border-bottom: 1px solid var(--bps-line);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 56px 26px 0;
  display: block;
  font-family: var(--bps-font-head);
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--bps-fg);
  position: relative;
  letter-spacing: -0.018em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  /* Plus glyph rendered with two linear-gradient bars for crisp rendering.
     Closed state: horizontal + vertical bars. */
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 22px;
  height: 22px;
  margin-top: -11px;
  color: var(--bps-lime-deep);
  background:
    linear-gradient(currentColor, currentColor) center / 12px 2px no-repeat,
    linear-gradient(currentColor, currentColor) center / 2px 12px no-repeat;
  transition: transform var(--dur-base) var(--ease-out), background-size var(--dur-base) var(--ease-out);
}
.faq__item[open] summary::after {
  /* Open state: hide vertical bar -> minus, with a rotate flourish */
  background:
    linear-gradient(currentColor, currentColor) center / 12px 2px no-repeat;
  transform: rotate(180deg);
}
.faq__item[open] summary { color: var(--bps-lime-deep); }
.faq__item p {
  padding: 0 56px 28px 0;
  color: var(--bps-fg-soft);
  max-width: 68ch;
  font-size: 1rem;
  line-height: 1.65;
}

/* Comparison table */
.bps-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 0.96rem;
  border: 1px solid var(--bps-line);
  border-radius: var(--bps-radius-lg);
  overflow: hidden;
}
.bps-table th, .bps-table td {
  padding: 18px 22px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--bps-line);
}
.bps-table thead th {
  font-family: var(--bps-font-head);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--bps-fg-soft);
  background: var(--bps-paper);
  font-weight: 700;
  padding: 16px 22px;
  border-bottom: 2px solid var(--bps-line);
}
.bps-table tbody tr {
  transition: background var(--dur-fast) var(--ease-out);
}
.bps-table tbody tr:hover {
  background: color-mix(in srgb, var(--bps-lime-pale) 30%, transparent);
}
.bps-table td:first-child { color: var(--bps-fg); font-weight: 600; width: 38%; }
.bps-table td:last-child { color: var(--bps-fg-soft); }
.bps-table tr:last-child td { border-bottom: 0; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  counter-reset: step;
}
@media (max-width: 880px) { .steps { grid-template-columns: 1fr 1fr; } }
.steps__item {
  border-top: 2px solid var(--bps-line);
  padding-top: 18px;
  position: relative;
}
.steps__item::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -12px;
  left: 0;
  background: var(--bps-bg);
  padding-right: 8px;
  font-family: var(--bps-font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--bps-lime-deep);
}
.steps__item h4 { font-size: 0.98rem; margin: 0 0 4px; }
.steps__item p { font-size: 0.88rem; color: var(--bps-fg-soft); margin: 0; }
.steps__item--active { border-top-color: var(--bps-lime); }

/* Response time tier */
.tier-row {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--bps-line);
  align-items: baseline;
}
.tier-row:last-child { border-bottom: 0; }
.tier-row__time {
  font-family: var(--bps-font-head);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--bps-lime-deep);
}
.tier-row__name { font-weight: 600; }
.tier-row__desc { color: var(--bps-fg-soft); font-size: 0.94rem; }
@media (max-width: 720px) { .tier-row { grid-template-columns: 1fr; gap: 4px; } }

/* Clients grid - named-client cells with image upgrade path */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--bps-line);
  border: 1px solid var(--bps-line);
  border-radius: var(--bps-radius-lg);
  overflow: hidden;
}
.clients-grid__item {
  background: var(--bps-card);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 152px;
  gap: 6px;
  transition: background 0.2s var(--ease-out);
}
.clients-grid__item:hover { background: var(--bps-paper); }
.clients-grid__name {
  font-family: var(--bps-font-head);
  font-weight: 800;
  font-size: clamp(1.04rem, 1.3vw, 1.22rem);
  letter-spacing: -0.018em;
  color: var(--bps-fg);
  line-height: 1.15;
  text-wrap: balance;
}
.clients-grid__sector {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bps-fg-soft);
  font-weight: 600;
}
.clients-grid__item img {
  max-width: 160px;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.78;
  transition: filter 0.2s var(--ease-out), opacity 0.2s var(--ease-out);
}
.clients-grid__item:hover img { filter: grayscale(0); opacity: 1; }
@media (max-width: 880px) { .clients-grid { grid-template-columns: repeat(2, 1fr); } }

/* Clients strip - honest sector marker until real logos supplied */
.clients-strip {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 2.5fr;
  gap: 48px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--bps-line);
  border-bottom: 1px solid var(--bps-line);
}
.clients-strip__label .eyebrow { margin-bottom: 10px; }
.clients-strip__label p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--bps-fg-soft);
  line-height: 1.4;
}
.clients-strip__sectors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
}
.clients-strip__sectors span {
  font-family: var(--bps-font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--bps-fg);
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
}
.clients-strip__sectors span + span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--bps-lime);
  margin-right: 14px;
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .clients-strip { grid-template-columns: 1fr; gap: 20px; }
}

/* Logo bar */
.logo-bar {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--bps-line);
  border: 1px solid var(--bps-line);
  border-radius: var(--bps-radius-lg);
  overflow: hidden;
}
@media (max-width: 880px) { .logo-bar { grid-template-columns: repeat(3, 1fr); } }
.logo-bar__cell {
  background: var(--bps-card);
  padding: 28px 18px;
  display: grid;
  place-items: center;
  font-family: var(--bps-font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  color: var(--bps-mute);
  text-align: center;
  min-height: 90px;
}

/* ---------- FOOTER ---------- */
.bps-footer {
  background: var(--bps-charcoal);
  color: #C8CDC4;
  padding: 96px 0 32px;
  position: relative;
  overflow: hidden;
}
[data-theme="dark"] .bps-footer { background: #060808; }

/* Faded wordmark watermark behind the columns */
.bps-footer::before {
  content: "Bespoke";
  position: absolute;
  bottom: -32px;
  right: -8px;
  font-family: var(--bps-font-head);
  font-size: clamp(8rem, 16vw, 18rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}
.bps-footer > .container { position: relative; z-index: 1; }

.bps-footer h4 {
  color: #fff;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin: 0 0 22px;
}
.bps-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 64px 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 880px) { .bps-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.bps-footer__brand p { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.55; max-width: 36ch; margin-top: 6px; }
.bps-footer__brand img { height: 42px; margin-bottom: 22px; filter: brightness(0) invert(1); opacity: 0.95; }
.bps-footer ul { list-style: none; margin: 0; padding: 0; }
.bps-footer li { margin-bottom: 12px; font-size: 0.95rem; }
.bps-footer a { color: rgba(255,255,255,0.7); }
.bps-footer a:hover { color: var(--bps-lime); }
.bps-footer__contact a { display: block; }
.bps-footer__contact .phone {
  font-family: var(--bps-font-head);
  font-size: 1.65rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.bps-footer__base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
}
/* Lime accent tick above the base row */
.bps-footer__base::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 56px;
  height: 1px;
  background: var(--bps-lime);
}

/* Page header (non-home) */
.pageheader {
  padding: clamp(72px, 10vw, 128px) 0 clamp(48px, 6vw, 80px);
  background: var(--bps-paper);
  border-bottom: 1px solid var(--bps-line);
  position: relative;
}
.pageheader h1 { margin-bottom: 0.4em; }
.pageheader .lead { max-width: 64ch; margin-top: 18px; }
.pageheader__cta { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }

/* Left-side lime rule treatment - quiet brand cue for plain pageheaders */
.pageheader--rule > .container {
  position: relative;
  padding-left: calc(var(--bps-gutter) + 18px);
}
.pageheader--rule > .container::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 8px;
  left: 0;
  width: 3px;
  background: var(--bps-lime);
  border-radius: 2px;
}

.pageheader--photo {
  position: relative;
  overflow: hidden;
  background-color: var(--bps-charcoal);
  background-size: cover;
  background-position: center;
  border-bottom: none;
  color: #fff;
  isolation: isolate;
  padding: clamp(96px, 13vw, 168px) 0 clamp(72px, 9vw, 120px);
  min-height: 420px;
  display: flex;
  align-items: center;
}
.pageheader--photo > .container { position: relative; z-index: 1; width: 100%; }
.pageheader--photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(31,38,34,0.92) 0%, rgba(31,38,34,0.7) 50%, rgba(31,38,34,0.25) 100%);
  z-index: 0;
}
.pageheader--photo h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  letter-spacing: -0.032em;
  max-width: 22ch;
}
.pageheader--photo .lead { color: rgba(255,255,255,0.9); max-width: 56ch; }
.pageheader--photo .pageheader__crumbs { color: rgba(255,255,255,0.7); }
.pageheader--photo .pageheader__crumbs a { color: rgba(255,255,255,0.85); }
.pageheader--photo .pageheader__crumbs a:hover { color: var(--bps-lime); }
.pageheader--photo .eyebrow { color: var(--bps-lime); }
.pageheader--photo .eyebrow::before { background: var(--bps-lime); }
.pageheader--photo .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
}
.pageheader--photo .btn-ghost:hover {
  color: var(--bps-charcoal);
  background: #fff;
  border-color: #fff;
}

/* Section image - sits inline between sections, full-bleed photo bar */
.section-photo {
  width: 100%;
  aspect-ratio: 16 / 6;
  border-radius: var(--bps-radius-lg);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background-color: var(--bps-paper);
}
.section-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.two-up__visual--photo {
  aspect-ratio: 5 / 6;
  border-radius: var(--bps-radius-lg);
  box-shadow: var(--bps-shadow);
  position: relative;
  overflow: hidden;
  background-color: var(--bps-paper);
}
.two-up__visual--photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pageheader__crumbs {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--bps-fg-soft);
  margin-bottom: 24px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.pageheader__crumbs a:hover { color: var(--bps-lime-deep); }
.pageheader__crumbs span:not(:last-child) { opacity: 0.4; }

/* Tag chip */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--bps-radius-pill);
  background: var(--bps-lime-pale);
  color: var(--bps-lime-deep);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid color-mix(in srgb, var(--bps-lime) 30%, transparent);
  cursor: pointer;
  position: relative;
  transition: background var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
}
.chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.chip:has(input:checked) {
  background: var(--bps-lime);
  border-color: var(--bps-lime);
  color: var(--bps-charcoal);
}
[data-theme="dark"] .chip { color: var(--bps-lime); }

/* Service-row (alternating large blocks) */
.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding: clamp(40px, 5vw, 72px) 0;
  border-bottom: 1px solid var(--bps-line);
}
.svc-row:last-child { border-bottom: 0; }
.svc-row--reverse .svc-row__visual { order: 2; }
@media (max-width: 880px) {
  .svc-row { grid-template-columns: 1fr; }
  .svc-row--reverse .svc-row__visual { order: 0; }
}
.svc-row__visual {
  aspect-ratio: 5 / 4;
  border-radius: var(--bps-radius-lg);
  position: relative;
  overflow: hidden;
}
.svc-row h3 { font-size: clamp(1.4rem, 2vw, 1.7rem); margin-bottom: 12px; letter-spacing: -0.02em; }
.svc-row ul { padding-left: 0; list-style: none; }
.svc-row ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--bps-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
}
.svc-row ul li::after {
  content: "→";
  color: var(--bps-lime-deep);
  opacity: 0.5;
}

/* Form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 720px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid .full { grid-column: 1 / -1; }
.input, .textarea, .select {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 0.96rem;
  background: var(--bps-card);
  border: 1.5px solid var(--bps-line);
  border-radius: var(--bps-radius);
  color: var(--bps-fg);
  transition: border-color 0.2s;
}
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--bps-lime-deep);
}
.textarea { min-height: 140px; resize: vertical; }
.label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--bps-fg-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Misc */
.kpi-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--bps-line);
  border-bottom: 1px solid var(--bps-line);
}
.kpi-row__item .v {
  font-family: var(--bps-font-head);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--bps-fg);
  display: block;
}
.kpi-row__item .l { font-size: 0.85rem; color: var(--bps-fg-soft); }

.bg-paper { background: var(--bps-paper); }
.bg-charcoal { background: var(--bps-charcoal); color: #fff; }
.bg-charcoal h2, .bg-charcoal h3, .bg-charcoal h4 { color: #fff; }
.bg-charcoal p { color: rgba(255,255,255,0.7); }
.bg-charcoal .lead { color: rgba(255,255,255,0.85); }
.bg-charcoal strong { color: #fff; }
.bg-charcoal .stat__num { color: #fff; }
.bg-charcoal .stat__lbl { color: rgba(255,255,255,0.7); }
.bg-charcoal .stats-row { border-color: rgba(255,255,255,0.15); }

/* Print sitemap link list */
.sitelist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 56px;
}
@media (max-width: 720px) { .sitelist { grid-template-columns: 1fr; } }
.sitelist h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin: 0 0 16px;
  padding-bottom: 12px;
  color: var(--bps-fg-soft);
  border-bottom: 2px solid var(--bps-lime);
  display: inline-block;
}
.sitelist ul { list-style: none; padding: 0; margin: 0; }
.sitelist li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--bps-line);
  font-size: 0.95rem;
}
.sitelist a {
  transition: padding var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.sitelist a:hover { color: var(--bps-lime-deep); padding-left: 4px; }

/* Tweaks panel (overrides) */
.tweaks-toggle-internal { display: none; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-block {
  padding: 26px 28px;
  background: var(--bps-paper);
  border: 1px solid var(--bps-line);
  border-radius: var(--bps-radius-lg);
}
.contact-block .eyebrow { margin-bottom: 14px; }
.contact-block h4 {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bps-fg-soft);
}
.contact-block p { margin: 0; color: var(--bps-fg); }
.contact-big {
  font-family: var(--bps-font-head);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.018em;
  color: var(--bps-fg);
  text-decoration: none;
  display: inline-block;
}
.contact-big:hover { color: var(--bps-lime-deep); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
form label, .contact-grid label { display: block; }

/* About - stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding: 40px 0;
  border-top: 1px solid var(--bps-line);
  border-bottom: 1px solid var(--bps-line);
}
@media (max-width: 880px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
.stat__num {
  display: block;
  font-family: var(--bps-font-head);
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--bps-fg);
  line-height: 1;
}
.stat__lbl {
  display: block;
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--bps-fg-soft);
}

/* Blog feature + cards */
.blog-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--bps-paper);
  border: 1px solid var(--bps-line);
  border-radius: var(--bps-radius-lg);
  overflow: hidden;
  margin-bottom: 64px;
}
@media (max-width: 880px) { .blog-feature { grid-template-columns: 1fr; } }
.blog-feature__media {
  min-height: 360px;
  height: 100%;
  background: linear-gradient(135deg, var(--bps-lime-pale), #d8e7a3);
}
.blog-feature__body { padding: 48px; }
.blog-feature__body h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin: 14px 0 12px; }
.blog-feature__body p { color: var(--bps-fg-soft); }
.card--link {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card--link:hover { transform: translateY(-2px); box-shadow: var(--bps-shadow); }
.card--link .card__media {
  height: 180px;
  background: var(--bps-lime-pale);
}
.blog-card__media {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 16px;
}
.contact-info__hero {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--bps-radius-lg);
  margin-bottom: 4px;
  box-shadow: var(--bps-shadow);
}
.sectors-hero-banner {
  display: block;
  width: 100%;
  aspect-ratio: 21/8;
  object-fit: cover;
  border-radius: var(--bps-radius-lg);
  box-shadow: var(--bps-shadow);
  border: 1px solid var(--bps-line);
}
.card--link .card__body { padding: 24px; }
.card--link h3 { font-size: 1.15rem; margin: 8px 0 6px; }
.card--link p { color: var(--bps-fg-soft); font-size: 0.95rem; }

/* Prose (privacy + long-form) */
.prose { max-width: 720px; }
.prose h2 {
  margin: 56px 0 16px;
  font-size: 1.6rem;
  position: relative;
  padding-top: 32px;
}
.prose h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--bps-lime);
  border-radius: 2px;
}
.prose h2:first-child { padding-top: 0; }
.prose h2:first-child::before { display: none; }
.prose h3 { margin: 36px 0 10px; font-size: 1.18rem; }
.prose p, .prose li { color: var(--bps-fg-soft); line-height: 1.7; margin: 0 0 12px; }
.prose ul, .prose ol { padding-left: 24px; margin: 0 0 16px; }

/* Apply input styling to all form fields inside contact-grid */
.contact-grid input[type="text"],
.contact-grid input[type="email"],
.contact-grid input[type="tel"],
.contact-grid input[type="url"],
.contact-grid select,
.contact-grid textarea {
  width: 100%;
  padding: 14px 16px;
  font: inherit;
  font-size: 1rem;
  color: var(--bps-fg);
  background: var(--bps-card);
  border: 1.5px solid var(--bps-line);
  border-radius: var(--bps-radius);
  transition: border-color 0.15s var(--ease-out), box-shadow 0.15s var(--ease-out);
}
.contact-grid input:focus,
.contact-grid select:focus,
.contact-grid textarea:focus {
  outline: none;
  border-color: var(--bps-lime-deep);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--bps-lime) 18%, transparent);
}
.contact-grid textarea { min-height: 140px; resize: vertical; font-family: inherit; }
.contact-grid label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bps-fg-soft);
  margin-bottom: 8px;
}

/* Topbar phone - keep number on one line */
.bps-nav__topbar a, .bps-nav__topbar span { white-space: nowrap; }

/* Comparison block - problem -> outcome rows with editorial dot/dash glyphs */
.comparison {
  border: 1px solid var(--bps-line);
  border-radius: var(--bps-radius-lg);
  overflow: hidden;
  margin-top: 16px;
}
.comparison__head, .comparison__row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  padding: 20px 28px;
  align-items: start;
}
.comparison__head {
  background: var(--bps-paper);
  border-bottom: 2px solid var(--bps-line);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bps-fg-soft);
  padding: 16px 28px;
}
.comparison__row {
  border-bottom: 1px solid var(--bps-line);
  transition: background var(--dur-fast) var(--ease-out);
}
.comparison__row:last-child { border-bottom: 0; }
.comparison__row:hover { background: color-mix(in srgb, var(--bps-lime-pale) 30%, transparent); }
.comparison__row > div:first-child {
  position: relative;
  padding-left: 22px;
  color: var(--bps-fg-soft);
}
.comparison__row > div:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 2px;
  background: var(--bps-mute);
}
.comparison__row > div:last-child {
  position: relative;
  padding-left: 22px;
  color: var(--bps-fg);
  font-weight: 500;
}
.comparison__row > div:last-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bps-lime);
}
.comparison--dark { border-color: rgba(255,255,255,0.18); }
.comparison--dark .comparison__head {
  background: rgba(255,255,255,0.04);
  border-bottom-color: rgba(255,255,255,0.18);
  color: var(--bps-lime);
}
.comparison--dark .comparison__row { border-bottom-color: rgba(255,255,255,0.12); }
.comparison--dark .comparison__row:hover { background: rgba(164,204,41,0.06); }
.comparison--dark .comparison__row > div:first-child { color: rgba(255,255,255,0.6); }
.comparison--dark .comparison__row > div:first-child::before { background: rgba(255,255,255,0.4); }
.comparison--dark .comparison__row > div:last-child { color: #fff; }
.comparison--dark .comparison__row > div:last-child::before { background: var(--bps-lime); }
@media (max-width: 720px) {
  .comparison__head, .comparison__row { grid-template-columns: 1fr; gap: 6px; }
}

/* Card accent variant */
.card--accent {
  background: var(--bps-lime-pale);
  border-color: var(--bps-lime);
}

/* Card variant: static / non-interactive. Disables the hover lift so a
   non-linked card doesn't masquerade as clickable. */
.card--static { cursor: default; }
.card--static:hover {
  border-color: var(--bps-line);
  transform: none;
  box-shadow: none;
}

/* Card variant: full-lime CTA card. Designed to slot into a card-grid as a
   trailing "see all" tile, replacing what would be an empty cell. */
.card--cta {
  background: var(--bps-charcoal);
  border-color: var(--bps-charcoal);
  color: #fff;
  position: relative;
}
.card--cta:hover {
  background: #000;
  border-color: #000;
  color: #fff;
}
.card--cta h3 { color: #fff; }
a.card--cta:hover h3 { color: #fff; }
.card--cta p { color: rgba(255,255,255,0.78); }
.card--cta .card__icon {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.card--cta .card__icon::after { display: none; }
.card--cta::after {
  content: "→";
  position: absolute;
  bottom: 22px;
  right: 26px;
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  transition: transform var(--dur-fast) var(--ease-out);
}
.card--cta:hover::after { transform: translateX(4px); }

/* Testimonials - asymmetric grid: one featured + two supporting */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  grid-auto-rows: 1fr;
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 880px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

.testimonial {
  position: relative;
  background: var(--bps-card);
  border: 1px solid var(--bps-line);
  border-radius: var(--bps-radius-lg);
  padding: 32px 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: border-color 0.2s var(--ease-out);
}
.testimonial:hover { border-color: var(--bps-fg); }
.testimonial__mark {
  font-family: var(--bps-font-head);
  font-size: 3.4rem;
  line-height: 0.7;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--bps-lime);
}
.testimonial__body {
  margin: 0;
  padding: 0;
  border: 0;
}
.testimonial__body p {
  font-family: var(--bps-font-head);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.45;
  letter-spacing: -0.012em;
  color: var(--bps-fg);
  margin: 0;
  text-wrap: pretty;
}
.testimonial__cite {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--bps-line);
  display: grid;
  gap: 3px;
  font-style: normal;
}
.testimonial__name {
  font-family: var(--bps-font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--bps-fg);
  letter-spacing: -0.005em;
}
.testimonial__role {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bps-fg-soft);
  font-weight: 600;
}

/* Featured variant - anchors the section, charcoal, taller, larger body */
.testimonial--featured {
  grid-row: span 2;
  background: var(--bps-charcoal);
  border-color: var(--bps-charcoal);
  color: #fff;
  padding: 52px 44px 38px;
}
[data-theme="dark"] .testimonial--featured { background: #060808; border-color: #1F2622; }
.testimonial--featured .testimonial__mark { font-size: clamp(4.6rem, 7vw, 6rem); }
.testimonial--featured .testimonial__body p {
  color: #fff;
  font-size: clamp(1.24rem, 1.8vw, 1.6rem);
  line-height: 1.32;
  letter-spacing: -0.018em;
}
.testimonial--featured .testimonial__cite { border-top-color: rgba(255,255,255,0.16); }
.testimonial--featured .testimonial__name { color: #fff; }
.testimonial--featured .testimonial__role { color: rgba(255,255,255,0.65); }
.testimonial--featured:hover { border-color: var(--bps-lime); }

/* Card variant for charcoal/dark sections */
.card--on-dark {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
  color: #fff;
}
.card--on-dark:hover { border-color: rgba(255,255,255,0.4); }
.card--on-dark h3 { color: #fff; }
.card--on-dark p { color: rgba(255,255,255,0.7); }
.card--on-dark .card__icon {
  background: rgba(164,204,41,0.18);
  color: var(--bps-lime);
}

/* ---------- VISUAL BREAKERS ---------- */

/* Pullquote - single-line emphatic quote / statement. Renders as <blockquote>. */
.pullquote {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 32px;
  align-items: start;
  padding: clamp(36px, 5vw, 64px) 0;
  border-top: 2px solid var(--bps-line);
  border-bottom: 2px solid var(--bps-line);
  margin: clamp(48px, 7vw, 96px) 0;
}
blockquote.pullquote { padding-inline: 0; }
.pullquote__mark {
  font-family: var(--bps-font-head);
  font-size: clamp(4.6rem, 6vw, 6rem);
  font-weight: 800;
  line-height: 0.78;
  color: var(--bps-lime);
  letter-spacing: -0.05em;
}
.pullquote__body {
  font-family: var(--bps-font-head);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.022em;
  color: var(--bps-fg);
  text-wrap: balance;
}
.pullquote__body em {
  /* Highlighter-style lime underlay - keeps type charcoal but reads as marked-up */
  background: linear-gradient(180deg, transparent 62%, color-mix(in srgb, var(--bps-lime) 45%, transparent) 62%);
  padding: 0 4px;
  color: var(--bps-fg);
  font-style: normal;
}
.pullquote__cite {
  margin-top: 18px;
  font-family: var(--bps-font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bps-fg-soft);
  display: block;
  font-style: normal;
}
.pullquote--dark { border-color: rgba(255,255,255,0.16); }
.pullquote--dark .pullquote__body { color: #fff; }
.pullquote--dark .pullquote__cite { color: rgba(255,255,255,0.6); }
@media (max-width: 640px) {
  .pullquote { grid-template-columns: 1fr; gap: 14px; }
  .pullquote__mark { font-size: 3rem; }
}

/* Icon strip - quick summary row of 3-5 mini icon callouts */
.iconstrip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px;
  border: 1px solid var(--bps-line);
  border-radius: var(--bps-radius-lg);
  overflow: hidden;
  background: var(--bps-card);
}
.iconstrip__item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 22px;
  background: var(--bps-card);
  position: relative;
}
.iconstrip__item + .iconstrip__item::before {
  content: "";
  position: absolute;
  left: 0; top: 18px; bottom: 18px;
  width: 1px;
  background: var(--bps-line);
}
.iconstrip__icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--bps-lime-pale);
  display: grid;
  place-items: center;
  color: var(--bps-lime-deep);
}
.iconstrip__icon svg { width: 20px; height: 20px; }
.iconstrip__label {
  font-family: var(--bps-font-head);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.2;
  color: var(--bps-fg);
}
.iconstrip__sub {
  display: block;
  font-family: var(--bps-font-body);
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--bps-fg-soft);
  margin-top: 3px;
  letter-spacing: 0.01em;
}
@media (max-width: 720px) {
  .iconstrip__item + .iconstrip__item::before { left: 18px; right: 18px; top: 0; bottom: auto; width: auto; height: 1px; }
}
.iconstrip--dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.14);
}
.iconstrip--dark .iconstrip__item { background: transparent; }
.iconstrip--dark .iconstrip__item + .iconstrip__item::before { background: rgba(255,255,255,0.12); }
.iconstrip--dark .iconstrip__icon { background: rgba(164,204,41,0.18); color: var(--bps-lime); }
.iconstrip--dark .iconstrip__label { color: #fff; }
.iconstrip--dark .iconstrip__sub { color: rgba(255,255,255,0.65); }

/* Feature card - large icon panel for "promise" blocks */
.feature-card {
  position: relative;
  padding: 36px 32px 32px;
  background: var(--bps-card);
  border: 1px solid var(--bps-line);
  border-radius: var(--bps-radius-lg);
  transition: transform var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
}
.feature-card:hover { border-color: var(--bps-fg); transform: translateY(-2px); box-shadow: var(--bps-shadow); }
a.feature-card:focus-visible,
.feature-card:focus-visible {
  outline: none;
  border-color: var(--bps-lime-deep);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--bps-lime) 35%, transparent);
}
.feature-card__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--bps-lime);
  color: var(--bps-charcoal);
  display: grid;
  place-items: center;
  margin-bottom: 28px;
}
.feature-card__icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.22rem; margin: 0 0 10px; }
.feature-card p { margin: 0; color: var(--bps-fg-soft); font-size: 0.95rem; line-height: 1.55; }
.feature-card__num {
  position: absolute;
  top: 28px; right: 28px;
  font-family: var(--bps-font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--bps-mute);
}

/* Numbered variant - large faded watermark numeral, no icon tile. */
.feature-card--numbered .feature-card__num {
  top: 24px;
  right: 28px;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: color-mix(in srgb, var(--bps-lime) 35%, transparent);
}
.feature-card--numbered .feature-card__icon {
  background: transparent;
  width: auto;
  height: auto;
  border-radius: 0;
  color: var(--bps-lime-deep);
  margin-bottom: 24px;
  place-items: start;
}
.feature-card--numbered .feature-card__icon::after { display: none; }
.feature-card--numbered .feature-card__icon svg { width: 32px; height: 32px; }
[data-theme="dark"] .feature-card--numbered .feature-card__icon { color: var(--bps-lime); }

/* Media card - image-topped card */
.media-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--bps-radius-lg);
  overflow: hidden;
  background: var(--bps-card);
  border: 1px solid var(--bps-line);
  transition: transform var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
  text-decoration: none;
  color: inherit;
}
.media-card:hover { border-color: var(--bps-fg); transform: translateY(-2px); box-shadow: var(--bps-shadow); }
.media-card:focus-visible {
  outline: none;
  border-color: var(--bps-lime-deep);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--bps-lime) 35%, transparent);
}
.media-card__media {
  aspect-ratio: 4 / 3.2;
  position: relative;
  overflow: hidden;
  background-color: var(--bps-paper);
}
.media-card__media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 65%, rgba(0,0,0,0.35) 100%);
  z-index: 1;
}
.media-card__body { padding: 24px 26px 28px; }
.media-card__body h3 { font-size: 1.18rem; line-height: 1.3; margin: 0 0 8px; }
.media-card__body p { color: var(--bps-fg-soft); font-size: 0.93rem; margin: 0; }
.media-card__tag {
  position: absolute;
  bottom: 16px; left: 18px;
  padding: 6px 12px;
  background: var(--bps-lime);
  color: var(--bps-charcoal);
  font-family: var(--bps-font-head);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  z-index: 2;
}

/* Inline stat band - short numeric proof inside a section */
.statband {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--bps-line);
  border: 1px solid var(--bps-line);
  border-radius: var(--bps-radius-lg);
  overflow: hidden;
}
.statband__item {
  background: var(--bps-card);
  padding: 28px 24px;
  text-align: left;
}
.statband__num {
  display: block;
  font-family: var(--bps-font-head);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--bps-lime-deep);
  line-height: 1;
}
.statband__lbl {
  display: block;
  margin-top: 10px;
  font-size: 0.88rem;
  color: var(--bps-fg-soft);
  line-height: 1.3;
}
.statband--accent .statband__item { background: var(--bps-lime-pale); }
.statband--accent .statband__num { color: var(--bps-charcoal); }
.statband--dark { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.14); }
.statband--dark .statband__item { background: var(--bps-charcoal); }
[data-theme="dark"] .statband--dark .statband__item { background: #060808; }
.statband--dark .statband__num { color: var(--bps-lime); }
.statband--dark .statband__lbl { color: rgba(255,255,255,0.7); }

/* Split-CTA - image-half + content-half banner */
.split-cta {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  border-radius: var(--bps-radius-lg);
  overflow: hidden;
  border: 1px solid var(--bps-line);
  background: var(--bps-card);
  box-shadow: var(--bps-shadow);
}
.split-cta__media {
  min-height: 360px;
  position: relative;
  overflow: hidden;
}
.split-cta__media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-cta__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(31,38,34,0.45) 0%, rgba(31,38,34,0.02) 60%);
}
.split-cta__body {
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(60% 80% at 100% 0%, color-mix(in srgb, var(--bps-lime-pale) 70%, transparent) 0%, transparent 60%),
    var(--bps-card);
}
.split-cta__body h3 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin: 8px 0 14px;
  letter-spacing: -0.026em;
}
.split-cta__body p { color: var(--bps-fg-soft); margin-bottom: 28px; }
.split-cta__cta { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 760px) {
  .split-cta { grid-template-columns: 1fr; }
  .split-cta__media { min-height: 220px; }
}

/* Section-photo aspect variants */
.section-photo--wide { aspect-ratio: 21/7; }
.section-photo--shallow { aspect-ratio: 21/5; }
.section-photo--portrait { aspect-ratio: 4/5; }
.section-photo__caption {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  color: #fff;
  font-family: var(--bps-font-head);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  letter-spacing: -0.015em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  z-index: 2;
}
.section-photo--captioned {
  position: relative;
  isolation: isolate;
}
.section-photo--captioned::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
}

/* Quick proof row - chip-style fact pills */
.prooftags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.prooftag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--bps-card);
  border: 1px solid var(--bps-line);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bps-fg);
  letter-spacing: -0.005em;
}
.prooftag::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bps-lime);
}
.prooftag--dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.16);
  color: #fff;
}

/* Outcome cards (image-led "challenges solved" rows, image on left) */
.outcome-row {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  padding: 28px 0;
  align-items: center;
  border-bottom: 1px solid var(--bps-line);
}
.outcome-row:last-child { border-bottom: 0; }
.outcome-row__media {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  border-radius: var(--bps-radius-lg);
}
.outcome-row__problem {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--bps-fg-soft);
  margin-bottom: 6px;
  display: block;
}
.outcome-row h4 { font-size: 1.1rem; margin: 0 0 6px; letter-spacing: -0.01em; }
.outcome-row p { margin: 0; color: var(--bps-fg-soft); font-size: 0.95rem; }
@media (max-width: 720px) {
  .outcome-row { grid-template-columns: 1fr; gap: 16px; }
}

/* Service tile mini - compact image+text card for "what we cover" lists */
.mini-tile {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  background: var(--bps-card);
  border: 1px solid var(--bps-line);
  border-radius: var(--bps-radius-lg);
  transition: transform var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
}
.mini-tile:hover { border-color: var(--bps-fg); transform: translateY(-2px); box-shadow: var(--bps-shadow); }
.mini-tile:focus-visible {
  outline: none;
  border-color: var(--bps-lime-deep);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--bps-lime) 35%, transparent);
}
.mini-tile__icon {
  width: 52px; height: 52px;
  border-radius: 10px;
  background: var(--bps-lime-pale);
  color: var(--bps-lime-deep);
  display: grid;
  place-items: center;
  position: relative;
}
.mini-tile__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid color-mix(in srgb, var(--bps-lime) 35%, transparent);
  pointer-events: none;
}
.mini-tile__icon svg { width: 24px; height: 24px; }
.mini-tile h4 { font-size: 1rem; margin: 0 0 4px; letter-spacing: -0.01em; }
.mini-tile p { font-size: 0.88rem; color: var(--bps-fg-soft); margin: 0; line-height: 1.5; }


/* ---------- LOGO MARQUEE ----------
   Infinite horizontal scroll of client logos. Requires the track to contain
   two copies of the logo set; the animation translates -50% to seamlessly
   loop back to the start. Edge fade via CSS mask. Pause on hover. */
.logo-marquee {
  width: 100%;
  overflow: hidden;
  padding: clamp(16px, 2.5vw, 32px) 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.logo-marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: logo-scroll 32s linear infinite;
}
.logo-marquee:hover .logo-marquee__track { animation-play-state: paused; }
.logo-marquee__item {
  flex-shrink: 0;
  padding: 0 clamp(32px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}
.logo-marquee__item img {
  display: block;
  max-height: 56px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
  transition: filter var(--dur-base) var(--ease-out), opacity var(--dur-base) var(--ease-out);
}
.logo-marquee:hover .logo-marquee__item img,
.logo-marquee__item:focus-within img {
  filter: grayscale(0);
  opacity: 1;
}
@keyframes logo-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ---------- LOGO SLIDER ----------
   Manual horizontal logo carousel with prev/next arrow buttons. The track is
   a native scroll container with scroll-snap, so users can swipe / drag /
   trackpad-scroll, and the arrows are an additional input. Constrained to
   the container width by sitting inside a .container parent. */
.logo-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(8px, 1.5vw, 16px);
  margin-top: clamp(20px, 3vw, 40px);
}
.logo-slider__track {
  display: flex;
  gap: clamp(28px, 4vw, 56px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 8px 4px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}
.logo-slider__track::-webkit-scrollbar { display: none; }
.logo-slider__track:focus-visible { outline: 2px solid var(--bps-lime-deep); outline-offset: 4px; border-radius: 4px; }
.logo-slider__item {
  flex: 0 0 auto;
  scroll-snap-align: center;
  height: 80px;
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-slider__item img {
  display: block;
  max-height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
  transition: filter var(--dur-base) var(--ease-out), opacity var(--dur-base) var(--ease-out);
}
.logo-slider__item:hover img,
.logo-slider__item:focus-within img {
  filter: grayscale(0);
  opacity: 1;
}
.logo-slider__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--bps-line);
  background: var(--bps-bg);
  color: var(--bps-fg);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  transition: transform var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
}
.logo-slider__btn:hover {
  border-color: var(--bps-fg);
  background: var(--bps-fg);
  color: var(--bps-bg);
}
.logo-slider__btn:active { transform: scale(0.94); }
.logo-slider__btn:focus-visible {
  outline: none;
  border-color: var(--bps-lime-deep);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--bps-lime) 35%, transparent);
}
.logo-slider__btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  pointer-events: none;
}


/* ---------- CARD WITH IMAGE HEADER ----------
   Use as <div class="card card--image"> with a <div class="card__media">
   wrapping an <img>. The image renders as a full-width rounded banner at
   the top of the card (bleeds past the card's horizontal padding); the
   rest of the card (h3 + p + cta) sits below in the standard padding. */
.card--image { padding-top: 0; }
.card--image .card__media {
  position: relative;
  /* Negate the card's 1px border (top) and 30px horizontal padding so the
     image is flush with the card edges. 20px gap before the H3 below. */
  margin: -1px -31px 20px;
  height: 180px;
  border-top-left-radius: var(--bps-radius-lg);
  border-top-right-radius: var(--bps-radius-lg);
  overflow: hidden;
  background: var(--bps-lime-pale);
}
.card--image .card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ---------- CRITTER GRID ----------
   Compact tile grid for short labels (e.g. pest control "Critters We Clear
   Out" - 12 items). Used when the source docx supplies only labels, no
   bodies, no icons. */
.critter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 880px) { .critter-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .critter-grid { grid-template-columns: repeat(2, 1fr); } }
.critter-tile {
  background: var(--bps-card);
  border: 1px solid var(--bps-line);
  border-radius: var(--bps-radius);
  padding: 14px 18px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--bps-fg);
  letter-spacing: -0.005em;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color var(--dur-fast) var(--ease-out);
}
.critter-tile:hover { border-color: var(--bps-lime-deep); }
.critter-tile__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--bps-lime-pale);
  color: var(--bps-lime-deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.critter-tile__icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ---------- PROCESS FLOW ----------
   Horizontal step flow with icons and curved arrow connectors. Designed to
   sit inside a .bg-charcoal section. Collapses to single column on mobile
   with arrows hidden (the visual order conveys the same meaning vertically). */
.process-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  max-width: 100%;
}
.process-flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  padding: 0 6px;
}
.process-flow__icon {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  flex-shrink: 0;
}
.process-flow__icon svg {
  width: 48px;
  height: 48px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.process-flow__label {
  color: #fff;
  font-family: var(--bps-font-head);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.3;
  letter-spacing: -0.005em;
  max-width: 16ch;
}
.process-flow__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-top: 32px;
  color: var(--bps-lime);
  padding: 0 4px;
}
.process-flow__arrow svg {
  width: 100px;
  height: 32px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 900px) {
  .process-flow {
    grid-template-columns: 1fr;
    gap: clamp(28px, 5vw, 44px);
  }
  .process-flow__arrow { display: none; }
}
@media (max-width: 600px) {
  .process-flow__icon { width: 80px; height: 80px; }
  .process-flow__icon svg { width: 40px; height: 40px; }
  .process-flow__label { max-width: 24ch; }
}


/* ---------- PROCESS STEPS ----------
   Numbered ordered list with a lime-circle number marker. Used for "It
   couldn't be easier:" style process intros. */
.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: process;
  display: grid;
  gap: 12px;
}
.process-steps li {
  counter-increment: process;
  position: relative;
  padding-left: 44px;
  min-height: 30px;
  display: flex;
  align-items: center;
  color: var(--bps-fg);
  font-weight: 500;
}
.process-steps li::before {
  content: counter(process);
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bps-lime);
  color: var(--bps-charcoal);
  font-family: var(--bps-font-head);
  font-weight: 700;
  font-size: 0.92rem;
  display: grid;
  place-items: center;
}


/* ---------- PROJECT CARD ----------
   Editorial card for a "Recent projects" gallery: image at top with a small
   lime location pin badge overlaid, title and body below, "More" link in the
   body. Hover lifts the card and nudges the More link. */
.project-card {
  background: var(--bps-card);
  border: 1px solid var(--bps-line);
  border-radius: var(--bps-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
}
.project-card:hover {
  transform: translateY(-3px);
  border-color: var(--bps-fg);
  box-shadow: var(--bps-shadow);
}
.project-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bps-lime-pale);
}
.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.project-card__pin {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--bps-lime);
  color: var(--bps-charcoal);
  border-radius: var(--bps-radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.project-card__pin svg { width: 12px; height: 12px; stroke: currentColor; }
.project-card__body { padding: 22px 24px 24px; }
.project-card__body h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  letter-spacing: -0.018em;
  line-height: 1.25;
}
.project-card__body p {
  margin: 0;
  color: var(--bps-fg-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}
.project-card__body p .more-link {
  color: var(--bps-lime-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--bps-lime);
  font-weight: 500;
}
.project-card__body p .more-link:hover { color: var(--bps-fg); }

.projects-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: clamp(28px, 4vw, 48px);
  flex-wrap: wrap;
}
.projects-head h2 { margin: 0; }
.projects-head__cta {
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--bps-lime-deep);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--bps-lime);
  padding-bottom: 2px;
  transition: color var(--dur-fast) var(--ease-out);
}
.projects-head__cta:hover { color: var(--bps-fg); }


/* ---------- SERVICES CHECKLIST ----------
   Two-column bulleted list with a lime tick before each item.
   Used on the maintenance page "Rely on us for:" block. */
.services-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
}
@media (max-width: 640px) { .services-checklist { grid-template-columns: 1fr; } }
.services-checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--bps-fg);
  font-weight: 500;
  line-height: 1.45;
}
.services-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bps-lime);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F2622' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}


/* ---------- PRIORITY RESPONSE BLOCK ----------
   Charcoal-background section with a stacked tier list designed to anchor
   attention as a "stand out" POD on the maintenance page. */
.priority-response .byline { color: var(--bps-lime); }
.priority-response .tier-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.priority-response .tier-row {
  grid-template-columns: minmax(220px, 320px) 1fr;
  padding: clamp(24px, 3vw, 36px) 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  align-items: center;
}
.priority-response .tier-row__time {
  color: #fff;
  font-size: clamp(1.15rem, 1.4vw, 1.4rem);
  letter-spacing: -0.012em;
  line-height: 1.2;
  font-weight: 700;
}
.priority-response .tier-row__body h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  letter-spacing: -0.018em;
}
.priority-response .tier-row__body p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  max-width: 70ch;
}
@media (max-width: 720px) {
  .priority-response .tier-row { grid-template-columns: 1fr; gap: 8px; }
}


/* ---------- VALUES LIST ----------
   Used on the About page for the four commitments list inside an alt-row. */
.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.values-list li {
  position: relative;
  padding-left: 26px;
  color: var(--bps-fg-soft);
  line-height: 1.5;
}
.values-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 14px;
  height: 2px;
  background: var(--bps-lime);
  border-radius: 2px;
}
.values-list li strong { color: var(--bps-fg); font-weight: 700; }

/* Values list inside a dark section: switch text to white-ish, strong to pure white */
.bg-charcoal .values-list li { color: rgba(255,255,255,0.86); }
.bg-charcoal .values-list li strong { color: #fff; }


/* ---------- SECTOR LIST ----------
   Description list pairing each sector grid tile with a short body paragraph.
   Renders as a responsive multi-column list under the .sector-grid. */
.sector-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 36px) clamp(24px, 4vw, 48px);
}
.sector-list__item h3 {
  font-size: 1.05rem;
  margin: 0 0 6px;
  color: var(--bps-fg);
}
.sector-list__item p {
  color: var(--bps-fg-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}


/* ---------- CONTACT BLOCK ----------
   Two-column "contact + form" section. Left: contact details with circular
   lime icon tiles. Right: underline-style form with a lime pill submit. */
.contact-block {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
@media (max-width: 880px) {
  .contact-block { grid-template-columns: 1fr; }
}
.contact-block__info h2 {
  margin: 0 0 clamp(24px, 3vw, 40px);
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.5vw, 32px);
}
.contact-list__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  align-items: center;
  color: var(--bps-fg);
  font-size: 1.02rem;
}
.contact-list__item a {
  color: var(--bps-fg);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--bps-line);
  font-weight: 500;
  transition: text-decoration-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.contact-list__item a:hover {
  color: var(--bps-lime-deep);
  text-decoration-color: var(--bps-lime);
}
.contact-list__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bps-lime);
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}
.contact-list__icon svg { width: 24px; height: 24px; stroke: #fff; }
.contact-list__hours { align-items: start; }
.contact-list__hours-body {
  display: grid;
  grid-template-columns: minmax(100px, max-content) 1fr;
  row-gap: 10px;
  column-gap: 28px;
  align-items: baseline;
}
.contact-list__hours-day { color: var(--bps-lime-deep); font-weight: 600; }

.contact-form {
  background: transparent;
}
.contact-form__title {
  margin: 0 0 clamp(22px, 3vw, 32px);
  font-size: 1.05rem;
  letter-spacing: -0.005em;
  font-weight: 700;
  color: var(--bps-fg);
}
.contact-form__field {
  margin-bottom: clamp(18px, 2vw, 28px);
}
.contact-form__field label {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--bps-fg);
}
.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid var(--bps-lime);
  background: transparent;
  padding: 8px 2px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--bps-fg);
  border-radius: 0;
}
.contact-form__field textarea { resize: vertical; min-height: 60px; }
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-bottom-color: var(--bps-lime-deep);
  border-bottom-width: 2px;
}
.contact-form__send {
  /* Inherits all styling from .btn .btn-primary .btn-arrow.
     Local rule only adds top spacing above the button. */
  margin-top: clamp(12px, 2vw, 24px);
}


/* ---------- ACCESSIBILITY: REDUCED MOTION ----------
   Honour the user's OS-level motion preference. Disables animations and
   transitions while preserving final states so layouts don't break. */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }
}
