/* ===========================================================
   Components — heroes, cards, sections, forms, motion
   =========================================================== */

/* -----------------------------------------------------------
   HOME HERO + SLIDESHOW
   ----------------------------------------------------------- */
.hero {
  position: relative;
  display: flex; align-items: center;
  min-height: clamp(560px, calc(100svh - var(--bar-h)), 900px);
  padding-block: var(--space-7);
  background: var(--color-dark);
  color: #fff;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 900ms var(--ease-in-out);
}
.hero__slide.is-active { opacity: 1; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; }

/* Scrim: verified against the lightest slide, not the one it was designed on */
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(6,12,22,.80) 0%, rgba(6,12,22,.62) 45%, rgba(6,12,22,.88) 100%),
    linear-gradient(to right, rgba(6,12,22,.86) 0%, rgba(6,12,22,.58) 60%, rgba(6,12,22,.40) 100%);
}
@media (min-width: 1024px) {
  .hero__scrim {
    background:
      linear-gradient(to right, rgba(6,12,22,.92) 0%, rgba(6,12,22,.74) 48%, rgba(6,12,22,.42) 100%),
      linear-gradient(to bottom, rgba(6,12,22,.30), rgba(6,12,22,.62));
  }
}


.hero__inner {
  position: relative;
  width: 100%;
}

.slide-caption[hidden] { display: none; }
.slide-caption__title {
  margin: 0 0 var(--space-2);
  font-family: var(--font-heading); font-size: var(--fs-xl); font-weight: 600;
  color: #fff;
}
.slide-caption__blurb { color: rgba(255,255,255,.88); font-size: var(--fs-sm); margin-bottom: var(--space-4); }
.hero__ctrl {
  display: grid; place-items: center;
  width: 44px; height: 44px; flex: none;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 50%; color: #fff; cursor: pointer;
  transition: background-color var(--dur) var(--ease-out);
}
.hero__ctrl:hover { background: rgba(255,255,255,.22); }
.hero__ctrl--toggle { margin-left: auto; }
.hero__ico-play { display: none; }
.is-paused .hero__ico-play { display: block; }
.is-paused .hero__ico-pause { display: none; }
.hero__dots { display: flex; align-items: center; gap: 4px; }
.hero__dot {
  display: grid; place-items: center;
  width: 26px; height: 44px; padding: 0;
  background: none; border: 0; cursor: pointer;
}
.hero__dot span {
  display: block; width: 100%; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,.30);
  transition: background-color var(--dur) var(--ease-out);
}
.hero__dot[aria-current="true"] span { background: var(--b-400); }

/* -----------------------------------------------------------
   PAGE HERO (inner pages)
   ----------------------------------------------------------- */
