/* ============================================================
   Adkins Electric, Inc. Jacksonville, FL.
   DNA: drenched deep-graphite + ONE warm copper accent.
   Display: Sora. Mono: IBM Plex Mono. Body: Inter.
   No electrician-yellow. No neon blue. No #000/#fff.
   Scene: a gloved hand at an open upgraded breaker panel in a
   dim utility room, one warm work lamp on clean copper + labels.
   ============================================================ */

:root {
  --bg:           oklch(0.21 0.012 200);
  --bg-2:         oklch(0.25 0.014 200);
  --surface:      oklch(0.28 0.016 198);
  --surface-2:    oklch(0.31 0.016 198);
  --paper:        oklch(0.965 0.004 195);   /* rare light spec-sheet band */
  --paper-2:      oklch(0.93 0.006 195);
  --ink:          oklch(0.95 0.005 195);    /* text on dark */
  --ink-dim:      oklch(0.74 0.012 200);
  --muted:        oklch(0.60 0.012 200);
  --ink-paper:    oklch(0.26 0.014 200);    /* text on the light band */
  --ink-paper-dim:oklch(0.42 0.014 200);
  --accent:       oklch(0.70 0.13 60);      /* warm copper */
  --accent-deep:  oklch(0.62 0.13 56);
  --accent-bright:oklch(0.78 0.12 66);
  --line:         oklch(0.34 0.014 200);
  --line-paper:   oklch(0.86 0.008 195);

  --maxw: 1160px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --sec: clamp(4.5rem, 11vh, 8.5rem);
  --r: 16px;
  --r-sm: 10px;
  --shadow: 0 1px 2px oklch(0.12 0.01 200 / 0.5), 0 20px 44px -24px oklch(0.08 0.01 200 / 0.8);
  --shadow-lift: 0 1px 2px oklch(0.12 0.01 200 / 0.6), 0 34px 64px -28px oklch(0.06 0.01 200 / 0.85);

  --font-display: "Sora", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --font-body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--accent); color: oklch(0.16 0.01 200); }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: var(--sec); }
.skip {
  position: absolute; left: -999px; top: 0; background: var(--accent); color: oklch(0.16 0.01 200);
  padding: .6rem 1rem; border-radius: 0 0 var(--r-sm) 0; z-index: 200; font-weight: 700;
}
.skip:focus { left: 0; }

/* ---------- type ---------- */
.h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 1.2rem + 2.7vw, 3.05rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.h2--light { color: var(--ink); }
.h2--dark { color: var(--ink-paper); }
.hl { color: var(--accent); }
.h2--dark .hl { color: var(--accent-deep); }
.lead {
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.28rem);
  line-height: 1.5;
  color: var(--ink-dim);
  max-width: 56ch;
  margin-top: 1.1rem;
}
.lead--dark { color: var(--ink-paper-dim); }
.body { color: var(--muted); max-width: 58ch; margin-top: 1rem; }
.body--dark { color: var(--ink-paper-dim); }

