/* ==========================================================================
   L&V Civil Contracting — website by KW | Innovations
   Design system v3 · deep graphite, brand-blue light, photo-led, film grain
   ========================================================================== */

:root {
  --ink-950: #070b10;
  --ink-900: #0c1219;
  --ink-800: #111a24;
  --ink-700: #1a2530;
  --ink-600: #2c3a47;
  --steel-400: #8299ac;
  --steel-300: #b3c3d1;
  --steel-200: #d3dde6;
  --paper: #f5f7f9;
  --white: #ffffff;

  --accent-500: #45b1f0;
  --accent-600: #2492db;
  --accent-700: #156fb0;
  --accent-glow: rgba(69, 177, 240, 0.32);

  --font-display: "Archivo", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --fs-hero: clamp(2.7rem, 7vw, 5.1rem);
  --fs-h2: clamp(1.8rem, 4vw, 2.9rem);
  --fs-h3: clamp(1.15rem, 2.2vw, 1.4rem);
  --fs-body: clamp(1rem, 1.1vw, 1.0625rem);

  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 9px;

  /* layered elevation */
  --el-1: 0 1px 2px rgba(2, 6, 10, 0.5), 0 8px 24px rgba(2, 6, 10, 0.35);
  --el-2: 0 2px 4px rgba(2, 6, 10, 0.5), 0 18px 44px rgba(2, 6, 10, 0.45);
  --el-3: 0 4px 8px rgba(2, 6, 10, 0.5), 0 32px 72px rgba(2, 6, 10, 0.55);
  --ring: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  --hairline: 1px solid rgba(255, 255, 255, 0.07);

  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--steel-300);
  background: var(--ink-950);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
/* film grain over everything — the quiet premium layer */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  z-index: 2000;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.032;
  mix-blend-mode: overlay;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
:focus-visible { outline: 2px solid var(--accent-500); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--white);
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.container { width: min(var(--container), 100% - var(--gutter) * 2); margin-inline: auto; }

.skip-link {
  position: absolute;
  left: -999px; top: 0;
  background: var(--accent-500);
  color: var(--ink-950);
  padding: 0.75rem 1.25rem;
  z-index: 2100;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

::selection { background: var(--accent-500); color: var(--ink-950); }

/* ---------- Top bar ---------- */
.topbar {
  position: relative;
  z-index: 110;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-400);
  background: var(--ink-950);
  border-bottom: var(--hairline);
  padding: 0.5rem 1rem;
}
.topbar svg { display: inline-block; vertical-align: -2px; color: var(--accent-500); margin-right: 0.4rem; }

/* ---------- Floating glass nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.8rem 0;
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0.6rem 0.5rem 0.6rem;
  border-radius: 999px;
  background: linear-gradient(rgba(14, 20, 28, 0.68), rgba(10, 15, 21, 0.68));
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--el-2), var(--ring);
  transition: background 0.4s var(--ease-soft), box-shadow 0.4s var(--ease-soft);
}
.site-header.is-scrolled .nav-bar {
  background: linear-gradient(rgba(10, 15, 21, 0.92), rgba(7, 11, 16, 0.92));
  box-shadow: var(--el-3), var(--ring);
}

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img {
  height: 52px;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 6px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.brand:hover img {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(69, 177, 240, 0.45), 0 10px 26px rgba(0, 0, 0, 0.55);
}
.site-footer .brand img { height: 84px; }

.nav-links { display: flex; align-items: center; gap: clamp(0.9rem, 2vw, 1.8rem); }
.nav-links > a, .nav-drop > button {
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--steel-300);
  padding: 0.45rem 0;
  position: relative;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-links > a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--accent-500), transparent);
  transition: right 0.35s var(--ease-out);
}
.nav-links > a:hover, .nav-links > a.is-active, .nav-drop > button:hover { color: var(--white); }
.nav-links > a:hover::after, .nav-links > a.is-active::after { right: 0; }

/* Dropdown */
.nav-drop { position: relative; }
.nav-drop > button .caret { transition: transform 0.3s var(--ease-out); color: var(--accent-500); }
.nav-drop:hover > button .caret, .nav-drop:focus-within > button .caret { transform: rotate(180deg); }
.drop-menu {
  position: absolute;
  top: calc(100% + 1.1rem);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 250px;
  padding: 0.55rem;
  border-radius: var(--radius-md);
  background: linear-gradient(rgba(15, 21, 29, 0.97), rgba(10, 15, 21, 0.97));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--el-3), var(--ring);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0.3s;
}
.nav-drop:hover .drop-menu, .nav-drop:focus-within .drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.drop-menu a {
  display: block;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--steel-300);
  transition: background 0.2s, color 0.2s, padding-left 0.25s var(--ease-out);
}
.drop-menu a:hover { background: rgba(69, 177, 240, 0.1); color: var(--accent-500); padding-left: 1.15rem; }
.drop-menu .drop-all { border-top: var(--hairline); margin-top: 0.35rem; padding-top: 0.8rem; color: var(--accent-500); }

