/* ============================================================
   VLA Electrical — core stylesheet
   Aesthetic: clean electrical engineering. Charcoal base,
   voltage blue + amber accent, copper-wire texture, lightning.
   ============================================================ */

:root {
  /* palette */
  --ink: #0b0f17;
  --ink-2: #11161f;
  --panel: #161c27;
  --panel-2: #1c2330;
  --line: #283143;
  --line-soft: rgba(255, 255, 255, 0.06);
  --text: #eef2f8;
  --muted: #9aa6b8;
  --muted-2: #6b7688;

  /* brand — deep blue taken from the original VLA site (#0a2472) */
  --volt-deep: #0a2472;     /* original site deep navy */
  --volt: #143a9e;          /* mid fill, deep blue family */
  --volt-bright: #2f6fdc;   /* readable highlight on dark */
  --amber: #ffb020;         /* live amber */
  --amber-bright: #ffc24d;
  --copper: #c9763a;
  --good: #28c76f;

  /* type */
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-head: "Sora", "Inter", system-ui, sans-serif;

  /* spacing / shape */
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1200px;
  --shadow: 0 18px 50px -22px rgba(0, 0, 0, 0.75);
  --shadow-soft: 0 10px 30px -18px rgba(0, 0, 0, 0.6);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; background: var(--ink-2); overscroll-behavior-y: none; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overscroll-behavior-y: none;
}

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

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; position: relative; }
.section-sm { padding: 64px 0; }

/* ---------- angled section dividers (nod to original VLA site) ---------- */
/* a section flagged .slant gets a diagonal top edge instead of a flat one */
.slant { clip-path: polygon(0 3.2vw, 100% 0, 100% 100%, 0 100%); margin-top: -3.2vw; padding-top: calc(96px + 3.2vw); position: relative; z-index: 1; }
.slant-rev { clip-path: polygon(0 0, 100% 3.2vw, 100% 100%, 0 100%); margin-top: -3.2vw; padding-top: calc(96px + 3.2vw); position: relative; z-index: 1; }
/* thin diagonal accent line sitting on the seam */
.slant::before, .slant-rev::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3.4vw;
  background: linear-gradient(90deg, transparent, rgba(47,111,220,0.5), transparent);
  z-index: 2; pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0); mask: linear-gradient(#000 0 0);
}
.slant::before { clip-path: polygon(0 calc(3.2vw - 2px), 100% -2px, 100% 3.2vw, 0 calc(3.2vw + 2px)); }
.slant-rev::before { clip-path: polygon(0 -2px, 100% calc(3.2vw - 2px), 100% calc(3.2vw + 2px), 0 3.2vw); }
@media (max-width: 640px) {
  .slant, .slant-rev { clip-path: polygon(0 5vw, 100% 0, 100% 100%, 0 100%); margin-top: -5vw; padding-top: calc(64px + 5vw); }
  .slant-rev { clip-path: polygon(0 0, 100% 5vw, 100% 100%, 0 100%); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--volt-bright);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--volt), transparent);
}

.section-title {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  margin: 16px 0 14px;
  letter-spacing: -0.03em;
}
/* index number inside eyebrows, e.g. <span class="eyebrow"><i>01</i> What we do</span> */
.eyebrow i { font-style: normal; font-family: var(--font-head); font-weight: 700; color: var(--amber); letter-spacing: 0; }
.eyebrow i::after { content: " /"; color: var(--muted-2); }
.section-lead {
  color: var(--muted);
  max-width: 60ch;
  font-size: 1.05rem;
}

