/* ==========================================================================
   Brightwire Electrical — demo trade site for WinNorth Digital
   Dark-first, electric-yellow accent. Type: Space Grotesk + Inter.
   ========================================================================== */

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../assets/fonts/space-grotesk-var.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../assets/fonts/inter-var.woff2") format("woff2");
}

:root {
  --ink: #0b0e14;
  --ink-2: #10141d;
  --ink-3: #171d28;
  --paper: #ffffff;
  --mist: #f3f5f9;
  --volt: #ffd21e;
  --volt-2: #ffde52;
  --cyan: #35d0e6;
  --text: #2b303b;
  --muted: #6b7280;
  --text-light: rgba(255, 255, 255, 0.72);
  --muted-light: rgba(255, 255, 255, 0.5);
  --line: #e5e9f0;
  --line-dark: rgba(255, 255, 255, 0.1);

  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --max: 1200px;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 20px 50px -24px rgba(0, 0, 0, 0.5);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--font-body); color: var(--text); background: var(--paper);
  line-height: 1.65; font-size: 17px; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display); color: var(--ink); line-height: 1.06; font-weight: 700;
  margin: 0 0 0.5em; letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.7rem, 6.2vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
h3 { font-size: 1.3rem; font-weight: 600; }
p { margin: 0 0 1em; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 26px; }
.section { padding: clamp(64px, 8vw, 118px) 0; }