.nav-cta { display: flex; align-items: center; gap: 0.55rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 12px;
  border-radius: 50%;
  background: var(--ink-700);
  box-shadow: var(--ring);
}
.nav-toggle span {
  display: block;
  height: 2px; width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out), 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 (min-width: 901px) {
  .nav-links > .btn { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), background 0.3s, border-color 0.3s, color 0.3s;
  will-change: transform;
}
.btn:active { transform: scale(0.97); }
.btn-sm { padding: 0.62rem 1.3rem; font-size: 0.85rem; }
.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--accent-500), var(--accent-600) 70%);
  color: #04121e;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset, 0 10px 28px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset, 0 16px 40px var(--accent-glow); }
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 55%;
  transform: translateX(-140%) skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  pointer-events: none;
}
.btn-primary:hover::before { animation: sheen 1s var(--ease-out); }
@keyframes sheen { to { transform: translateX(330%) skewX(-20deg); } }
.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  box-shadow: var(--ring);
}
.btn-ghost:hover { border-color: rgba(69, 177, 240, 0.7); color: var(--accent-500); transform: translateY(-2px); }
.btn-dark { background: var(--ink-950); color: var(--white); box-shadow: var(--el-1); }
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--el-2); }

/* ---------- Photo hero (home) ---------- */
.hero {
  position: relative;
  min-height: calc(100svh - 118px);
  display: flex;
  align-items: center;
  margin-top: calc(-1 * (76px + 38px));
  padding: clamp(11rem, 24vh, 15rem) 0 clamp(6.5rem, 13vh, 9rem);
  background-color: var(--ink-950);
  background-image:
    linear-gradient(to top, var(--ink-950) 3%, rgba(7, 11, 16, 0) 36%),
    linear-gradient(100deg, rgba(6, 11, 17, 0.95) 10%, rgba(7, 13, 20, 0.66) 46%, rgba(9, 16, 25, 0.28) 100%),
    linear-gradient(rgba(16, 48, 78, 0.18), rgba(16, 48, 78, 0.18)),
    var(--hero-img, none);
  background-size: auto, auto, auto, cover;
  background-position: center, center, center, center 32%;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(69, 177, 240, 0.35);
  background: rgba(7, 11, 16, 0.55);
  backdrop-filter: blur(10px);
  color: var(--accent-500);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  box-shadow: var(--ring);
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-500); animation: pulse 2.4s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 var(--accent-glow); }
  70% { box-shadow: 0 0 0 11px rgba(69, 177, 240, 0); }
  100% { box-shadow: 0 0 0 0 rgba(69, 177, 240, 0); }
}

.hero h1 {
  font-size: var(--fs-hero);
  font-weight: 800;
  max-width: 13ch;
  margin-bottom: 1.5rem;
  text-shadow: 0 6px 50px rgba(0, 0, 0, 0.6);
}
.hero h1 .accent { color: var(--accent-500); }
.hero-lede {
  max-width: 50ch;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.75;
  color: var(--steel-200);
  margin-bottom: 1.8rem;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.6);
}

