/* ==========================================================================
   North West Landscapes — Design System
   Palette derived from the logo: sky blue #38b6ff + charcoal #323332 + white.
   Mobile-first. Built for broad, modern Chrome/Edge/Safari/Firefox support.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand */
  --blue-050: #eaf6ff;
  --blue-100: #cdeaff;
  --blue-300: #7fccff;
  --blue-400: #56bdff;
  --blue-500: #38b6ff;   /* logo blue — primary */
  --blue-600: #1f9ceb;
  --blue-700: #1180c6;
  --blue-800: #0d6aa6;

  --ink-900: #1c1e1c;
  --ink-800: #232524;    /* near-charcoal from logo #323332 */
  --ink-700: #323332;    /* exact logo charcoal */
  --ink-600: #4a4d4a;

  --stone-050: #f7f8f7;
  --stone-100: #eef0ee;
  --stone-200: #e3e6e3;
  --stone-300: #d3d7d3;
  --stone-400: #aab0aa;
  --stone-500: #7c837c;
  --stone-600: #5c625c;

  --green-600: #3f7d43;  /* subtle nature accent, used sparingly */
  --green-100: #e4f2e3;

  --white: #ffffff;

  /* Semantic */
  --bg: var(--white);
  --bg-tint: var(--stone-050);
  --surface: var(--white);
  --text: #26302f;
  --text-soft: #56605d;
  --heading: var(--ink-800);
  --primary: var(--blue-500);
  --primary-ink: #04324d;
  --line: rgba(35, 37, 36, 0.10);

  /* Type */
  --font-display: "Sora", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --step--1: clamp(0.82rem, 0.79rem + 0.12vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  --step-1:  clamp(1.2rem, 1.12rem + 0.4vw, 1.45rem);
  --step-2:  clamp(1.45rem, 1.32rem + 0.66vw, 1.9rem);
  --step-3:  clamp(1.8rem, 1.55rem + 1.2vw, 2.6rem);
  --step-4:  clamp(2.2rem, 1.8rem + 2vw, 3.4rem);
  --step-5:  clamp(2.6rem, 2rem + 3vw, 4.4rem);

  /* Space */
  --sp-1: 0.5rem;
  --sp-2: 0.75rem;
  --sp-3: 1rem;
  --sp-4: 1.5rem;
  --sp-5: 2rem;
  --sp-6: 3rem;
  --sp-7: 4.5rem;
  --sp-8: 6rem;

  /* Radius & shadow */
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 22px;
  --r-xl: 30px;
  --pill: 999px;

  --shadow-sm: 0 1px 2px rgba(20, 30, 40, 0.06), 0 2px 6px rgba(20, 30, 40, 0.05);
  --shadow: 0 6px 18px rgba(20, 40, 60, 0.08), 0 2px 6px rgba(20, 40, 60, 0.06);
  --shadow-lg: 0 24px 60px rgba(15, 40, 65, 0.16), 0 8px 20px rgba(15, 40, 65, 0.08);
  --shadow-blue: 0 12px 26px rgba(31, 156, 235, 0.28);

  --container: 1200px;
  --header-h: 74px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.62;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
img { border-style: none; }

a { color: var(--blue-700); text-decoration: none; }
a:hover { color: var(--blue-800); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--heading);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
p { text-wrap: pretty; }

ul { padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--ink-800); color: #fff; padding: 10px 16px;
  border-radius: 8px; z-index: 200; transition: top 0.2s;
}
.skip-link:focus { top: 12px; color: #fff; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2rem);
}
.container--narrow { max-width: 820px; }

.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--tight { padding-block: clamp(2.2rem, 5vw, 3.5rem); }
.section--tint { background: var(--bg-tint); }
.section--stone { background: var(--stone-100); }
.section--dark {
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(56,182,255,0.16), transparent 60%),
    linear-gradient(180deg, var(--ink-800), var(--ink-900));
  color: #dfe4e2;
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }

.section__head { max-width: 720px; margin-bottom: clamp(1.6rem, 4vw, 2.6rem); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__title { font-size: var(--step-3); }
.section__intro { margin-top: var(--sp-3); color: var(--text-soft); font-size: var(--step-1); }
.section--dark .section__intro { color: #b7c0bd; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700; font-size: var(--step--1);
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--blue-700);
  margin-bottom: 0.85rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-300));
}
.section--dark .eyebrow { color: var(--blue-300); }
.eyebrow--center { justify-content: center; }