/* ---------- buttons (square-ish, never pills) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), border-color 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(135deg, var(--volt), var(--volt-bright));
  color: #fff;
  box-shadow: 0 12px 30px -12px rgba(47, 111, 220, 0.7);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(47, 111, 220, 0.85); }
.btn-amber {
  background: linear-gradient(135deg, var(--amber), var(--amber-bright));
  color: #1a1300;
  box-shadow: 0 12px 30px -12px rgba(255, 176, 32, 0.6);
}
.btn-amber:hover { transform: translateY(-2px); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--volt); background: rgba(47, 111, 220, 0.08); }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11, 15, 23, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; }
.brand .mark { width: 38px; height: 38px; }
.brand .wordmark { height: 38px; width: auto; display: block; }
.brand .brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.7rem; letter-spacing: 0.12em; color: var(--muted); text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 0.92rem; font-weight: 500; color: var(--muted); transition: color 0.2s; position: relative; }
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--volt); transition: width 0.25s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone { display: flex; align-items: center; gap: 8px; font-weight: 600; font-family: var(--font-head); font-size: 0.92rem; }
.nav-phone svg { width: 18px; height: 18px; color: var(--amber); }
.burger { display: none; background: none; border: 1px solid var(--line); border-radius: 8px; padding: 10px; cursor: pointer; }
.burger span { display: block; width: 20px; height: 2px; background: var(--text); margin: 4px 0; transition: 0.3s; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 76px;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 78% -10%, rgba(47, 111, 220, 0.18), transparent 60%),
    radial-gradient(900px 500px at 8% 110%, rgba(255, 176, 32, 0.10), transparent 55%),
    var(--ink);
}
/* textured layers */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 70% 40%, black, transparent 80%);
  pointer-events: none;
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.5; pointer-events: none; mix-blend-mode: overlay;
}
#lightning-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 0.82rem; color: var(--muted);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--good); box-shadow: 0 0 0 4px rgba(40, 199, 111, 0.18); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 {
  font-size: clamp(2.8rem, 6.6vw, 5.4rem);
  margin: 22px 0 20px;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