.hero-chips { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-bottom: 2.2rem; }
.hero-chips span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.48rem 1.05rem;
  border-radius: 999px;
  background: rgba(7, 11, 16, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--steel-200);
  box-shadow: var(--ring);
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.hero-chips span:hover { border-color: rgba(69, 177, 240, 0.6); transform: translateY(-2px); }
.hero-chips span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent-500); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: clamp(3rem, 7vh, 4.5rem); }

.hero-stats { display: flex; flex-wrap: wrap; gap: clamp(1.6rem, 4vw, 3.6rem); max-width: 780px; }
.hero-stats > div { padding-left: 1.15rem; border-left: 2px solid rgba(69, 177, 240, 0.5); }
.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.05;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}
.hero-stats span { font-size: 0.8rem; letter-spacing: 0.05em; color: var(--steel-300); }

.hero-badge {
  position: absolute;
  right: clamp(1rem, 4vw, 3.5rem);
  bottom: clamp(4.5rem, 9vh, 6.5rem);
  z-index: 2;
  padding: 1.15rem 1.45rem;
  border-radius: var(--radius-md);
  background: linear-gradient(rgba(10, 15, 21, 0.78), rgba(7, 11, 16, 0.78));
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--el-3), var(--ring);
  max-width: 264px;
}
.hero-badge .hb-top {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-500);
  margin-bottom: 0.45rem;
}
.hero-badge .hb-top .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-500); }
.hero-badge strong { display: block; color: var(--white); font-size: 0.97rem; line-height: 1.4; }
.hero-badge small { color: var(--steel-400); font-size: 0.76rem; }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  position: relative;
  margin-top: calc(-1 * (76px + 38px));
  padding: clamp(10.5rem, 23vh, 13.5rem) 0 clamp(4rem, 9vh, 5.5rem);
  background-color: var(--ink-950);
  background-image:
    linear-gradient(to top, var(--ink-950) 4%, rgba(7, 11, 16, 0.12) 58%),
    linear-gradient(100deg, rgba(6, 11, 17, 0.93) 8%, rgba(7, 13, 20, 0.6) 54%, rgba(9, 16, 25, 0.32) 100%),
    linear-gradient(rgba(16, 48, 78, 0.18), rgba(16, 48, 78, 0.18)),
    var(--hero-img, linear-gradient(160deg, var(--ink-800), var(--ink-950)));
  background-size: auto, auto, auto, cover;
  background-position: center, center, center, center 35%;
  background-repeat: no-repeat;
  overflow: hidden;
}
.page-hero .eyebrow-line {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent-500);
  margin-bottom: 1.2rem;
}
.page-hero .eyebrow-line::after { content: ""; width: 72px; height: 1px; background: linear-gradient(90deg, rgba(69, 177, 240, 0.7), transparent); }
.page-hero h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.1rem);
  font-weight: 800;
  max-width: 17ch;
  text-shadow: 0 5px 44px rgba(0, 0, 0, 0.6);
}
.page-hero p {
  max-width: 60ch;
  margin-top: 1.2rem;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.75;
  color: var(--steel-200);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}
.page-hero .hero-actions { margin: 2rem 0 0; }
.breadcrumbs { display: flex; gap: 0.55rem; font-size: 0.8rem; letter-spacing: 0.03em; color: var(--steel-400); margin-bottom: 1.2rem; }
.breadcrumbs a { transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--accent-500); }
.breadcrumbs span[aria-current] { color: var(--steel-200); }

