/* ============================================================
   WALKA ELECTRIC — Master Stylesheet
   Brand: electric green on near-black, with bone-white surfaces
   Typography: Archivo (display, condensed/wide) + Inter Tight (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;700;800;900&family=Archivo+Narrow:wght@500;700&family=Inter+Tight:wght@400;500;600;700&family=JetBrains+Mono:wght@500;700&display=swap');

:root {
  /* Brand */
  --volt:        #14c864;        /* primary electric green */
  --volt-bright: #1eff7e;        /* hover / glow */
  --volt-deep:   #0e8f47;        /* shadow / pressed */
  --volt-soft:   #e6fbf0;        /* tinted backgrounds */

  /* Neutrals */
  --ink:    #0b0e10;             /* near-black, body text on light */
  --ink-2:  #1a1f23;             /* card on dark */
  --steel:  #4a5560;
  --slate:  #8893a0;
  --line:   #d9dde2;             /* hairlines */
  --bone:   #f6f4ef;             /* warm off-white page bg */
  --paper:  #ffffff;

  /* Status */
  --warning: #ffb020;
  --danger:  #e23a3a;

  /* Type */
  --display: 'Archivo', 'Helvetica Neue', sans-serif;
  --condensed: 'Archivo Narrow', 'Archivo', sans-serif;
  --body: 'Inter Tight', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --maxw: 1280px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 18px;

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* ---------- Type system ---------- */
h1,h2,h3,h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); letter-spacing: -0.015em; }
h4 { font-size: 1.15rem; letter-spacing: -0.01em; }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--volt-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--volt);
}

.lede { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--steel); max-width: 60ch; }

/* ---------- Containers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
section { padding-block: clamp(4rem, 8vw, 7rem); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.7em;
  padding: 0.95em 1.6em;
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--volt);
  color: var(--ink);
  box-shadow: 0 0 0 0 var(--volt);
}
.btn--primary:hover {
  background: var(--volt-bright);
  box-shadow: 0 8px 24px -8px var(--volt);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--bone); }
.btn--ghost-light {
  background: transparent;
  color: var(--bone);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--ghost-light:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Top utility bar ---------- */
.utility-bar {
  background: var(--ink);
  color: var(--bone);
  font-size: 0.83rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.utility-bar__inner {
  display: flex; justify-content: space-between; align-items: center;
  padding-block: 0.55rem;
  gap: 1rem;
}
.utility-bar a:hover { color: var(--volt); }
.utility-bar__left,
.utility-bar__right { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.utility-bar .pulse {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--volt); margin-right: 0.5em;
  box-shadow: 0 0 0 0 var(--volt);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(20,200,100,0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(20,200,100,0); }
  100% { box-shadow: 0 0 0 0 rgba(20,200,100,0); }
}
@media (max-width: 640px) {
  .utility-bar__right .hide-sm { display: none; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,244,239,0.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 1rem;
  gap: 2rem;
}
.brand {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.brand__mark {
  width: 38px; height: 38px;
  background: var(--ink);
  border-radius: 8px;
  display: grid; place-items: center;
  color: var(--volt);
  flex-shrink: 0;
}
.brand__mark svg { width: 22px; height: 22px; }
.brand__name { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.brand__name small {
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--steel);
  text-transform: uppercase;
}

.nav { display: flex; align-items: center; gap: 0.3rem; }
.nav a {
  padding: 0.55em 0.9em;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color .2s;
}
.nav a:hover { color: var(--volt-deep); }
.nav a.has-dropdown { display: inline-flex; align-items: center; gap: 0.3em; }
.nav__group { position: relative; }
.nav__dropdown {
  position: absolute; top: 100%; left: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.6rem;
  min-width: 240px;
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.18);
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.nav__group:hover .nav__dropdown,
.nav__group:focus-within .nav__dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__dropdown a {
  display: block; padding: 0.55rem 0.7rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
}
.nav__dropdown a:hover { background: var(--volt-soft); color: var(--ink); }

.header__cta { display: flex; align-items: center; gap: 0.5rem; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  align-items: center; justify-content: center;
}
.menu-toggle svg { width: 22px; height: 22px; }

@media (max-width: 960px) {
  .nav, .header__cta .btn { display: none; }
  .menu-toggle { display: inline-flex; }
}

.mobile-nav {
  display: none;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 1rem var(--gutter) 1.5rem;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}
.mobile-nav .btn { margin-top: 1rem; width: 100%; justify-content: center; }

/* ---------- Hero (homepage) ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--bone);
  overflow: hidden;
  padding-block: clamp(5rem, 9vw, 8rem) clamp(4rem, 7vw, 6rem);
}
.hero::before {
  /* circuit-board pattern, low opacity */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(20,200,100,0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(20,200,100,0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 70% 40%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 40%, black, transparent 75%);
  pointer-events: none;
}
.hero::after {
  /* glow */
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  right: -100px; top: -150px;
  background: radial-gradient(circle, rgba(20,200,100,0.35), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  filter: saturate(0.6) contrast(1.05) brightness(0.6);
  pointer-events: none;
  z-index: 0;
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(11,14,16,0.92) 35%, rgba(11,14,16,0.55) 100%);
}

/* Logo image variants */
.brand img.logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.brand--text-hidden .brand__name { display: none; }
.hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; }
}
.hero h1 { color: var(--bone); }
.hero h1 .accent {
  color: var(--volt);
  font-style: italic;
  font-family: var(--display);
  font-weight: 900;
  position: relative;
  display: inline-block;
}
.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.1em;
  height: 6px;
  background: var(--volt);
  opacity: 0.25;
  border-radius: 4px;
}
.hero .eyebrow { color: var(--volt); }
.hero .eyebrow::before { background: var(--volt); }
.hero__lede { color: rgba(246,244,239,0.78); font-size: 1.15rem; margin-top: 1.5rem; max-width: 52ch; }
.hero__ctas { display: flex; gap: 0.8rem; margin-top: 2rem; flex-wrap: wrap; }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat__num {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--volt);
  line-height: 1;
}
.stat__label {
  font-size: 0.82rem;
  color: rgba(246,244,239,0.65);
  margin-top: 0.4rem;
  letter-spacing: 0.04em;
}