.eyebrow {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow--light { color: var(--ink-dim); }
.eyebrow--dark { color: var(--ink-paper-dim); }
.eyebrow__num { color: var(--accent); }
.eyebrow--dark .eyebrow__num { color: var(--accent-deep); }
.eyebrow__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px oklch(0.70 0.13 60 / 0.2);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-display); font-weight: 700;
  border: none; cursor: pointer; border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn--call {
  background: var(--accent); color: oklch(0.16 0.01 200);
  padding: 0.72rem 1.2rem; font-size: 0.95rem;
  box-shadow: 0 10px 24px -10px oklch(0.70 0.13 60 / 0.6);
}
.btn--call:hover { background: var(--accent-bright); transform: translateY(-2px); box-shadow: 0 16px 32px -12px oklch(0.70 0.13 60 / 0.75); }
.btn--lg { padding: 0.98rem 1.55rem; font-size: 1.05rem; }
.btn--xl { padding: 1.1rem 2.1rem; font-size: clamp(1.2rem, 1rem + 1.2vw, 1.9rem); letter-spacing: -0.01em; font-family: var(--font-mono); font-weight: 600; }
.btn__icon { display: inline-flex; }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
  padding-block: 0.9rem;
}
.nav.is-stuck {
  background: oklch(0.21 0.012 200 / 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 0.55rem;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: 0.65rem; }
.brand__mark {
  width: 38px; height: 38px; flex: none;
  display: grid; place-items: center;
  background: var(--accent); color: oklch(0.16 0.01 200);
  border-radius: 11px;
  font-family: var(--font-display); font-weight: 800; font-size: 1.18rem; line-height: 1;
  box-shadow: 0 6px 16px -7px oklch(0.70 0.13 60 / 0.7);
}
.footer .brand__mark { width: 34px; height: 34px; font-size: 1.05rem; }
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 1.08rem; line-height: 1; letter-spacing: -0.01em; color: var(--ink); }
.brand__sub { display: block; font-family: var(--font-mono); font-weight: 500; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.nav__links { display: flex; gap: 1.5rem; }
.nav__links a {
  font-weight: 500; font-size: 0.95rem; color: var(--ink-dim);
  position: relative; padding-block: 4px;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--accent); transition: width .25s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__cta-text { display: inline; }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding-bottom: clamp(3rem, 8vh, 6rem);
  overflow: hidden;
}
/* placeholder treatment: dim utility room, panel-housing graphite, copper trace */
.slot--hero {
  background:
    linear-gradient(90deg, oklch(0.13 0.012 200 / 0.78) 0%, oklch(0.13 0.012 200 / 0.34) 42%, oklch(0.13 0.012 200 / 0.08) 72%),
    radial-gradient(120% 90% at 82% 18%, oklch(0.70 0.13 60 / 0.12), transparent 46%),
    url("../assets/hero.png");
  background-size: cover, cover, cover;
  background-position: center, center, center 35%;
}
.hero__circuit { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; opacity: 0.5; }
.hero__lamp {
  position: absolute; top: -10%; right: 0; width: 60%; height: 70%; z-index: 1; pointer-events: none;
  background: radial-gradient(closest-side, oklch(0.78 0.12 66 / 0.22), transparent 72%);
  filter: blur(8px);
}
.hero__veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, oklch(0.13 0.012 200 / 0.85) 0%, oklch(0.13 0.012 200 / 0.45) 40%, transparent 72%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; }
.hero__h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.45rem, 1.4rem + 6vw, 4.9rem);
  line-height: 1.0; letter-spacing: -0.025em;
  color: var(--ink);
  text-shadow: 0 2px 34px oklch(0.1 0.01 200 / 0.7);
  margin-top: 1.1rem;
}
.hero__h1 .line { display: block; overflow: hidden; }
.hero__sub {
  color: var(--ink-dim); max-width: 52ch; margin-top: 1.35rem;
  font-size: clamp(1.05rem, 1rem + 0.5vw, 1.28rem); line-height: 1.5;
  text-shadow: 0 1px 18px oklch(0.1 0.01 200 / 0.7);
}
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 1.1rem; margin-top: 2rem; }
.hero__tag {
  font-family: var(--font-mono); font-weight: 500; font-size: 0.82rem;
  color: var(--ink-dim); letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 0.55rem;
}
.hero__tag::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent-bright); box-shadow: 0 0 0 4px oklch(0.78 0.12 66 / 0.22); }
.hero__resolve {
  margin-top: 2.4rem; font-family: var(--font-mono); font-weight: 500;
  color: var(--accent); font-size: clamp(0.92rem, 0.88rem + 0.3vw, 1.05rem);
  letter-spacing: 0.02em;
}
.hero__scrollcue { position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%); z-index: 2; }
.hero__scrollcue span {
  display: block; width: 22px; height: 36px; border: 2px solid oklch(0.74 0.012 200 / 0.45); border-radius: 12px; position: relative;
}
.hero__scrollcue span::after {
  content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; border-radius: 2px;
  background: var(--accent); transform: translateX(-50%); animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue { 0%,100% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; transform: translate(-50%, 8px); } }