/* ---------- Sections ---------- */
.section { padding: clamp(4.5rem, 11vw, 8rem) 0; }
.section-tight { padding: clamp(2.5rem, 6vw, 4rem) 0; }
.section-light { background: var(--paper); color: #4a5a68; }
.section-light h2, .section-light h3 { color: #0e1721; }
.section-tint {
  background:
    radial-gradient(60% 80% at 85% 0%, rgba(20, 80, 126, 0.1), transparent 60%),
    var(--ink-900);
}

.section-head { max-width: 720px; margin-bottom: clamp(2.75rem, 6vw, 4.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent-600);
  margin-bottom: 1rem;
}
.eyebrow::after { content: ""; width: 52px; height: 1px; background: currentColor; opacity: 0.5; }
.section-head.center .eyebrow::before { content: ""; width: 52px; height: 1px; background: currentColor; opacity: 0.5; }
.section-head h2 { font-size: var(--fs-h2); font-weight: 800; margin-bottom: 1.1rem; }
.section-head p { font-size: clamp(1rem, 1.3vw, 1.12rem); }

/* ---------- Promises ---------- */
.promises { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.promise {
  display: flex;
  gap: 1.05rem;
  align-items: flex-start;
  padding: 1.6rem 1.7rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, var(--ink-800), var(--ink-900) 80%);
  border: var(--hairline);
  box-shadow: var(--el-1), var(--ring);
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}
.promise:hover { transform: translateY(-4px); border-color: rgba(69, 177, 240, 0.35); box-shadow: var(--el-2), var(--ring); }
.promise strong { display: block; color: var(--white); font-family: var(--font-display); font-size: 1.05rem; letter-spacing: -0.02em; margin-bottom: 0.25rem; }
.promise p { font-size: 0.89rem; line-height: 1.65; color: var(--steel-400); }

/* ---------- Ticker ---------- */
.marquee {
  overflow: hidden;
  background: var(--ink-900);
  border-block: var(--hairline);
  padding: 1rem 0;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.marquee-track { display: flex; width: max-content; animation: marquee 36s linear infinite; }
.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 2.4rem;
  padding-right: 2.4rem;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--steel-400);
}
.marquee .sep { font-style: normal; color: var(--accent-500); font-size: 0.5rem; opacity: 0.8; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: clamp(1.1rem, 2.5vw, 1.6rem);
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.6rem, 3vw, 2.1rem);
  background: linear-gradient(165deg, var(--ink-800), var(--ink-900) 85%);
  border: var(--hairline);
  border-radius: var(--radius-lg);
  box-shadow: var(--el-1), var(--ring);
  transition: transform 0.45s var(--ease-out), border-color 0.45s, box-shadow 0.45s;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(460px circle at var(--mx, 50%) var(--my, 0%), rgba(69, 177, 240, 0.09), transparent 46%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.service-card::after {
  content: "";
  position: absolute;
  top: 0; left: 1.9rem; right: 72%;
  height: 2px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--accent-500), transparent);
  opacity: 0;
  transition: opacity 0.45s var(--ease-out), right 0.55s var(--ease-out);
  pointer-events: none;
}
.service-card:hover { transform: translateY(-5px); border-color: rgba(69, 177, 240, 0.35); box-shadow: var(--el-3), var(--ring); }
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { opacity: 1; right: 1.9rem; }
.card-num {
  position: absolute;
  top: 1.05rem; right: 1.3rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.14);
  pointer-events: none;
  transition: -webkit-text-stroke-color 0.4s;
}
.service-card:hover .card-num { -webkit-text-stroke-color: rgba(69, 177, 240, 0.55); }
.service-icon {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, rgba(69, 177, 240, 0.14), rgba(69, 177, 240, 0.05));
  border: 1px solid rgba(69, 177, 240, 0.25);
  color: var(--accent-500);
  flex-shrink: 0;
  box-shadow: var(--ring);
}
.service-card h3 { font-size: var(--fs-h3); letter-spacing: -0.02em; }
.service-card p { font-size: 0.93rem; line-height: 1.68; color: var(--steel-400); flex-grow: 1; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  color: var(--accent-500);
}
.card-link svg { transition: transform 0.3s var(--ease-out); }
.service-card:hover .card-link svg { transform: translateX(5px); }