/* Hero card (right column) */
.hero__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  backdrop-filter: blur(10px);
}
.hero__card h3 { color: var(--bone); margin-bottom: 0.4rem; }
.hero__card p { color: rgba(246,244,239,0.7); font-size: 0.95rem; margin-bottom: 1.5rem; }
.field {
  display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 0.9rem;
}
.field label {
  font-family: var(--mono);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246,244,239,0.55);
}
.field input,
.field select,
.field textarea {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 0.85em 1em;
  color: var(--bone);
  transition: border .2s, background .2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--volt);
  background: rgba(0,0,0,0.4);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(246,244,239,0.35); }
.hero__card .btn--primary { width: 100%; justify-content: center; margin-top: 0.4rem; }
.hero__card small { display: block; font-size: 0.78rem; color: rgba(246,244,239,0.5); text-align: center; margin-top: 0.8rem; }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding-block: 1.2rem;
}
.trust-strip__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--steel);
}
.trust-item svg { width: 22px; height: 22px; color: var(--volt-deep); flex-shrink: 0; }

/* ---------- Services grid ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3.5rem;
}
@media (max-width: 760px) { .section-head { grid-template-columns: 1fr; align-items: start; } }
.section-head h2 { margin-top: 0.6rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.service-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform .3s var(--ease), border .2s, box-shadow .3s var(--ease);
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--volt);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -20px rgba(0,0,0,0.15);
  border-color: var(--ink);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__num {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--steel);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.service-card__icon {
  width: 56px; height: 56px;
  background: var(--volt-soft);
  color: var(--volt-deep);
  border-radius: var(--radius);
  display: grid; place-items: center;
  margin-bottom: 1.25rem;
}
.service-card__icon svg { width: 30px; height: 30px; }
.service-card h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.service-card p { color: var(--steel); font-size: 0.95rem; margin-bottom: 1.5rem; flex-grow: 1; }
.service-card__link {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: gap .2s, color .2s, border-color .2s;
}
.service-card__link:hover { gap: 0.8em; color: var(--volt-deep); border-color: var(--volt-deep); }

/* ---------- Areas section ---------- */
.areas {
  background: var(--ink);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.areas::before {
  content: "";
  position: absolute;
  width: 800px; height: 800px;
  left: -200px; bottom: -300px;
  background: radial-gradient(circle, rgba(20,200,100,0.18), transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}
.areas .eyebrow { color: var(--volt); }
.areas .eyebrow::before { background: var(--volt); }
.areas h2 { color: var(--bone); }
.areas__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 880px) { .areas__inner { grid-template-columns: 1fr; } }

.area-list { display: flex; flex-direction: column; margin-top: 2rem; }
.area-list a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  letter-spacing: -0.015em;
  transition: padding .25s var(--ease), color .2s;
}
.area-list a:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }
.area-list a:hover { padding-left: 1rem; color: var(--volt); }
.area-list a .city-meta {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(246,244,239,0.5);
  text-transform: uppercase;
}
.area-list a:hover .city-meta { color: var(--volt); }