/* ============ DIFFERENCE ============ */
.difference { background: var(--bg); }
.difference__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start;
}
.trust { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.trust__tile {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); padding: 1.4rem 1.3rem 1.5rem;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 0.55rem;
}
.trust__tile--accent { background: linear-gradient(160deg, oklch(0.70 0.13 60 / 0.16), oklch(0.28 0.016 198)); border-color: oklch(0.70 0.13 60 / 0.4); }
.trust__ico {
  width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center;
  background: oklch(0.70 0.13 60 / 0.14); color: var(--accent-bright); margin-bottom: 0.25rem;
}
.trust__h { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--ink); letter-spacing: -0.01em; }
.trust__p { font-size: 0.92rem; color: var(--muted); line-height: 1.45; }

/* ============ SERVICES ============ */
.services { background: linear-gradient(180deg, var(--bg), var(--bg-2) 55%, var(--bg)); }
.services__head { max-width: 40ch; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.services__head .h2 { margin-top: 0.8rem; }
.services__grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.1rem;
}
.card {
  grid-column: span 2;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.6rem 1.5rem 1.7rem; box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: oklch(0.70 0.13 60 / 0.45); }
.card__no {
  font-family: var(--font-mono); font-weight: 600; font-size: 0.82rem;
  color: var(--accent); letter-spacing: 0.06em;
}
.card__title {
  font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em;
  font-size: 1.32rem; margin-top: 0.5rem; color: var(--ink);
}
.card__text { color: var(--ink-dim); margin-top: 0.6rem; font-size: 0.98rem; }
.card__tagline {
  display: inline-flex; align-items: center; gap: 0.45rem; margin-top: 1rem; font-family: var(--font-mono); font-weight: 600;
  font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent-bright);
}
.card__tagline::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-bright); }
/* lead card spans 3 cols + tall, holds the panel media slot */
.card--lead { grid-column: span 3; grid-row: span 2; display: flex; flex-direction: column; }
.card--lead .card__title { font-size: 1.5rem; }
.card--lead .card__text { margin-bottom: 1.3rem; }
.card__media {
  margin-top: auto; border-radius: var(--r-sm); min-height: 200px; flex: 1;
  border: 1px solid var(--line);
}
.slot--panel {
  background:
    linear-gradient(180deg, transparent 55%, oklch(0.12 0.012 200 / 0.45)),
    url("../assets/panel.png");
  background-size: cover, cover;
  background-position: center, center;
}
/* wide diagnosis card */
.card--wide { grid-column: span 3; }

/* ============ TEAM (inverted light band) ============ */
.team { background: linear-gradient(180deg, var(--paper), var(--paper-2)); }
.team__grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.team__names { list-style: none; display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.7rem; }
.team__names li {
  font-family: var(--font-mono); font-weight: 500; font-size: 0.85rem;
  background: oklch(0.91 0.006 195); border: 1px solid var(--line-paper);
  color: var(--ink-paper); border-radius: 999px; padding: 0.45rem 0.95rem;
  transition: transform .2s ease, border-color .2s ease;
}
.team__names li:hover { transform: translateY(-2px); border-color: var(--accent-deep); }
.team__note { font-family: var(--font-mono); font-size: 0.74rem; color: var(--ink-paper-dim); margin-top: 1rem; letter-spacing: 0.03em; }
.team__media {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--r);
  border: 1px solid var(--line-paper); box-shadow: var(--shadow-lift); overflow: hidden;
}
.slot--team {
  background:
    linear-gradient(0deg, oklch(0.12 0.012 200 / 0.7), transparent 42%),
    url("../assets/team.png");
  background-size: cover, cover;
  background-position: center, center;
}
.team__cap {
  position: absolute; left: 1.1rem; bottom: 1rem; z-index: 2;
  font-family: var(--font-mono); font-weight: 600; color: var(--ink);
  font-size: 0.85rem; letter-spacing: 0.03em;
  text-shadow: 0 1px 10px oklch(0.1 0.01 200 / 0.8);
}