.eyebrow {
  display: inline-block; font-family: var(--font-display); font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
  padding-bottom: 6px; border-bottom: 2px solid var(--volt); margin: 0 0 20px;
}
.eyebrow-volt { color: var(--volt); border-color: var(--volt); }
.section-head { max-width: 660px; margin: 0 0 52px; }
.section-sub { color: var(--muted); font-size: 1.1rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.96rem; letter-spacing: 0.01em;
  padding: 15px 28px; border-radius: var(--radius); border: 2px solid transparent; cursor: pointer;
  transition: transform 0.22s var(--ease), background 0.22s, color 0.22s, box-shadow 0.22s;
}
.btn-sm { padding: 10px 18px; font-size: 0.88rem; }
.btn-lg { padding: 18px 34px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-volt { background: var(--volt); color: var(--ink); box-shadow: 0 10px 28px -10px rgba(255, 210, 30, 0.7); }
.btn-volt:hover { background: var(--volt-2); transform: translateY(-2px); box-shadow: 0 16px 34px -10px rgba(255, 210, 30, 0.85); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.btn-outline:hover { background: #fff; color: var(--ink); border-color: #fff; transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-3); transform: translateY(-2px); }

/* ---- Topbar ---- */
.topbar { background: var(--ink); color: var(--text-light); font-size: 0.82rem; border-bottom: 1px solid var(--line-dark); }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; gap: 16px; }
.topbar-item { display: inline-flex; align-items: center; gap: 9px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5); } 70% { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); } 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); } }
.topbar-phone { color: #fff; font-weight: 600; }
.topbar-phone:hover { color: var(--volt); }

/* ---- Header ---- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(11, 14, 20, 0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line-dark); transition: background 0.3s; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 0; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: #fff; }
.brand-mark { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; background: var(--volt); color: var(--ink); flex-shrink: 0; }
.brand-text { font-family: var(--font-display); font-weight: 700; font-size: 1.24rem; letter-spacing: -0.02em; line-height: 1; }
.brand-sub { display: block; font-size: 0.62rem; font-weight: 500; letter-spacing: 0.32em; text-transform: uppercase; color: var(--volt); margin-top: 3px; }
.nav { display: flex; gap: 28px; }
.nav a { color: rgba(255, 255, 255, 0.82); font-weight: 500; font-size: 0.95rem; position: relative; padding: 4px 0; transition: color 0.2s; }
.nav a:hover { color: #fff; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--volt); transition: width 0.28s var(--ease); }
.nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; }
.header-phone svg { color: var(--volt); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; transition: 0.3s var(--ease); }

/* ---- Hero ---- */
.hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,14,20,0.96) 0%, rgba(11,14,20,0.8) 42%, rgba(11,14,20,0.35) 100%); }
.hero-glow { position: absolute; top: -20%; right: -10%; width: 55%; height: 90%; background: radial-gradient(circle, rgba(255,210,30,0.18) 0%, rgba(255,210,30,0) 65%); pointer-events: none; }
.hero-content { position: relative; z-index: 2; padding: clamp(70px, 10vw, 128px) 0 clamp(64px, 8vw, 104px); max-width: 760px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--volt); margin-bottom: 22px; }
.spark { font-size: 1rem; }
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 .hl { color: var(--volt); position: relative; }
.hero-lead { font-size: 1.2rem; color: rgba(255, 255, 255, 0.86); max-width: 560px; margin-bottom: 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 42px; }
.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 34px; margin: 0; padding: 26px 0 0; border-top: 1px solid rgba(255, 255, 255, 0.15); }
.hero-trust li { font-size: 0.92rem; color: rgba(255, 255, 255, 0.7); }
.hero-trust strong { display: block; font-family: var(--font-display); font-size: 1.6rem; color: #fff; line-height: 1.1; }

/* ---- Accreds ---- */
.accreds { background: var(--ink-2); color: #fff; padding: 22px 0; border-top: 1px solid var(--line-dark); }
.accreds-inner { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; justify-content: center; }
.accreds-label { font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--volt); font-weight: 600; }
.accreds ul { list-style: none; display: flex; flex-wrap: wrap; gap: 12px 34px; margin: 0; padding: 0; }
.accreds li { font-weight: 500; color: rgba(255, 255, 255, 0.82); font-size: 0.96rem; }
.accreds li::before { content: "⚡"; color: var(--volt); margin-right: 9px; font-size: 0.8rem; }

/* ---- Services ---- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--volt); }
.service-media { aspect-ratio: 16 / 10; overflow: hidden; position: relative; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.service-card:hover .service-media img { transform: scale(1.06); }
.service-body { padding: 24px 24px 28px; position: relative; }
.service-ico { position: absolute; top: -26px; left: 24px; width: 52px; height: 52px; border-radius: 12px; background: var(--volt); color: var(--ink); display: grid; place-items: center; font-size: 1.5rem; box-shadow: 0 8px 20px -8px rgba(255, 210, 30, 0.8); }
.service-body h3 { margin: 16px 0 8px; }
.service-body p { color: var(--muted); font-size: 0.98rem; margin: 0; }

/* ---- Instant estimate ---- */
.estimate { background: var(--ink); color: #fff; }
.estimate .eyebrow { color: var(--volt); }
.estimate h2 { color: #fff; }
.estimate .section-sub { color: rgba(255, 255, 255, 0.68); }
.estimate-tool { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 30px; align-items: stretch; }
.est-controls { display: flex; flex-direction: column; gap: 30px; }
.est-label { display: block; font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; color: var(--volt); margin-bottom: 14px; letter-spacing: 0.02em; }
.est-options { display: flex; flex-wrap: wrap; gap: 11px; }
.est-opt {
  font-family: var(--font-body); font-weight: 500; font-size: 0.95rem; color: #fff;
  background: var(--ink-3); border: 1.5px solid rgba(255, 255, 255, 0.12); border-radius: 999px;
  padding: 12px 20px; cursor: pointer; transition: all 0.2s var(--ease);
}
.est-opt:hover { border-color: rgba(255, 210, 30, 0.5); }
.est-opt.is-active { background: var(--volt); color: var(--ink); border-color: var(--volt); font-weight: 600; }
.est-result { background: linear-gradient(160deg, var(--ink-2), var(--ink-3)); border: 1px solid var(--line-dark); border-radius: var(--radius-lg); padding: 32px; display: flex; flex-direction: column; }
.est-result-label { font-family: var(--font-display); font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--volt); }
.est-price { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem, 4vw, 3rem); color: #fff; letter-spacing: -0.02em; margin: 6px 0 4px; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.est-dash { color: var(--volt); }
.est-desc { color: rgba(255, 255, 255, 0.72); font-size: 0.95rem; min-height: 44px; margin: 8px 0 20px; }
.est-result .btn { margin-top: auto; }
.est-note { font-size: 0.8rem; color: var(--muted-light); text-align: center; margin: 12px 0 0; }

/* ---- Before / After ---- */
.ba { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); user-select: none; aspect-ratio: 16 / 9; touch-action: pan-y; }
.ba img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-after { display: block; }
.ba-before { position: absolute; inset: 0; width: 100%; height: 100%; overflow: hidden; clip-path: inset(0 50% 0 0); will-change: clip-path; }
.ba-before img { filter: brightness(0.34) saturate(0.55) contrast(1.05); }
.ba-tag { position: absolute; top: 18px; z-index: 3; font-family: var(--font-display); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; backdrop-filter: blur(4px); }
.ba-tag-before { left: 18px; background: rgba(11, 14, 20, 0.7); color: #fff; }
.ba-tag-after { right: 18px; background: var(--volt); color: var(--ink); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: var(--volt); z-index: 4; transform: translateX(-50%); pointer-events: none; box-shadow: 0 0 20px rgba(255, 210, 30, 0.6); }
.ba-grip { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 46px; height: 46px; border-radius: 50%; background: var(--volt); color: var(--ink); display: grid; place-items: center; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4); }
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; z-index: 5; }

