/* =============================================================
   DA Electrical London — Design System
   Engineered Commercial: deep ink canvas, architectural Archivo
   headings, IBM Plex precision, a single amber "live-wire" accent,
   and a recurring circuit/containment-line motif.
   ============================================================= */

/* -------------------------------------------------------------
   1. Tokens
   ------------------------------------------------------------- */
:root {
  /* Ink (dark) scale */
  --ink-900: #0b0e13;
  --ink-800: #11151c;
  --ink-700: #161b24;
  --ink-600: #1f2630;
  --ink-500: #2b3340;

  /* Paper (light) scale */
  --paper: #ffffff;
  --bg: #fbfbfc;
  --bg-2: #f4f5f7;
  --bg-3: #eceef1;
  --line: #e4e7eb;
  --line-2: #d6dae0;

  /* Text */
  --text: #12161d;
  --text-2: #545c68;
  --text-3: #828a95;

  /* Text on dark */
  --on-dark: #ffffff;
  --on-dark-2: #aeb6c2;
  --on-dark-3: #717a88;
  --on-dark-line: rgba(255, 255, 255, 0.10);
  --on-dark-line-2: rgba(255, 255, 255, 0.16);

  /* Amber live-wire accent */
  --accent: #e9a317;
  --accent-600: #d4910b;
  --accent-700: #b67d09;
  --accent-300: #f6c45a;
  --accent-tint: #fbf3df;
  --accent-ink: #1c1404;

  /* States */
  --success: #1f9d57;
  --danger: #d64545;

  /* Radii */
  --r-xs: 6px;
  --r-sm: 9px;
  --r: 13px;
  --r-lg: 18px;
  --r-xl: 26px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(16, 22, 30, 0.06), 0 1px 1px rgba(16, 22, 30, 0.04);
  --shadow: 0 14px 34px -16px rgba(16, 22, 30, 0.22);
  --shadow-md: 0 22px 48px -22px rgba(16, 22, 30, 0.26);
  --shadow-lg: 0 36px 70px -28px rgba(16, 22, 30, 0.34);
  --glow: 0 12px 34px -10px rgba(233, 163, 23, 0.55);

  /* Layout */
  --container: 1200px;
  --container-narrow: 880px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4.5rem, 9vw, 8rem);
  --header-h: 76px;

  /* Type */
  --font-head: "Archivo", "Segoe UI", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", system-ui, sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Masked arrow glyph (keeps button markup clean & consistent) */
  --arrow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E");
}

.arrow {
  width: 1.05em; height: 1.05em;
  display: inline-block; flex: none;
  background-color: currentColor;
  -webkit-mask: var(--arrow) center / contain no-repeat;
  mask: var(--arrow) center / contain no-repeat;
}

/* -------------------------------------------------------------
   2. Reset & base
   ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }

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

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -120px;
  z-index: 200;
  background: var(--ink-900);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--r-sm);
  font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* -------------------------------------------------------------
   3. Typography
   ------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
}

.h1, h1 { font-size: clamp(2.35rem, 1.3rem + 4.6vw, 4.4rem); font-weight: 800; }
.h2, h2 { font-size: clamp(1.85rem, 1.1rem + 2.9vw, 3rem); font-weight: 800; }
.h3, h3 { font-size: clamp(1.3rem, 1.05rem + 1.1vw, 1.7rem); }
.h4, h4 { font-size: clamp(1.1rem, 1rem + 0.5vw, 1.3rem); }

p { text-wrap: pretty; }
h1, h2, h3 { text-wrap: balance; }

.lead {
  font-size: clamp(1.075rem, 1rem + 0.5vw, 1.3rem);
  line-height: 1.6;
  color: var(--text-2);
}

strong { font-weight: 600; }

/* Eyebrow label with leading rule */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-700);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
  flex: none;
}
.eyebrow--center::after {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
  flex: none;
}
.on-dark .eyebrow,
.eyebrow.on-dark { color: var(--accent-300); }

/* -------------------------------------------------------------
   4. Layout primitives
   ------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

.section-head { max-width: 720px; margin-bottom: clamp(2.25rem, 4vw, 3.5rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1.1rem; }
.section-head p { margin-top: 1rem; }

.row-between {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.grid { display: grid; gap: clamp(1rem, 2vw, 1.6rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.bg-light { background: var(--bg); }
.bg-alt { background: var(--bg-2); }
.bg-ink { background: var(--ink-900); color: var(--on-dark); }

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* Sections on dark inherit light text for headings */
.on-dark, .bg-ink { color: var(--on-dark); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4,
.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4 { color: var(--on-dark); }
.on-dark .lead, .bg-ink .lead,
.on-dark p, .bg-ink p { color: var(--on-dark-2); }

/* -------------------------------------------------------------
   5. Buttons
   ------------------------------------------------------------- */
.btn {
  --btn-bg: var(--accent);
  --btn-fg: var(--accent-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.005em;
  padding: 0.95rem 1.55rem;
  border-radius: var(--r-sm);
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1.5px solid transparent;
  transition: transform 0.18s var(--ease), box-shadow 0.25s var(--ease),
    background-color 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
  text-align: center;
}
.btn svg { width: 1.1em; height: 1.1em; transition: transform 0.25s var(--ease); }
.btn .arrow { transition: transform 0.25s var(--ease-out); }
.btn:hover { transform: translateY(-2px); box-shadow: var(--glow); }
.btn:hover .arrow { transform: translateX(4px); }
.btn:active { transform: translateY(0); }

.btn--primary { --btn-bg: var(--accent); --btn-fg: var(--accent-ink); }
.btn--primary:hover { --btn-bg: var(--accent-600); }

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

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-2);
}
.btn--ghost:hover { border-color: var(--text); background: var(--paper); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.on-dark .btn--ghost, .bg-ink .btn--ghost {
  color: #fff; border-color: var(--on-dark-line-2);
}
.on-dark .btn--ghost:hover, .bg-ink .btn--ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.4); }

.btn--lg { padding: 1.1rem 2rem; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }

/* Text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  transition: gap 0.2s var(--ease), color 0.2s var(--ease);
}
.link-arrow .arrow { color: var(--accent-700); transition: transform 0.2s var(--ease-out); }
.link-arrow:hover { color: var(--accent-700); }
.link-arrow:hover .arrow { transform: translateX(4px); }
.on-dark .link-arrow, .bg-ink .link-arrow { color: #fff; }
.on-dark .link-arrow .arrow, .bg-ink .link-arrow .arrow { color: var(--accent-300); }

.cta-row {
  display: flex;
  align-items: center;
  gap: 1.1rem 1.5rem;
  flex-wrap: wrap;
}
.cta-row .call-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  color: var(--text-2);
  font-size: 0.98rem;
}
.cta-row .call-link strong { color: var(--text); }
.cta-row .call-link svg { width: 1.05em; color: var(--accent-700); }
.on-dark .cta-row .call-link, .bg-ink .cta-row .call-link { color: var(--on-dark-2); }
.on-dark .cta-row .call-link strong, .bg-ink .cta-row .call-link strong { color: #fff; }

/* -------------------------------------------------------------
   6. Header / Navigation
   ------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background-color 0.3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(16, 22, 30, 0.4);
}
.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Brand */
.brand { display: inline-flex; align-items: center; gap: 0.7rem; flex: none; }
.brand__logo { width: 172px; height: auto; display: block; }
.brand__wordmark {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--font-head);
}
.brand__wordmark .name { font-weight: 800; font-size: 1.18rem; letter-spacing: -0.02em; }
.brand__wordmark .name b { color: var(--text); }
.brand__wordmark .sub {
  font-weight: 600; font-size: 0.66rem; letter-spacing: 0.34em;
  text-transform: uppercase; color: var(--accent-700); margin-top: 3px;
}
.brand__mark { flex: none; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: 0.5rem;
}
.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 0.85rem;
  font-weight: 500;
  font-size: 0.97rem;
  color: var(--text-2);
  border-radius: var(--r-xs);
  transition: color 0.18s var(--ease), background-color 0.18s var(--ease);
}
.nav__link:hover { color: var(--text); }
.nav__link[aria-current="page"] { color: var(--text); font-weight: 600; }
.nav__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0.85rem; right: 0.85rem; bottom: -2px;
  height: 2px; background: var(--accent); border-radius: 2px;
}
.nav__link .chev { width: 0.7em; transition: transform 0.2s var(--ease); }

.nav__spacer { flex: 1; }

.nav__actions { display: flex; align-items: center; gap: 1rem; flex: none; }
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text);
  transition: color 0.18s var(--ease);
}
.nav__phone svg { width: 1.05em; color: var(--accent-700); }
.nav__phone:hover { color: var(--accent-700); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(620px, 86vw);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 0.8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease-out), visibility 0.22s;
  z-index: 120;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.dropdown.is-open {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.has-dropdown:hover .nav__link .chev,
.has-dropdown:focus-within .nav__link .chev { transform: rotate(180deg); }
.dropdown__item {
  display: flex;
  gap: 0.8rem;
  padding: 0.8rem 0.9rem;
  border-radius: var(--r);
  transition: background-color 0.16s var(--ease);
}
.dropdown__item:hover { background: var(--bg-2); }
.dropdown__icon {
  flex: none;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--accent-tint);
  color: var(--accent-700);
}
.dropdown__icon svg { width: 20px; height: 20px; }
.dropdown__text strong { display: block; font-family: var(--font-head); font-weight: 600; font-size: 0.96rem; color: var(--text); }
.dropdown__text span { display: block; font-size: 0.82rem; color: var(--text-3); margin-top: 2px; line-height: 1.35; }
.dropdown__all {
  grid-column: 1 / -1;
  margin-top: 0.3rem;
  padding: 0.85rem 0.9rem;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-head); font-weight: 600; color: var(--accent-700);
}
.dropdown__all .arrow { transition: transform 0.2s var(--ease-out); }
.dropdown__all:hover .arrow { transform: translateX(4px); }

/* Hamburger */
.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  background: var(--paper);
}
.nav__toggle span {
  width: 20px; height: 2px; background: var(--text); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.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); }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 95;
  background: var(--ink-900);
  color: #fff;
  padding: 1.5rem var(--gutter) 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav a { color: #fff; }
.mobile-nav__list { display: flex; flex-direction: column; }
.mobile-nav__list > li > a,
.mobile-nav__group > button {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 1.05rem 0.25rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1.15rem;
  border-bottom: 1px solid var(--on-dark-line);
}
.mobile-nav__group > button .chev { width: 0.8em; color: var(--accent-300); transition: transform 0.25s var(--ease); }
.mobile-nav__group.is-open > button .chev { transform: rotate(180deg); }
.mobile-nav__sub {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s var(--ease);
}
.mobile-nav__sub > div { overflow: hidden; }
.mobile-nav__group.is-open .mobile-nav__sub { grid-template-rows: 1fr; }
.mobile-nav__sub a {
  display: block; padding: 0.72rem 0.25rem 0.72rem 1rem;
  color: var(--on-dark-2); font-size: 1rem; font-weight: 500;
  border-bottom: 1px solid var(--on-dark-line);
}
.mobile-nav__sub a:last-child { color: var(--accent-300); }
.mobile-nav__cta { margin-top: auto; padding-top: 1.5rem; display: grid; gap: 0.8rem; }
.mobile-nav__contact {
  display: flex; gap: 0.9rem; margin-top: 1rem;
}
.mobile-nav__contact a {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem; border: 1px solid var(--on-dark-line-2); border-radius: var(--r-sm);
  font-weight: 600; font-size: 0.95rem;
}
.mobile-nav__contact a svg { width: 1.1em; color: var(--accent-300); }

body.nav-open { overflow: hidden; }

/* -------------------------------------------------------------
   7. Circuit / blueprint motifs
   ------------------------------------------------------------- */
.blueprint {
  position: absolute;
  inset: 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: 48px 48px;
  mask-image: radial-gradient(120% 120% at 70% 0%, #000 35%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 120% at 70% 0%, #000 35%, transparent 78%);
  pointer-events: none;
}
.circuit-lines { position: absolute; pointer-events: none; }
.circuit-lines path,
.circuit-lines line { stroke: var(--accent-300); }
.circuit-lines .node { fill: var(--accent); }

/* dashed flow animation */
@keyframes flow { to { stroke-dashoffset: -240; } }
.circuit-flow {
  stroke-dasharray: 6 10;
  animation: flow 9s linear infinite;
}

/* -------------------------------------------------------------
   8. Hero
   ------------------------------------------------------------- */
.hero {
  position: relative;
  background: radial-gradient(120% 120% at 78% -10%, #1b2330 0%, var(--ink-900) 55%);
  color: var(--on-dark);
  overflow: hidden;
  isolation: isolate;
}
.hero::after {
  /* grain */
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' 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.035;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: -1;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
}
.hero__eyebrow { margin-bottom: 1.6rem; }
.hero h1 { color: #fff; }
.hero h1 .hl { color: var(--accent-300); }
.hero__sub {
  margin-top: 1.5rem;
  max-width: 36ch;
  font-size: clamp(1.05rem, 1rem + 0.5vw, 1.25rem);
  color: var(--on-dark-2);
}
.hero__cta { margin-top: 2.25rem; }
.hero__assurances {
  margin-top: 2.5rem;
  display: flex; flex-wrap: wrap; gap: 0.7rem 1.5rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--on-dark-line);
}
.hero__assurances li {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.9rem; color: var(--on-dark-2); font-weight: 500;
}
.hero__assurances svg { width: 1.05em; color: var(--accent-300); flex: none; }

/* Hero visual: circuit riser card */
.hero__visual { position: relative; min-height: 380px; }
.hero-card {
  position: relative;
  background: linear-gradient(165deg, var(--ink-700), var(--ink-800));
  border: 1px solid var(--on-dark-line-2);
  border-radius: var(--r-xl);
  padding: 1.7rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-card__label {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-head); font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--on-dark-3);
}
.hero-card__label .live { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--accent-300); }
.hero-card__label .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 rgba(233, 163, 23, 0.6); animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(233, 163, 23, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(233, 163, 23, 0); }
  100% { box-shadow: 0 0 0 0 rgba(233, 163, 23, 0); }
}
.hero-card__diagram { width: 100%; height: auto; margin: 1.1rem 0 1.3rem; }
.hero-card__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.hero-card__stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--on-dark-line);
  border-radius: var(--r);
  padding: 0.9rem 1rem;
}
.hero-card__stat b { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: #fff; letter-spacing: -0.02em; }
.hero-card__stat span { font-size: 0.78rem; color: var(--on-dark-2); }
.hero-card__badge {
  position: absolute; top: 1.4rem; right: -1px;
}

/* -------------------------------------------------------------
   9. Trust strip
   ------------------------------------------------------------- */
.trust-strip {
  background: var(--ink-800);
  color: var(--on-dark-2);
  border-top: 1px solid var(--on-dark-line);
}
.trust-strip__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 1rem 2.25rem;
  padding-block: 1.4rem;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-head); font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.04em; color: var(--on-dark-2);
}
.trust-item svg { width: 1.15em; color: var(--accent-300); flex: none; }
.trust-item b { color: #fff; }
.trust-strip__sep { width: 1px; height: 22px; background: var(--on-dark-line-2); }

/* -------------------------------------------------------------
   10. Accreditation chips
   ------------------------------------------------------------- */
.accred {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(0.7rem, 1.5vw, 1rem);
}
.accred-chip {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 0.7rem;
  padding: 1.3rem 0.9rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease), border-color 0.2s var(--ease);
}
.accred-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-2); }
.accred-chip__mark {
  width: 46px; height: 46px; border-radius: 11px;
  display: grid; place-items: center;
  background: var(--ink-900); color: var(--accent-300);
}
.accred-chip__mark svg { width: 24px; height: 24px; }
.accred-chip strong { font-family: var(--font-head); font-weight: 700; font-size: 0.92rem; color: var(--text); line-height: 1.2; }
.accred-chip span { font-size: 0.72rem; color: var(--text-3); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }
.accred-note { margin-top: 1.4rem; font-size: 0.85rem; color: var(--text-3); text-align: center; }