/* ============ INTERLUDE ============ */
.interlude {
  position: relative; min-height: 56svh; display: grid; place-items: center;
  text-align: center; overflow: hidden; padding-block: var(--sec);
}
.slot--interlude {
  background:
    linear-gradient(180deg, oklch(0.12 0.012 200 / 0.4), oklch(0.12 0.012 200 / 0.62)),
    url("../assets/interlude.png");
  background-size: cover, cover;
  background-position: center, center;
}
.interlude__veil { position: absolute; inset: 0; background: linear-gradient(180deg, oklch(0.13 0.012 200 / 0.2), oklch(0.13 0.012 200 / 0.5)); }
.interlude__line {
  position: relative; z-index: 2; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.35rem, 1rem + 2.3vw, 2.5rem); line-height: 1.2; letter-spacing: -0.015em;
  color: var(--ink); max-width: 24ch; text-shadow: 0 2px 26px oklch(0.1 0.01 200 / 0.7);
}

/* ============ REVIEWS ============ */
.reviews { background: var(--bg-2); }
.reviews__head { margin-bottom: clamp(2rem, 5vw, 3.2rem); max-width: 48ch; }
.reviews__head .h2 { margin-top: 0.7rem; }
.reviews__note { color: var(--muted); margin-top: 0.9rem; font-size: 0.92rem; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; align-items: start; }
.quote {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.7rem 1.6rem; box-shadow: var(--shadow);
}
.quote--lead {
  grid-column: span 2; border-top: 3px solid var(--accent);
  background: linear-gradient(165deg, oklch(0.30 0.016 198), var(--surface));
}
.quote__stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.quote__stars span {
  width: 17px; height: 17px;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l2.9 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77 5.82 21l1.18-6.88-5-4.87 7.1-1.01z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l2.9 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77 5.82 21l1.18-6.88-5-4.87 7.1-1.01z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.quote__text { font-size: 1.0rem; color: var(--ink-dim); line-height: 1.55; }
.quote--lead .quote__text { font-size: 1.12rem; color: var(--ink); }
.quote__who { display: flex; flex-direction: column; gap: 2px; margin-top: 1.2rem; }
.quote__name { font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.quote__meta { font-family: var(--font-mono); font-size: 0.74rem; color: var(--muted); letter-spacing: 0.02em; }

/* ============ SERVICE AREA ============ */
.area { position: relative; overflow: hidden; color: var(--ink); }
.slot--area {
  background:
    linear-gradient(90deg, oklch(0.12 0.012 220 / 0.82) 0%, oklch(0.12 0.012 220 / 0.5) 48%, oklch(0.12 0.012 220 / 0.2) 80%),
    url("../assets/area.png");
  background-size: cover, cover;
  background-position: center, center;
}
.area__veil { position: absolute; inset: 0; background: radial-gradient(120% 90% at 12% 88%, oklch(0.12 0.012 200 / 0.5), transparent 55%); }
.area__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.area__lead { color: var(--ink-dim); margin-top: 1.1rem; max-width: 46ch; }
.area__inner .h2 { margin-top: 0.7rem; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 0.7rem; }
.chips li {
  background: oklch(0.95 0.005 195 / 0.06); border: 1px solid oklch(0.95 0.005 195 / 0.16);
  color: var(--ink); border-radius: 999px; padding: 0.6rem 1.15rem;
  font-family: var(--font-mono); font-weight: 500; font-size: 0.85rem;
  transition: background .2s ease, transform .2s ease;
}
.chips li:hover { background: oklch(0.95 0.005 195 / 0.12); transform: translateY(-2px); }
.chips__all { background: var(--accent) !important; border-color: var(--accent) !important; color: oklch(0.16 0.01 200) !important; font-weight: 600 !important; }

/* ============ CONVERT ============ */
.convert { background: linear-gradient(180deg, var(--bg), var(--bg-2)); text-align: center; }
.convert__inner { display: flex; flex-direction: column; align-items: center; }
.convert__h {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -0.025em;
  font-size: clamp(1.9rem, 1.2rem + 3vw, 3.3rem); line-height: 1.06; color: var(--ink);
  margin-top: 1rem; max-width: 20ch;
}
.convert .btn--xl { margin-top: 2.2rem; }
.convert__sub { margin-top: 1.6rem; color: var(--muted); font-size: 0.92rem; font-family: var(--font-mono); letter-spacing: 0.02em; }
.convert__sub a { color: var(--accent); font-weight: 600; }
.convert__sub a:hover { text-decoration: underline; }

/* ============ FOOTER ============ */
.footer { background: oklch(0.16 0.01 200); color: var(--ink); padding-top: clamp(3rem, 7vh, 5rem); padding-bottom: 2rem; }
.footer__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.6rem; align-items: center; }
.footer__brand { display: flex; align-items: center; gap: 0.9rem; }
.footer__name { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; }
.footer__line { color: var(--muted); font-size: 0.9rem; margin-top: 2px; }
.footer__contact { display: flex; flex-wrap: wrap; gap: 1.4rem; align-items: center; font-family: var(--font-mono); font-size: 0.9rem; }
.footer__contact a:hover { color: var(--accent); }
.footer__legal { color: var(--muted); font-size: 0.8rem; margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid var(--line); font-family: var(--font-mono); }

/* ============ REVEAL MOTION ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 920px) {
  .nav__links { display: none; }
  .difference__grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .team__grid { grid-template-columns: 1fr; }
  .team__media { max-width: 420px; order: -1; }
  .area__inner { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr 1fr; }
  .quote--lead { grid-column: span 2; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .card, .card--lead, .card--wide { grid-column: span 1; grid-row: auto; }
  .card--lead { grid-column: span 2; }
}
@media (max-width: 560px) {
  .services__grid { grid-template-columns: 1fr; }
  .card--lead, .card--wide { grid-column: span 1; }
  .trust { grid-template-columns: 1fr 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .quote--lead { grid-column: span 1; }
  .nav__cta-text { display: none; }
  .nav__cta { padding: 0.6rem 0.8rem; }
  .hero { min-height: 92svh; }
  .hero__cta { gap: 0.8rem; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scrollcue span::after { animation: none; }
  .hero__circuit { display: none; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ============================================================
   MULTI-PAGE ADDITIONS — sub-page heroes, services detail,
   about story, contact, reviews page. Shares all tokens above.
   ============================================================ */

/* nav active link */
.nav__links a.active { color: var(--accent); }
.nav__links a.active::after { width: 100%; }

/* ---------- sub-page hero (compact, image-backed) ---------- */
.subhero {
  position: relative; min-height: 64svh; display: flex; align-items: flex-end;
  overflow: hidden; padding-bottom: clamp(2.5rem, 6vh, 4.5rem);
}
.subhero__veil { position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, oklch(0.12 0.012 200 / 0.84) 0%, oklch(0.12 0.012 200 / 0.5) 44%, oklch(0.12 0.012 200 / 0.18) 78%),
    linear-gradient(180deg, transparent 50%, oklch(0.12 0.012 200 / 0.6));
}
.subhero__inner { position: relative; z-index: 2; }
.subhero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.1rem, 1.4rem + 3.6vw, 3.8rem); line-height: 1.04; letter-spacing: -0.025em;
  color: var(--ink); max-width: 18ch; margin-top: 1rem;
  text-shadow: 0 2px 30px oklch(0.1 0.01 200 / 0.7);
}
.subhero__sub {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem); color: var(--ink-dim);
  max-width: 50ch; margin-top: 1.2rem; line-height: 1.5;
  text-shadow: 0 1px 16px oklch(0.1 0.01 200 / 0.7);
}
.subhero--services { background: linear-gradient(160deg, oklch(0.27 0.016 198), oklch(0.16 0.01 200)), url("../assets/panel.png"); background-size: cover; background-position: center; }
.subhero--about    { background: url("../assets/work.png"); background-size: cover; background-position: center 40%; }
.subhero--contact  { background: url("../assets/interlude.png"); background-size: cover; background-position: center; }
.subhero--reviews  { background: url("../assets/team.png"); background-size: cover; background-position: center 30%; }

