/* ============================================================
   CLISSOLD EXTERNAL CLEANING — Design System
   Clean & modern. Navy + blue. London residential pressure washing.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700;800;900&family=Public+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* ---- Brand: navy + blue ---- */
  --navy:        #0A2540;   /* primary ink / headers */
  --navy-800:    #0F2E4C;
  --navy-700:    #143961;
  --blue:        #1C7ED6;   /* primary action */
  --blue-600:    #1670c2;
  --blue-700:    #115a9e;
  --blue-bright: #2D9CDB;
  --sky:         #7DD3FC;   /* light accent */
  --sky-200:     #BAE6FD;
  --sky-tint:    #EAF6FE;   /* tinted section bg */
  --sky-tint-2:  #F3F9FE;

  /* ---- Neutrals (cool-white family) ---- */
  --white:   #FFFFFF;
  --paper:   #FBFCFD;
  --slate-50:  #F4F7FA;
  --slate-100: #EAF0F5;
  --slate-200: #DDE5ED;   /* borders */
  --slate-300: #C6D2DE;
  --slate-400: #97A6B5;
  --slate-500: #647585;   /* muted text */
  --slate-600: #4C5C6B;
  --slate-700: #33424F;   /* body text */
  --ink:       #1B2A37;

  /* ---- Support ---- */
  --green:   #1E9E63;     /* sparing: trust ticks */
  --amber:   #F0A92B;     /* stars */

  /* ---- Type ---- */
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body: 'Public Sans', system-ui, sans-serif;

  /* ---- Radii ---- */
  --r-sm: 8px;
  --r:    12px;
  --r-lg: 18px;
  --r-xl: 26px;
  --r-pill: 999px;

  /* ---- Shadows (soft, layered) ---- */
  --shadow-xs: 0 1px 2px rgba(10,37,64,.06);
  --shadow-sm: 0 2px 8px -2px rgba(10,37,64,.10);
  --shadow:    0 10px 30px -12px rgba(10,37,64,.22);
  --shadow-lg: 0 26px 60px -22px rgba(10,37,64,.30);
  --ring: 0 0 0 4px rgba(28,126,214,.16);

  /* ---- Layout ---- */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 56px);
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--slate-700);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--blue-700); text-decoration: none; }
h1,h2,h3,h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
  font-weight: 800;
  text-wrap: balance;
}
p { margin: 0 0 1em; text-wrap: pretty; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: var(--r-sm); }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-wide { max-width: 1340px; margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 8vw, 104px); }
.section--tint { background: var(--sky-tint); }
.section--tint2 { background: var(--sky-tint-2); }
.section--navy { background: var(--navy); color: var(--slate-100); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--blue);
  border-radius: 2px;
}
.section--navy .eyebrow { color: var(--sky); }
.section--navy .eyebrow::before { background: var(--sky); }