/* Real accreditation logo grid (image-based) */
.accred-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.8rem, 1.6vw, 1.15rem);
}
.accred-logos--full { grid-template-columns: repeat(5, 1fr); }
.accred-logo {
  display: grid;
  place-items: center;
  padding: 1.4rem 1.3rem;
  min-height: 120px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease), border-color 0.2s var(--ease);
}
.accred-logo:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-2); }
.accred-logo img { max-height: 64px; max-width: 100%; width: auto; object-fit: contain; }

/* Hero service-breadth tags */
.systems-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.3rem; }
.systems-tags span {
  font-family: var(--font-head); font-weight: 600; font-size: 0.74rem; letter-spacing: 0.03em;
  padding: 0.42rem 0.75rem; border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--on-dark-line); color: var(--on-dark-2);
}
.systems-tags span.hl { color: var(--accent-300); border-color: rgba(246, 196, 90, 0.32); }

/* -------------------------------------------------------------
   11. Who we help cards
   ------------------------------------------------------------- */
.audience-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 1.7rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.3s var(--ease), border-color 0.2s var(--ease);
}
.audience-card::before {
  content: "";
  position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: var(--accent); transition: width 0.4s var(--ease-out);
}
.audience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.audience-card:hover::before { width: 100%; }
.audience-card__icon {
  width: 50px; height: 50px; border-radius: 13px; margin-bottom: 1.15rem;
  display: grid; place-items: center;
  background: var(--accent-tint); color: var(--accent-700);
}
.audience-card__icon svg { width: 26px; height: 26px; }
.audience-card h3 { font-size: 1.18rem; }
.audience-card p { margin-top: 0.6rem; color: var(--text-2); font-size: 0.96rem; flex: 1; }
.audience-card .link-arrow { margin-top: 1.3rem; }

/* -------------------------------------------------------------
   12. Services grid
   ------------------------------------------------------------- */
.service-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 1.8rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform 0.25s var(--ease), box-shadow 0.3s var(--ease), border-color 0.2s var(--ease);
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute; inset: auto -40% -40% auto;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(233,163,23,0.10), transparent 65%);
  opacity: 0; transition: opacity 0.35s var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.service-card:hover::after { opacity: 1; }
.service-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.service-card__icon {
  width: 52px; height: 52px; border-radius: 13px;
  display: grid; place-items: center;
  background: var(--ink-900); color: var(--accent-300);
  transition: transform 0.3s var(--ease-out);
}
.service-card:hover .service-card__icon { transform: rotate(-6deg) scale(1.05); }
.service-card__icon svg { width: 26px; height: 26px; }
.service-card__no { font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; color: var(--text-2); letter-spacing: 0.04em; font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1; }
.service-card h3 { font-size: 1.22rem; position: relative; z-index: 1; }
.service-card p { margin-top: 0.65rem; color: var(--text-2); font-size: 0.95rem; flex: 1; position: relative; z-index: 1; }
.service-card .link-arrow { margin-top: 1.4rem; position: relative; z-index: 1; }

/* -------------------------------------------------------------
   13. Commercial capability (dark feature)
   ------------------------------------------------------------- */
.capability {
  position: relative;
  background: var(--ink-900);
  color: var(--on-dark);
  overflow: hidden;
  isolation: isolate;
}
.capability__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.capability p { color: var(--on-dark-2); }
.capability__body p + p { margin-top: 1rem; }
.capability__cta { margin-top: 2rem; }

.scope-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.scope-item {
  display: flex; align-items: flex-start; gap: 0.65rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--on-dark-line);
  border-radius: var(--r-sm);
  font-size: 0.9rem; color: var(--on-dark-2); font-weight: 500;
}
.scope-item svg { width: 1.1em; color: var(--accent-300); flex: none; margin-top: 2px; }