/* ---- Stats ---- */
.stats { background: var(--volt); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 56px 26px; }
.stat { text-align: center; }
.stat strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--ink); line-height: 1; letter-spacing: -0.02em; }
.stat span { display: block; margin-top: 8px; font-size: 0.92rem; font-weight: 500; color: rgba(11, 14, 20, 0.72); }

/* ---- Work / portfolio ---- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.filter { font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; color: var(--muted); background: transparent; border: 1.5px solid var(--line); border-radius: 999px; padding: 10px 20px; cursor: pointer; transition: all 0.22s var(--ease); }
.filter:hover { border-color: var(--ink); color: var(--ink); }
.filter.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 16px; }
.tile { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius-lg); cursor: pointer; background: var(--ink-2); }
.tile.wide { grid-column: span 2; }
.tile.tall { grid-row: span 2; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,14,20,0.82) 0%, rgba(11,14,20,0) 55%); opacity: 0; transition: opacity 0.35s; }
.tile:hover img { transform: scale(1.07); }
.tile:hover::after { opacity: 1; }
.tile figcaption { position: absolute; left: 18px; bottom: 16px; z-index: 2; color: #fff; opacity: 0; transform: translateY(10px); transition: all 0.35s var(--ease); }
.tile:hover figcaption { opacity: 1; transform: none; }
.tile figcaption span { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; }
.tile figcaption em { font-size: 0.8rem; font-style: normal; color: var(--volt); }
.tile.is-hidden { display: none; }

/* ---- Why ---- */
.why-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.why-media { position: relative; }
.why-media img { border-radius: var(--radius-lg); aspect-ratio: 4 / 5; object-fit: cover; box-shadow: var(--shadow); }
.why-badge { position: absolute; right: -16px; bottom: -18px; background: var(--ink); color: #fff; border-radius: 12px; padding: 16px 22px; box-shadow: var(--shadow); border-left: 3px solid var(--volt); }
.why-badge strong { display: block; font-family: var(--font-display); color: var(--volt); font-size: 1.2rem; }
.why-badge span { font-size: 0.8rem; color: rgba(255, 255, 255, 0.7); }
.why-copy h2 { margin-bottom: 18px; }
.why-copy > p { color: var(--muted); margin-bottom: 26px; }
.why-list { list-style: none; margin: 0 0 30px; padding: 0; display: grid; gap: 18px; }
.why-list li { display: flex; gap: 15px; }
.why-list li > span { flex-shrink: 0; width: 34px; height: 34px; border-radius: 9px; background: rgba(255, 210, 30, 0.14); color: var(--volt-2); display: grid; place-items: center; font-size: 1rem; filter: drop-shadow(0 0 0 var(--volt)); }
.why-list li > span { color: #b8901a; }
.why-list strong { display: block; font-family: var(--font-display); font-size: 1.08rem; color: var(--ink); margin-bottom: 3px; }
.why-list p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* ---- Reviews ---- */
.reviews { background: var(--mist); }
.reviews-score { display: flex; align-items: center; gap: 13px; margin-top: 8px; flex-wrap: wrap; }
.stars { color: var(--volt); letter-spacing: 2px; -webkit-text-stroke: 0.4px #d9a800; }
.reviews-score span:last-child { color: var(--muted); font-size: 0.96rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px; }
.review .stars { display: block; margin-bottom: 15px; font-size: 1rem; }
.review p { font-size: 1.02rem; color: var(--text); }
.review footer { margin-top: 20px; }
.review footer strong { display: block; font-family: var(--font-display); color: var(--ink); }
.review footer span { font-size: 0.85rem; color: var(--muted); }

/* ---- Emergency band ---- */
.emergency { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.emergency::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 50%, rgba(255,210,30,0.12), transparent 55%); }
.emergency-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 36px; padding: 56px 0; flex-wrap: wrap; }
.emergency h2 { color: #fff; margin-bottom: 10px; }
.emergency p { color: rgba(255, 255, 255, 0.72); max-width: 520px; margin: 0; }
.emergency .btn { flex-shrink: 0; }

/* ---- FAQ ---- */
.faq-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; }
.faq-intro { position: sticky; top: 100px; align-self: start; }
.faq-intro p { color: var(--muted); }
.faq-intro a { color: var(--ink); font-weight: 600; border-bottom: 2px solid var(--volt); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; padding: 22px 40px 22px 0; position: relative; font-family: var(--font-display); font-size: 1.14rem; font-weight: 600; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 4px; top: 18px; font-size: 1.5rem; color: var(--volt); font-weight: 400; transition: transform 0.3s var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--muted); padding-bottom: 22px; margin: 0; max-width: 620px; }