.h-xl { font-size: clamp(34px, 5.2vw, 60px); }
.h-lg { font-size: clamp(28px, 4vw, 44px); }
.h-md { font-size: clamp(23px, 2.6vw, 31px); }
.lead { font-size: clamp(18px, 2vw, 21px); color: var(--slate-600); line-height: 1.6; }
.muted { color: var(--slate-500); }
.center { text-align: center; }
.center .eyebrow { display: inline-flex; }
.measure { max-width: 62ch; }
.measure-sm { max-width: 48ch; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s;
  white-space: nowrap;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(28,126,214,.6);
}
.btn--primary:hover { background: var(--blue-600); box-shadow: 0 12px 26px -8px rgba(28,126,214,.7); transform: translateY(-1px); }
.btn--dark { background: var(--navy); color: #fff; }
.btn--dark:hover { background: var(--navy-700); transform: translateY(-1px); }
.btn--ghost { background: #fff; color: var(--navy); border-color: var(--slate-200); box-shadow: var(--shadow-xs); }
.btn--ghost:hover { border-color: var(--slate-300); background: var(--slate-50); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn--lg { padding: 18px 32px; font-size: 17px; }
.btn--block { width: 100%; }
.btn .ico { width: 19px; height: 19px; }

/* WhatsApp pill */
.btn--wa { background: #25D366; color: #08361b; }
.btn--wa:hover { background: #1eb858; transform: translateY(-1px); }

/* ============================================================
   TRUST CHIPS / BADGES
   ============================================================ */
.chips { display: flex; flex-wrap: wrap; gap: 10px 12px; list-style: none; padding: 0; margin: 0; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--slate-200);
  padding: 9px 15px 9px 12px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-xs);
}
.chip svg { width: 17px; height: 17px; flex: none; color: var(--blue); }
.section--navy .chip { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); color: #fff; }
.section--navy .chip svg { color: var(--sky); }

.tick {
  display: inline-flex; align-items: center; gap: 11px;
  font-weight: 500;
}
.tick svg { width: 22px; height: 22px; flex: none; color: var(--blue); }

.stars { display: inline-flex; gap: 2px; color: var(--amber); }
.stars svg { width: 18px; height: 18px; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}

/* Service card */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(238px, 1fr));
  gap: 16px;
}
.svc {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--r-lg);
  padding: 22px 22px 20px;
  box-shadow: var(--shadow-xs);
  transition: transform .18s ease, box-shadow .25s ease, border-color .2s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--sky-200); }
.svc__ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--sky-tint);
  color: var(--blue);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.svc__ico svg { width: 23px; height: 23px; }
.svc h3 { font-size: 18px; margin-bottom: 6px; }
.svc p { font-size: 15px; color: var(--slate-500); margin-bottom: 14px; line-height: 1.55; }
.svc__link {
  margin-top: auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--blue);
  display: inline-flex; align-items: center; gap: 7px;
}
.svc__link svg { width: 15px; height: 15px; transition: transform .2s; }
.svc:hover .svc__link svg { transform: translateX(4px); }

/* Step card */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 22px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step__n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--blue);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--sky-200);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.step h3 { font-size: 19px; margin-bottom: 6px; }
.step p { font-size: 15px; color: var(--slate-500); margin: 0; }