/* breadcrumb */
.crumb { font-family: var(--font-mono); font-size: 0.78rem; color: var(--muted);
  letter-spacing: 0.04em; padding-top: calc(64px + 1.6rem); }
.crumb a { color: var(--accent); }
.crumb a:hover { text-decoration: underline; }
.crumb span { color: var(--line); margin-inline: 0.5ch; }

/* intro lede block (shared on sub-pages) */
.lede { max-width: 62ch; margin-bottom: clamp(2rem, 5vw, 3.2rem); }
.lede .h2 { margin-top: 0.8rem; }
.lede p { color: var(--ink-dim); margin-top: 1.1rem; }

/* ---------- services page: detail rows ---------- */
.svc-detail { display: grid; gap: 1.2rem; }
.svc-row {
  display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; align-items: start;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.7rem 1.7rem; box-shadow: var(--shadow);
  transition: border-color .25s ease, transform .25s ease;
}
.svc-row:hover { border-color: oklch(0.70 0.13 60 / 0.4); transform: translateY(-3px); }
.svc-row__no {
  font-family: var(--font-mono); font-weight: 600; font-size: 1.05rem; color: var(--accent);
  width: 44px; height: 44px; flex: none; display: grid; place-items: center;
  background: oklch(0.70 0.13 60 / 0.12); border-radius: 11px;
}
.svc-row h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--ink); letter-spacing: -0.01em; }
.svc-row p { color: var(--ink-dim); margin-top: 0.5rem; max-width: 64ch; }
.svc-row ul { margin: 0.9rem 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.svc-row li {
  font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.02em;
  background: oklch(0.70 0.13 60 / 0.1); color: var(--accent-bright);
  border: 1px solid oklch(0.70 0.13 60 / 0.22); border-radius: 999px; padding: 0.34rem 0.85rem; font-weight: 500;
}

/* code/insurance feature band */
.band { background: var(--surface-deep, linear-gradient(180deg, var(--bg-2), var(--bg))); position: relative; overflow: hidden; }
.band--paper { background: linear-gradient(180deg, var(--paper), var(--paper-2)); }
.band__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 4rem); align-items: center; }
.band--paper .h2 { color: var(--ink-paper); }
.band--paper .lead { color: var(--ink-paper-dim); }
.band--paper p { color: var(--ink-paper-dim); }
.band__media { aspect-ratio: 4 / 3; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-lift); border: 1px solid var(--line-paper); }
.band__media img { width: 100%; height: 100%; object-fit: cover; }
.feat-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 0.9rem; }
.feat-list li { display: grid; grid-template-columns: auto 1fr; gap: 0.8rem; align-items: start; }
.feat-list .ic { width: 26px; height: 26px; flex: none; display: grid; place-items: center; color: var(--accent-deep); margin-top: 2px; }
.feat-list b { font-family: var(--font-display); font-weight: 700; color: var(--ink-paper); display: block; }
.feat-list span.t { color: var(--ink-paper-dim); font-size: 0.95rem; }

