/* ============================================================
   Living Waters Plumbing & Heating — dark premium redesign
   (TPO Projects-style theme, Living Waters brand colours)
   Fonts: Archivo (headings) + Inter (body), Google Fonts
   ============================================================ */

:root {
  --bg: #070c14;
  --surface: #0d141f;
  --surface-2: #131c2a;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #eef3f9;
  --muted: #93a0b4;
  --blue: #2a8fe0;
  --blue-dark: #1c6fc9;
  --orange: #f7941d;
  --font-head: 'Archivo', sans-serif;
  --font-body: 'Inter', sans-serif;
  --wrap: 1180px;
  --radius: 14px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html:focus-within { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 750;
  text-wrap: balance;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

::selection { background: var(--blue); color: #fff; }

/* ---------- skip link ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--blue); color: #fff; padding: 10px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ============================================================
   Scroll animation layer — every initial "hidden" state is
   gated behind html.js (set by an inline head script), so the
   page renders complete with JS off. All of it is disabled
   under prefers-reduced-motion.
   ============================================================ */

/* rise-and-fade reveal (staggered via inline --d) */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
.js .reveal.in { opacity: 1; transform: none; }

/* SplitText-style word reveal: JS wraps each word in .w > .wi */
.w { display: inline-block; overflow: hidden; vertical-align: bottom; }
.js .split-words .wi {
  display: inline-block;
  transform: translateY(112%);
  transition: transform 0.85s var(--ease);
  transition-delay: calc(var(--wi, 0) * 55ms + var(--d, 0ms));
  will-change: transform;
}
.js .split-words.in .wi { transform: none; }

/* clip-path unveil (bottom edge wipes up) + scale settle on the image.
   ⚠️ The clip lives on a CHILD of the observed .clip-reveal element:
   a fully clipped element reports a zero intersection rect, so the
   IntersectionObserver would never fire for it. */
.js .clip-reveal > img,
.js .clip-reveal .parallax-frame {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.9s var(--ease);
  transition-delay: var(--d, 0ms);
  will-change: clip-path;
}
.js .clip-reveal.in > img,
.js .clip-reveal.in .parallax-frame { clip-path: inset(0 0 0% 0); }
.js .clip-reveal > img {
  transform: scale(1.14);
  transition: clip-path 0.9s var(--ease), transform 1.2s var(--ease);
}
.js .clip-reveal.in > img { transform: none; }
/* the review badge pops in just after its photo unveils */
.js .clip-reveal .split__badge {
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.5s var(--ease) 0.45s, transform 0.5s var(--ease) 0.45s;
}
.js .clip-reveal.in .split__badge { opacity: 1; transform: none; }

/* parallax frames: JS moves [data-parallax] children with rAF */
.parallax-frame { position: relative; overflow: hidden; }
[data-parallax] { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal, .js .split-words .wi, .js .clip-reveal > img,
  .js .clip-reveal .parallax-frame, .js .clip-reveal .split__badge {
    opacity: 1; transform: none; transition: none; clip-path: none;
  }
  .marquee__track { animation: none !important; }
  .hero__bg img { animation: none !important; transform: none !important; }
  [data-parallax] { transform: none !important; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 650; font-size: 1rem;
  padding: 15px 30px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s, color 0.25s;
  min-height: 48px;
}
.btn:active { transform: scale(0.97); }
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn--ghost { border-color: var(--line-strong); color: var(--text); background: rgba(255, 255, 255, 0.03); }
.btn--ghost:hover { border-color: rgba(255, 255, 255, 0.35); transform: translateY(-2px); background: rgba(255, 255, 255, 0.06); }
.btn--lg { padding: 18px 36px; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn:focus-visible, a:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 6px; }

/* ---------- header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(7, 12, 20, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 10px 24px; max-width: 1320px; margin: 0 auto;
}
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 58px; width: auto; }
.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  font-family: var(--font-head); font-weight: 550; font-size: 0.98rem;
  padding: 10px 14px; border-radius: 8px; color: var(--text);
  position: relative; transition: color 0.2s;
}
.nav a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 5px; height: 2px;
  background: var(--blue); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.nav a:hover::after { transform: scaleX(1); }
.header__cta { display: flex; align-items: center; gap: 18px; }
.header__phone {
  font-family: var(--font-head); font-weight: 650; font-size: 0.98rem; white-space: nowrap;
  color: var(--text); transition: color 0.2s;
}
.header__phone:hover { color: var(--orange); }
.header__cta .btn { padding: 11px 22px; min-height: 44px; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line-strong); border-radius: 10px;
  width: 46px; height: 44px; cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--text); transition: transform 0.3s var(--ease), opacity 0.2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav {
    position: fixed; top: 78px; left: 16px; right: 16px; z-index: 99;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: rgba(13, 20, 31, 0.98); border: 1px solid var(--line); border-radius: 16px;
    padding: 12px; box-shadow: var(--shadow);
    opacity: 0; transform: translateY(-12px); pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }
  .nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav a { padding: 13px 16px; }
  .nav a::after { display: none; }
  .nav-toggle { display: inline-flex; }
  .header__phone { display: none; }
}
@media (max-width: 560px) {
  .header__cta .btn { display: none; }
  .brand img { height: 48px; }
}

/* ---------- hero ---------- */
.hero {
  position: relative; display: flex; align-items: flex-end;
  min-height: min(92dvh, 900px); padding: 170px 0 90px; overflow: hidden; isolation: isolate;
}
.hero__bg { position: absolute; inset: -12% 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; animation: heroZoom 9s var(--ease) forwards; }
@keyframes heroZoom { from { transform: scale(1.09); } to { transform: scale(1); } }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 12, 20, 0.62) 0%, rgba(7, 12, 20, 0.25) 40%, rgba(7, 12, 20, 0.88) 100%),
    linear-gradient(100deg, rgba(7, 12, 20, 0.85) 8%, rgba(7, 12, 20, 0.15) 65%);
}
.hero__content { max-width: 780px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-head); font-weight: 650; font-size: 0.86rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--blue); border-radius: 2px; flex-shrink: 0; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.4rem); margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--orange); }
.hero__lede { font-size: clamp(1.05rem, 1.6vw, 1.24rem); color: rgba(238, 243, 249, 0.85); max-width: 620px; margin-bottom: 34px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 42px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 12px 30px; padding-top: 26px; border-top: 1px solid var(--line-strong); }
.hero__trust li { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: rgba(238, 243, 249, 0.85); }
.hero__trust svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; }