/* Review card */
.reviews { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 22px; }
.review {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--r-lg);
  padding: 26px 26px 22px;
  box-shadow: var(--shadow-xs);
  display: flex; flex-direction: column;
}
.review__stars { margin-bottom: 14px; }
.review p { font-size: 16px; color: var(--slate-700); margin-bottom: 18px; }
.review__by { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.review__av {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
}
.review__name { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 15px; line-height: 1.2; }
.review__meta { font-size: 13px; color: var(--slate-500); }
/* Reviews marquee — continuously scrolling testimonials */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.marquee__track { display: flex; width: max-content; animation: review-marquee 95s linear infinite; will-change: transform; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee .review { flex: 0 0 360px; width: 360px; margin-right: 22px; }
@keyframes review-marquee { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@media (max-width: 700px) { .marquee .review { flex-basis: 290px; width: 290px; } }
@media (prefers-reduced-motion: reduce) {
  .marquee { -webkit-mask-image: none; mask-image: none; }
  .marquee__track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
}

/* Stat */
.stat__n { font-family: var(--font-display); font-weight: 900; font-size: clamp(34px,4vw,46px); color: var(--navy); line-height: 1; letter-spacing: -0.03em; }
.section--navy .stat__n { color: #fff; }
.stat__l { font-size: 14.5px; color: var(--slate-500); margin-top: 6px; }
.section--navy .stat__l { color: var(--sky-200); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { border-top: 1px solid var(--slate-200); }
.faq details { border-bottom: 1px solid var(--slate-200); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid var(--slate-300); color: var(--blue);
  display: grid; place-items: center;
  transition: transform .25s, background .2s, border-color .2s, color .2s;
}
.faq details[open] summary .pm { transform: rotate(45deg); background: var(--blue); color: #fff; border-color: var(--blue); }
.faq summary .pm svg { width: 15px; height: 15px; }
.faq__a { padding: 0 4px 24px; color: var(--slate-600); font-size: 16px; max-width: 76ch; }

/* ============================================================
   BEFORE / AFTER SLIDER
   ============================================================ */
.ba {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  user-select: none;
  background: var(--slate-100);
}
.ba__layer { position: absolute; inset: 0; }
.ba__layer image-slot, .ba__layer .ph { width: 100%; height: 100%; }
.ba__after { clip-path: inset(0 0 0 50%); }
.ba__tag {
  position: absolute; top: 14px;
  font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(10,37,64,.82); color: #fff;
  padding: 6px 12px; border-radius: var(--r-pill);
  backdrop-filter: blur(4px);
  z-index: 3;
}
.ba__tag--b { left: 14px; }
.ba__tag--a { right: 14px; background: rgba(28,126,214,.92); }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px; background: #fff; transform: translateX(-50%);
  z-index: 4; box-shadow: 0 0 0 1px rgba(10,37,64,.12);
}
.ba__grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; box-shadow: var(--shadow);
  display: grid; place-items: center; color: var(--blue);
  cursor: ew-resize;
}
.ba__grip svg { width: 22px; height: 22px; }
.ba input[type=range] {
  position: absolute; inset: 0; width: 100%; height: 100%;
  margin: 0; opacity: 0; cursor: ew-resize; z-index: 5;
}

/* Placeholder panel (striped) for empty imagery */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg, var(--slate-100) 0 14px, var(--slate-50) 14px 28px);
  display: grid; place-items: center;
  color: var(--slate-400);
  font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
  font-size: 12.5px; letter-spacing: .04em; text-align: center;
  padding: 16px;
}
.ph--after { background: repeating-linear-gradient(135deg, var(--sky-tint) 0 14px, var(--sky-tint-2) 14px 28px); color: var(--blue); }
.ph--photo { background: repeating-linear-gradient(135deg, var(--slate-100) 0 16px, var(--slate-50) 16px 32px); }

/* image-slot default look */
image-slot { background: var(--slate-100); }

/* ============================================================
   FORM
   ============================================================ */
.field { margin-bottom: 16px; }
.field label {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: 14px; color: var(--navy); margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 16px;
  color: var(--ink); background: #fff;
  border: 1.5px solid var(--slate-200); border-radius: var(--r);
  padding: 13px 15px; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: var(--ring);
}
.field textarea { resize: vertical; min-height: 110px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,252,253,.86);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--slate-200);
}
.nav { display: flex; align-items: center; gap: 26px; height: 74px; }
.nav__links { display: flex; align-items: center; gap: 4px; margin-left: auto; list-style: none; padding: 0; }
.nav__links a {
  font-family: var(--font-display); font-weight: 600; font-size: 15.5px;
  color: var(--slate-700); padding: 9px 14px; border-radius: var(--r-sm);
  transition: background .15s, color .15s;
}
.nav__links a:hover { background: var(--slate-100); color: var(--navy); }
/* Services dropdown */
.nav__dd { position: relative; display: inline-flex; }
.nav__dd > a { display: inline-flex; align-items: center; gap: 5px; }
.nav__caret { width: 14px; height: 14px; color: var(--slate-400); transition: transform .18s ease; flex: none; }
.nav__dd::after { content: ""; position: absolute; left: 0; top: 100%; width: 100%; height: 12px; }
.nav__menu {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 252px;
  background: #fff; border: 1px solid var(--slate-200); border-radius: var(--r-lg);
  box-shadow: var(--shadow); padding: 8px; display: grid; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease; z-index: 60;
}
.nav__menu a { padding: 10px 12px; white-space: nowrap; }
.nav__dd:hover .nav__menu,
.nav__dd:focus-within .nav__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dd:hover .nav__caret,
.nav__dd:focus-within .nav__caret { transform: rotate(180deg); }
/* Services dropdown — mobile (inside hamburger menu) */
@media (max-width: 980px) {
  .mobile-menu__dd { display: grid; gap: 2px; }
  .mobile-menu__dd > summary {
    list-style: none; cursor: pointer;
    font-family: var(--font-display); font-weight: 600; color: var(--navy);
    padding: 13px 8px; border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: space-between;
  }
  .mobile-menu__dd > summary::-webkit-details-marker { display: none; }
  .mobile-menu__dd > summary:hover { background: var(--slate-100); }
  .mobile-menu__dd[open] > summary .nav__caret { transform: rotate(180deg); }
  .mobile-menu .mobile-menu__dd > a { display: block; padding-left: 22px; font-size: 14.5px; color: var(--slate-500); font-weight: 600; }
}
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__phone {
  font-family: var(--font-display); font-weight: 700; color: var(--navy);
  display: inline-flex; align-items: center; gap: 8px; font-size: 15.5px;
  padding: 9px 8px;
}
.nav__phone svg { width: 18px; height: 18px; color: var(--blue); }
.nav__phone { white-space: nowrap; }
.nav__toggle { display: none; }
.mobile-menu { display: none; }
@media (max-width: 980px) {
  .nav__toggle { display: inline-flex; }
  .mobile-menu:not([hidden]) { display: grid; padding: 10px var(--gutter) 18px; gap: 2px; border-top: 1px solid var(--slate-200); background: var(--paper); }
  .mobile-menu a { font-family: var(--font-display); font-weight: 600; color: var(--navy); padding: 13px 8px; border-radius: var(--r-sm); }
  .mobile-menu a:hover { background: var(--slate-100); }
  .nav__cta .btn--primary { display: none; }
}