/* ---- Contact ---- */
.contact { background: var(--ink); color: #fff; }
.contact h2 { color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-copy > p { color: rgba(255, 255, 255, 0.72); max-width: 420px; margin-bottom: 34px; }
.contact-details { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.contact-details li { display: flex; gap: 15px; align-items: flex-start; }
.c-ico { flex-shrink: 0; width: 44px; height: 44px; border-radius: 11px; border: 1.5px solid var(--line-dark); color: var(--volt); display: grid; place-items: center; }
.contact-details span { display: block; font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--volt); margin-bottom: 3px; }
.contact-details a, .contact-details p { color: #fff; font-weight: 500; margin: 0; }
.contact-details a:hover { color: var(--volt); }
.contact-form { background: var(--paper); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.field { margin-bottom: 17px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field label { display: block; font-family: var(--font-display); font-size: 0.82rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea { width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); padding: 13px 15px; transition: border-color 0.2s, box-shadow 0.2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--volt); box-shadow: 0 0 0 3px rgba(255, 210, 30, 0.25); }
.field textarea { resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.contact-form .btn { margin-top: 8px; }
.form-status { margin: 13px 0 0; font-weight: 600; font-size: 0.94rem; min-height: 1px; }
.form-status.ok { color: #1a8f52; }
.form-status.err { color: #c0392b; }
.form-note { font-size: 0.82rem; color: var(--muted); text-align: center; margin: 12px 0 0; }

/* ---- Footer ---- */
.site-footer { background: #070a0f; color: rgba(255, 255, 255, 0.65); padding: 66px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid var(--line-dark); }
.footer-brand .brand { color: #fff; margin-bottom: 16px; }
.footer-brand p { max-width: 320px; font-size: 0.92rem; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; border: 1.5px solid var(--line-dark); color: #fff; display: grid; place-items: center; transition: all 0.22s var(--ease); }
.footer-social a:hover { background: var(--volt); border-color: var(--volt); color: var(--ink); transform: translateY(-3px); }
.footer-col h4 { color: #fff; font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; margin-bottom: 10px; font-size: 0.94rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--volt); }
.footer-hours { font-size: 0.9rem; margin-top: 4px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; flex-wrap: wrap; gap: 10px; font-size: 0.85rem; }
.footer-credit a { color: var(--volt); font-weight: 600; }
.footer-credit a:hover { text-decoration: underline; }

/* ---- Lightbox ---- */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(6, 8, 12, 0.95); display: flex; align-items: center; justify-content: center; padding: 40px; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lb-figure { margin: 0; max-width: 1000px; max-height: 86vh; text-align: center; }
.lb-figure img { max-width: 100%; max-height: 78vh; border-radius: 8px; object-fit: contain; }
.lb-figure figcaption { color: #fff; margin-top: 15px; font-family: var(--font-display); font-size: 1.1rem; }
.lb-close { position: absolute; top: 22px; right: 28px; background: none; border: 0; color: #fff; font-size: 2.6rem; line-height: 1; cursor: pointer; opacity: 0.8; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.3); color: #fff; width: 52px; height: 52px; border-radius: 50%; font-size: 1.7rem; cursor: pointer; transition: all 0.22s var(--ease); }
.lb-nav:hover { background: var(--volt); border-color: var(--volt); color: var(--ink); }
.lb-prev { left: 24px; } .lb-next { right: 24px; }

/* ---- Reveal ---- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .nav, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav { position: fixed; inset: 0 0 0 auto; top: 0; width: min(320px, 84vw); height: 100vh; flex-direction: column; gap: 0; background: var(--ink-2); padding: 90px 28px 28px; transform: translateX(110%); transition: transform 0.35s var(--ease); box-shadow: var(--shadow); }
  .nav.open { transform: none; }
  .nav a { color: #fff; padding: 16px 0; border-bottom: 1px solid var(--line-dark); width: 100%; }
  .estimate-tool, .why-grid, .contact-grid, .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-intro { position: static; }
  .services-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .tile.wide { grid-column: span 2; } .tile.tall { grid-row: span 1; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .topbar-item { display: none; }
  .topbar-inner { justify-content: center; }
  .services-grid, .reviews-grid { grid-template-columns: 1fr; }
  .service-card { margin-top: 8px; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .tile.wide { grid-column: span 1; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .why-badge { right: 12px; }
  .emergency-inner { padding: 42px 0; }
  .contact-form { padding: 24px 20px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 30px; }
  .btn { width: 100%; }
  .hero-cta .btn, .est-opt { width: auto; }
  .ba { aspect-ratio: 4 / 3; }
}
@media (max-width: 420px) { .footer-inner { grid-template-columns: 1fr; } }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