/* ---------- Split & media ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.25rem, 6vw, 5.5rem); align-items: center; }
.split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--el-3), 0 0 0 1px rgba(255, 255, 255, 0.09);
  background: var(--ink-800);
}
.split-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 11, 16, 0.42), transparent 45%), linear-gradient(rgba(16, 48, 78, 0.1), rgba(16, 48, 78, 0.1));
  pointer-events: none;
}
.split-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3.15;
  transition: transform 0.9s var(--ease-soft);
}
.split-media:hover img { transform: scale(1.035); }
.badge-float {
  position: absolute;
  left: 1.2rem; bottom: 1.2rem;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-md);
  background: linear-gradient(rgba(10, 15, 21, 0.82), rgba(7, 11, 16, 0.82));
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--el-2);
  color: var(--white);
  font-weight: 700;
  font-size: 0.86rem;
}
.badge-float svg { color: var(--accent-500); flex-shrink: 0; }

.check-list { display: grid; gap: 1.05rem; margin-top: 1.9rem; }
.check-list li { display: flex; gap: 0.95rem; align-items: flex-start; }
.check-list .tick {
  display: grid;
  place-items: center;
  width: 26px; height: 26px;
  margin-top: 0.2rem;
  border-radius: 50%;
  background: linear-gradient(160deg, rgba(69, 177, 240, 0.2), rgba(69, 177, 240, 0.07));
  border: 1px solid rgba(69, 177, 240, 0.3);
  color: var(--accent-500);
  flex-shrink: 0;
}
.check-list strong { display: block; color: var(--white); font-weight: 700; letter-spacing: -0.01em; }
.section-light .check-list strong { color: #0e1721; }
.check-list span { font-size: 0.91rem; line-height: 1.6; color: var(--steel-400); }
.section-light .check-list span { color: #5c6b78; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: clamp(1.2rem, 3vw, 1.8rem);
  counter-reset: step;
}
.step {
  position: relative;
  padding: 2.1rem 1.8rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.025);
  border: var(--hairline);
  box-shadow: var(--ring);
  transition: transform 0.4s var(--ease-out), border-color 0.4s, background 0.4s;
}
.step:hover { transform: translateY(-4px); border-color: rgba(69, 177, 240, 0.3); background: rgba(69, 177, 240, 0.04); }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.25px rgba(69, 177, 240, 0.75);
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
}
.step h3 { font-size: 1.12rem; margin-bottom: 0.55rem; letter-spacing: -0.02em; }
.step p { font-size: 0.91rem; line-height: 1.65; color: var(--steel-400); }

/* ---------- Chips / areas ---------- */
.chip-cloud { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.chip {
  padding: 0.58rem 1.2rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid #e2e8ee;
  color: #4a5a68;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(14, 30, 44, 0.05), 0 4px 12px rgba(14, 30, 44, 0.05);
  transition: transform 0.25s var(--ease-out), border-color 0.25s, color 0.25s, box-shadow 0.25s;
}
.chip:hover, a.chip-link:hover { transform: translateY(-2px); border-color: var(--accent-600); color: var(--accent-700); box-shadow: 0 6px 18px rgba(36, 146, 219, 0.18); }

/* ---------- Service detail ---------- */
.service-body h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 1.1rem; }
.service-body p { line-height: 1.75; }
.service-body p + p { margin-top: 1rem; }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.6rem; }
.tag {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.38rem 0.9rem;
  border-radius: 999px;
  background: rgba(69, 177, 240, 0.09);
  border: 1px solid rgba(69, 177, 240, 0.25);
  color: var(--accent-500);
}
.related { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1.1rem; }
.related a {
  padding: 0.58rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--steel-300);
  box-shadow: var(--ring);
  transition: border-color 0.25s, color 0.25s, transform 0.25s var(--ease-out);
}
.related a:hover { border-color: rgba(69, 177, 240, 0.6); color: var(--accent-500); transform: translateY(-2px); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 0.85rem; }
.faq details {
  border: var(--hairline);
  border-radius: var(--radius-md);
  background: linear-gradient(165deg, var(--ink-800), var(--ink-900));
  overflow: hidden;
  box-shadow: var(--el-1), var(--ring);
  transition: border-color 0.3s;
}
.faq details[open] { border-color: rgba(69, 177, 240, 0.35); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--white);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent-500);
  transition: transform 0.35s var(--ease-out);
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 1.5rem 1.35rem; color: var(--steel-400); font-size: 0.94rem; line-height: 1.7; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(90% 160% at 90% -20%, rgba(143, 216, 255, 0.35), transparent 55%),
    linear-gradient(120deg, #103c60, var(--accent-700) 55%, var(--accent-600));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: clamp(2.6rem, 6vw, 4.25rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--el-3), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(80% 100% at 70% 0%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(80% 100% at 70% 0%, black, transparent 80%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); font-size: clamp(1.55rem, 3.4vw, 2.35rem); max-width: 22ch; }
.cta-band p { color: rgba(255, 255, 255, 0.82); font-weight: 500; margin-top: 0.5rem; }
.cta-band .btn-dark { background: var(--white); color: #0a2036; }
.cta-band .btn-ghost { border-color: rgba(255, 255, 255, 0.45) !important; color: var(--white) !important; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.info-tiles { display: grid; gap: 0.9rem; margin-top: 2rem; }
.info-tile {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.3rem 1.45rem;
  border-radius: var(--radius-md);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  border: var(--hairline);
  box-shadow: var(--ring);
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.info-tile:hover { border-color: rgba(69, 177, 240, 0.35); transform: translateY(-2px); }
.info-tile .service-icon { width: 46px; height: 46px; }
.info-tile strong { display: block; color: var(--white); margin-bottom: 0.2rem; letter-spacing: -0.01em; }
.info-tile a { color: var(--steel-300); transition: color 0.2s; }
.info-tile a:hover { color: var(--accent-500); }

.contact-form {
  background: linear-gradient(165deg, var(--ink-800), var(--ink-900) 85%);
  border: var(--hairline);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
  box-shadow: var(--el-2), var(--ring);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-400);
  margin-bottom: 0.5rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.9rem 1.05rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 11, 16, 0.65);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.35);
  color: var(--white);
  font: inherit;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: rgba(69, 177, 240, 0.7);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.35), 0 0 0 3px rgba(69, 177, 240, 0.16);
}
.field textarea { resize: vertical; min-height: 132px; }
.form-note { font-size: 0.78rem; color: var(--steel-400); margin-top: 0.95rem; }