.page-hero {
  position: relative;
  padding-block: var(--space-7) var(--space-8);
  background: var(--color-dark);
  color: #fff;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 90% at 82% 8%, rgba(30,79,216,.42), transparent 62%),
    radial-gradient(48% 70% at 8% 100%, rgba(194,65,12,.26), transparent 65%);
}
.page-hero__inner { position: relative; display: grid; gap: var(--space-6); }
@media (min-width: 1024px) {
  .page-hero { padding-block: var(--space-8) var(--space-9); }
  .page-hero--media .page-hero__inner { grid-template-columns: 1.05fr 0.95fr; gap: var(--space-8); align-items: center; }
}
.page-hero__title { color: #fff; }
.page-hero--compact .page-hero__title { font-size: var(--fs-3xl); }
.page-hero__sub {
  max-width: 58ch; margin-top: var(--space-4);
  font-size: var(--fs-lg); color: rgba(255,255,255,.90);
}
.page-hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-6); }
.page-hero__wa {
  display: inline-flex; align-items: center; gap: var(--space-2);
  margin-top: var(--space-4); min-height: 44px;
  color: var(--wa-500); font-size: var(--fs-sm); font-weight: 600; text-decoration: none;
}
.page-hero__wa:hover { color: var(--wa-500); text-decoration: underline; }
.page-hero__wa .icon { width: 20px; height: 20px; }
.page-hero__media { margin: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
/* Real photos arrive in every shape: a fixed ratio keeps portrait shots from
   stretching the hero on a phone. */
.page-hero__media { aspect-ratio: 4 / 3; }
.page-hero__media img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* -----------------------------------------------------------
   SECTION HEADER
   ----------------------------------------------------------- */
.section-header { max-width: 62ch; margin-bottom: var(--space-6); }
.section-header--center { margin-inline: auto; text-align: center; }
.section-header--center .kicker { justify-content: center; }
.section-header__note { margin: var(--space-4) 0 0; color: var(--color-muted); font-size: var(--fs-lg); }
.section-header--on-dark .section-header__note { color: var(--color-on-dark-muted); }

.subsection { margin-top: var(--space-7); }
.subsection__title { font-size: var(--fs-lg); margin-bottom: var(--space-4); }

/* -----------------------------------------------------------
   BADGES, CHIPS, LISTS
   ----------------------------------------------------------- */
.badges { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-5); }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px var(--space-3);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: var(--r-pill);
  font-size: var(--fs-sm); color: rgba(255,255,255,.95);
}
.badge .icon { width: 16px; height: 16px; color: var(--wa-500); }
.badge--link { text-decoration: none; min-height: 44px; }
.badge--link:hover { background: rgba(255,255,255,.2); color: #fff; }
.badge--link .icon { color: var(--a-300); }

.chips { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.chip {
  display: inline-flex; align-items: center; gap: var(--space-2);
  min-height: 48px; padding: var(--space-2) var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-pill);
  color: var(--color-text); font-weight: 600; font-size: var(--fs-sm);
  font-family: var(--font-heading); text-decoration: none;
  transition: border-color var(--dur) var(--ease-out), transform var(--dur-fast) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.chip:hover {
  border-color: var(--color-accent); color: var(--color-accent);
  transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.chip .icon { width: 18px; height: 18px; color: var(--color-accent); }
.chip__pre { color: var(--color-muted); font-weight: 400; }
.chip__arrow { margin-left: var(--space-1); opacity: .55; }
.chip--small { min-height: 44px; font-size: var(--fs-sm); }
.section--tint .chip { background: var(--color-surface); }

.ticks { display: grid; gap: var(--space-4); margin-top: var(--space-5); }
.ticks li { display: flex; gap: var(--space-3); align-items: flex-start; color: var(--color-muted); }
.ticks .icon { width: 22px; height: 22px; color: var(--color-accent); flex: none; margin-top: 2px; }

.checklist { display: grid; gap: var(--space-3); margin-top: var(--space-5); }
.checklist li { display: flex; gap: var(--space-3); align-items: flex-start; }
.checklist .icon { width: 21px; height: 21px; color: var(--wa-700); flex: none; margin-top: 3px; }

.localities { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-5); }
.localities li {
  padding: 8px var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-pill);
  font-size: var(--fs-sm); color: var(--color-muted);
}

/* -----------------------------------------------------------
   SERVICE CARDS (bento on desktop)
   ----------------------------------------------------------- */
.svc-grid { display: grid; gap: var(--space-5); }
@media (min-width: 768px)  { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .svc-card--feature { grid-column: span 2; }
}
.svc-grid--two { grid-template-columns: 1fr; }
@media (min-width: 768px) { .svc-grid--two { grid-template-columns: repeat(2, 1fr); } }

.svc-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--a-200); }
.svc-card__link { display: flex; flex-direction: column; height: 100%; text-decoration: none; color: inherit; }
.svc-card__cover { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--n-100); }
.svc-card__cover img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.svc-card:hover .svc-card__cover img { transform: scale(1.05); }
.svc-card__icon {
  position: absolute; left: var(--space-4); top: var(--space-4);
  display: grid; place-items: center; width: 42px; height: 42px;
  background: rgba(10,19,34,.72); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--r-sm); color: #fff;
}
.svc-card__icon .icon { width: 21px; height: 21px; }
.svc-card__body { display: flex; flex-direction: column; flex: 1; padding: var(--space-5); }
.svc-card__note {
  display: flex; align-items: center; gap: var(--space-2);
  margin: 0 0 var(--space-2);
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--color-muted);
}
.svc-card__title { margin-bottom: var(--space-2); }
.svc-card__summary { color: var(--color-muted); font-size: var(--fs-sm); }
.svc-card__feats { display: grid; gap: var(--space-2); margin: var(--space-4) 0; }
.svc-card__feats li { display: flex; align-items: center; gap: var(--space-2); font-size: var(--fs-sm); color: var(--color-muted); }
.svc-card__feats .icon { width: 16px; height: 16px; color: var(--wa-700); }
.svc-card__cta {
  display: inline-flex; align-items: center; gap: var(--space-2);
  margin-top: auto; padding-top: var(--space-3);
  font-family: var(--font-heading); font-weight: 600; font-size: var(--fs-sm);
  color: var(--color-accent);
}
.svc-card__cta .icon { width: 18px; height: 18px; transition: transform var(--dur) var(--ease-out); }
.svc-card:hover .svc-card__cta .icon { transform: translateX(4px); }
@media (min-width: 1024px) {
  .svc-card--feature .svc-card__link { flex-direction: row; }
  .svc-card--feature .svc-card__cover { aspect-ratio: auto; width: 52%; flex: none; }
  .svc-card--feature .svc-card__body { justify-content: center; padding: var(--space-6); }
  .svc-card--feature .svc-card__title { font-size: var(--fs-2xl); }
}

/* -----------------------------------------------------------
   VALUE PROPS
   ----------------------------------------------------------- */
.value-props { display: grid; gap: var(--space-5); }
@media (min-width: 768px)  { .value-props { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .value-props { grid-template-columns: repeat(4, 1fr); } }
.value-prop {
  padding: var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  border-top: 3px solid var(--color-accent);
}
.value-prop:nth-child(even) { border-top-color: var(--color-cta); }
.value-prop__icon {
  display: grid; place-items: center; width: 44px; height: 44px;
  margin-bottom: var(--space-4);
  border-radius: var(--r-sm);
  background: var(--color-accent-soft); color: var(--color-accent);
}
.value-prop:nth-child(even) .value-prop__icon { background: var(--b-50); color: var(--b-700); }
.value-prop__title { font-size: var(--fs-lg); margin-bottom: var(--space-2); }
.value-prop__text { margin: 0; color: var(--color-muted); font-size: var(--fs-sm); }
.value-props--on-dark .value-prop { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.12); }
.value-props--on-dark .value-prop__text { color: var(--color-on-dark-muted); }