/* -------------------------------------------------------------
   14. Stats band
   ------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--on-dark-line);
  border: 1px solid var(--on-dark-line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stats--light { background: var(--line); border-color: var(--line); }
.stat {
  background: var(--ink-900);
  padding: 1.8rem 1.5rem;
  text-align: center;
}
.stats--light .stat { background: var(--paper); }
.stat b {
  display: block;
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2rem, 1.3rem + 2.5vw, 3rem);
  letter-spacing: -0.03em; color: #fff; line-height: 1;
}
.stats--light .stat b { color: var(--text); }
.stat b .unit { color: var(--accent-300); }
.stats--light .stat b .unit { color: var(--accent-700); }
.stat span { display: block; margin-top: 0.6rem; font-size: 0.85rem; color: var(--on-dark-2); font-weight: 500; }
.stats--light .stat span { color: var(--text-2); }

/* -------------------------------------------------------------
   15. Projects
   ------------------------------------------------------------- */
.project-card {
  position: relative;
  display: flex; flex-direction: column;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink-800);
  color: #fff;
  border: 1px solid var(--on-dark-line);
  min-height: 320px;
  transition: transform 0.3s var(--ease), box-shadow 0.35s var(--ease);
  isolation: isolate;
}
.project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.project-card__media {
  position: relative;
  aspect-ratio: 16 / 11;
  background:
    radial-gradient(110% 130% at 80% 0%, #243043 0%, var(--ink-800) 60%);
  overflow: hidden;
}
.project-card__media .blueprint { mask-image: none; -webkit-mask-image: none; opacity: 0.7; }
.project-card__tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 0.75rem; border-radius: var(--r-pill);
  background: rgba(11, 14, 19, 0.65);
  border: 1px solid var(--on-dark-line-2);
  backdrop-filter: blur(6px);
  font-family: var(--font-head); font-weight: 600; font-size: 0.72rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-300);
}
.project-card__glyph { position: absolute; inset: 0; display: grid; place-items: center; }
.project-card__glyph svg { width: 56%; height: 56%; opacity: 0.9; }
.project-card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.project-card__body h3 { color: #fff; font-size: 1.2rem; }
.project-card__meta { margin-top: 0.35rem; font-size: 0.82rem; color: var(--accent-300); font-weight: 600; font-family: var(--font-head); letter-spacing: 0.03em; }
.project-card__body p { margin-top: 0.7rem; font-size: 0.9rem; color: var(--on-dark-2); flex: 1; }
.project-card__scope { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.project-card__scope span {
  font-size: 0.72rem; padding: 0.3rem 0.6rem; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.05); border: 1px solid var(--on-dark-line); color: var(--on-dark-2);
}

/* Projects filter */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.5rem; }
.filter-btn {
  padding: 0.6rem 1.1rem; border-radius: var(--r-pill);
  border: 1px solid var(--line-2); background: var(--paper);
  font-family: var(--font-head); font-weight: 600; font-size: 0.88rem; color: var(--text-2);
  transition: all 0.18s var(--ease);
}
.filter-btn:hover { border-color: var(--text); color: var(--text); }
.filter-btn.is-active { background: var(--ink-900); border-color: var(--ink-900); color: #fff; }
.project-card.is-hidden { display: none; }

/* -------------------------------------------------------------
   16. Why choose (value rows)
   ------------------------------------------------------------- */
.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2vw, 1.5rem); }
.value-card {
  display: flex; gap: 1.1rem;
  padding: 1.6rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: border-color 0.2s var(--ease), box-shadow 0.25s var(--ease);
}
.value-card:hover { border-color: var(--line-2); box-shadow: var(--shadow); }
.value-card__num {
  flex: none;
  font-family: var(--font-head); font-weight: 800; font-size: 1rem;
  width: 44px; height: 44px; border-radius: 11px;
  display: grid; place-items: center;
  background: var(--accent-tint); color: var(--accent-700);
}
.value-card h3 { font-size: 1.12rem; }
.value-card p { margin-top: 0.5rem; color: var(--text-2); font-size: 0.95rem; }

/* -------------------------------------------------------------
   17. Quote form
   ------------------------------------------------------------- */
.quote-section { position: relative; overflow: hidden; }
.quote-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.quote-aside .eyebrow { margin-bottom: 1.1rem; }
.quote-aside h2 { margin-bottom: 1rem; }
.quote-assurances { margin-top: 1.8rem; display: grid; gap: 0.75rem; }
.quote-assurances li { display: flex; align-items: center; gap: 0.7rem; font-weight: 500; color: var(--text-2); }
.quote-assurances svg { width: 1.2em; color: var(--success); flex: none; }
.quote-direct {
  margin-top: 2rem; padding-top: 1.7rem; border-top: 1px solid var(--line);
  display: grid; gap: 0.85rem;
}
.quote-direct a { display: inline-flex; align-items: center; gap: 0.7rem; font-weight: 500; color: var(--text-2); }
.quote-direct a strong { color: var(--text); font-family: var(--font-head); }
.quote-direct a:hover strong { color: var(--accent-700); }
.quote-direct .ic { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: var(--bg-2); color: var(--accent-700); flex: none; }
.quote-direct .ic svg { width: 18px; }

/* Form card */
.qform {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.qform__head { padding: 1.5rem 1.7rem 0; }
.qform__progress {
  height: 6px; border-radius: var(--r-pill);
  background: var(--bg-3); overflow: hidden; margin-bottom: 0.5rem;
}
.qform__bar { height: 100%; width: 33%; background: var(--accent); border-radius: var(--r-pill); transition: width 0.4s var(--ease-out); }
.qform__step-label { font-family: var(--font-head); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-3); }
.qform__body { padding: 1.4rem 1.7rem 1.7rem; }
.qstep { display: none; animation: stepIn 0.35s var(--ease-out); }
.qstep.is-active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: none; } }
.qstep > h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.qstep > p.qhint { color: var(--text-3); font-size: 0.92rem; margin-bottom: 1.2rem; }