/* split-word reveal (spans injected by JS) */
.hero h1 .wr { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hero h1 .wi { display: inline-block; transform: translateY(115%); animation: word-up 0.85s var(--ease) forwards; animation-delay: var(--wd, 0s); }
@keyframes word-up { to { transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .hero h1 .wi { transform: none; animation: none; } }
.hero h1 .glow {
  background: linear-gradient(120deg, var(--volt-bright), var(--amber-bright));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-lead { font-size: 1.18rem; color: var(--muted); max-width: 52ch; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-trust .item { display: flex; flex-direction: column; }
.hero-trust .num { font-family: var(--font-head); font-weight: 700; font-size: 1.6rem; color: var(--text); }
.hero-trust .lbl { font-size: 0.8rem; color: var(--muted); }

/* hero visual card */
.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--panel);
  aspect-ratio: 4 / 5;
}
.hero-card video, .hero-card img { width: 100%; height: 100%; object-fit: cover; }
/* fallback look when video file is absent */
.hero-card, .split-media {
  background-image:
    radial-gradient(420px 300px at 70% 20%, rgba(47, 111, 220,0.30), transparent 60%),
    radial-gradient(360px 260px at 20% 90%, rgba(255,176,32,0.18), transparent 60%),
    linear-gradient(160deg, #1a2436, #0e131d);
}
.hero-card::after, .split-media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}
.hero-card > *, .split-media > * { position: relative; z-index: 1; }
.hero-card video, .split-media video { position: relative; z-index: 1; }
.hero-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,15,23,0.85));
}
.hero-card .tag {
  position: absolute; left: 18px; bottom: 18px; right: 18px;
  display: flex; align-items: center; justify-content: space-between;
}
.hero-card .tag .who { font-family: var(--font-head); font-weight: 600; }
.hero-card .tag .meta { font-size: 0.82rem; color: var(--muted); }
.hero-card .live {
  position: absolute; top: 16px; left: 16px;
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(11,15,23,0.6); border: 1px solid var(--line);
  padding: 6px 11px; border-radius: 8px; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.hero-card .live i { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 10px var(--amber); }

/* floating accreditation chip on hero card */
.hero-float {
  position: absolute; right: -14px; bottom: 60px;
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: 12px; padding: 12px 16px; box-shadow: var(--shadow-soft);
  display: flex; align-items: center; gap: 10px;
  animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-float svg { width: 30px; height: 30px; color: var(--volt-bright); }
.hero-float .t { font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; }
.hero-float .s { font-size: 0.72rem; color: var(--muted); }

/* ---------- marquee strip ---------- */
.strip { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--ink-2); overflow: hidden; }
.marquee { display: flex; gap: 64px; padding: 22px 0; white-space: nowrap; animation: scroll 16s linear infinite; }
.strip:hover .marquee { animation-play-state: paused; }
.marquee span { display: inline-flex; align-items: center; gap: 14px; color: var(--text); font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; letter-spacing: 0.02em; text-transform: uppercase; }
.marquee span:nth-child(even) { color: transparent; -webkit-text-stroke: 1px rgba(238,242,248,0.45); }
.marquee span svg { width: 20px; height: 20px; color: var(--amber); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- bento services ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 18px;
  margin-top: 48px;
}
.tile {
  position: relative;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex; flex-direction: column;
}
.tile::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(420px 200px at var(--mx, 50%) var(--my, 0%), rgba(47, 111, 220, 0.14), transparent 70%);
  opacity: 0; transition: opacity 0.35s; pointer-events: none;
}
.tile:hover { transform: translateY(-6px); border-color: rgba(47, 111, 220, 0.5); box-shadow: var(--shadow); }
.tile:hover::after { opacity: 1; }
.tile .ico { width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center; background: rgba(47, 111, 220, 0.10); border: 1px solid rgba(47, 111, 220, 0.25); margin-bottom: 18px; }
.tile .ico svg { width: 28px; height: 28px; color: var(--volt-bright); }
.tile h3 { font-size: 1.2rem; margin-bottom: 8px; }
.tile p { color: var(--muted); font-size: 0.93rem; flex: 1; }
.tile .more { margin-top: 16px; display: inline-flex; align-items: center; gap: 7px; color: var(--volt-bright); font-weight: 600; font-size: 0.88rem; }
.tile .more svg { width: 15px; height: 15px; transition: transform 0.25s; }
.tile:hover .more svg { transform: translateX(4px); }
/* spans */
.tile.wide { grid-column: span 2; }
.tile.feature { grid-column: span 2; grid-row: span 2; background: linear-gradient(160deg, #10204a, var(--panel)); border-color: rgba(47, 111, 220,0.4); }
.tile.feature .ico { background: rgba(255,176,32,0.12); border-color: rgba(255,176,32,0.3); }
.tile.feature .ico svg { color: var(--amber-bright); }
.tile.feature h3 { font-size: 1.7rem; }
.tile.amber .ico { background: rgba(255,176,32,0.12); border-color: rgba(255,176,32,0.3); }
.tile.amber .ico svg { color: var(--amber-bright); }
.tile.amber:hover { border-color: rgba(255,176,32,0.5); }
/* tile with photo */
.tile-photo { position: relative; min-height: 230px; padding: 0; justify-content: flex-end; }
.tile-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.tile-photo .scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(11,15,23,0.34), rgba(11,15,23,0.48) 38%, rgba(11,15,23,0.97)); }
.tile-photo .pc { position: relative; z-index: 2; padding: 26px; }
.tile-photo .pc h3 { font-size: 1.3rem; margin-bottom: 6px; text-shadow: 0 1px 10px rgba(0,0,0,0.6); }
.tile-photo .pc p { color: var(--text); opacity: 0.95; text-shadow: 0 1px 8px rgba(0,0,0,0.6); }
.tile-photo .more { color: #a8c7ff; text-shadow: 0 1px 8px rgba(0,0,0,0.65); }
.tile-photo .ico { position: absolute; top: 22px; left: 22px; z-index: 2; margin: 0; background: rgba(11,15,23,0.55); backdrop-filter: blur(6px); }
.tile.feature.tile-photo .pc h3 { font-size: 1.7rem; }

/* ---------- accreditations ---------- */
.accred-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 40px;
}
.accred {
  background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: var(--radius);
  padding: 22px 14px; display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center; transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.accred:hover { transform: translateY(-4px); border-color: var(--volt); box-shadow: 0 12px 28px -16px rgba(0,0,0,0.5); }
.accred svg { width: 46px; height: 46px; }
/* readable text on the white card */
.accred .name { font-family: var(--font-head); font-weight: 700; font-size: 0.92rem; color: #0b0f17; }
.accred .sub { font-size: 0.72rem; color: #5b6573; }
/* deep-blue icons on the light card */
.accred svg[style*="--volt-bright"], .accred .ico-blue { color: var(--volt-deep) !important; }
/* white chip for coloured trade-body logos */
.accred.logo-chip { justify-content: center; padding: 22px 18px; }
.accred.logo-chip img { width: auto; max-width: 100%; max-height: 64px; object-fit: contain; }

/* ---------- about / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); aspect-ratio: 5/4; }
.split-media video, .split-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-list { display: grid; gap: 18px; margin-top: 28px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .check { flex: none; width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; background: rgba(40,199,111,0.12); border: 1px solid rgba(40,199,111,0.3); }
.feature-list .check svg { width: 16px; height: 16px; color: var(--good); }
.feature-list strong { display: block; font-family: var(--font-head); }
.feature-list span { color: var(--muted); font-size: 0.92rem; }

/* ---------- stats band ---------- */
.band { background: linear-gradient(135deg, var(--volt), #0a2472); position: relative; overflow: hidden; }
.band::before { content:""; position:absolute; inset:0; background-image: linear-gradient(rgba(255,255,255,0.08) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.08) 1px,transparent 1px); background-size:40px 40px; opacity:0.5; }
.band .container { position: relative; }
.band-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.band .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.2rem,5vw,3.4rem); color:#fff; }
.band .lbl { color: rgba(255,255,255,0.94); font-weight: 500; }

/* ---------- reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
.review {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; display: flex; flex-direction: column; gap: 14px; transition: transform 0.3s var(--ease), border-color 0.3s;
}
.review:hover { transform: translateY(-5px); border-color: rgba(255,176,32,0.4); }
.stars { display: flex; gap: 3px; }
.stars svg { width: 18px; height: 18px; color: var(--amber); }
.review p { color: var(--text); font-size: 0.96rem; line-height: 1.65; flex: 1; }
.review .who { display: flex; align-items: center; gap: 12px; }
.review .avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; color:#fff; }
.review .who .n { font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; }
.review .who .g { display:flex; align-items:center; gap:6px; font-size: 0.78rem; color: var(--muted); }
.review .who .g svg { width: 14px; height: 14px; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; }
.contact-info .info-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--line-soft); }
.contact-info .info-item:last-child { border-bottom: none; }
.contact-info .ic { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(47, 111, 220,0.1); border: 1px solid rgba(47, 111, 220,0.25); }
.contact-info .ic svg { width: 22px; height: 22px; color: var(--volt-bright); }
.contact-info .info-item h4 { font-size: 1rem; margin-bottom: 3px; }
.contact-info .info-item a, .contact-info .info-item p { color: var(--muted); font-size: 0.95rem; }
.contact-info .info-item a:hover { color: var(--volt-bright); }

.hours-list { margin-top: 8px; }
.hours-list li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--line-soft); font-size: 0.9rem; }
.hours-list li span:first-child { color: var(--muted); }
.hours-list .open { color: var(--good); font-weight: 600; }

.form-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px; box-shadow: var(--shadow-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 7px; color: var(--text); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; background: var(--ink-2); border: 1px solid var(--line);
  border-radius: 10px; color: var(--text); font-family: var(--font-body); font-size: 0.95rem; transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--volt); box-shadow: 0 0 0 3px rgba(47, 111, 220,0.15);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 14px; text-align: center; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink-2); border-top: 1px solid var(--line-soft); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-grid h5 { font-family: var(--font-head); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.footer-grid ul li { margin-bottom: 11px; }
.footer-grid ul li a { color: var(--muted); font-size: 0.92rem; transition: color 0.2s; }
.footer-grid ul li a:hover { color: var(--text); }
.footer-about p { color: var(--muted); font-size: 0.92rem; margin: 16px 0 20px; max-width: 38ch; }
.socials { display: flex; gap: 12px; }
.socials a { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: var(--panel); border: 1px solid var(--line); transition: transform 0.25s, border-color 0.25s, background 0.25s; }
.socials a:hover { transform: translateY(-3px); border-color: var(--volt); background: rgba(47, 111, 220,0.1); }
.socials a svg { width: 18px; height: 18px; color: var(--text); }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 0.85rem; color: var(--muted); }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--text); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(34px); filter: blur(6px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; filter: blur(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; filter: none; transition: none; } }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }

/* ---------- page hero (sub pages) ---------- */
.page-hero { padding: 150px 0 70px; position: relative; overflow: hidden;
  background: radial-gradient(900px 400px at 80% -20%, rgba(47, 111, 220,0.15), transparent 60%), var(--ink); }
.page-hero::before { content:""; position:absolute; inset:0; background-image: linear-gradient(rgba(255,255,255,0.02) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.02) 1px,transparent 1px); background-size:48px 48px; mask-image: radial-gradient(circle at 75% 0%, black, transparent 75%); }
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(2.2rem,5vw,3.4rem); margin-bottom: 14px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.85rem; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--volt-bright); }