/* -----------------------------------------------------------
   PANELS, PROMISE, DEFINITION, MATERIALS, SPEC CARD
   ----------------------------------------------------------- */
.panel {
  padding: var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
/* nested surfaces must not share a background token with their band */
.section--tint .panel { background: var(--color-surface); }
.panel__icon {
  display: grid; place-items: center; width: 46px; height: 46px;
  margin-bottom: var(--space-4); border-radius: var(--r-sm);
  background: var(--color-accent-soft); color: var(--color-accent);
}
.panel__title { font-size: var(--fs-lg); margin-bottom: var(--space-3); }
.panel p { color: var(--color-muted); font-size: var(--fs-sm); margin: 0; }
.panel__address { font-style: normal; color: var(--color-muted); font-size: var(--fs-sm); line-height: 1.7; }
.panel--compact { padding: var(--space-5); }
.panel--compact .panel__title { font-size: var(--fs-base); }

.promise {
  display: flex; gap: var(--space-4); align-items: flex-start;
  margin-top: var(--space-6); padding: var(--space-5);
  background: var(--a-900);
  border-radius: var(--r-lg);
  color: rgba(255,255,255,.92);
}
.promise p { margin: 0; font-size: var(--fs-sm); }
.promise strong { color: #fff; }
.promise__icon { display: grid; place-items: center; flex: none; width: 44px; height: 44px; border-radius: var(--r-sm); background: rgba(255,255,255,.12); color: #fff; }

.definition {
  margin-top: var(--space-7); padding: var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--r-md);
}
.definition__title { display: flex; align-items: center; gap: var(--space-2); font-size: var(--fs-lg); }
.definition__title .icon { width: 20px; height: 20px; color: var(--color-accent); }
.definition p { margin: 0; color: var(--color-muted); }

.materials { margin-top: var(--space-6); }
.materials__title { font-size: var(--fs-lg); }
.materials p { color: var(--color-muted); }

.spec-card {
  position: sticky; top: calc(var(--bar-h) + var(--space-4));
  padding: var(--space-5);
  background: var(--color-dark);
  color: var(--color-on-dark-muted);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}
.spec-card__head { display: flex; gap: var(--space-3); align-items: flex-start; margin-bottom: var(--space-5); }
.spec-card__icon { display: grid; place-items: center; flex: none; width: 44px; height: 44px; border-radius: var(--r-sm); background: rgba(255,255,255,.10); color: var(--a-300); }
.spec-card__eyebrow { margin: 0; font-size: var(--fs-xs); letter-spacing: .12em; text-transform: uppercase; color: var(--a-300); font-weight: 600; }
.spec-card__title { margin: 2px 0 0; font-size: var(--fs-lg); color: #fff; }
.spec-card__rows { margin: 0; display: grid; gap: 0; }
.spec-card__row {
  display: grid; gap: 2px;
  padding-block: var(--space-3);
  border-top: 1px solid rgba(255,255,255,.12);
}
.spec-card__row dt { font-size: var(--fs-xs); letter-spacing: .08em; text-transform: uppercase; color: var(--n-400); }
.spec-card__row dd { margin: 0; color: #fff; font-size: var(--fs-sm); }
.spec-card__foot {
  display: flex; gap: var(--space-2); align-items: flex-start;
  margin: var(--space-4) 0 0; padding-top: var(--space-4);
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: var(--fs-xs); color: var(--color-on-dark-muted);
}
.spec-card__foot .icon { width: 17px; height: 17px; color: var(--wa-500); flex: none; }
@media (max-width: 1023px) { .spec-card { position: static; } }

/* -----------------------------------------------------------
   PROCESS
   ----------------------------------------------------------- */
.process { position: relative; display: grid; gap: var(--space-6); counter-reset: step; }
@media (min-width: 768px) { .process { grid-template-columns: repeat(3, 1fr); gap: var(--space-6); } }
@media (min-width: 768px) {
  .process::before {
    content: ""; position: absolute; left: 10%; right: 10%; top: 27px; height: 2px;
    background: linear-gradient(to right, var(--a-200), var(--b-200));
    transform: scaleX(0); transform-origin: left;
    transition: transform 1200ms var(--ease-out);
  }
  .process.is-in::before { transform: scaleX(1); }
}
.process__step { position: relative; text-align: center; }
.process__marker {
  position: relative; z-index: 1;
  display: grid; place-items: center;
  width: 56px; height: 56px; margin: 0 auto var(--space-4);
  border-radius: 50%;
  background: var(--color-surface);
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
}
.section--tint .process__marker { background: var(--color-surface); }
.process__num {
  position: absolute; top: -8px; right: -8px;
  display: grid; place-items: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--color-cta); color: #fff;
  font-family: var(--font-heading); font-size: var(--fs-xs); font-weight: 700;
}
.process__icon .icon { width: 25px; height: 25px; }
.process__title { font-size: var(--fs-lg); }
.process__text { margin: 0; color: var(--color-muted); font-size: var(--fs-sm); }

/* -----------------------------------------------------------
   FAQ
   ----------------------------------------------------------- */
.faq { display: grid; gap: var(--space-3); }
.faq__item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.faq__item[open] { border-color: var(--a-200); box-shadow: var(--shadow-md); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  min-height: 56px; padding: var(--space-4) var(--space-5);
  cursor: pointer; list-style: none;
  font-family: var(--font-heading); font-weight: 600; font-size: var(--fs-base);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__icon { position: relative; flex: none; width: 20px; height: 20px; }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 14px; height: 2px; border-radius: 2px;
  background: var(--color-accent);
  transform: translate(-50%, -50%);
  transition: transform var(--dur) var(--ease-out);
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq__a { padding: 0 var(--space-5) var(--space-5); }
.faq__a p { margin: 0; color: var(--color-muted); }

/* -----------------------------------------------------------
   PHOTO STRIP + GALLERY + LIGHTBOX
   ----------------------------------------------------------- */
.strip { margin-top: var(--space-6); }
.strip__track {
  display: flex; gap: var(--space-4);
  overflow-x: auto;
  padding-bottom: var(--space-4);
  padding-right: var(--gutter);
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.strip__item { flex: 0 0 auto; width: min(78vw, 380px); scroll-snap-align: start; }
.strip__link {
  display: block; position: relative;
  border-radius: var(--r-md); overflow: hidden;
  background: rgba(255,255,255,.06);
  text-decoration: none;
  transition: transform var(--dur) var(--ease-out);
}
.strip__link:hover { transform: translateY(-4px); }
/* Mixed portrait and landscape photos sit in one even row; the lightbox shows
   each photo whole. */
.strip__link { aspect-ratio: 4 / 5; }
.strip__link img { display: block; width: 100%; height: 100%; object-fit: cover; }
.strip__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: var(--space-5) var(--space-4) var(--space-3);
  background: linear-gradient(to top, rgba(6,12,22,.92), transparent);
  color: #fff; font-size: var(--fs-sm); font-weight: 600;
}
.strip__item--all { width: min(60vw, 260px); }
.strip__all {
  display: flex; flex-direction: column; justify-content: center; gap: var(--space-3);
  height: 100%; min-height: 200px; padding: var(--space-5);
  border: 1px dashed rgba(255,255,255,.32);
  border-radius: var(--r-md);
  color: #fff; text-decoration: none; font-weight: 600;
  transition: background-color var(--dur) var(--ease-out);
}
.strip__all:hover { background: rgba(255,255,255,.08); color: #fff; }
.strip__all .icon { color: var(--a-300); }

.gallery-grid { display: grid; gap: var(--space-4); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-grid__link {
  position: relative; display: block;
  aspect-ratio: 4 / 3; overflow: hidden;
  border-radius: var(--r-md);
  background: var(--n-100);
}
.gallery-grid__link img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.gallery-grid__link:hover img { transform: scale(1.06); }
.gallery-grid__cap {
  position: absolute; inset: auto 0 0 0;
  display: flex; align-items: center; gap: var(--space-2);
  padding: var(--space-5) var(--space-3) var(--space-3);
  background: linear-gradient(to top, rgba(6,12,22,.90), transparent);
  color: #fff; font-size: var(--fs-xs); font-weight: 600;
}
.gallery-grid__cap .icon { width: 16px; height: 16px; }
.gallery-section__head { display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: space-between; align-items: flex-start; }

.filter-bar { position: sticky; top: var(--bar-h); z-index: 40; background: var(--color-bg); border-bottom: 1px solid var(--color-border); padding-block: var(--space-3); }
.filter-bar__list { display: flex; gap: var(--space-2); overflow-x: auto; padding-bottom: 4px; }
.filter-bar__list li { flex: none; }

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  padding: var(--space-5);
}
.lightbox[hidden] { display: none; }
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(4,9,18,.92); }
.lightbox__figure { position: relative; margin: 0; max-width: min(1100px, 92vw); }
.lightbox__img { display: block; width: 100%; height: auto; max-height: 78vh; object-fit: contain; border-radius: var(--r-md); }
.lightbox__cap { margin: var(--space-3) 0 0; color: #fff; text-align: center; font-size: var(--fs-sm); }
.lightbox__btn {
  position: absolute; z-index: 2;
  display: grid; place-items: center;
  width: 52px; height: 52px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%; color: #fff; cursor: pointer;
}
.lightbox__btn:hover { background: rgba(255,255,255,.24); }
.lightbox__btn--close { top: var(--space-4); right: var(--space-4); }
.lightbox__btn--prev { left: var(--space-3); top: 50%; transform: translateY(-50%); }
.lightbox__btn--next { right: var(--space-3); top: 50%; transform: translateY(-50%); }
.lightbox__count { position: absolute; bottom: var(--space-4); left: 50%; transform: translateX(-50%); margin: 0; color: rgba(255,255,255,.75); font-size: var(--fs-sm); }

/* -----------------------------------------------------------
   LINK GRID
   ----------------------------------------------------------- */
.link-grid { display: grid; gap: var(--space-3); }
@media (min-width: 768px)  { .link-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .link-grid { grid-template-columns: repeat(3, 1fr); } }
.link-card {
  display: flex; align-items: center; gap: var(--space-3);
  height: 100%; padding: var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  text-decoration: none; color: var(--color-text);
  transition: border-color var(--dur) var(--ease-out), transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.link-card:hover { border-color: var(--color-accent); transform: translateY(-3px); box-shadow: var(--shadow-md); color: var(--color-text); }
.link-card__icon { display: grid; place-items: center; flex: none; width: 44px; height: 44px; border-radius: var(--r-sm); background: var(--color-accent-soft); color: var(--color-accent); }
.link-card__text { display: flex; flex-direction: column; line-height: 1.3; }
.link-card__text strong { font-family: var(--font-heading); font-size: var(--fs-sm); }
.link-card__text small { color: var(--color-muted); font-size: var(--fs-xs); }
.link-card__arrow { margin-left: auto; color: var(--color-muted); transition: transform var(--dur) var(--ease-out); }
.link-card:hover .link-card__arrow { transform: translateX(4px); color: var(--color-accent); }
.link-card--hub { background: var(--a-900); border-color: transparent; color: #fff; }
.link-card--hub:hover { color: #fff; }
.link-card--hub .link-card__text strong { color: #fff; }
.link-card--hub .link-card__text small { color: var(--a-200); }
.link-card--hub .link-card__icon { background: rgba(255,255,255,.14); color: #fff; }
.link-card--hub .link-card__arrow { color: #fff; }

/* -----------------------------------------------------------
   COMPARE SLIDER
   ----------------------------------------------------------- */
.compare { position: relative; --pos: 50%; }
.compare__frame {
  position: relative; aspect-ratio: 4 / 3;
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--n-200);
}
.compare__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.compare__before { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.compare__handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; background: #fff; transform: translateX(-1px); }
.compare__handle span {
  position: absolute; top: 50%; left: 50%;
  display: grid; place-items: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: #fff; color: var(--n-900);
  box-shadow: var(--shadow-md);
  transform: translate(-50%, -50%);
}
.compare__range {
  position: absolute; inset: 0; z-index: 3;
  width: 100%; height: 100%; margin: 0;
  opacity: 0; cursor: ew-resize;
  -webkit-appearance: none; appearance: none; background: transparent;
}
.compare__range:focus-visible ~ .compare__frame .compare__handle span { outline: 3px solid var(--color-focus); outline-offset: 3px; }
.compare__label {
  position: absolute; bottom: var(--space-4); z-index: 2;
  padding: 6px var(--space-3);
  background: rgba(6,12,22,.80);
  border-radius: var(--r-pill);
  color: #fff; font-size: var(--fs-xs); font-weight: 600; letter-spacing: .04em;
}
.compare__label--before { left: var(--space-4); }
.compare__label--after { right: var(--space-4); }

/* -----------------------------------------------------------
   SEO BLOCK
   ----------------------------------------------------------- */
.seo-block__title { max-width: 24ch; }
.seo-block__cols { display: grid; gap: var(--space-5); margin-top: var(--space-5); }
@media (min-width: 1024px) { .seo-block__cols { grid-template-columns: 1.1fr .9fr; gap: var(--space-8); } }
.seo-block__intro { font-size: var(--fs-lg); color: var(--color-text); }
.seo-block__sub { font-size: var(--fs-lg); }
.seo-block__more p { color: var(--color-muted); }

/* -----------------------------------------------------------
   CTA
   ----------------------------------------------------------- */
.cta { padding-block: var(--space-8); }
.cta--inline { padding-block: var(--space-6); }
.cta__box {
  position: relative; overflow: hidden;
  display: grid; gap: var(--space-5);
  padding: var(--space-6);
  background: linear-gradient(135deg, var(--a-800), var(--n-950) 62%);
  border-radius: var(--r-xl);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
@media (min-width: 900px) {
  .cta__box { grid-template-columns: 1.25fr .75fr; align-items: center; padding: var(--space-8); }
}
.cta__lines {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(to right, rgba(255,255,255,.10) 0 1px, transparent 1px 28px);
  mask-image: linear-gradient(to left, #000, transparent 62%);
  -webkit-mask-image: linear-gradient(to left, #000, transparent 62%);
  pointer-events: none;
}
.cta__copy { position: relative; }
.cta__title { color: #fff; font-size: var(--fs-2xl); margin-bottom: var(--space-3); }
.cta__text { margin: 0; color: rgba(255,255,255,.88); }
.cta__actions { position: relative; display: flex; flex-wrap: wrap; gap: var(--space-3); }
@media (min-width: 900px) { .cta__actions { justify-content: flex-end; } }

/* -----------------------------------------------------------
   BREADCRUMBS
   ----------------------------------------------------------- */
.breadcrumbs { margin-bottom: var(--space-5); font-size: var(--fs-sm); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2); }
.breadcrumbs li { display: flex; align-items: center; gap: var(--space-2); color: rgba(255,255,255,.70); }
.breadcrumbs li + li::before { content: "/"; color: rgba(255,255,255,.35); }
.breadcrumbs a { color: rgba(255,255,255,.82); text-decoration: none; }
.breadcrumbs a:hover { color: #fff; text-decoration: underline; }
.breadcrumbs [aria-current="page"] { color: #fff; font-weight: 600; }

/* -----------------------------------------------------------
   TESTIMONIALS
   ----------------------------------------------------------- */
.section--reviews {
  background:
    radial-gradient(60% 50% at 0% 0%, var(--a-50), transparent 70%),
    radial-gradient(50% 45% at 100% 100%, #FFF3EA, transparent 70%),
    var(--color-surface);
}
.testimonials {
  display: grid; grid-auto-flow: column; grid-auto-columns: min(86%, 340px); gap: var(--space-4);
  margin-inline: calc(var(--gutter) * -1); padding: var(--space-2) var(--gutter) var(--space-4);
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter);
  scrollbar-width: thin; overscroll-behavior-x: contain;
}
@media (min-width: 768px) {
  .testimonials {
    grid-auto-flow: row; grid-auto-columns: auto; grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-5); margin-inline: 0; padding: 0; overflow: visible;
  }
}
@media (min-width: 1024px) { .testimonials { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.testimonial {
  position: relative; display: flex; flex-direction: column; margin: 0; scroll-snap-align: start;
  padding: var(--space-6) var(--space-5) var(--space-5);
  background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.testimonial::before {
  content: ""; position: absolute; inset: 0 var(--space-5) auto; height: 3px; border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--a-600), var(--b-500));
}
@media (hover: hover) {
  .testimonials > .testimonial:hover,
  .js .testimonials > .testimonial.is-in:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--a-100); }
}
.testimonial__mark {
  display: block; height: 2.25rem; margin-bottom: var(--space-2);
  font: 700 3.75rem/1 Georgia, "Times New Roman", serif; color: var(--a-600); opacity: .22;
}
.testimonial__quote { flex: 1; margin: 0 0 var(--space-5); }
.testimonial__quote p { margin: 0; color: var(--color-text); line-height: 1.65; }
.testimonial__person {
  display: flex; align-items: center; gap: var(--space-3);
  padding-top: var(--space-4); border-top: 1px solid var(--color-border);
}
.testimonial__avatar {
  flex: none; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--a-600), var(--a-700)); color: #fff;
  font-weight: 700; font-size: .9375rem; letter-spacing: .02em;
}
.testimonial__who { display: flex; flex-direction: column; min-width: 0; }
.testimonial__who strong { color: var(--color-text); }
.testimonial__who span { font-size: var(--fs-sm); color: var(--color-muted); }
@media (prefers-reduced-motion: reduce) { .testimonial { transition: none; } .js .testimonials > .testimonial.is-in:hover { transform: none; } }

/* -----------------------------------------------------------
   FORMS
   ----------------------------------------------------------- */
.contact-grid { display: grid; gap: var(--space-6); }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1.05fr .95fr; gap: var(--space-8); align-items: start; } }

.form-card {
  padding: var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}
@media (min-width: 768px) { .form-card { padding: var(--space-6); } }
.form-card__title { font-size: var(--fs-2xl); }
.form-card__sub { color: var(--color-muted); margin-bottom: var(--space-5); }

.quote-form { display: grid; gap: var(--space-5); }
.field { display: grid; gap: var(--space-2); }
.field--group { border: 0; padding: 0; margin: 0; }
.field__label { font-family: var(--font-heading); font-weight: 600; font-size: var(--fs-sm); color: var(--color-text); padding: 0; }
.field__input {
  width: 100%; min-height: 52px;
  padding: var(--space-3) var(--space-4);
  background: var(--color-bg);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: var(--fs-base); color: var(--color-text);
  transition: border-color var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.field__input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--a-100);
}
.field__input[aria-invalid="true"] { border-color: var(--b-600); }
.field__prefix-wrap, .field__select-wrap { position: relative; display: flex; align-items: center; }
.field__prefix {
  position: absolute; left: var(--space-4);
  color: var(--color-muted); font-weight: 600; pointer-events: none;
}
.field__input--prefixed { padding-left: 56px; }
.field__select { appearance: none; padding-right: 48px; }
.field__chev { position: absolute; right: var(--space-4); color: var(--color-muted); pointer-events: none; }
.field__error { margin: 0; color: var(--b-700); font-size: var(--fs-sm); font-weight: 600; }
.field__error[hidden] { display: none; }

.checks { display: grid; gap: var(--space-2); }
@media (min-width: 560px) { .checks { grid-template-columns: repeat(2, 1fr); } }
.check {
  position: relative;
  display: flex; align-items: center; gap: var(--space-3);
  min-height: 52px; padding: var(--space-2) var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: border-color var(--dur) var(--ease-out), background-color var(--dur) var(--ease-out);
}
.check:hover { border-color: var(--color-border-strong); }
.check input { position: absolute; opacity: 0; width: 0; height: 0; }
.check__box {
  display: grid; place-items: center; flex: none;
  width: 24px; height: 24px;
  border: 2px solid var(--color-border-strong);
  border-radius: 6px;
  color: #fff;
  transition: background-color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.check__box .icon { width: 16px; height: 16px; opacity: 0; transition: opacity var(--dur-fast) var(--ease-out); }
.check input:checked ~ .check__box { background: var(--color-accent); border-color: var(--color-accent); }
.check input:checked ~ .check__box .icon { opacity: 1; }
.check input:focus-visible ~ .check__box { outline: 3px solid var(--color-focus); outline-offset: 2px; }
.check input:checked ~ .check__label { color: var(--color-text); }
.check__label { font-size: var(--fs-sm); color: var(--color-muted); }
.check--consent { border: 0; padding: 0; min-height: 44px; }

.form-alert {
  display: flex; gap: var(--space-3); align-items: flex-start;
  padding: var(--space-4);
  background: var(--b-50);
  border: 1px solid var(--b-200);
  border-radius: var(--r-sm);
  color: var(--b-800);
}
.form-alert p { margin: 0; font-size: var(--fs-sm); }
.form-alert .icon { width: 20px; height: 20px; color: var(--b-700); flex: none; }
.form-note { margin: 0; font-size: var(--fs-sm); color: var(--color-muted); text-align: center; }

.form-success { text-align: center; }
.form-success__icon { display: inline-grid; place-items: center; width: 64px; height: 64px; margin-bottom: var(--space-4); border-radius: 50%; background: #E7F8EF; color: var(--wa-700); }
.form-success__icon .icon { width: 32px; height: 32px; }

/* Honeypot — hidden from people, reachable by bots */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.contact-cards { display: grid; gap: var(--space-3); }
@media (min-width: 560px) { .contact-cards { grid-template-columns: repeat(2, 1fr); } }
.contact-card {
  display: flex; align-items: center; gap: var(--space-3);
  height: 100%; padding: var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  text-decoration: none; color: var(--color-text);
  transition: border-color var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.contact-card:hover { border-color: var(--color-accent); transform: translateY(-3px); color: var(--color-text); }
.contact-card span { display: flex; flex-direction: column; min-width: 0; }
.contact-card small { color: var(--color-muted); font-size: var(--fs-xs); }
.contact-card strong { font-family: var(--font-heading); font-size: var(--fs-sm); overflow-wrap: anywhere; }
.contact-card__email { font-size: var(--fs-xs); }
.contact-card__icon { display: grid; place-items: center; flex: none; width: 46px; height: 46px; border-radius: var(--r-sm); background: var(--color-accent-soft); color: var(--color-accent); }
.contact-card--wa .contact-card__icon { background: #E7F8EF; color: var(--wa-700); }

.map-card { margin-top: var(--space-4); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--color-border); line-height: 0; }
.map-card iframe { width: 100%; height: 320px; border: 0; }
.panel--compact { margin-top: var(--space-4); }

/* -----------------------------------------------------------
   MOTION — everything here is opt-in under prefers-reduced-motion
   ----------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .js [data-reveal] {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
    transition: opacity var(--dur-reveal) var(--ease-out), transform var(--dur-reveal) var(--ease-out);
    transition-delay: calc(var(--i, 0) * var(--stagger));
  }
  /* No horizontal start offsets: an element parked 26px past the right edge
     widens the phone's layout viewport and lets the whole page pan sideways
     (and drift vertically with it) until it reveals. Side reveals rise instead. */
  .js [data-reveal="left"],
  .js [data-reveal="right"] { transform: translate3d(0, 18px, 0); }
  .js [data-reveal="scale"] { transform: scale(.965); }
  .js [data-reveal].is-in   { opacity: 1; transform: none; }


  .hero__slide.is-active img { animation: ken-burns 9s var(--ease-out) forwards; }
  @keyframes ken-burns { from { transform: scale(1.02); } to { transform: scale(1.10); } }

  .floating-action { animation: fab-in 500ms var(--ease-out) both; }
  .floating-action--call { animation-delay: 120ms; }
  @keyframes fab-in { from { opacity: 0; transform: scale(.6); } to { opacity: 1; transform: scale(1); } }
}

/* Reduced motion: no slide zoom, no crossfade, no reveals —
   the manual slideshow controls still work. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__slide { transition: none; }
  .btn:hover, .chip:hover, .svc-card:hover, .link-card:hover, .contact-card:hover, .floating-action:hover { transform: none; }
  .feature-card:hover { transform: none; }
}

/* -----------------------------------------------------------
   HOME — hero rail, feature cards, quick enquiry, about band,
   stats and the invisible-grill type grid
   ----------------------------------------------------------- */

/* Mobile-first: the whole hero fits inside a phone viewport. The tag line
   sits at the very start of the section, the slide title and description in
   the middle, and the controls at the edges. */
.hero--home {
  min-height: calc(100svh - var(--bar-h));
  padding-block: var(--space-5) var(--space-8);
}
@media (min-width: 1024px) {
  .hero--home {
    min-height: min(calc(100svh - var(--bar-h)), 940px);
    padding-block: var(--space-6) var(--space-9);
  }
}
/* Stretch (not centre) so the inner grid spans the full hero height: the tag
   line row sits at the very start, the slide text centres in the rest. */
.hero--home { align-items: stretch; }
.hero--home .hero__inner {
  display: grid;
  grid-template-rows: auto 1fr;
  width: 100%;
  text-align: center;
}
.hero--home .hero__scrim {
  background:
    linear-gradient(to bottom, rgba(6,12,22,.80) 0%, rgba(6,12,22,.56) 40%, rgba(6,12,22,.60) 64%, rgba(6,12,22,.88) 100%),
    radial-gradient(70% 58% at 50% 52%, rgba(6,12,22,.54), rgba(6,12,22,.18) 78%);
}

/* Tag line at the very start of the section */
.hero__topline {
  display: flex; flex-direction: column; align-items: center; gap: var(--space-2);
}
.hero__badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  margin: 0;
  padding: 9px var(--space-4);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.26);
  border-radius: var(--r-pill);
  backdrop-filter: blur(10px);
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1.25;
  color: #fff;
}
.hero__badge::before {
  content: ""; flex: none;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--b-400);
  box-shadow: 0 0 0 4px rgba(251,133,60,.24);
}
.hero__cities {
  max-width: 44rem; margin: 0;
  font-size: var(--fs-xs);
  letter-spacing: .06em;
  color: rgba(255,255,255,.84);
}
@media (min-width: 768px) {
  .hero__badge { font-size: var(--fs-base); padding: 11px var(--space-5); }
  .hero__cities { font-size: var(--fs-sm); }
}

/* Slide title + description, centred in the middle of the section */
.hero__center {
  display: grid; align-content: center;
  max-width: 56rem; margin-inline: auto;
  padding-block: var(--space-5);
}
.hero--home .hero__captions { margin: 0 auto; width: 100%; }
.hero--home .slide-caption__title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 1.15rem + 4.2vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: var(--space-4);
  color: #fff;
  text-wrap: balance;
}
.hero--home .slide-caption__blurb {
  max-width: 44rem; margin: 0 auto;
  font-size: clamp(.98rem, .9rem + .5vw, 1.19rem);
  line-height: 1.6;
  color: rgba(255,255,255,.93);
}

/* Carousel controls: arrows at the edges, dots along the bottom */
.hero__nav { position: absolute; inset: 0; pointer-events: none; }
.hero__nav[hidden] { display: none; }
.hero__nav > * { pointer-events: auto; }
.hero__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  display: grid; place-items: center;
  width: 48px; height: 48px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%; color: #fff; cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background-color var(--dur) var(--ease-out);
}
.hero__arrow:hover { background: rgba(255,255,255,.26); }
.hero__arrow--prev { left: var(--space-3); }
.hero__arrow--next { right: var(--space-3); }
@media (min-width: 1024px) {
  .hero__arrow { width: 56px; height: 56px; }
  .hero__arrow--prev { left: var(--space-6); }
  .hero__arrow--next { right: var(--space-6); }
}
.hero__dots-bar {
  position: absolute; left: 50%; bottom: var(--space-6);
  transform: translateX(-50%);
  display: flex; align-items: center; gap: var(--space-3);
}
.hero--home .hero__dot { width: 34px; }
.hero--home .hero__ctrl--toggle { margin-left: 0; width: 40px; height: 40px; }

/* Three feature cards under the hero */
.section--features { padding-block: var(--space-7); }
.feature-cards { display: grid; gap: var(--space-5); }
@media (min-width: 768px) { .feature-cards { grid-template-columns: repeat(3, 1fr); } }
.feature-card {
  display: flex; flex-direction: column;
  padding: var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--a-200); }
.feature-card__icon {
  display: grid; place-items: center;
  width: 54px; height: 54px; margin-bottom: var(--space-4);
  border-radius: var(--r-md);
  background: var(--color-accent-soft); color: var(--color-accent);
}
.feature-card__icon .icon { width: 26px; height: 26px; }
.feature-card:nth-child(2) .feature-card__icon { background: var(--b-50); color: var(--b-700); }
.feature-card__title { font-size: var(--fs-lg); margin-bottom: var(--space-2); }
.feature-card__text { color: var(--color-muted); font-size: var(--fs-sm); margin-bottom: var(--space-4); }
.feature-card__link {
  display: inline-flex; align-items: center; gap: var(--space-2);
  margin-top: auto; min-height: 44px;
  font-family: var(--font-heading); font-weight: 600; font-size: var(--fs-sm);
  color: var(--color-accent); text-decoration: none;
}
.feature-card__link .icon { width: 18px; height: 18px; transition: transform var(--dur) var(--ease-out); }
.feature-card__link:hover .icon { transform: translateX(4px); }

/* About band */
.about-band__label {
  margin: var(--space-2) 0 var(--space-1);
  font-family: var(--font-heading); font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--b-700);
}
.about-band__sub { font-size: var(--fs-xl); margin-bottom: var(--space-4); }
.about-band__cta { margin-top: var(--space-6); }
.about-band__cta .icon { width: 18px; height: 18px; }

.about-collage { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
.about-collage__item { margin: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.about-collage__item img { display: block; width: 100%; height: 100%; object-fit: cover; }
.about-collage__item--1 { grid-column: span 2; aspect-ratio: 16 / 9; }
.about-collage__item--2, .about-collage__item--3 { aspect-ratio: 1 / 1; }

/* Stats band — derived figures only, never invented counts */
.band--stats { background: var(--color-dark); color: var(--color-on-dark); padding-block: var(--space-7); }
.stats-band { display: grid; gap: var(--space-5); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .stats-band { grid-template-columns: repeat(4, 1fr); } }
.stat {
  display: grid; justify-items: start; gap: 2px;
  padding-left: var(--space-4);
  border-left: 2px solid rgba(255,255,255,.20);
}
.stat__icon { color: var(--a-300); margin-bottom: var(--space-2); }
.stat__value {
  font-family: var(--font-heading); font-size: var(--fs-3xl); font-weight: 700;
  line-height: 1; color: #fff;
}
.stat__label { font-weight: 600; color: #fff; font-size: var(--fs-sm); }
.stat__note { color: var(--color-on-dark-muted); font-size: var(--fs-xs); }