.lead { font-size: var(--step-1); color: var(--text-soft); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--blue-500);
  --btn-fg: #06263b;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1rem; line-height: 1;
  padding: 0.95rem 1.5rem;
  min-height: 52px;
  border: 1.5px solid transparent;
  border-radius: var(--pill);
  background: var(--btn-bg); color: var(--btn-fg);
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }
.btn svg { width: 20px; height: 20px; flex: none; }

.btn--primary { --btn-bg: var(--blue-500); --btn-fg: #06293f; box-shadow: var(--shadow-blue); }
.btn--primary:hover { --btn-bg: var(--blue-400); box-shadow: 0 16px 32px rgba(31,156,235,0.34); }

.btn--dark { --btn-bg: var(--ink-800); --btn-fg: #fff; box-shadow: var(--shadow-sm); }
.btn--dark:hover { --btn-bg: var(--ink-700); color: #fff; }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--ink-800);
  border-color: var(--stone-300);
}
.btn--ghost:hover { --btn-bg: var(--white); border-color: var(--blue-400); color: var(--ink-800); box-shadow: var(--shadow); }

.btn--on-dark { --btn-bg: rgba(255,255,255,0.08); --btn-fg: #fff; border-color: rgba(255,255,255,0.28); }
.btn--on-dark:hover { --btn-bg: rgba(255,255,255,0.16); color: #fff; }

.btn--white { --btn-bg:#fff; --btn-fg: var(--ink-800); }
.btn--white:hover { color: var(--blue-800); }

.btn--lg { min-height: 58px; padding: 1.05rem 1.9rem; font-size: 1.06rem; }
.btn--block { display: flex; width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* ---------- Chips / badges / pills ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: var(--step--1); font-weight: 600;
  padding: 0.35rem 0.7rem; border-radius: var(--pill);
  background: var(--blue-050); color: var(--blue-800);
}
.badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--step--1);
  padding: 0.5rem 0.9rem; border-radius: var(--pill);
  background: #fff; color: var(--ink-800);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.badge svg { width: 18px; height: 18px; color: var(--blue-600); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 6px 22px rgba(20,40,60,0.08);
  border-bottom-color: var(--line);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header { background: #fff; }
}
.header__inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--ink-800); }
.brand:hover { color: var(--ink-800); }
.brand__logo { width: 44px; height: 44px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display); font-weight: 800; font-size: 1.06rem;
  letter-spacing: -0.02em; color: var(--ink-800);
}
.brand__tag { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-700); font-weight: 600; margin-top: 3px; }