/* ---------- Hours ---------- */
.hours { width: 100%; border-collapse: collapse; font-size: 0.93rem; }
.hours td { padding: 0.6rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.hours td:last-child { text-align: right; color: var(--white); font-weight: 600; font-variant-numeric: tabular-nums; }
.hours tr.closed td:last-child { color: var(--steel-400); font-weight: 400; }
.hours tr:last-child td { border-bottom: 0; }

/* ---------- Values (light) ---------- */
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr)); gap: 1.4rem; }
.value-card {
  padding: 2.1rem 1.8rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid #e6ebf0;
  box-shadow: 0 1px 3px rgba(14, 30, 44, 0.05), 0 12px 32px rgba(14, 30, 44, 0.07);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.value-card:hover { transform: translateY(-5px); box-shadow: 0 2px 6px rgba(14, 30, 44, 0.06), 0 24px 52px rgba(14, 30, 44, 0.13); }
.value-card .service-icon { margin-bottom: 1.2rem; background: linear-gradient(160deg, rgba(36, 146, 219, 0.14), rgba(36, 146, 219, 0.05)); box-shadow: 0 8px 20px rgba(36, 146, 219, 0.16); }
.value-card h3 { font-size: 1.14rem; margin-bottom: 0.55rem; letter-spacing: -0.02em; }
.value-card p { font-size: 0.92rem; line-height: 1.68; color: #5c6b78; }

/* ---------- Quote cards ---------- */
.quote-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.6rem, 3vw, 2.1rem);
  background: linear-gradient(165deg, var(--ink-800), var(--ink-900));
  border: var(--hairline);
  border-radius: var(--radius-lg);
  box-shadow: var(--el-1), var(--ring);
}
.quote-card blockquote { color: var(--steel-300); font-size: 1rem; line-height: 1.75; flex-grow: 1; }
.quote-card figcaption strong { display: block; color: var(--white); font-family: var(--font-display); }
.quote-card figcaption span { font-size: 0.84rem; color: var(--steel-400); }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background-color: #04070b;
  background-image:
    linear-gradient(rgba(4, 7, 11, 0.94), rgba(4, 7, 11, 0.975)),
    var(--footer-img, none);
  background-size: auto, cover;
  background-position: center;
  border-top: var(--hairline);
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 1.6rem;
  font-size: 0.92rem;
}
.footer-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-bottom: clamp(2.25rem, 5vw, 3.25rem);
  margin-bottom: clamp(2.25rem, 5vw, 3.25rem);
  border-bottom: var(--hairline);
}
.footer-cta h2 { font-size: clamp(1.5rem, 3.2vw, 2.2rem); font-weight: 800; max-width: 24ch; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 3vw, 2.6rem);
  margin-bottom: clamp(2.25rem, 5vw, 3.25rem);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer-nav a { color: var(--steel-300); transition: color 0.25s; }