/* ---------- about page ---------- */
.story__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.story__copy p { color: var(--ink-dim); margin-top: 1.1rem; }
.story__copy .lead { color: var(--ink); }
.story__media { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-lift); border: 1px solid var(--line); aspect-ratio: 4 / 3; }
.story__media img { width: 100%; height: 100%; object-fit: cover; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-top: clamp(2rem, 5vw, 3rem); }
.value { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 1.6rem 1.5rem; box-shadow: var(--shadow); }
.value__ico { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; background: oklch(0.70 0.13 60 / 0.14); color: var(--accent-bright); margin-bottom: 0.9rem; }
.value h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--ink); }
.value p { color: var(--muted); font-size: 0.95rem; margin-top: 0.4rem; }

/* ---------- contact page ---------- */
.contact__grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 6vw, 4rem); align-items: start; }
.ci { display: grid; gap: 1.1rem; }
.ci__card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 1.5rem 1.6rem; box-shadow: var(--shadow); }
.ci__card .ic { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: oklch(0.70 0.13 60 / 0.14); color: var(--accent-bright); margin-bottom: 0.8rem; }
.ci__card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.ci__card p { color: var(--muted); font-size: 0.95rem; margin-top: 0.3rem; }
.ci__big { display: inline-block; font-family: var(--font-mono); font-weight: 600; font-size: 1.55rem; color: var(--accent); margin-top: 0.4rem; letter-spacing: -0.01em; }
.ci__big:hover { color: var(--accent-bright); }
.ci__card a:not(.ci__big) { color: var(--accent); }
.ci__card a:not(.ci__big):hover { text-decoration: underline; }
.cform { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 2rem 1.9rem; box-shadow: var(--shadow-lift); }
.cform h2 { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--ink); letter-spacing: -0.01em; }
.cform__note { font-size: 0.82rem; color: var(--muted); background: oklch(0.70 0.13 60 / 0.08); border: 1px solid oklch(0.70 0.13 60 / 0.18); border-radius: 8px; padding: 0.6rem 0.9rem; margin: 0.8rem 0 1.4rem; font-family: var(--font-mono); letter-spacing: 0.01em; }
.field { display: grid; gap: 0.4rem; margin-bottom: 1.05rem; }
.field label { font-size: 0.82rem; font-weight: 600; color: var(--ink-dim); font-family: var(--font-mono); letter-spacing: 0.02em; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 0.78rem 0.95rem; width: 100%; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px oklch(0.70 0.13 60 / 0.18); }
.field textarea { resize: vertical; min-height: 118px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cform .btn { width: 100%; justify-content: center; margin-top: 0.4rem; }
.cform__msg { display: none; margin-top: 1rem; font-size: 0.92rem; color: var(--accent-bright); font-family: var(--font-mono); }
.cform__msg.show { display: block; }

/* ---------- reviews page extras ---------- */
.rev-author { display: flex; align-items: center; gap: 0.6rem; margin-top: 1.1rem; }
.rev-author .av {
  width: 36px; height: 36px; border-radius: 50%; flex: none;
  background: linear-gradient(140deg, var(--accent), var(--accent-deep));
  color: oklch(0.16 0.01 200); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 0.82rem;
}
.rev-author .who { display: grid; gap: 1px; }
.themes { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.theme {
  font-family: var(--font-mono); font-weight: 500; font-size: 0.82rem;
  background: var(--surface); border: 1px solid var(--line); color: var(--ink-dim);
  border-radius: 999px; padding: 0.5rem 1.05rem;
}
.theme b { color: var(--accent); font-weight: 600; }

/* responsive for multi-page components */
@media (max-width: 920px) {
  .band__grid, .story__grid, .contact__grid { grid-template-columns: 1fr; }
  .band__media, .story__media { max-width: 460px; }
  .band--paper .band__media { order: -1; }
  .values { grid-template-columns: 1fr; }
  .subhero { min-height: 56svh; }
}
@media (max-width: 560px) {
  .svc-row { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .crumb { padding-top: calc(60px + 1.2rem); }
}

/* ============================================================
   ZVARIO SAMPLE BADGE — temporary, REMOVABLE (one toggle).
   Delete this block + body[data-sample] attribute to deliver clean.
   ============================================================ */
.zv-sample-badge { display: none; }
body[data-sample] .zv-sample-badge {
  display: flex; align-items: center; gap: 0.5ch; position: fixed;
  left: 50%; bottom: 14px; transform: translateX(-50%); z-index: 999;
  padding: 0.45em 0.95em; border-radius: 999px;
  font: 600 0.72rem/1 var(--font-mono, system-ui), sans-serif; letter-spacing: 0.03em;
  color: oklch(0.95 0.005 195); background: oklch(0.20 0.012 200 / 0.86);
  border: 1px solid oklch(0.70 0.13 60 / 0.4); backdrop-filter: blur(8px);
  box-shadow: 0 6px 22px oklch(0.08 0.01 200 / 0.5); text-decoration: none; pointer-events: auto;
}
.zv-sample-badge b { color: var(--accent-bright); }
.zv-short { display: none; }
@media (max-width: 640px) {
  body[data-sample] .zv-sample-badge { font-size: 0.62rem; bottom: 10px; left: auto; right: 10px; transform: none; padding: 0.4em 0.8em; white-space: nowrap; }
  .zv-long { display: none; } .zv-short { display: inline; }
}