/* option buttons */
.qoptions { display: grid; gap: 0.6rem; }
.qoptions--2 { grid-template-columns: 1fr 1fr; }
.qopt {
  display: flex; align-items: center; gap: 0.85rem; text-align: left;
  width: 100%; padding: 0.95rem 1.1rem;
  border: 1.5px solid var(--line); border-radius: var(--r);
  background: var(--paper); transition: all 0.16s var(--ease);
  font-weight: 500;
}
.qopt:hover { border-color: var(--accent); background: var(--accent-tint); }
.qopt.is-selected { border-color: var(--accent); background: var(--accent-tint); box-shadow: inset 0 0 0 1px var(--accent); }
.qopt__check {
  flex: none; width: 22px; height: 22px; border-radius: 6px;
  border: 1.5px solid var(--line-2); display: grid; place-items: center;
  color: #fff; transition: all 0.16s var(--ease);
}
.qopt.is-selected .qopt__check { background: var(--accent); border-color: var(--accent); }
.qopt__check svg { width: 13px; opacity: 0; transition: opacity 0.16s; }
.qopt.is-selected .qopt__check svg { opacity: 1; }
.qopt--radio .qopt__check { border-radius: 50%; }

/* fields */
.qfield { margin-bottom: 1.1rem; }
.qfield > label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 0.45rem; font-family: var(--font-head); }
.qfield .req { color: var(--accent-700); }
.qinput, .qtextarea, .qselect {
  width: 100%; padding: 0.85rem 1rem;
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--bg); font-size: 1rem;
  transition: border-color 0.16s var(--ease), box-shadow 0.16s var(--ease), background-color 0.16s;
}
.qinput:focus, .qtextarea:focus, .qselect:focus {
  outline: none; border-color: var(--accent); background: var(--paper);
  box-shadow: 0 0 0 3px rgba(233, 163, 23, 0.16);
}
.qtextarea { resize: vertical; min-height: 96px; }
.qfield.has-error .qinput, .qfield.has-error .qtextarea, .qfield.has-error .qselect { border-color: var(--danger); }
.qerror { display: none; color: var(--danger); font-size: 0.82rem; margin-top: 0.35rem; font-weight: 500; }
.qfield.has-error .qerror { display: block; }
.qgrid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

.qform__nav { display: flex; align-items: center; justify-content: space-between; margin-top: 1.5rem; gap: 1rem; }
.qback { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; color: var(--text-3); font-family: var(--font-head); }
.qback:hover { color: var(--text); }
.qback[hidden] { visibility: hidden; }
.qprivacy { margin-top: 1rem; font-size: 0.8rem; color: var(--text-3); display: flex; gap: 0.5rem; align-items: flex-start; }
.qprivacy svg { width: 1em; flex: none; margin-top: 3px; color: var(--text-3); }

/* success */
.qsuccess { display: none; padding: 2.5rem 1.7rem; text-align: center; }
.qsuccess.is-active { display: block; animation: stepIn 0.4s var(--ease-out); }
.qsuccess__icon {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 1.3rem;
  display: grid; place-items: center; background: var(--success); color: #fff;
}
.qsuccess__icon svg { width: 32px; }
.qsuccess h3 { font-size: 1.5rem; }
.qsuccess p { margin-top: 0.7rem; color: var(--text-2); }
.qsuccess__actions { margin-top: 1.6rem; display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }
.qnote {
  margin: 0 1.7rem 1.5rem; padding: 0.7rem 0.9rem;
  background: var(--bg-2); border: 1px dashed var(--line-2); border-radius: var(--r-sm);
  font-size: 0.78rem; color: var(--text-3);
  display: flex; gap: 0.5rem; align-items: flex-start;
}
.qnote svg { width: 1.05em; flex: none; margin-top: 2px; }

/* -------------------------------------------------------------
   18. FAQ accordion
   ------------------------------------------------------------- */
.faq { display: grid; gap: 0.8rem; max-width: 820px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r); background: var(--paper); overflow: hidden; transition: border-color 0.2s var(--ease); }
.faq-item.is-open { border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.2rem 1.4rem; text-align: left;
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--text);
}
.faq-q__ic { flex: none; width: 26px; height: 26px; border-radius: 7px; background: var(--bg-2); display: grid; place-items: center; transition: all 0.25s var(--ease); }
.faq-q__ic svg { width: 14px; color: var(--accent-700); transition: transform 0.3s var(--ease); }
.faq-item.is-open .faq-q__ic { background: var(--accent); }
.faq-item.is-open .faq-q__ic svg { transform: rotate(45deg); color: var(--accent-ink); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s var(--ease); }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a__inner { overflow: hidden; }
.faq-a__inner p { padding: 0 1.4rem 1.3rem; color: var(--text-2); font-size: 0.97rem; }

/* -------------------------------------------------------------
   19. CTA banner
   ------------------------------------------------------------- */
.cta-banner {
  position: relative;
  background: linear-gradient(120deg, var(--ink-900), var(--ink-700));
  color: #fff; overflow: hidden; isolation: isolate;
  border-radius: var(--r-xl);
  padding: clamp(2.5rem, 5vw, 4rem);
}
.cta-banner--full { border-radius: 0; }
.cta-banner__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 2rem; align-items: center; }
.cta-banner h2 { color: #fff; }
.cta-banner p { color: var(--on-dark-2); margin-top: 0.8rem; max-width: 48ch; }
.cta-banner__actions { display: flex; flex-direction: column; gap: 0.9rem; align-items: flex-start; }
.cta-banner .glow {
  position: absolute; z-index: 1; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(233,163,23,0.22), transparent 65%);
  right: -80px; top: -120px; pointer-events: none;
}

/* -------------------------------------------------------------
   20. Footer
   ------------------------------------------------------------- */
.site-footer { background: var(--ink-900); color: var(--on-dark-2); }
.footer-top { padding-block: clamp(3rem, 6vw, 4.5rem); border-bottom: 1px solid var(--on-dark-line); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(2rem, 4vw, 3.5rem); }
.footer-brand .brand__wordmark .name b { color: #fff; }
.footer-about { margin-top: 1.2rem; font-size: 0.92rem; max-width: 34ch; color: var(--on-dark-2); }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center;
  border: 1px solid var(--on-dark-line-2); color: var(--on-dark-2);
  transition: all 0.2s var(--ease);
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); transform: translateY(-2px); }
.footer-social svg { width: 18px; }
.footer-col h4 { color: #fff; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; font-family: var(--font-head); margin-bottom: 1.15rem; }
.footer-col ul { display: grid; gap: 0.7rem; }
.footer-col a { color: var(--on-dark-2); font-size: 0.94rem; transition: color 0.16s var(--ease); }
.footer-col a:hover { color: var(--accent-300); }
.footer-contact address { font-style: normal; font-size: 0.94rem; line-height: 1.8; }
.footer-contact a { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--on-dark); }
.footer-contact a:hover { color: var(--accent-300); }
.footer-contact .label { color: var(--on-dark-3); }
.footer-bottom {
  padding-block: 1.5rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  font-size: 0.83rem; color: var(--on-dark-3);
}
.footer-bottom__links { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--accent-300); }