.footer-nav a:hover { color: var(--accent-500); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 2.75rem;
}
.footer-grid h4 {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-500);
  margin-bottom: 1.2rem;
}
.footer-grid ul { display: grid; gap: 0.6rem; }
.footer-grid a { color: var(--steel-300); transition: color 0.25s; }
.footer-grid a:hover { color: var(--accent-500); }
.footer-about p { margin-top: 1.1rem; color: var(--steel-400); line-height: 1.7; max-width: 36ch; }
.trust-card {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1.15rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
  border: var(--hairline);
  box-shadow: var(--ring);
}
.trust-card svg { color: var(--accent-500); flex-shrink: 0; }
.trust-card strong { display: block; color: var(--white); font-size: 0.87rem; }
.trust-card small { color: var(--steel-400); font-size: 0.74rem; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  color: var(--steel-400);
  font-size: 0.8rem;
  box-shadow: var(--ring);
}
.kw-credit { color: var(--steel-300); font-weight: 600; transition: color 0.25s; }
.kw-credit:hover { color: var(--accent-500); }

/* ---------- Utility & motion ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--accent-700), var(--accent-500));
  z-index: 2050;
  pointer-events: none;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s var(--ease-soft), transform 0.9s var(--ease-soft);
  transition-delay: var(--delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: none; }
.rise {
  animation: rise 1s var(--ease-out) both;
  animation-delay: var(--delay, 0s);
}
@keyframes rise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .rise { animation: none; opacity: 1; }
  .marquee-track { animation: none; }
  .scroll-progress { display: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav-links > a, .nav-drop > button { font-size: 0.74rem; letter-spacing: 0.1em; }
}

@media (max-width: 960px) {
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split-media { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .promises { grid-template-columns: 1fr; }
  .hero-badge { display: none; }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-cta .btn-ghost { display: none; }
  .nav-cta { gap: 0.45rem; }
  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 90;
    flex-direction: column;
    justify-content: center;
    gap: 1.05rem;
    background: linear-gradient(rgba(5, 8, 12, 0.97), rgba(7, 11, 16, 0.97));
    backdrop-filter: blur(20px);
    transform: translateY(-100%);
    transition: transform 0.5s var(--ease-out), visibility 0.5s;
    visibility: hidden;
    overflow-y: auto;
    padding: 5.5rem 1.5rem 3rem;
  }
  .nav-links.is-open { transform: none; visibility: visible; }
  .nav-links > a { font-size: 1.35rem; font-weight: 700; color: var(--white); text-transform: none; letter-spacing: -0.01em; }
  .nav-links > a.btn-primary { color: #04121e; margin-top: 0.5rem; font-size: 1rem; }
  .nav-links > a::after { display: none; }
  .nav-drop { width: min(420px, 88vw); text-align: center; }
  .nav-drop > button { display: none; }
  .drop-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.2rem 1rem;
  }
  .drop-menu a { font-size: 0.88rem; text-align: center; padding: 0.5rem 0.4rem; }
  .drop-menu a:hover { padding-left: 0.4rem; }
  .drop-menu .drop-all { grid-column: 1 / -1; border-top: 0; margin-top: 0; padding-top: 0.5rem; }
  body.nav-locked { overflow: hidden; }
  .hero, .page-hero { margin-top: calc(-1 * (72px + 36px)); }
}

@media (max-width: 640px) {
  .nav-phone .ph-num { display: none; }
  .nav-phone { padding: 0.62rem 0.85rem; }
  .brand img { height: 46px; }
}

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { gap: 1.1rem 1.7rem; }
  .footer-bottom { justify-content: center; text-align: center; border-radius: var(--radius-lg); }
  .topbar { font-size: 0.64rem; letter-spacing: 0.08em; }
}