/* legal / prose */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.5rem; margin: 36px 0 14px; }
.prose h3 { font-size: 1.15rem; margin: 26px 0 10px; }
.prose p, .prose li { color: var(--muted); margin-bottom: 14px; }
.prose ul { list-style: disc; padding-left: 22px; }
.prose a { color: var(--volt-bright); }

/* faq */
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; background: var(--panel); }
.faq-q { width: 100%; text-align: left; background: none; border: none; color: var(--text); font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; padding: 22px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .pm { flex: none; width: 26px; height: 26px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 7px; transition: transform 0.3s, background 0.3s; }
.faq-q .pm svg { width: 14px; height: 14px; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); background: var(--volt); border-color: var(--volt); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a-inner { padding: 0 24px 22px; color: var(--muted); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 460px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .tile.feature { grid-column: span 2; grid-row: span 1; }
  .tile.wide { grid-column: span 2; }
  .accred-grid { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .band-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 860px) {
  .nav-links, .nav-phone { display: none; }
  .nav-cta .btn-primary { display: none; }
  .burger { display: block; }
  .brand small { display: none; }
  .brand { font-size: 1.05rem; }
  .brand span { white-space: nowrap; }
  .nav-links.open { display: flex; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; background: var(--ink-2); padding: 22px 24px; gap: 16px; border-bottom: 1px solid var(--line); z-index: 99; }
  .nav-links.open a { font-size: 1rem; color: var(--text); }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .bento { grid-template-columns: 1fr; }
  .tile.wide, .tile.feature { grid-column: span 1; }
  .accred-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .band-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* mobile nav toggle helper */
.mobile-open { overflow: hidden; }

/* ============================================================
   Award-craft layer — selection, scrollbar, grain, cursor,
   progress bar, micro-interactions, mega footer
   ============================================================ */

/* selection + scrollbar */
::selection { background: var(--amber); color: #0b0f17; }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--panel-2); border-radius: 6px; border: 2px solid var(--ink); }
::-webkit-scrollbar-thumb:hover { background: var(--volt); }

/* site-wide film grain */
body::after {
  content: ""; position: fixed; inset: -100%; z-index: 2000; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.038; animation: grain-shift 9s steps(6) infinite;
}
@keyframes grain-shift {
  0%,100% { transform: translate(0,0); } 20% { transform: translate(-4%,3%); }
  40% { transform: translate(3%,-4%); } 60% { transform: translate(-3%,-2%); } 80% { transform: translate(4%,2%); }
}
@media (prefers-reduced-motion: reduce) { body::after { animation: none; } }

/* scroll progress — amber current running along the top */
.progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 100%; z-index: 300;
  transform-origin: 0 50%; transform: scaleX(0); pointer-events: none;
  background: linear-gradient(90deg, var(--volt-bright), var(--amber));
  box-shadow: 0 0 12px rgba(255,176,32,0.55);
}

/* custom cursor — spark dot + trailing ring (fine pointers only) */
.cursor-dot, .cursor-ring { display: none; }
@media (hover: hover) and (pointer: fine) {
  .cursor-dot, .cursor-ring {
    display: block; position: fixed; top: 0; left: 0; z-index: 4000; pointer-events: none;
    border-radius: 50%; transform: translate(-50%, -50%);
  }
  .cursor-dot { width: 7px; height: 7px; background: var(--amber); box-shadow: 0 0 10px rgba(255,176,32,0.8); }
  .cursor-ring {
    width: 34px; height: 34px; border: 1.5px solid rgba(47,111,220,0.55);
    transition: width 0.25s var(--ease), height 0.25s var(--ease), border-color 0.25s, background 0.25s;
  }
  .cursor-ring.hot { width: 58px; height: 58px; border-color: var(--amber); background: rgba(255,176,32,0.07); }
  body.has-cursor, body.has-cursor a, body.has-cursor button, body.has-cursor .tile { cursor: none; }
}

/* hero background outline word */
.hero-bgword {
  position: absolute; right: -2vw; bottom: -4vw; z-index: 0; pointer-events: none;
  font-family: var(--font-head); font-weight: 800; font-size: clamp(10rem, 26vw, 24rem);
  line-height: 0.8; letter-spacing: -0.04em; color: transparent;
  -webkit-text-stroke: 1px rgba(238,242,248,0.055); user-select: none;
}

/* hero scroll cue */
.scroll-cue {
  position: absolute; left: 26px; bottom: 26px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 0.66rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--muted-2);
  writing-mode: vertical-rl;
}
.scroll-cue::after {
  content: ""; width: 1px; height: 54px;
  background: linear-gradient(180deg, var(--amber), transparent);
  animation: cue-drop 1.8s var(--ease) infinite;
}
@keyframes cue-drop { 0% { transform: scaleY(0); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: top; } 56% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@media (max-width: 980px) { .scroll-cue { display: none; } }
@media (prefers-reduced-motion: reduce) { .scroll-cue::after { animation: none; } }

/* photo tiles — image zoom on hover */
.tile-photo img { transition: transform 0.8s var(--ease); }
.tile-photo:hover img { transform: scale(1.06); }

/* buttons — shine sweep */
.btn::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: -80%; width: 50%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg); transition: left 0.6s var(--ease); pointer-events: none;
}
.btn:hover::before { left: 130%; }

/* reviews — oversized quote glyph */
.review { position: relative; }
.review::before {
  content: "\201C"; position: absolute; top: 2px; right: 18px;
  font-family: var(--font-head); font-weight: 800; font-size: 5rem; line-height: 1;
  color: rgba(47,111,220,0.18); pointer-events: none;
}

/* stats band — bigger voltage numbers */
.band .num { font-size: clamp(2.8rem, 6vw, 4.4rem); letter-spacing: -0.03em; }

/* footer mega wordmark */
.footer-mega {
  display: block; overflow: hidden; margin-bottom: 42px;
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2.4rem, 10.6vw, 9.5rem); line-height: 0.92; letter-spacing: -0.04em;
  color: transparent; -webkit-text-stroke: 1px rgba(238,242,248,0.14);
  user-select: none; transition: -webkit-text-stroke-color 0.4s;
  text-align: center; white-space: nowrap;
}
.footer-mega:hover { -webkit-text-stroke-color: rgba(255,176,32,0.5); }
@media (max-width: 640px) { .footer-mega { white-space: normal; font-size: clamp(2rem, 12.5vw, 4rem); } }
@media (max-width: 640px) { .hero-float { display: none; } }