/* ---------- sections ---------- */
.section { padding: clamp(72px, 9vw, 120px) 0; position: relative; }
.section--tint { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section__head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section__head h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 16px; }
.section__head p { color: var(--muted); font-size: 1.08rem; }
.section__head--row {
  max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.section__head--row > div { max-width: 640px; }

/* ---------- service pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1020px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 420px; border-radius: var(--radius); overflow: hidden; isolation: isolate;
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.pillar > img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.pillar::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(185deg, rgba(7, 12, 20, 0.05) 30%, rgba(7, 12, 20, 0.92) 88%);
  transition: background 0.35s;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(42, 143, 224, 0.5); }
.pillar:hover > img { transform: scale(1.06); }
.pillar__body { padding: 26px 24px; }
.pillar__num { font-family: var(--font-head); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.12em; color: var(--orange); display: block; margin-bottom: 10px; }
.pillar h3 { font-size: 1.42rem; margin-bottom: 10px; }
.pillar p { font-size: 0.94rem; color: rgba(238, 243, 249, 0.78); margin-bottom: 16px; }
.pillar__link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 650; font-size: 0.95rem; color: #fff; }
.pillar__link svg { width: 17px; height: 17px; color: var(--blue); transition: transform 0.3s var(--ease); }
.pillar:hover .pillar__link svg { transform: translateX(5px); }

/* ---------- marquee ---------- */
.marquee {
  overflow: hidden; padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--surface);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track { display: flex; gap: 0; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee__track span {
  font-family: var(--font-head); font-weight: 650; font-size: 1.02rem; white-space: nowrap;
  color: var(--muted); display: inline-flex; align-items: center;
}
.marquee__track span::after { content: "•"; margin: 0 26px; color: var(--blue); }

/* ---------- about / why ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split__media { position: relative; }
.split__media .parallax-frame {
  aspect-ratio: 3 / 4; border-radius: var(--radius); border: 1px solid var(--line);
}
.split__media .parallax-frame img {
  position: absolute; inset: -8% 0; height: 116%; width: 100%; object-fit: cover;
}
.split__badge {
  position: absolute; left: -18px; bottom: 28px; z-index: 2;
  background: var(--blue); color: #fff; border-radius: 12px; padding: 18px 22px;
  font-family: var(--font-head); box-shadow: var(--shadow);
}
.split__badge strong { display: block; font-size: 1.9rem; font-weight: 780; line-height: 1; }
.split__badge small { font-size: 0.85rem; opacity: 0.9; }
@media (max-width: 560px) { .split__badge { left: 12px; } }
.split__content h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: 20px; }
.split__content > p { color: var(--muted); margin-bottom: 18px; font-size: 1.04rem; }
.ticklist { margin-top: 26px; display: grid; gap: 14px; }
.ticklist li { display: flex; gap: 14px; align-items: flex-start; }
.ticklist svg { width: 21px; height: 21px; color: var(--blue); flex-shrink: 0; margin-top: 3px; }
.ticklist strong { font-family: var(--font-head); font-weight: 650; }
.ticklist span { color: var(--muted); }

/* ---------- gallery mosaic ---------- */
.mosaic { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-flow: dense; gap: 16px; }
@media (max-width: 860px) { .mosaic { grid-template-columns: repeat(2, 1fr); } }
.mosaic figure {
  position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  aspect-ratio: 4 / 3; margin: 0;
}
.mosaic figure.tall { grid-row: span 2; aspect-ratio: auto; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.mosaic figure:hover img,
.js .mosaic figure.clip-reveal.in:hover > img { transform: scale(1.05); }
.mosaic figcaption {
  position: absolute; inset: auto 0 0 0; padding: 40px 18px 14px;
  background: linear-gradient(180deg, transparent, rgba(7, 12, 20, 0.85));
  font-size: 0.88rem; font-weight: 500; color: rgba(238, 243, 249, 0.92);
  opacity: 0; transform: translateY(8px); transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.mosaic figure:hover figcaption { opacity: 1; transform: none; }

/* ---------- reviews ---------- */
.ratings-bar {
  display: flex; align-items: center; justify-content: flex-start; flex-wrap: wrap;
  gap: 18px 28px; margin-bottom: clamp(28px, 4vw, 44px);
}
.ratings-bar__item { display: flex; align-items: center; gap: 12px; }
.ratings-bar__stars { color: var(--orange); font-size: 1.15rem; letter-spacing: 2px; }
.ratings-bar__label { color: var(--muted); font-size: 0.96rem; }
.ratings-bar__label strong { color: var(--text); font-family: var(--font-head); }
.ratings-bar__badge {
  font-family: var(--font-head); font-weight: 700; font-size: 0.9rem;
  background: rgba(42, 143, 224, 0.14); color: var(--blue);
  border: 1px solid rgba(42, 143, 224, 0.35); border-radius: 999px; padding: 6px 14px;
}
.ratings-bar__divider { width: 1px; height: 28px; background: var(--line-strong); }
@media (max-width: 560px) { .ratings-bar__divider { display: none; } }

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 1020px) { .reviews { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .reviews { grid-template-columns: 1fr; } }
.review-card {
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.review-card:hover { transform: translateY(-5px); border-color: rgba(42, 143, 224, 0.4); }
.review-card__stars { color: var(--orange); letter-spacing: 3px; font-size: 1.02rem; }
.review-card p { color: rgba(238, 243, 249, 0.85); font-size: 0.96rem; flex-grow: 1; }
.review-card__author { font-family: var(--font-head); font-weight: 650; font-size: 0.94rem; }
.review-card__author span { color: var(--muted); font-family: var(--font-body); font-weight: 400; }
.reviews__cta { margin-top: clamp(28px, 4vw, 40px); text-align: center; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--blue-dark), var(--blue) 55%, #3aa4f0);
  border-radius: 20px; padding: clamp(44px, 6vw, 72px); text-align: center;
}
.cta-band::before {
  content: ""; position: absolute; inset: -40%;
  background: radial-gradient(circle at 75% 20%, rgba(255, 255, 255, 0.22), transparent 45%);
}
.cta-band > * { position: relative; }
.cta-band h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255, 255, 255, 0.92); max-width: 560px; margin: 0 auto 30px; font-size: 1.06rem; }
.cta-band .btn--primary { background: #fff; color: var(--blue-dark); }
.cta-band .btn--primary:hover { background: var(--bg); color: #fff; }
.cta-band .btn--ghost { border-color: rgba(255, 255, 255, 0.5); color: #fff; }
.cta-band .btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.12); }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; }
.contact-card h3 { font-size: 1.35rem; margin-bottom: 20px; }
.contact-card ul { display: grid; gap: 18px; }
.contact-card li { display: flex; gap: 16px; align-items: flex-start; }
.contact-card li svg { width: 22px; height: 22px; color: var(--blue); flex-shrink: 0; margin-top: 3px; }
.contact-card li strong { display: block; font-family: var(--font-head); font-weight: 650; font-size: 0.95rem; }
.contact-card li a, .contact-card li span { color: var(--muted); font-size: 0.97rem; }
.contact-card li a:hover { color: var(--orange); }

.form { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; }
.form h3 { font-size: 1.35rem; margin-bottom: 8px; }
.form > p { color: var(--muted); font-size: 0.96rem; margin-bottom: 24px; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; margin-bottom: 8px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 14px 16px; min-height: 48px;
  background: var(--bg); color: var(--text);
  border: 1px solid var(--line-strong); border-radius: 10px;
  font-family: var(--font-body); font-size: 1rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-row textarea { min-height: 130px; resize: vertical; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(42, 143, 224, 0.22);
}
.form-row--pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row--pair { grid-template-columns: 1fr; } }
.form-note { margin-top: 16px; font-size: 0.95rem; color: var(--orange); min-height: 1.4em; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--surface); padding: 64px 0 34px; }
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 36px; margin-bottom: 44px; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand img { height: 64px; margin-bottom: 18px; }
.footer__brand p { color: var(--muted); font-size: 0.95rem; max-width: 300px; }
.footer h4 { font-size: 0.92rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 18px; }
.footer ul { display: grid; gap: 11px; }
.footer ul a, .footer ul span { color: var(--muted); font-size: 0.96rem; transition: color 0.2s; }
.footer ul a:hover { color: var(--text); }
.footer__bottom {
  border-top: 1px solid var(--line); padding-top: 26px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  color: var(--muted); font-size: 0.88rem;
}

/* ---------- multipage: page heroes + breadcrumbs ---------- */
.hero--page { min-height: min(62dvh, 640px); padding-bottom: 70px; }
.crumbs { display: flex; gap: 10px; align-items: center; font-size: 0.9rem; color: var(--muted); margin-bottom: 18px; }
.crumbs a:hover { color: var(--orange); }
.crumbs span { color: var(--blue); }

/* current page in nav */
.nav a[aria-current="page"] { color: #fff; }
.nav a[aria-current="page"]::after { transform: scaleX(1); }
@media (max-width: 940px) {
  .nav a[aria-current="page"] { background: rgba(42, 143, 224, 0.14); color: #fff; }
}

/* ---------- feature cards (service pages) ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .features { grid-template-columns: 1fr; } }
.feature {
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform 0.3s var(--ease), border-color 0.3s;
}
.feature:hover { transform: translateY(-5px); border-color: rgba(42, 143, 224, 0.4); }
.feature__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(42, 143, 224, 0.12); color: var(--blue); margin-bottom: 20px;
}
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.2rem; margin-bottom: 10px; }
.feature p { color: var(--muted); font-size: 0.96rem; }

/* ---------- process ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; list-style: none; }
@media (max-width: 900px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .process { grid-template-columns: 1fr; } }
.process li {
  counter-increment: step; background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 22px; position: relative;
}
.process li::before {
  content: "0" counter(step); font-family: var(--font-head); font-weight: 780; font-size: 2.1rem;
  color: transparent; -webkit-text-stroke: 1.5px var(--blue); display: block; margin-bottom: 14px;
}
.process h3 { font-size: 1.1rem; margin-bottom: 8px; }
.process p { font-size: 0.92rem; color: var(--muted); }

/* ---------- pill list ---------- */
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pills li {
  border: 1px solid var(--line-strong); border-radius: 999px; padding: 9px 18px;
  font-size: 0.92rem; font-weight: 500; color: rgba(238, 243, 249, 0.88);
  transition: border-color 0.25s, background 0.25s;
}
.pills li:hover { border-color: var(--blue); background: rgba(42, 143, 224, 0.09); }

/* ---------- stacked split media (service pages) ---------- */
.split__media--stack { display: grid; gap: 16px; }
.split__media--stack .clip-reveal {
  margin: 0; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line);
}
.split__media--stack .clip-reveal img { width: 100%; display: block; }

/* ---------- floating call button (mobile) ---------- */
.call-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--blue); color: #fff; display: none; place-items: center;
  box-shadow: 0 12px 30px rgba(42, 143, 224, 0.45);
  transition: transform 0.25s var(--ease);
}
.call-fab:hover { transform: scale(1.06); }
.call-fab svg { width: 24px; height: 24px; }
@media (max-width: 700px) { .call-fab { display: grid; } }