/* -------------------------------------------------------------
   21. Floating actions
   ------------------------------------------------------------- */
.floats { position: fixed; right: clamp(1rem, 3vw, 1.75rem); bottom: clamp(1rem, 3vw, 1.75rem); z-index: 90; display: flex; flex-direction: column; gap: 0.7rem; }
.float-btn {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.float-btn:hover { transform: translateY(-3px) scale(1.04); }
.float-btn--wa { background: #25d366; color: #fff; }
.float-btn--wa svg { width: 30px; }
.float-btn--top {
  background: var(--ink-900); color: #fff; width: 46px; height: 46px;
  opacity: 0; visibility: hidden; transform: translateY(10px);
}
.float-btn--top svg { width: 20px; }
.float-btn--top.is-visible { opacity: 1; visibility: visible; transform: none; }
.float-btn--wa::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  animation: pulse-wa 2.6s var(--ease) infinite;
}
.float-btn--wa { position: relative; }
@keyframes pulse-wa { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5);} 70%{box-shadow:0 0 0 14px rgba(37,211,102,0);}100%{box-shadow:0 0 0 0 rgba(37,211,102,0);} }

/* -------------------------------------------------------------
   22. Page hero (interior pages)
   ------------------------------------------------------------- */
.page-hero {
  position: relative;
  background: radial-gradient(120% 130% at 85% -20%, #1b2330 0%, var(--ink-900) 58%);
  color: #fff; overflow: hidden; isolation: isolate;
}
.page-hero__inner { padding-block: clamp(3rem, 6vw, 5rem); position: relative; z-index: 2; }
.page-hero__grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 2.5rem; align-items: center; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 0.55rem; font-size: 0.85rem; color: var(--on-dark-3); margin-bottom: 1.4rem; }
.breadcrumb a { color: var(--on-dark-2); }
.breadcrumb a:hover { color: var(--accent-300); }
.breadcrumb .sep { color: var(--on-dark-3); }
.breadcrumb [aria-current] { color: var(--accent-300); }
.page-hero h1 { color: #fff; max-width: 18ch; }
.page-hero__intro { margin-top: 1.3rem; max-width: 56ch; color: var(--on-dark-2); font-size: clamp(1.02rem, 1rem + 0.4vw, 1.2rem); }
.page-hero__cta { margin-top: 2rem; }
.page-hero__aside { }
.spec-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--on-dark-line-2);
  border-radius: var(--r-lg); padding: 1.5rem; box-shadow: var(--shadow-lg);
}
.spec-card h4 { color: #fff; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-3); margin-bottom: 1rem; }
.spec-card ul { display: grid; gap: 0.75rem; }
.spec-card li { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.92rem; color: var(--on-dark-2); }
.spec-card svg { width: 1.15em; color: var(--accent-300); flex: none; margin-top: 2px; }

/* -------------------------------------------------------------
   23. Content blocks (service/about/projects)
   ------------------------------------------------------------- */
.prose > * + * { margin-top: 1.1rem; }
.prose h2 { margin-top: 2.4rem; }
.prose h3 { margin-top: 1.8rem; }
.prose p { color: var(--text-2); }
.prose ul.ticks { display: grid; gap: 0.7rem; }
.prose ul.ticks li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--text-2); }
.prose ul.ticks svg { width: 1.15em; color: var(--accent-700); flex: none; margin-top: 4px; }

.deliver-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
.deliver-item {
  display: flex; gap: 0.75rem; align-items: flex-start;
  padding: 1rem 1.15rem; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--r-sm);
  font-size: 0.95rem; color: var(--text); font-weight: 500;
}
.deliver-item svg { width: 1.2em; color: var(--accent-700); flex: none; margin-top: 2px; }

/* who-we-work-with rows */
.ww-row { display: flex; gap: 1.2rem; padding: 1.6rem 0; border-bottom: 1px solid var(--line); }
.ww-row:last-child { border-bottom: none; }
.ww-row__ic { flex: none; width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--accent-tint); color: var(--accent-700); }
.ww-row__ic svg { width: 24px; }
.ww-row h3 { font-size: 1.12rem; }
.ww-row p { margin-top: 0.4rem; color: var(--text-2); font-size: 0.95rem; }

/* process steps */
.steps { counter-reset: step; display: grid; gap: 1rem; }
.step-row {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.3rem 1.5rem; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--r-lg);
}
.step-row::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-head); font-weight: 800; font-size: 1.1rem;
  color: var(--accent-700); flex: none;
  width: 44px; height: 44px; border-radius: 11px; background: var(--accent-tint);
  display: grid; place-items: center;
}
.step-row h3 { font-size: 1.1rem; }
.step-row p { margin-top: 0.3rem; color: var(--text-2); font-size: 0.94rem; }

/* two-col split */
.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.split--reverse > :first-child { order: 2; }