/* ============================================================
   LOGO LOCKUP (inline)
   ============================================================ */
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo__mark { width: 42px; height: 42px; flex: none; }
.logo__txt { display: grid; line-height: 1; }
.logo__txt b {
  font-family: var(--font-display); font-weight: 800; font-size: 23px;
  letter-spacing: -0.03em; color: var(--navy);
}
.logo__txt i {
  font-family: var(--font-display); font-weight: 600; font-style: normal;
  font-size: 9.5px; letter-spacing: .28em; color: var(--blue); margin-top: 3px;
}
.logo--light .logo__txt b { color: #fff; }
.logo--light .logo__txt i { color: var(--sky); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(48px,7vw,88px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 520px at 88% -8%, var(--sky-tint) 0, transparent 60%),
    radial-gradient(700px 500px at -5% 10%, var(--sky-tint-2) 0, transparent 55%);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px,5vw,64px); align-items: center; }
.hero__media { position: relative; }
.hero__media image-slot, .hero__media .ph { aspect-ratio: 4/5; width: 100%; border-radius: var(--r-xl); box-shadow: var(--shadow-lg); }
/* Hero roulette — auto-rotating "after" photos */
.hero__roulette { position: relative; width: 100%; aspect-ratio: 4/5; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero__track { display: flex; height: 100%; transition: transform .7s cubic-bezier(.4, 0, .2, 1); }
.hero__track img { flex: 0 0 100%; width: 100%; height: 100%; object-fit: cover; }
.hero__dots { position: absolute; left: 0; right: 0; bottom: 14px; z-index: 2; display: flex; gap: 7px; justify-content: center; }
.hero__dot { width: 8px; height: 8px; padding: 0; border: none; cursor: pointer; border-radius: var(--r-pill); background: rgba(255,255,255,.55); box-shadow: 0 0 0 1px rgba(10,37,64,.18); transition: background .2s ease, width .2s ease; }
.hero__dot.is-active { background: #fff; width: 22px; }
@media (prefers-reduced-motion: reduce) { .hero__track { transition: none; } }
.hero__badge {
  position: absolute; left: -22px; bottom: 28px;
  background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  padding: 16px 20px; display: flex; align-items: center; gap: 14px; max-width: 260px;
  border: 1px solid var(--slate-200);
}
.hero__badge .ic { width: 44px; height:44px; border-radius: 12px; background: var(--sky-tint); color: var(--blue); display: grid; place-items: center; flex: none; }
.hero__badge .ic svg { width: 24px; height: 24px; }
.hero__badge b { font-family: var(--font-display); color: var(--navy); font-size: 15px; display: block; line-height: 1.1; }
.hero__badge span { font-size: 13px; color: var(--slate-500); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 26px; }
.hero__ticks { display: grid; gap: 12px; margin-top: 8px; }

/* trust bar */
.trustbar { border-top: 1px solid var(--slate-200); border-bottom: 1px solid var(--slate-200); background: #fff; }
.trustbar__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px 30px; padding-block: 20px; }
.trustbar__item { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--navy); }
.trustbar__item svg { width: 22px; height: 22px; color: var(--blue); flex: none; }

/* generic split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,60px); align-items: center; }
.split--media-first .split__media { order: -1; }
.split__media .ph, .split__media image-slot { aspect-ratio: 4/3; border-radius: var(--r-xl); box-shadow: var(--shadow); width:100%; }

/* value props list */
.values { display: grid; gap: 18px; }
.value { display: flex; gap: 16px; align-items: flex-start; }
.value__ic { width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; flex: none; color: var(--sky); }
.value__ic svg { width: 24px; height: 24px; }
.value h3 { font-size: 18px; margin-bottom: 4px; }
.value p { margin: 0; color: var(--slate-300); font-size: 15.5px; }
.section--navy .value h3 { color: #fff; }

/* cta band */
.ctaband { background: linear-gradient(120deg, var(--navy) 0%, var(--navy-700) 100%); color: #fff; border-radius: var(--r-xl); padding: clamp(36px,5vw,60px); position: relative; overflow: hidden; }
.ctaband::after { content:""; position:absolute; right:-60px; top:-60px; width:280px; height:280px; border-radius:50%; background: radial-gradient(circle, rgba(125,211,252,.25), transparent 70%); }
.ctaband h2 { color: #fff; }

/* contact layout */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,52px); align-items: start; }
.contact-card { background:#fff; border:1px solid var(--slate-200); border-radius: var(--r-xl); padding: clamp(24px,3vw,34px); box-shadow: var(--shadow-sm); }
.contact-list { display:grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.contact-list li { display:flex; gap:14px; align-items:center; }
.contact-list .ic { width:46px;height:46px;border-radius:12px;background:var(--sky-tint);color:var(--blue);display:grid;place-items:center;flex:none; }
.contact-list .ic svg { width:22px;height:22px; }
.contact-list b { font-family: var(--font-display); color: var(--navy); font-size:15px; display:block; }
.contact-list span { font-size: 14px; color: var(--slate-500); }

.note { font-size: 12.5px; color: var(--slate-400); }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 480px; margin-inline: auto; order: -1; }
  .hero__media image-slot, .hero__media .ph { aspect-ratio: 16/11; }
  .split { grid-template-columns: 1fr; }
  .split--media-first .split__media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy); color: var(--slate-300); padding-block: 60px 28px; }
.site-footer a { color: var(--sky-200); }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-grid h4 { color: #fff; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-grid li { font-size: 15px; }
.footer-bottom {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between;
  font-size: 13.5px; color: var(--slate-400);
}

/* ============================================================
   MISC
   ============================================================ */
.divider { height: 1px; background: var(--slate-200); border: 0; margin: 0; }
.kicker-row { display:flex; flex-wrap:wrap; align-items:center; gap: 14px 26px; }
.pill-soft {
  display:inline-flex; align-items:center; gap:8px;
  background: var(--sky-tint); color: var(--blue-700);
  font-family: var(--font-display); font-weight:700; font-size:13px;
  padding: 7px 14px; border-radius: var(--r-pill);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav__links { display: none; }
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .nav__phone span { display: none; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero-cta .btn { width: 100%; }
}

/* Reveal-on-scroll (progressive enhancement) */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.in { opacity: 1; transform: none; }
}