.areas__map {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  min-height: 380px;
}

/* ---------- Why-us / process ---------- */
.process {
  background: var(--paper);
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 880px) { .process__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .process__grid { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding-top: 2.5rem;
}
.step__num {
  position: absolute; top: 0; left: 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: 4rem;
  line-height: 1;
  color: var(--volt-soft);
  letter-spacing: -0.05em;
}
.step h3 { font-size: 1.25rem; margin-bottom: 0.5rem; position: relative; z-index: 1; }
.step p { color: var(--steel); font-size: 0.95rem; }

/* ---------- Reviews ---------- */
.reviews { background: var(--bone); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}
.review {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex; flex-direction: column;
  position: relative;
}
.review__stars {
  display: flex; gap: 2px;
  color: var(--volt);
  margin-bottom: 1rem;
}
.review__stars svg { width: 18px; height: 18px; fill: currentColor; }
.review__text {
  font-size: 1.05rem;
  line-height: 1.55;
  flex-grow: 1;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.review__author {
  display: flex; align-items: center; gap: 0.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.review__avatar {
  width: 42px; height: 42px;
  background: var(--volt-soft);
  color: var(--volt-deep);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1rem;
}
.review__name { font-weight: 600; font-size: 0.95rem; }
.review__meta { font-size: 0.8rem; color: var(--steel); }

.reviews__cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}
.reviews__cta p { color: var(--steel); margin-bottom: 1.2rem; }

/* ---------- Big CTA banner ---------- */
.cta-banner {
  background: var(--volt);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "WATTS UP — WATTS UP — WATTS UP — WATTS UP — WATTS UP — WATTS UP — ";
  position: absolute;
  bottom: -30px; left: 0;
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: 9rem;
  white-space: nowrap;
  color: rgba(11,14,16,0.06);
  letter-spacing: -0.03em;
  pointer-events: none;
  animation: scroll-text 30s linear infinite;
}
@keyframes scroll-text {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.cta-banner__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 760px) { .cta-banner__inner { grid-template-columns: 1fr; } }
.cta-banner h2 { font-size: clamp(2rem, 5vw, 3.6rem); }
.cta-banner__ctas { display: flex; gap: 0.7rem; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 760px) { .cta-banner__ctas { justify-content: flex-start; } }
.cta-banner .btn--primary { background: var(--ink); color: var(--volt); }
.cta-banner .btn--primary:hover { background: #000; }
.cta-banner .btn--ghost { border-color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(246,244,239,0.7);
  padding-block: 4rem 2rem;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
.footer-brand .brand { color: var(--bone); }
.footer-brand p { margin-top: 1rem; max-width: 38ch; }
.footer-social { display: flex; gap: 0.5rem; margin-top: 1.5rem; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  display: grid; place-items: center;
  transition: background .2s, border .2s, color .2s;
}
.footer-social a:hover { background: var(--volt); color: var(--ink); border-color: var(--volt); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 {
  color: var(--bone);
  font-family: var(--condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a:hover { color: var(--volt); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem;
  font-size: 0.82rem;
  color: rgba(246,244,239,0.5);
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom .license {
  font-family: var(--mono);
  letter-spacing: 0.08em;
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: var(--ink);
  color: var(--bone);
  padding-block: clamp(4rem, 7vw, 6rem) clamp(3rem, 5vw, 4.5rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(20,200,100,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(20,200,100,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 80% 50%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 80% 50%, black, transparent 70%);
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  filter: saturate(0.7) brightness(0.55);
  pointer-events: none;
}
.page-hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(11,14,16,0.92) 30%, rgba(11,14,16,0.5) 100%);
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--bone); margin-top: 0.8rem; font-size: clamp(2.4rem, 5vw, 4rem); }
.page-hero .lede { color: rgba(246,244,239,0.7); margin-top: 1.2rem; }
.page-hero .eyebrow { color: var(--volt); }
.page-hero .eyebrow::before { background: var(--volt); }

.breadcrumb {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(246,244,239,0.5);
  display: flex; gap: 0.5rem; flex-wrap: wrap;
}
.breadcrumb a:hover { color: var(--volt); }
.breadcrumb span { color: rgba(246,244,239,0.3); }

/* ---------- Service / area page layout ---------- */
.detail {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
}
@media (max-width: 960px) {
  .detail { grid-template-columns: 1fr; }
}
.detail__content > * + * { margin-top: 1.2rem; }
.detail__content h2 { margin-top: 3rem; }
.detail__content h3 { margin-top: 2rem; }
.detail__content p { color: var(--ink); line-height: 1.7; }
.detail__content ul { padding-left: 1.5rem; }
.detail__content ul li { margin-bottom: 0.5rem; }
.detail__content ul li::marker { color: var(--volt-deep); }

.sidebar {
  position: sticky; top: 100px;
  align-self: start;
  display: flex; flex-direction: column; gap: 1rem;
}
.sidebar__card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.sidebar__card h4 {
  font-family: var(--display);
  font-weight: 800;
  margin-bottom: 1rem;
}
.sidebar__card .btn { width: 100%; justify-content: center; }
.sidebar__card .phone {
  display: block;
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.7rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.sidebar__card .phone:hover { color: var(--volt-deep); }
.sidebar__card .hours { font-size: 0.88rem; color: var(--steel); margin-top: 1rem; }

.dark-card {
  background: var(--ink);
  color: var(--bone);
}
.dark-card h4 { color: var(--bone); }
.dark-card p { color: rgba(246,244,239,0.7); font-size: 0.93rem; }

/* ---------- Feature checklist (service pages) ---------- */
.feature-list {
  list-style: none; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 1.5rem !important;
}
@media (max-width: 540px) { .feature-list { grid-template-columns: 1fr; } }
.feature-list li {
  display: flex; align-items: flex-start; gap: 0.7rem;
  background: var(--volt-soft);
  border-left: 3px solid var(--volt);
  padding: 0.9rem 1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.93rem;
  line-height: 1.45;
  font-weight: 500;
  margin-bottom: 0 !important;
}
.feature-list li::marker { content: ""; }
.feature-list li::before {
  content: "✓";
  color: var(--volt-deep);
  font-weight: 900;
  flex-shrink: 0;
}

/* ---------- FAQ accordion ---------- */
.faq { margin-top: 1.5rem; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.3rem 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--mono);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--volt-deep);
  transition: transform .3s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 0 1.4rem;
  color: var(--steel);
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--volt-soft);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item.wide { aspect-ratio: 4 / 3; grid-column: span 2; }
@media (max-width: 640px) { .gallery-item.wide { grid-column: span 1; aspect-ratio: 4/5; } }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.2rem 1rem 1rem;
  background: linear-gradient(to top, rgba(11,14,16,0.85), transparent);
  color: var(--bone);
}
.gallery-item__caption .tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--volt);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.gallery-item__caption h4 { color: var(--bone); font-size: 0.95rem; font-weight: 700; line-height: 1.2; }

/* Placeholder pattern when no image yet */
.gallery-item.placeholder,
.image-placeholder {
  background:
    linear-gradient(135deg, rgba(20,200,100,0.1), rgba(20,200,100,0.02)),
    repeating-linear-gradient(45deg, var(--volt-soft) 0 10px, var(--bone) 10px 20px);
  display: grid; place-items: center;
  color: var(--volt-deep);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
}
.image-placeholder.tall { aspect-ratio: 3/4; }
.image-placeholder.wide { aspect-ratio: 16/9; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex; gap: 1rem;
  padding: 1.25rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.contact-item__icon {
  width: 44px; height: 44px;
  background: var(--volt-soft);
  color: var(--volt-deep);
  border-radius: var(--radius);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-item__icon svg { width: 22px; height: 22px; }
.contact-item__label {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.3rem;
}
.contact-item__value { font-family: var(--display); font-weight: 700; font-size: 1.15rem; }
.contact-item__value a:hover { color: var(--volt-deep); }
.contact-item small { display: block; color: var(--steel); font-size: 0.85rem; margin-top: 0.2rem; }

.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-form h3 { margin-bottom: 0.4rem; }
.contact-form > p { color: var(--steel); margin-bottom: 1.5rem; }
.contact-form .field label { color: var(--steel); }
.contact-form .field input,
.contact-form .field select,
.contact-form .field textarea {
  background: var(--bone);
  border: 1px solid var(--line);
  color: var(--ink);
}
.contact-form .field input:focus,
.contact-form .field select:focus,
.contact-form .field textarea:focus { background: var(--paper); border-color: var(--volt); }
.contact-form .field input::placeholder,
.contact-form .field textarea::placeholder { color: var(--slate); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 0.4rem; }

/* ---------- Animations ---------- */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  animation: fade-up .8s var(--ease) backwards;
}
.reveal-1 { animation-delay: 0.05s; }
.reveal-2 { animation-delay: 0.15s; }
.reveal-3 { animation-delay: 0.25s; }
.reveal-4 { animation-delay: 0.35s; }
.reveal-5 { animation-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