.nav { display: none; }
.header__actions { display: flex; align-items: center; gap: 0.6rem; }
.header__call {
  display: none; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 700; color: var(--ink-800);
  padding: 0.5rem 0.6rem; border-radius: var(--pill);
}
.header__call svg { width: 18px; height: 18px; color: var(--blue-600); }
.header__cta { display: none; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 12px;
  background: #fff; cursor: pointer; color: var(--ink-800);
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
body.nav-open .nav-toggle .icon-open { display: none; }
body.nav-open .nav-toggle .icon-close { display: block; }

/* Mobile slide-down nav */
.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
  background: #fff;
  transform: translateY(-8px);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s;
  overflow-y: auto;
  padding: 1.4rem clamp(1.1rem, 4vw, 2rem) 2.5rem;
  display: flex; flex-direction: column;
}
body.nav-open .mobile-nav { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
body.nav-open { overflow: hidden; }
.mobile-nav__list { display: flex; flex-direction: column; gap: 0.15rem; }
.mobile-nav__link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0.4rem; font-family: var(--font-display); font-weight: 700; font-size: 1.25rem;
  color: var(--ink-800); border-bottom: 1px solid var(--stone-100);
}
.mobile-nav__link[aria-current="page"] { color: var(--blue-700); }
.mobile-nav__link svg { width: 20px; height: 20px; color: var(--stone-400); }
.mobile-nav__cta { margin-top: 1.5rem; display: grid; gap: 0.7rem; }

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; overflow: hidden; background: var(--ink-900); }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(20,25,24,0.36) 0%, rgba(20,25,24,0.28) 30%, rgba(20,25,24,0.72) 100%),
    linear-gradient(90deg, rgba(15,20,20,0.72) 0%, rgba(15,20,20,0.28) 55%, rgba(15,20,20,0.12) 100%);
}
.hero__inner {
  min-height: min(88svh, 780px);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: calc(var(--header-h) - 20px);
  padding-bottom: clamp(2rem, 6vw, 3.5rem);
  color: #fff;
}
.hero__content { max-width: 760px; }
.hero .eyebrow { color: #bfe6ff; }
.hero .eyebrow::before { background: var(--blue-400); }
.hero__title { color: #fff; font-size: var(--step-5); font-weight: 800; letter-spacing: -0.025em; }
.hero__title .u-blue { color: var(--blue-400); }
.hero__lead {
  margin-top: 1.1rem; font-size: var(--step-1); max-width: 40ch;
  color: #e7ecea;
}
.hero__actions { margin-top: 1.7rem; }
.hero__badges {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.2rem; margin-top: 1.8rem;
  padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,0.16);
}
.hero__badge { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; font-size: 0.92rem; color: #eef3f1; }
.hero__badge svg { width: 20px; height: 20px; color: var(--blue-400); flex: none; }

/* ---------- Trust strip ---------- */
.trustbar { background: var(--ink-800); color: #fff; }
.trustbar__inner {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: rgba(255,255,255,0.08);
}
.trust__item {
  background: var(--ink-800); padding: 1.1rem 1rem;
  display: flex; align-items: center; gap: 0.7rem; justify-content: center; text-align: center;
}
.trust__item svg { width: 26px; height: 26px; color: var(--blue-400); flex: none; }
.trust__label { font-family: var(--font-display); font-weight: 700; font-size: 0.92rem; line-height: 1.2; }
.trust__label span { display: block; font-family: var(--font-body); font-weight: 400; font-size: 0.76rem; color: #a9b3b0; }

/* ---------- Cards grid (services) ---------- */
.grid { display: grid; gap: clamp(1rem, 2.5vw, 1.5rem); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr 1fr; }

.service-card {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue-100); }
.service-card__media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--stone-100); }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card__media img { transform: scale(1.05); }
.service-card__body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.service-card__icon {
  position: absolute; top: 0.9rem; left: 0.9rem; z-index: 2;
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(6px);
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.service-card__icon svg { width: 26px; height: 26px; color: var(--blue-700); }
.service-card__title { font-size: var(--step-1); }
.service-card__title a::after { content: ""; position: absolute; inset: 0; }
.service-card__text { color: var(--text-soft); font-size: 0.96rem; }
.service-card__more {
  margin-top: auto; padding-top: 0.6rem;
  font-family: var(--font-display); font-weight: 700; font-size: 0.92rem; color: var(--blue-700);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.service-card__more svg { width: 18px; height: 18px; transition: transform 0.2s ease; }
.service-card:hover .service-card__more svg { transform: translateX(3px); }

/* ---------- Feature list / why ---------- */
.feature { display: flex; gap: 0.9rem; align-items: flex-start; }
.feature__icon {
  flex: none; width: 46px; height: 46px; border-radius: 12px;
  background: var(--blue-050); color: var(--blue-700);
  display: grid; place-items: center;
}
.feature__icon svg { width: 26px; height: 26px; }
.feature__title { font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; color: var(--heading); margin-bottom: 0.2rem; }
.feature__text { color: var(--text-soft); font-size: 0.96rem; }
.section--dark .feature__icon { background: rgba(56,182,255,0.14); color: var(--blue-300); }
.section--dark .feature__text { color: #aeb8b5; }

/* ---------- Split media/content ---------- */
.split { display: grid; gap: clamp(1.6rem, 4vw, 3rem); align-items: center; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; }
.split__media--stack { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.split__media--stack img { aspect-ratio: 3/4; }
.split__media--stack img:first-child { margin-top: 1.6rem; }
.floating-stat {
  position: absolute; bottom: -18px; right: -8px;
  background: #fff; border-radius: var(--r); box-shadow: var(--shadow-lg);
  padding: 0.9rem 1.1rem; display: flex; align-items: center; gap: 0.7rem;
  border: 1px solid var(--line);
}
.floating-stat__num { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: var(--blue-700); line-height: 1; }
.floating-stat__label { font-size: 0.78rem; color: var(--text-soft); line-height: 1.2; }

.tick-list { display: grid; gap: 0.7rem; margin-top: 1.2rem; }
.tick-list li { display: flex; gap: 0.6rem; align-items: flex-start; }
.tick-list svg { width: 22px; height: 22px; color: var(--green-600); flex: none; margin-top: 1px; }
.section--dark .tick-list svg { color: var(--blue-300); }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1rem; }
.stat { text-align: center; }
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 6vw, 3rem); color: #fff; line-height: 1; letter-spacing: -0.02em; }
.stat__num .u-blue { color: var(--blue-400); }
.stat__label { margin-top: 0.4rem; color: #aeb8b5; font-size: 0.9rem; }

/* ---------- Process / steps ---------- */
.process { counter-reset: step; display: grid; gap: 1.1rem; }
.step {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.5rem 1.4rem 1.4rem;
  box-shadow: var(--shadow-sm);
}
.step__num {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.2rem;
  color: #fff; background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  margin-bottom: 0.9rem; box-shadow: var(--shadow-blue);
}
.step__title { font-size: 1.12rem; margin-bottom: 0.35rem; }
.step__text { color: var(--text-soft); font-size: 0.95rem; }

/* ---------- Work / gallery preview ---------- */
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
.work-card {
  position: relative; overflow: hidden; border-radius: var(--r);
  background: var(--stone-100); box-shadow: var(--shadow-sm);
  aspect-ratio: 1 / 1;
}
.work-card--tall { aspect-ratio: 1 / 1; }
.work-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.work-card:hover img { transform: scale(1.06); }
.work-card__cap {
  position: absolute; inset: auto 0 0 0; padding: 1.4rem 0.9rem 0.8rem;
  background: linear-gradient(180deg, transparent, rgba(15,20,20,0.82));
  color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 0.86rem;
  opacity: 0; transform: translateY(8px); transition: opacity 0.25s ease, transform 0.25s ease;
}
.work-card:hover .work-card__cap, .work-card:focus-within .work-card__cap { opacity: 1; transform: translateY(0); }

/* ---------- Gallery page ---------- */
.filter { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.6rem; }
.filter__btn {
  font-family: var(--font-display); font-weight: 600; font-size: 0.9rem;
  padding: 0.55rem 1.05rem; border-radius: var(--pill);
  background: #fff; color: var(--ink-700); border: 1px solid var(--stone-300);
  cursor: pointer; transition: all 0.18s ease;
}
.filter__btn:hover { border-color: var(--blue-400); color: var(--blue-800); }
.filter__btn.is-active { background: var(--ink-800); color: #fff; border-color: var(--ink-800); }

.gallery-grid {
  columns: 2 160px; column-gap: 0.7rem;
}
.gallery-item {
  break-inside: avoid; margin-bottom: 0.7rem; width: 100%;
  border: 0; padding: 0; background: var(--stone-100); cursor: zoom-in;
  border-radius: var(--r); overflow: hidden; display: block; position: relative;
  box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: auto; transition: transform 0.5s ease, filter 0.3s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item__tag {
  position: absolute; top: 0.6rem; left: 0.6rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  background: rgba(255,255,255,0.92); color: var(--ink-800);
  padding: 0.25rem 0.55rem; border-radius: var(--pill);
  opacity: 0; transition: opacity 0.2s;
}
.gallery-item:hover .gallery-item__tag { opacity: 1; }
.gallery-item.is-hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(12,16,16,0.92);
  display: none; align-items: center; justify-content: center;
  padding: clamp(0.6rem, 3vw, 2rem);
}
.lightbox.is-open { display: flex; }
.lightbox__img { max-width: 100%; max-height: 86vh; border-radius: var(--r); box-shadow: var(--shadow-lg); object-fit: contain; background:#000; }
.lightbox__cap { position: absolute; bottom: max(0.8rem, env(safe-area-inset-bottom)); left: 0; right: 0; text-align: center; color: #e8edea; font-size: 0.92rem; padding-inline: 1rem; }
.lightbox__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  color: #fff; cursor: pointer; display: grid; place-items: center;
  transition: background 0.2s;
}
.lightbox__btn:hover { background: rgba(255,255,255,0.24); }
.lightbox__btn svg { width: 26px; height: 26px; }
.lightbox__prev { left: clamp(0.5rem, 2vw, 1.5rem); }
.lightbox__next { right: clamp(0.5rem, 2vw, 1.5rem); }
.lightbox__close { top: clamp(0.6rem, 2vw, 1.2rem); right: clamp(0.6rem, 2vw, 1.2rem); transform: none; width: 48px; height: 48px; }

/* ---------- Testimonials ---------- */
.quote-grid { display: grid; gap: 1.1rem; }
.quote-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.5rem 1.5rem 1.4rem; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 0.8rem;
}
.stars { display: inline-flex; gap: 2px; color: #f5a623; }
.stars svg { width: 18px; height: 18px; }
.quote-card__text { font-size: 1.02rem; color: var(--text); }
.quote-card__by { display: flex; align-items: center; gap: 0.7rem; margin-top: auto; }
.quote-card__avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
}
.quote-card__name { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--heading); }
.quote-card__meta { font-size: 0.82rem; color: var(--text-soft); }

/* ---------- Areas ---------- */
.area-pills { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.area-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 1rem; border-radius: var(--pill);
  background: #fff; border: 1px solid var(--stone-200); color: var(--ink-700);
  font-weight: 600; font-size: 0.92rem; box-shadow: var(--shadow-sm);
  transition: all 0.18s ease;
}
.area-pill svg { width: 15px; height: 15px; color: var(--blue-600); }
.area-pill:hover { border-color: var(--blue-400); color: var(--blue-800); transform: translateY(-2px); }
.section--dark .area-pill { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.14); color: #e6ebe9; }
.section--dark .area-pill:hover { background: rgba(56,182,255,0.16); color:#fff; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; isolation: isolate; overflow: hidden; }
.cta-band__media { position: absolute; inset: 0; z-index: -2; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, rgba(13,45,66,0.94), rgba(20,25,24,0.86) 60%, rgba(17,128,198,0.68));
}
.cta-band__inner { text-align: center; color: #fff; padding-block: clamp(3rem, 8vw, 5rem); }
.cta-band__title { color: #fff; font-size: var(--step-4); max-width: 18ch; margin-inline: auto; }
.cta-band__text { margin: 1rem auto 1.8rem; max-width: 52ch; color: #dbe4e2; font-size: var(--step-1); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }
.cta-phones { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 0.4rem 2rem; justify-content: center; }
.cta-phone { display: inline-flex; align-items: center; gap: 0.5rem; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.cta-phone:hover { color: var(--blue-300); }
.cta-phone svg { width: 20px; height: 20px; color: var(--blue-300); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0.7rem; max-width: 820px; }
.accordion {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.accordion > summary {
  list-style: none; cursor: pointer; padding: 1.15rem 1.3rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--heading);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.accordion > summary::-webkit-details-marker { display: none; }
.accordion > summary::after {
  content: ""; flex: none; width: 22px; height: 22px;
  background: var(--blue-050); border-radius: 50%; position: relative;
  transition: transform 0.25s ease, background 0.2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%231180c6' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.accordion[open] > summary::after { transform: rotate(135deg); }
.accordion__body { padding: 0 1.3rem 1.25rem; color: var(--text-soft); }
.accordion__body p + p { margin-top: 0.7rem; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { padding-top: calc(var(--header-h) * 0 + 1.2rem); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center; font-size: 0.85rem; color: var(--text-soft); }
.breadcrumb li { display: inline-flex; align-items: center; gap: 0.4rem; }
.breadcrumb li:not(:last-child)::after { content: "/"; color: var(--stone-400); }
.breadcrumb a { color: var(--text-soft); }
.breadcrumb a:hover { color: var(--blue-700); }
.breadcrumb [aria-current="page"] { color: var(--ink-800); font-weight: 600; }

/* ---------- Page hero (interior) ---------- */
.page-hero { position: relative; isolation: isolate; overflow: hidden; background: var(--ink-900); color: #fff; }
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__overlay { position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(20,25,24,0.55), rgba(20,25,24,0.78)); }
.page-hero__inner { padding-top: clamp(2rem, 5vw, 3rem); padding-bottom: clamp(2.2rem, 5vw, 3.4rem); }
.page-hero__title { color: #fff; font-size: var(--step-4); max-width: 22ch; }
.page-hero__lead { margin-top: 0.9rem; color: #dde4e2; font-size: var(--step-1); max-width: 56ch; }

/* Prose */
.prose { max-width: 72ch; }
.prose h2 { font-size: var(--step-2); margin-top: 2rem; }
.prose h3 { font-size: var(--step-1); margin-top: 1.5rem; }
.prose p { margin-top: 0.9rem; color: var(--text); }
.prose ul { margin-top: 0.9rem; display: grid; gap: 0.5rem; }
.prose ul li { position: relative; padding-left: 1.6rem; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 8px; height: 8px; border-radius: 50%; background: var(--blue-500); }
.prose a { text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 1.6rem; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: clamp(1.3rem, 4vw, 2rem); }
.form { display: grid; gap: 1rem; }
.field { display: grid; gap: 0.35rem; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; color: var(--heading); }
.field .req { color: var(--blue-700); }
.input, .textarea, .select {
  width: 100%; font: inherit; color: var(--text);
  padding: 0.85rem 1rem; border-radius: 12px;
  border: 1.5px solid var(--stone-300); background: var(--stone-050);
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
}
.input:focus, .textarea:focus, .select:focus {
  outline: none; border-color: var(--blue-500); background: #fff;
  box-shadow: 0 0 0 4px var(--blue-050);
}
.textarea { min-height: 130px; resize: vertical; }
.field--row { display: grid; gap: 1rem; }
.form__note { font-size: 0.82rem; color: var(--text-soft); }
.form__status { font-size: 0.95rem; font-weight: 600; padding: 0.8rem 1rem; border-radius: 12px; display: none; }
.form__status.is-visible { display: block; }
.form__status--ok { background: var(--green-100); color: #2c5a30; }
.contact-detail { display: flex; align-items: flex-start; gap: 0.9rem; padding: 1rem 0; border-bottom: 1px solid var(--stone-100); }
.contact-detail:last-child { border-bottom: 0; }
.contact-detail__icon { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--blue-050); color: var(--blue-700); display: grid; place-items: center; }
.contact-detail__icon svg { width: 24px; height: 24px; }
.contact-detail__label { font-size: 0.8rem; color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.06em; }
.contact-detail__value { font-family: var(--font-display); font-weight: 700; color: var(--heading); font-size: 1.08rem; }
.contact-detail__value a { color: var(--heading); }
.contact-detail__value a:hover { color: var(--blue-700); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-900); color: #b9c1be; padding-top: clamp(2.6rem, 6vw, 4rem); }
.footer__grid { display: grid; gap: 2rem; }
.footer__brand-logo { display: inline-flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem; }
.footer__logo-chip { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 14px; background: #fff; box-shadow: var(--shadow-sm); flex: none; }
.footer__logo-chip img { width: 42px; height: 42px; }
.footer__brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: #fff; }
.footer__about { font-size: 0.95rem; max-width: 42ch; }
.footer__social { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.footer__social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,0.08); display: grid; place-items: center; color: #cdd4d1; transition: background 0.2s, color 0.2s; }
.footer__social a:hover { background: var(--blue-600); color: #fff; }
.footer__social svg { width: 22px; height: 22px; }
.footer__col h4 { color: #fff; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.footer__links { display: grid; gap: 0.55rem; }
.footer__links a { color: #b9c1be; font-size: 0.95rem; }
.footer__links a:hover { color: var(--blue-300); }
.footer__contact-item { display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 0.8rem; font-size: 0.95rem; }
.footer__contact-item svg { width: 20px; height: 20px; color: var(--blue-400); flex: none; margin-top: 2px; }
.footer__contact-item a { color: #e6ebe9; font-weight: 600; }
.footer__bottom {
  margin-top: clamp(2rem, 5vw, 3rem); border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: 1.4rem; display: flex; flex-direction: column; gap: 0.6rem;
  font-size: 0.84rem; color: #8b938f;
}
.footer__bottom a { color: #8b938f; }
.footer__bottom a:hover { color: var(--blue-300); }

/* ---------- Mobile sticky call bar ---------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--line);
  box-shadow: 0 -6px 20px rgba(15,30,45,0.14);
  padding-bottom: env(safe-area-inset-bottom);
}
.callbar a {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.95rem 0.5rem; font-family: var(--font-display); font-weight: 700; font-size: 0.98rem;
  background: #fff; color: var(--ink-800);
}
.callbar a svg { width: 20px; height: 20px; }
.callbar a.callbar--call { background: var(--blue-500); color: #06293f; }
.callbar a.callbar--wa { background: var(--ink-800); color: #fff; }
body { padding-bottom: 0; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* ---------- Utilities ---------- */
.u-blue { color: var(--blue-600); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.hidden { display: none; }
.divider-motif { height: 3px; width: 64px; border-radius: 3px; background: linear-gradient(90deg, var(--blue-500), var(--blue-300)); margin: 1rem 0; }
.notice {
  background: var(--blue-050); border: 1px dashed var(--blue-300); color: var(--primary-ink);
  border-radius: var(--r); padding: 0.9rem 1.1rem; font-size: 0.9rem;
}

/* ==========================================================================
   Responsive — tablet & up
   ========================================================================== */
@media (min-width: 620px) {
  .grid--2 { grid-template-columns: 1fr 1fr; }
  .grid--3 { grid-template-columns: 1fr 1fr; }
  .field--row { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .work-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { columns: 3 200px; }
  .trustbar__inner { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 900px) {
  :root { --header-h: 84px; }
  .nav { display: block; }
  .nav__list { display: flex; align-items: center; gap: 0.35rem; }
  .nav__link {
    display: inline-flex; align-items: center; gap: 0.35rem;
    padding: 0.6rem 0.85rem; border-radius: var(--pill);
    font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
    color: var(--ink-700); transition: background 0.18s, color 0.18s;
  }
  .nav__link:hover { background: var(--stone-100); color: var(--ink-800); }
  .nav__link[aria-current="page"] { color: var(--blue-700); background: var(--blue-050); }

  /* Dropdown */
  .nav__item--has-menu { position: relative; }
  .nav__menu {
    position: absolute; top: calc(100% + 6px); left: 0; min-width: 260px;
    background: #fff; border: 1px solid var(--line); border-radius: var(--r);
    box-shadow: var(--shadow-lg); padding: 0.5rem; z-index: 50;
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  }
  .nav__item--has-menu:hover .nav__menu, .nav__item--has-menu:focus-within .nav__menu {
    opacity: 1; visibility: visible; transform: translateY(0);
  }
  .nav__menu a {
    display: flex; gap: 0.6rem; align-items: center; padding: 0.6rem 0.7rem; border-radius: 10px;
    color: var(--ink-700); font-weight: 500; font-size: 0.92rem;
  }
  .nav__menu a:hover { background: var(--blue-050); color: var(--blue-800); }
  .nav__menu svg { width: 20px; height: 20px; color: var(--blue-600); flex: none; }

  .nav-toggle { display: none; }
  .header__call { display: inline-flex; }
  .header__cta { display: inline-flex; }
  .callbar { display: none; }

  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-media { grid-template-columns: 1.15fr 1fr; }
  .process { grid-template-columns: repeat(4, 1fr); }
  .quote-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.5rem; }
  .footer__bottom { flex-direction: row; align-items: center; justify-content: space-between; }
  .hero__inner { min-height: min(84svh, 760px); }
  .process--connected .step::after {
    content: ""; position: absolute; top: 2.2rem; right: -0.9rem; width: 1.8rem; height: 2px;
    background: repeating-linear-gradient(90deg, var(--blue-300) 0 6px, transparent 6px 11px);
  }
  .process--connected .step:last-child::after { display: none; }
}

@media (min-width: 1100px) {
  .work-grid { grid-template-columns: repeat(4, 1fr); }
  .work-card--feature { grid-column: span 2; grid-row: span 2; aspect-ratio: 1/1; }
}

/* ==========================================================================
   Polish pass — refined interactions, before/after slider, brand dividers
   ========================================================================== */

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--blue-600), var(--blue-400));
  z-index: 300; pointer-events: none;
  transition: width 0.08s linear;
}

/* ---------- Primary button: gradient + shine ---------- */
.btn--primary {
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
  position: relative; overflow: hidden;
}
.btn--primary::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}
.btn--primary:hover::after { transform: translateX(120%); }
.btn--primary:hover { background: linear-gradient(135deg, var(--blue-300), var(--blue-500)); }

/* ---------- Desktop nav: animated underline ---------- */
@media (min-width: 900px) {
  .nav__link { position: relative; }
  .nav__link::after {
    content: ""; position: absolute; left: 0.85rem; right: 0.85rem; bottom: 0.28rem;
    height: 2px; border-radius: 2px;
    background: linear-gradient(90deg, var(--blue-500), var(--blue-300));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.22s ease;
  }
  .nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
  .nav__link[aria-current="page"] { background: transparent; }
}

/* ---------- Hero: slow Ken Burns on the media ---------- */
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1); } }
.hero__media img { animation: heroZoom 8s ease-out both; will-change: transform; }
@media (prefers-reduced-motion: reduce) { .hero__media img { animation: none; } }

/* ---------- Mountain divider (brand motif from the logo) ---------- */
.mountain-divider { display: block; width: 100%; height: 42px; margin-bottom: -1px; }
.mountain-divider--footer { color: var(--ink-900); background: transparent; }
.section--tint + .site-footer .mountain-divider,
.mountain-divider[data-on="tint"] { background: var(--bg-tint); }

/* ---------- Before / After slider ---------- */
.ba-grid { display: grid; gap: clamp(1.2rem, 3vw, 2rem); }
@media (min-width: 900px) { .ba-grid { grid-template-columns: repeat(2, 1fr); } .ba-grid--three { grid-template-columns: repeat(3, 1fr); } }

.ba {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3; background: var(--stone-200);
  touch-action: pan-y;
  isolation: isolate;
  cursor: ew-resize;
}
.ba--wide { aspect-ratio: 16 / 10; }
.ba img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; pointer-events: none; user-select: none; -webkit-user-select: none;
}
.ba__after { z-index: 1; }
.ba__before { z-index: 2; clip-path: inset(0 calc(100% - var(--ba-pos, 50%)) 0 0); }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: var(--ba-pos, 50%); z-index: 4;
  width: 0; pointer-events: none;
}
.ba__handle::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: -1.5px;
  width: 3px; background: #fff; box-shadow: 0 0 12px rgba(0,0,0,0.35);
}
.ba__knob {
  position: absolute; top: 50%; left: 0; transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: #fff; box-shadow: 0 4px 16px rgba(10,30,45,0.35);
  display: grid; place-items: center; gap: 0;
  color: var(--ink-800);
}
.ba__knob svg { width: 26px; height: 26px; }
.ba__label {
  position: absolute; top: 0.85rem; z-index: 3;
  font-family: var(--font-display); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.38rem 0.85rem; border-radius: var(--pill);
  pointer-events: none;
}
.ba__label--before { left: 0.85rem; background: rgba(20,24,24,0.78); color: #fff; }
.ba__label--after { right: 0.85rem; background: var(--blue-500); color: #06293f; }
.ba__range {
  position: absolute; inset: 0; z-index: 5;
  width: 100%; height: 100%; margin: 0; opacity: 0;
  cursor: ew-resize;
}
.ba-card { display: flex; flex-direction: column; gap: 0.8rem; }
.ba-card__meta { display: flex; flex-direction: column; gap: 0.15rem; }
.ba-card__title { font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; color: var(--heading); }
.ba-card__loc { font-size: 0.85rem; color: var(--text-soft); }
@media (min-width: 620px) {
  .ba-card__meta { flex-direction: row; align-items: baseline; justify-content: space-between; gap: 1rem; }
  .ba-card__loc { white-space: nowrap; }
}
.ba-note { margin-top: 1.6rem; text-align: center; font-size: 0.8rem; color: var(--stone-500); }

/* ---------- Stat count-up (no layout shift) ---------- */
.stat__num { font-variant-numeric: tabular-nums; }

/* ---------- Section heading motif ---------- */
.section__title { position: relative; }

/* ---------- Card icon chips: subtle brand gradient ---------- */
.service-card__icon { background: linear-gradient(145deg, #ffffff 55%, var(--blue-050)); }
.service-card:hover .service-card__icon svg { transform: scale(1.08); }
.service-card__icon svg { transition: transform 0.25s ease; }

/* ---------- Accordion hover ---------- */
.accordion { transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.accordion:hover { border-color: var(--blue-100); }
.accordion[open] { border-color: var(--blue-300); box-shadow: var(--shadow); }

/* ---------- Footer polish ---------- */
.site-footer { position: relative; }
.footer__links a { position: relative; transition: color 0.18s ease, padding-left 0.18s ease; }
.footer__links a:hover { padding-left: 6px; }

/* ---------- Focus ring on BA slider ---------- */
.ba__range:focus-visible ~ .ba__handle .ba__knob { outline: 3px solid var(--blue-500); outline-offset: 2px; }

/* ---------- Trust badges (TrustATrader / Checkatrade) ---------- */
.trust-badges {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.8rem 1.4rem; margin-top: 1.4rem;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0.55rem 1rem 0.55rem 0.6rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--pill);
  box-shadow: var(--shadow-sm); color: var(--ink-700);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.trust-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--blue-100); color: var(--ink-800); }
.trust-badge img { width: 54px; height: 54px; flex: none; }
.trust-badge__text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.25; font-size: 0.82rem; }
.trust-badge__text strong { font-family: var(--font-display); font-size: 0.95rem; color: var(--heading); }
.trust-badge .stars svg { width: 14px; height: 14px; }
.footer__badge-link { background: #fff !important; }
.footer__badge-link img { width: 30px; height: 30px; }
.footer__rating { margin-top: 0.9rem; font-size: 0.85rem; color: #9aa39f; }
.footer__rating strong { color: #fff; }