.callout {
  display: flex; gap: 1rem; padding: 1.4rem 1.6rem;
  background: var(--accent-tint); border: 1px solid #f0dcae;
  border-left: 4px solid var(--accent); border-radius: var(--r);
  color: #5b4408;
}
.callout svg { width: 1.4em; color: var(--accent-700); flex: none; }
.callout strong { color: #43330a; }

/* outcome cards (EICR) */
.outcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.outcome-card { padding: 1.6rem; border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--paper); }
.outcome-card__badge { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; padding: 0.35rem 0.8rem; border-radius: var(--r-pill); }
.outcome-card--pass .outcome-card__badge { background: #e3f6ec; color: #157a43; }
.outcome-card--fail .outcome-card__badge { background: #fdeaea; color: #b53636; }
.outcome-card h3 { margin-top: 1rem; font-size: 1.15rem; }
.outcome-card p { margin-top: 0.5rem; color: var(--text-2); font-size: 0.94rem; }

/* related services */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.related-card {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 1.2rem 1.3rem; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: all 0.2s var(--ease);
}
.related-card:hover { border-color: var(--line-2); box-shadow: var(--shadow); transform: translateY(-2px); }
.related-card__ic { flex: none; width: 42px; height: 42px; border-radius: 11px; background: var(--ink-900); color: var(--accent-300); display: grid; place-items: center; }
.related-card__ic svg { width: 21px; }
.related-card strong { font-family: var(--font-head); font-size: 0.98rem; display: block; }
.related-card span { font-size: 0.82rem; color: var(--text-3); }
.related-card .arrow { margin-left: auto; color: var(--accent-700); transition: transform 0.2s var(--ease-out); }
.related-card:hover .arrow { transform: translateX(4px); }

/* contact methods */
.contact-methods { display: grid; gap: 1rem; }
.contact-method {
  display: flex; gap: 1rem; align-items: center;
  padding: 1.3rem 1.5rem; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: all 0.2s var(--ease);
}
.contact-method:hover { border-color: var(--line-2); box-shadow: var(--shadow); }
.contact-method__ic { flex: none; width: 48px; height: 48px; border-radius: 12px; background: var(--accent-tint); color: var(--accent-700); display: grid; place-items: center; }
.contact-method__ic svg { width: 23px; }
.contact-method strong { font-family: var(--font-head); display: block; font-size: 1.05rem; color: var(--text); }
.contact-method span { font-size: 0.88rem; color: var(--text-2); }
.contact-method a { color: var(--accent-700); font-weight: 600; }

/* map placeholder */
.map-card {
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line);
  background: var(--ink-800); min-height: 280px; position: relative; isolation: isolate;
  display: grid; place-items: center; color: var(--on-dark-2);
}
.map-card .blueprint { mask-image: none; -webkit-mask-image: none; opacity: 0.5; }
.map-card__pin { position: relative; z-index: 2; text-align: center; }
.map-card__pin svg { width: 44px; color: var(--accent-300); margin: 0 auto 0.7rem; }
.map-card__pin strong { color: #fff; font-family: var(--font-head); display: block; }

/* live google map embed */
.map-card--live { display: block; min-height: 0; color: inherit; }
.map-card__frame { display: block; width: 100%; height: 300px; border: 0; }
.map-card__open {
  position: absolute; z-index: 2; right: 0.85rem; bottom: 0.85rem;
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.55rem 0.95rem; border-radius: var(--r-pill);
  background: var(--accent); color: var(--accent-ink);
  font-family: var(--font-head); font-weight: 600; font-size: 0.85rem;
  box-shadow: 0 6px 18px rgba(11, 14, 19, 0.28); transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.map-card__open svg { width: 1.05em; height: 1.05em; }
.map-card__open:hover { background: var(--accent-600); transform: translateY(-2px); }
.map-card__open:active { transform: translateY(0); }

/* about feature list */
.feature-list { display: grid; gap: 1.4rem; }
.feature-item { display: flex; gap: 1rem; }
.feature-item__ic { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--accent-tint); color: var(--accent-700); display: grid; place-items: center; }
.feature-item__ic svg { width: 23px; }
.feature-item h3 { font-size: 1.08rem; }
.feature-item p { margin-top: 0.35rem; color: var(--text-2); font-size: 0.94rem; }

/* video embed / tour */
.video-wrap {
  position: relative; aspect-ratio: 16 / 9;
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--on-dark-line-2); box-shadow: var(--shadow-lg);
  background: var(--ink-800); isolation: isolate;
}
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-cta {
  position: relative; aspect-ratio: 16 / 9; display: grid; place-items: center;
  border-radius: var(--r-lg); overflow: hidden; isolation: isolate;
  background: radial-gradient(120% 120% at 70% 10%, #243043, var(--ink-800));
  border: 1px solid var(--on-dark-line-2); box-shadow: var(--shadow-lg);
}
.video-cta .play {
  position: relative; z-index: 2; width: 78px; height: 78px; border-radius: 50%;
  background: var(--accent); color: var(--accent-ink); display: grid; place-items: center;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease); box-shadow: var(--glow);
}
.video-cta .play svg { width: 30px; margin-left: 4px; }
.video-cta:hover .play { transform: scale(1.08); }
.video-cta__label { position: absolute; z-index: 2; bottom: 1.2rem; left: 1.4rem; color: #fff; font-family: var(--font-head); font-weight: 600; }
.video-cta__label span { display: block; font-size: 0.78rem; color: var(--accent-300); letter-spacing: 0.1em; text-transform: uppercase; }

/* 404 */
.error-page { min-height: 70vh; display: grid; place-items: center; text-align: center; }
.error-page__code { font-family: var(--font-head); font-weight: 800; font-size: clamp(5rem, 18vw, 11rem); line-height: 0.9; color: var(--ink-900); letter-spacing: -0.04em; }
.error-page__code span { color: var(--accent); }

/* -------------------------------------------------------------
   24. Reveal animation
   ------------------------------------------------------------- */
/* Content is visible by default. The hidden-then-fade-in state only applies
   once JS confirms it is running (adds .reveal-on to <html>), so if JS fails
   to load or run, all content still shows. */
html.reveal-on [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
html.reveal-on [data-reveal].is-revealed { opacity: 1; transform: none; }

/* -------------------------------------------------------------
   25. Responsive
   ------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__visual { max-width: 520px; }
  .capability__inner { grid-template-columns: 1fr; }
  .quote-layout { grid-template-columns: 1fr; }
  .page-hero__grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: 0; }
  .cta-banner__inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .accred-logos--full { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
  .nav__menu, .nav__phone-wrap { display: none; }
  .nav__toggle { display: flex; }
  .nav { gap: 1rem; }
  .nav__spacer { display: none; }
  .nav__actions { margin-left: auto; }
  .nav__cta-desktop { display: none; }
}

@media (max-width: 768px) {
  :root { --header-h: 66px; }
  .brand__logo { width: 146px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .accred { grid-template-columns: repeat(3, 1fr); }
  .accred-logos, .accred-logos--full { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .value-grid, .deliver-grid, .outcome-grid, .scope-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .qgrid-2 { grid-template-columns: 1fr; }
  .qoptions--2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .row-between { align-items: flex-start; }
}

@media (max-width: 560px) {
  .grid-2 { grid-template-columns: 1fr; }
  .accred { grid-template-columns: repeat(2, 1fr); }
  .btn--block-sm { display: flex; width: 100%; }
  .hero__assurances { gap: 0.6rem 1.2rem; }
  .cta-banner { padding: 2rem 1.4rem; }
  .qform__head, .qform__body { padding-inline: 1.2rem; }
}

/* -------------------------------------------------------------
   26. Reduced motion
   ------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* print */
@media print {
  .site-header, .floats, .mobile-nav, .cta-banner, .quote-section { display: none; }
}

/* -------------------------------------------------------------
   27. Reviews / testimonials
   ------------------------------------------------------------- */
.reviews__head { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem; align-items: end; margin-bottom: clamp(1.8rem, 3.5vw, 2.8rem); }
.reviews__source {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0.7rem 1rem; border: 1px solid var(--line); border-radius: var(--r-pill);
  background: var(--paper); box-shadow: var(--shadow-sm); justify-self: end;
}
.reviews__source .g-mark { width: 22px; height: 22px; flex: none; }
.reviews__source-text { display: flex; flex-direction: column; line-height: 1.25; }
.reviews__source strong { font-family: var(--font-head); font-size: 0.95rem; color: var(--text); }
.reviews__source span { font-size: 0.8rem; color: var(--text-2); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.review-card {
  display: flex; flex-direction: column;
  padding: 1.6rem; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: transform 0.25s var(--ease), box-shadow 0.3s var(--ease), border-color 0.2s var(--ease);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-2); }
.review-stars { display: inline-flex; gap: 2px; color: var(--accent); margin-bottom: 0.9rem; }
.review-stars svg { width: 18px; height: 18px; }
/* visible Google rating badge in the reviews head */
.reviews__rating { display: inline-flex; align-items: center; gap: 0.55rem; margin-top: 1rem; font-size: 0.95rem; color: var(--text-2); text-decoration: none; }
.reviews__rating .review-stars { margin-bottom: 0; }
.reviews__rating strong { font-family: var(--font-head); color: var(--text); }
.reviews__rating:hover .reviews__rating-text { color: var(--text); }
.review-card blockquote { font-size: 0.98rem; color: var(--text); line-height: 1.6; flex: 1; }
.review-card figcaption { margin-top: 1.2rem; display: flex; align-items: center; gap: 0.8rem; }
.review-card__avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  display: grid; place-items: center; background: var(--accent-tint);
  color: var(--accent-700); font-family: var(--font-head); font-weight: 700;
}
.review-card__who strong { display: block; font-family: var(--font-head); font-size: 0.95rem; }
.review-card__who span { font-size: 0.82rem; color: var(--text-3); }
/* empty / placeholder state (shown until real reviews are added) */
.reviews__placeholder {
  grid-column: 1 / -1;
  display: flex; gap: 1rem; align-items: center; justify-content: center; text-align: center;
  flex-direction: column;
  padding: clamp(2rem, 5vw, 3.25rem);
  border: 1.5px dashed var(--line-2); border-radius: var(--r-lg);
  background: var(--bg-2); color: var(--text-2);
}
.reviews__placeholder .g-mark { width: 34px; height: 34px; }
.reviews__placeholder strong { font-family: var(--font-head); font-size: 1.1rem; color: var(--text); }
.reviews__placeholder p { font-size: 0.95rem; max-width: 46ch; }
@media (max-width: 900px) {
  .reviews__head { grid-template-columns: 1fr; }
  .reviews__source { justify-self: start; }
  .review-grid { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------
   28. Quote form — honeypot + network error
   ------------------------------------------------------------- */
.qhp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.qform-error {
  display: none; margin-top: 1rem; padding: 0.85rem 1rem;
  background: #fdeaea; border: 1px solid #f3c0c0; border-radius: var(--r-sm);
  color: #a32a2a; font-size: 0.9rem; font-weight: 500;
}
.qform-error.is-active { display: block; }

/* -------------------------------------------------------------
   29. Legal / prose pages (privacy, terms)
   ------------------------------------------------------------- */
.legal { max-width: var(--container-narrow); }
.legal h2 { margin-top: 2.6rem; font-size: clamp(1.4rem, 1.1rem + 1.1vw, 1.9rem); }
.legal h3 { margin-top: 1.8rem; }
.legal p, .legal li { color: var(--text-2); }
.legal p + p { margin-top: 1rem; }
.legal ul { margin-top: 0.8rem; display: grid; gap: 0.55rem; }
.legal ul li { position: relative; padding-left: 1.4rem; }
.legal ul li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 7px; height: 7px; border-radius: 2px; background: var(--accent); }
.legal a { color: var(--accent-700); font-weight: 600; }
.legal a:hover { text-decoration: underline; }
.legal__meta { margin-top: 0.6rem; color: var(--text-3); font-size: 0.9rem; }
.legal__toc {
  margin: 1.6rem 0 0; padding: 1.2rem 1.4rem;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-lg);
}
.legal__toc h2 { margin: 0 0 0.8rem; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); font-family: var(--font-head); }
.legal__toc ul { display: grid; gap: 0.5rem; }
.legal__toc li { padding-left: 0; }
.legal__toc li::before { display: none; }

/* -------------------------------------------------------------
   30. Cookie consent banner
   ------------------------------------------------------------- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  padding: 0 clamp(1rem, 3vw, 1.75rem) clamp(1rem, 3vw, 1.75rem);
  transform: translateY(130%);
  transition: transform 0.45s var(--ease-out);
  pointer-events: none;
}
.cookie-banner.is-open { transform: none; pointer-events: auto; }
.cookie-banner__inner {
  max-width: var(--container); margin-inline: auto;
  display: flex; align-items: center; gap: 1rem 2rem; flex-wrap: wrap;
  background: var(--ink-900); color: var(--on-dark-2);
  border: 1px solid var(--on-dark-line-2); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: 1.1rem 1.4rem;
}
.cookie-banner__text { flex: 1 1 340px; }
.cookie-banner__text strong { display: block; color: #fff; font-family: var(--font-head); font-size: 1rem; margin-bottom: 0.25rem; }
.cookie-banner__text p { font-size: 0.88rem; color: var(--on-dark-2); margin: 0; }
.cookie-banner__text a { color: var(--accent-300); font-weight: 600; }
.cookie-banner__actions { display: flex; gap: 0.7rem; flex: none; }
.cookie-banner__actions .btn { padding: 0.8rem 1.3rem; }
@media (max-width: 560px) {
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; }
}
@media print { .cookie-banner { display: none; } }


/* -------------------------------------------------------------
   Reviews rotator (auto-rotating single testimonial)
   ------------------------------------------------------------- */
.review-rotator { display: grid; }
.review-rotator > .review-card { grid-area: 1 / 1; opacity: 0; visibility: hidden; transition: opacity .6s var(--ease-out); }
.review-rotator > .review-card.is-active { opacity: 1; visibility: visible; }
.review-dots { display: flex; gap: .75rem; justify-content: center; margin-top: 1.4rem; }
.review-arrow { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); padding: 0; background: var(--paper); color: var(--text-2); display: grid; place-items: center; cursor: pointer; transition: color .2s var(--ease), border-color .2s var(--ease), box-shadow .3s var(--ease), transform .2s var(--ease); }
.review-arrow svg { width: 20px; height: 20px; }
.review-arrow:hover { color: var(--accent-700); border-color: var(--line-2); box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.review-arrow:active { transform: translateY(0); }

/* Standalone tick list (used outside .prose, e.g. Solar page EV section) */
ul.ticks{display:grid;gap:0.7rem;list-style:none;padding:0;margin:0}
ul.ticks li{display:flex;gap:0.7rem;align-items:flex-start;color:var(--text-2)}
ul.ticks svg{width:1.15em;height:1.15em;color:var(--accent-700);flex:none;margin-top:4px}
