/* ============================================================
   HARP ELECTRIC - multi-page site
   Violet-black shell · gold string accents · liquid glass
   ============================================================ */

:root {
  --shell: #0a0812;
  --deep: #060410;
  --card: #141020;
  --gold: #e8b54b;
  --gold-light: #f3ce7e;
  --gold-glow: #ffdf9e;
  --ink: #ede9f4;
  --muted: #a79fb8;
  --line: rgba(255, 255, 255, 0.14);
  --red: #e5484d;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  /* z-scale */
  --z-nav: 50;
  --z-toast: 60;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  background: var(--shell);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: #16100a; }

:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 2px; }

img { max-width: 100%; display: block; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- type ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section { padding: 104px 0; }
.section-cta { margin-top: 44px; display: flex; justify-content: center; }
.section-head { max-width: 660px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); font-weight: 600; letter-spacing: -0.02em; }
.section-head p { margin-top: 14px; color: var(--muted); font-size: 16.5px; line-height: 1.7; }

/* ---------- liquid glass ---------- */
.glass {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  backdrop-filter: blur(16px) saturate(1.6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 8px 30px -8px rgba(0, 0, 0, 0.45);
}

/* ---------- buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid var(--line);
  transition: background 300ms ease, transform 300ms ease, border-color 300ms ease, color 300ms ease, box-shadow 300ms ease;
  padding: 15px 30px;
  color: var(--ink);
  background: transparent;
}
.btn svg { width: 16px; height: 16px; flex: none; transition: transform 300ms ease; }
/* tactile press feedback on every button */
.btn:active { transform: translateY(0) scale(0.97); transition-duration: 80ms; }

/* matte gold primary - flat, no gloss, no glow */
.btn-primary {
  background: #c9a24c;
  border-color: transparent;
  color: #1c1305;
  box-shadow: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: #d8b25c;
}
.btn-primary:hover svg { transform: translateX(3px); }

/* refined ghost secondary - thin gold hairline */
.btn-secondary {
  background: transparent;
  border-color: rgba(232, 181, 75, 0.4);
  color: var(--ink);
}
.btn-secondary:hover { background: rgba(232, 181, 75, 0.08); border-color: var(--gold-light); transform: translateY(-2px); }

.btn-lg { padding: 18px 36px; font-size: 13.5px; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 999px;
  padding: 10px 12px 10px 22px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-logo svg { width: 30px; height: 30px; }
.nav-logo span em { font-style: normal; color: var(--gold-light); }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  display: block;
  padding: 9px 16px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 200ms ease, background 200ms ease;
}
.nav-links a:hover { color: var(--ink); background: rgba(255, 255, 255, 0.06); }
.nav-links a[aria-current="page"] { color: var(--gold-light); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn { padding: 12px 22px; font-size: 12px; }

.nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  cursor: pointer;
}
.nav-burger svg { width: 20px; height: 20px; }

.mobile-menu {
  position: fixed;
  top: 84px;
  left: 16px;
  right: 16px;
  z-index: var(--z-nav);
  border-radius: 24px;
  padding: 10px;
  display: none;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 18px;
  border-radius: 16px;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
}
.mobile-menu a:hover { background: rgba(255, 255, 255, 0.08); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #050308;
}

/* the living-room + harp photo - starts dim, then the lights fade on */
.hero-room {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  /* WebP background (~66% smaller than the jpg). No-WebP browsers degrade to the
     hero's solid dark base colour; the jpg is kept for OG/schema + <picture>. */
  background-image:
    linear-gradient(180deg, rgba(5,3,10,0.18), rgba(5,3,10,0.04) 45%, rgba(5,3,10,0.5)),
    url('../images/harp-room.webp');
  background-size: cover;
  background-position: 60% 42%;
  filter: brightness(0.32) saturate(0.62) contrast(1.03);
  transition: filter 1300ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* warm daylight blooming through the window as the lights come up */
.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 1500ms ease;
  background:
    radial-gradient(circle 600px at 20% 34%, rgba(255,242,210,0.22), transparent 72%),
    radial-gradient(circle 480px at 66% 30%, rgba(255,240,205,0.2), transparent 72%);
}

/* legibility scrim: darker on the left (copy) and bottom (stats overlap) */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6,4,16,0.88) 0%, rgba(6,4,16,0.5) 36%, rgba(6,4,16,0.1) 64%, rgba(6,4,16,0.35) 100%),
    linear-gradient(180deg, rgba(6,4,16,0.3) 0%, transparent 26%, rgba(6,4,16,0.55) 100%);
}

.hero.lit .hero-room { filter: brightness(1.02) saturate(1.05) contrast(1); }
.hero.lit .hero-glow { opacity: 1; }

/* ---------- wall light switch (flip to toggle the room lights) ---------- */
.light-switch {
  position: absolute;
  top: 120px;
  right: 34px;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: transform 200ms ease, filter 400ms ease;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.5));
}
.light-switch:hover { transform: translateY(-1px); }
.light-switch.is-on { filter: drop-shadow(0 0 24px rgba(255, 220, 150, 0.55)) drop-shadow(0 8px 20px rgba(0, 0, 0, 0.5)); }

/* sleek screwless designer plate with a fine gold trim */
.ls-plate {
  position: relative;
  width: 66px;
  height: 116px;
  border-radius: 16px;
  padding: 3px;
  background:
    linear-gradient(160deg, rgba(240, 214, 150, 0.9), rgba(180, 140, 70, 0.6) 50%, rgba(120, 92, 44, 0.7));
  box-shadow: 0 10px 26px -8px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.ls-plate::before {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 13px;
  background: linear-gradient(155deg, #faf7f0 0%, #ece7db 55%, #dcd6c8 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* rocker paddle: split ON (top) / OFF (bottom) */
.ls-rocker {
  position: absolute;
  left: 12px; right: 12px; top: 16px; bottom: 16px;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0,0,0,0.2);
  z-index: 1;
}
.ls-half {
  position: absolute;
  left: 0; right: 0;
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #8f8a7b;
  background: linear-gradient(180deg, #f2efe7, #e2ddd0);
  transition: background 260ms ease, color 260ms ease, box-shadow 260ms ease;
}
.ls-top { top: 0; padding-top: 4px; align-items: flex-start; }
.ls-bottom { bottom: 0; padding-bottom: 4px; align-items: flex-end; background: linear-gradient(0deg, #f2efe7, #e2ddd0); }

/* OFF state - bottom pressed in */
.light-switch:not(.is-on) .ls-bottom {
  background: #d7d1c3;
  color: #6c6759;
  box-shadow: inset 0 3px 7px rgba(0, 0, 0, 0.28);
}
.light-switch:not(.is-on) .ls-top { box-shadow: 0 -1px 0 rgba(255,255,255,0.7); }

/* ON state - top pressed in, glowing gold */
.light-switch.is-on .ls-top {
  background: linear-gradient(180deg, #fff7e4, #f4e2b6);
  color: #a97f2b;
  box-shadow: inset 0 3px 7px rgba(120, 90, 20, 0.25);
}
.light-switch.is-on .ls-bottom { box-shadow: 0 1px 0 rgba(255,255,255,0.7); }

.ls-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(237, 233, 244, 0.7);
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}

.hero-inner {
  position: relative;
  z-index: 4;
  padding: 140px 0 90px;
  width: 100%;
}

.hero-copy { max-width: 640px; }

/* premium kicker - clean text, thin gold rule, no glass box */
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  padding: 0;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 30px;
}
.hero-kicker .dot {
  width: 24px; height: 1px; border-radius: 0;
  background: linear-gradient(90deg, var(--gold), transparent);
  box-shadow: none;
}

.hero h1 {
  font-size: clamp(3rem, 7.2vw, 5.4rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.04;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.7);
}
/* gold emphasis: weight bumped to 700 so the gradient doesn't read lighter than
   the solid-white first line - richer, more saturated two-stop gold */
.hero h1 em {
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(115deg, var(--gold-light) 0%, var(--gold) 52%, #c9902f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.7;
  color: #d8d2e2;
  max-width: 480px;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.6);
}

.hero-ctas { margin-top: 40px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }

/* ---------- stats strip ---------- */
/* ---------- inner-page hero banner ---------- */
.page-hero {
  position: relative;
  padding: 170px 0 66px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--deep), var(--shell));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
/* ambient texture, not a recognizable object: framed toward the warm window/wood
   side and kept low-contrast so the harp never reads as a dark blob on the right */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Per-page image via --page-hero-img (falls back to the harp photo). One shared
     treatment for every interior hero - navy scrim + heavy desaturate + gold glow
     (::after) - so distinct photos still read as one cohesive visual system. */
  background-image:
    linear-gradient(90deg, rgba(15,15,23,0.93) 0%, rgba(15,15,23,0.74) 46%, rgba(15,15,23,0.42) 100%),
    var(--page-hero-img, url('../images/harp-room.webp'));
  background-size: cover;
  background-position: var(--page-hero-pos, 30% 38%);
  filter: saturate(0.3) brightness(0.9) contrast(1.02);
  opacity: 0.85;
}
/* warm glow to give the inner banners some depth */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle 520px at 78% 12%, rgba(232, 181, 75, 0.1), transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); }
.page-hero p { margin-top: 14px; color: #cdc6dc; max-width: 640px; font-size: 17px; }

.stats { margin-top: -54px; position: relative; z-index: 3; }
.stats.stats-plain { margin-top: 0; }
.stats-grid {
  border-radius: 28px;
  padding: 30px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}
.stat { position: relative; padding: 4px 6px; }
/* hairline dividers between stats so the band reads as one considered unit,
   not four identical tiles */
.stat + .stat::before {
  content: '';
  position: absolute;
  left: -9px; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 48px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.16), transparent);
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.9vw, 2.4rem);
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.stat span { font-size: 12.5px; color: var(--muted); letter-spacing: 0.02em; }

/* ---------- services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 250ms ease, transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
  cursor: pointer;
  text-decoration: none;
}
.service-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(232, 181, 75, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 22px 45px -22px rgba(0, 0, 0, 0.6);
}
/* container decision: no filled box. The purpose-drawn icon sits directly on the
   card, larger, paired with a large ghosted service numeral that echoes the
   numbered Services index - a deliberate treatment, not the shadcn default. */
.service-icon {
  display: block;
  color: var(--gold-light);
  transition: color 260ms ease, transform 260ms ease;
}
.service-icon svg { width: 30px; height: 30px; }
.service-num {
  position: absolute;
  top: 22px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgba(232, 181, 75, 0.13);
  pointer-events: none;
  transition: color 260ms ease;
}
.service-card:hover .service-icon { color: var(--gold-glow); transform: translateY(-1px); }
.service-card:hover .service-num { color: rgba(232, 181, 75, 0.26); }
.service-card h3 { font-size: 17.5px; }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.6; flex: 1; }
.service-card .more {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card .more svg { width: 14px; height: 14px; transition: transform 200ms ease; }
.service-card:hover .more svg { transform: translateX(4px); }

/* ---------- why ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.why-copy p { color: var(--muted); margin-top: 16px; }
.why-list { margin-top: 30px; display: grid; gap: 14px; list-style: none; }
.why-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-radius: 18px;
  padding: 16px 18px;
}
.why-list .check {
  width: 26px; height: 26px; flex: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(232, 181, 75, 0.15);
  border: 1px solid rgba(232, 181, 75, 0.4);
  color: var(--gold-light);
  margin-top: 2px;
}
.why-list .check svg { width: 13px; height: 13px; }
.why-list b { font-family: var(--font-display); font-size: 15.5px; display: block; }
.why-list span { font-size: 14px; color: var(--muted); }

.why-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
}
.why-visual picture { display: contents; } /* keep object-fit working through the <picture> wrapper */
.why-visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9) brightness(0.85); }
.why-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 40%, rgba(10, 8, 18, 0.85));
}
.why-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  z-index: 2;
  border-radius: 20px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.why-badge svg { width: 30px; height: 30px; color: var(--gold-light); flex: none; }
.why-badge b { font-family: var(--font-display); display: block; font-size: 15px; }
.why-badge span { font-size: 13px; color: var(--muted); }

/* ---------- process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step {
  border-radius: 24px;
  padding: 28px 24px;
  position: relative;
}
.step .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--gold-light);
}
.step h3 { font-size: 18px; margin-top: 10px; }
.step p { font-size: 14px; color: var(--muted); margin-top: 8px; }

/* ---------- reviews ---------- */
/* asymmetric: one featured testimonial leads (left, taller), two supporting stack right */
.reviews-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 18px; align-items: stretch; }
.review {
  border-radius: 24px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
}
.review.featured {
  grid-row: 1 / span 2;
  padding: 34px 32px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 22px 55px -20px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}
/* editorial quote mark fills the featured card's open space on-brand */
.review.featured::before {
  content: '\201C';
  position: absolute;
  top: 6px; right: 30px;
  font-family: var(--font-display);
  font-size: 150px;
  line-height: 1;
  color: rgba(232, 181, 75, 0.12);
  pointer-events: none;
}
.review.featured .review-top, .review.featured blockquote, .review.featured .review-who { position: relative; z-index: 1; }
.review.featured blockquote { font-size: 20px; line-height: 1.55; }
.review.featured .review-avatar { width: 44px; height: 44px; font-size: 16px; }
.review.featured .review-who b { font-size: 15.5px; }
.review-top { display: flex; align-items: center; justify-content: space-between; }
.stars { display: flex; gap: 3px; color: var(--gold-light); }
.stars svg { width: 15px; height: 15px; }
.review-date { font-size: 12px; color: var(--muted); }
.review blockquote { margin-top: 14px; font-size: 14.5px; color: #d5cfe2; flex: 1; }
.review-who { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(232, 181, 75, 0.14);
  border: 1px solid rgba(232, 181, 75, 0.35);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold-light);
  font-size: 14px;
}
.review-who b { font-family: var(--font-display); font-size: 14.5px; display: block; }
.review-who span { font-size: 12.5px; color: var(--muted); }

/* ---------- areas ---------- */
.areas { text-align: center; }
.areas .section-head { margin-left: auto; margin-right: auto; }
.area-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 820px; margin: 0 auto; }
.area-chip {
  border-radius: 999px;
  padding: 11px 22px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.area-chip svg { width: 14px; height: 14px; color: var(--gold-light); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
details.faq {
  border-radius: 20px;
  overflow: hidden;
}
details.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary svg { width: 18px; height: 18px; flex: none; color: var(--gold-light); transition: transform 250ms ease; }
details.faq[open] summary svg { transform: rotate(45deg); }
details.faq .faq-body { padding: 0 24px 22px; color: var(--muted); font-size: 15px; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 0.72fr; gap: 24px; align-items: start; }
.contact-form { border-radius: 28px; padding: 34px 30px; }
.contact-form h3 { font-size: 22px; }
.contact-form > p { color: var(--muted); font-size: 14.5px; margin-top: 6px; }
.form-grid { margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field select, .field textarea {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  padding: 13px 16px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 200ms ease, background 200ms ease;
  width: 100%;
}
.field select { cursor: pointer; }
.field select option { background: var(--card); color: var(--ink); }
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: rgba(232, 181, 75, 0.6);
  background: rgba(255, 255, 255, 0.09);
}
.contact-form .btn { margin-top: 22px; width: 100%; }
.form-note { margin-top: 14px; font-size: 12.5px; color: var(--muted); text-align: center; }

.contact-aside { display: grid; gap: 18px; }
.contact-card { border-radius: 24px; padding: 26px; }
.contact-card h4 { font-family: var(--font-display); font-size: 16px; margin-bottom: 14px; }
.contact-line {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 10px 0;
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
}
.contact-line:hover b { color: var(--gold-light); }
.contact-line svg { width: 18px; height: 18px; color: var(--gold-light); flex: none; }
.contact-line b { font-family: var(--font-display); font-weight: 600; transition: color 200ms ease; display: block; }
.contact-line span { display: block; font-size: 12.5px; color: var(--muted); }

.hours { list-style: none; font-size: 14.5px; }
.hours li { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.hours li:last-child { border-bottom: 0; }
.hours span { color: var(--muted); }
.hours b { font-family: var(--font-display); font-weight: 600; }
.hours .always { color: var(--gold-light); }

/* ---------- emergency strip ---------- */
.emergency { background: linear-gradient(90deg, #b3252b, #d3383e); padding: 26px 0; }
.emergency-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.emergency-copy { display: flex; align-items: center; gap: 14px; }
.emergency-copy svg { width: 30px; height: 30px; flex: none; }
.emergency-copy b { font-family: var(--font-display); font-size: 17px; display: block; }
.emergency-copy span { color: rgba(255, 255, 255, 0.85); font-size: 14px; }
.emergency .btn {
  background: #fff;
  color: #b3252b;
  border-color: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.emergency .btn:hover { background: #ffe9e9; }

/* ---------- footer ---------- */
footer { padding: 64px 0 40px; border-top: 1px solid rgba(255, 255, 255, 0.08); background: var(--deep); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand p { color: var(--muted); font-size: 14px; margin-top: 14px; max-width: 300px; }
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { color: #cfc8de; text-decoration: none; font-size: 14.5px; transition: color 200ms ease; }
.footer-col a:hover { color: var(--gold-light); }
.footer-col li { color: #cfc8de; font-size: 14.5px; }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}

/* ---------- toast ---------- */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translate(-50%, 20px);
  z-index: var(--z-toast);
  border-radius: 999px;
  padding: 14px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease, transform 300ms ease;
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast svg { width: 17px; height: 17px; color: var(--gold-light); }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.in { opacity: 1; transform: none; }
/* staggered cascade so grid items resolve in sequence, not all at once */
.services-grid .service-card:nth-child(2), .reviews-grid .review:nth-child(2) { transition-delay: 80ms; }
.services-grid .service-card:nth-child(3), .reviews-grid .review:nth-child(3) { transition-delay: 160ms; }
.services-grid .service-card:nth-child(4) { transition-delay: 240ms; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-visual { aspect-ratio: 16 / 10; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta .btn-secondary { display: none; }
  .nav-burger { display: flex; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat + .stat::before { display: none; } /* dividers only make sense in one row */
}

@media (max-width: 640px) {
  .section { padding: 68px 0; }
  .services-grid, .process-grid, .reviews-grid { grid-template-columns: 1fr; }
  .review.featured { grid-row: auto; padding: 26px 24px; }
  .review.featured blockquote { font-size: 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  /* smaller headline + darker left scrim so copy clears the harp on phones */
  .hero-inner { padding: 120px 0 72px; }
  .hero-kicker { letter-spacing: 0.16em; font-size: 11px; gap: 8px; margin-bottom: 22px; }
  .hero h1 { font-size: clamp(2.3rem, 8.5vw, 3rem); text-shadow: 0 2px 20px rgba(0,0,0,0.85); }
  .hero-sub { text-shadow: 0 1px 14px rgba(0,0,0,0.9); }
  .hero-ctas .btn { width: 100%; } /* full-width tap targets */
  .light-switch { top: 88px; right: 14px; transform: scale(0.8); transform-origin: top right; }
  .light-switch:hover { transform: scale(0.8) translateY(-1px); }
  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(6,4,16,0.93) 0%, rgba(6,4,16,0.78) 42%, rgba(6,4,16,0.34) 74%, rgba(6,4,16,0.5) 100%),
      linear-gradient(180deg, rgba(6,4,16,0.4), transparent 30%, rgba(6,4,16,0.62));
  }
  .nav { padding-left: 16px; }
  .nav-logo { font-size: 15px; }
  .nav-logo svg { width: 26px; height: 26px; }
  .nav-cta { gap: 6px; }
  .nav-cta .btn { padding: 10px 13px; }
  .nav-cta .phone-num { display: none; } /* icon-only call button */
}

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

/* ---------- legal / prose pages ---------- */
.legal-prose { max-width: 780px; margin: 0 auto; color: var(--muted); font-size: 16px; line-height: 1.8; }
.legal-prose h2 { font-family: var(--font-display); color: var(--ink); font-size: 21px; font-weight: 600; letter-spacing: -0.01em; margin: 40px 0 14px; }
.legal-prose h2:first-child { margin-top: 0; }
.legal-prose p { margin-bottom: 16px; }
.legal-prose ul { margin: 0 0 16px 22px; }
.legal-prose li { margin-bottom: 8px; }
.legal-prose a { color: var(--gold-light); }
.legal-prose strong { color: var(--ink); font-weight: 600; }
.legal-updated { font-size: 13px; color: var(--muted); letter-spacing: 0.04em; }

/* footer credit - Made by Automera */
.footer-credit { color: var(--muted); }
.footer-credit a { color: var(--gold-light); text-decoration: none; }
.footer-credit a:hover { text-decoration: underline; }
.footer-legal-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal-links a { color: var(--muted); text-decoration: none; font-size: 13px; }
.footer-legal-links a:hover { color: var(--gold-light); }

/* ---------- services: editorial numbered list (services page) ---------- */
.services-list { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.svc-row {
  position: relative;
  display: grid;
  grid-template-columns: 52px 52px 1fr auto 24px;
  align-items: center;
  gap: 26px;
  padding: 30px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: var(--ink);
  transition: background 320ms ease, padding-left 320ms ease;
}
.svc-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 320ms ease;
}
.svc-row:hover { background: rgba(232, 181, 75, 0.05); padding-left: 32px; }
.svc-row:hover::before { transform: scaleY(1); }

.svc-index {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(232, 181, 75, 0.32);
  transition: color 320ms ease;
}
.svc-row:hover .svc-index { color: var(--gold-light); }

.svc-row .svc-icon {
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  transition: color 260ms ease, transform 260ms ease;
}
.svc-row:hover .svc-icon { color: var(--gold-glow); transform: translateY(-1px); }
.svc-row .svc-icon svg { width: 28px; height: 28px; }

.svc-text h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; letter-spacing: -0.01em; }
.svc-text p { color: var(--muted); font-size: 14.5px; line-height: 1.6; margin-top: 5px; max-width: 540px; }

.svc-tags { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; max-width: 300px; }
.svc-tag {
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 13px;
  white-space: nowrap;
}
.svc-arrow { color: var(--gold-light); width: 22px; height: 22px; transition: transform 320ms ease; }
.svc-row:hover .svc-arrow { transform: translateX(5px); }

@media (max-width: 1024px) { .svc-tags { display: none; } .svc-row { grid-template-columns: 46px 50px 1fr 22px; } }
@media (max-width: 560px) {
  .svc-row {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "idx icon arrow" "text text text";
    gap: 14px 16px;
    padding: 26px 18px;
    row-gap: 14px;
  }
  .svc-row:hover { padding-left: 24px; }
  .svc-index { grid-area: idx; font-size: 1.4rem; align-self: center; }
  .svc-row .svc-icon { grid-area: icon; width: 44px; height: 44px; }
  .svc-arrow { grid-area: arrow; align-self: center; }
  .svc-text { grid-area: text; }
}

/* ---------- service detail pages ---------- */
.svc-detail { display: grid; grid-template-columns: 1fr 390px; gap: 52px; align-items: start; }
.svc-detail-main > p { color: var(--muted); font-size: 16.5px; line-height: 1.8; margin-bottom: 18px; }
.svc-detail-main > p strong { color: var(--ink); }
.svc-detail-main h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin: 34px 0 14px; }
.svc-detail-aside { border-radius: 24px; padding: 30px 28px; position: sticky; top: 100px; }
.svc-detail-aside h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; margin-bottom: 18px; }
.svc-detail-aside .why-list { margin: 0 0 22px; }
.svc-detail-aside .why-list li { padding: 0; background: none; border: 0; }
.svc-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
  text-decoration: none; margin-bottom: 26px; transition: color 200ms ease;
}
.svc-back:hover { color: var(--gold-light); }
.svc-back svg { width: 16px; height: 16px; }
@media (max-width: 900px) {
  .svc-detail { grid-template-columns: 1fr; gap: 32px; }
  .svc-detail-aside { position: static; }
}

/* ── Construction Radar - animated partner badge (nav) ─────────────────── */
.cr-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-right: 4px;
  padding: 6px 13px 6px 8px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
  white-space: nowrap;
  transition: background 200ms ease, border-color 200ms ease;
}
.cr-badge:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255,255,255,0.28); }
.cr-text { display: flex; flex-direction: column; line-height: 1.1; }
.cr-partner {
  font-family: var(--font-display);
  font-size: 8.5px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
}
.cr-name { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: -0.01em; }
.cr-name span:first-child { color: var(--ink); }
.cr-name span:last-child { color: #6f86ff; }

.cr-radar {
  --radar-size: 30px;
  position: relative;
  width: var(--radar-size); height: var(--radar-size);
  display: grid; place-items: center; flex-shrink: 0;
  border-radius: 50%; overflow: hidden;
  background: radial-gradient(circle at 50% 45%, #5670f0, #4259e2 85%);
}
.cr-radar__ring { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.42); }
.cr-radar__ring--1 { width: 30%; height: 30%; }
.cr-radar__ring--2 { width: 58%; height: 58%; }
.cr-radar__ring--3 { width: 86%; height: 86%; }
.cr-radar__sweep {
  position: absolute; width: 100%; height: 100%; border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(255,255,255,0.55) 0deg, rgba(255,255,255,0.30) 34deg, rgba(255,255,255,0.06) 60deg, transparent 70deg);
  animation: cr-spin 14s linear infinite;
}
.cr-radar__core { position: absolute; width: 10%; height: 10%; border-radius: 50%; background: #fff; box-shadow: 0 0 3px 1px rgba(255,255,255,0.7); }
@keyframes cr-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .cr-radar__sweep { animation: none; } }
@media (max-width: 1120px) { .cr-badge { display: none; } }

/* ── Footer credit: Automera logo + backlink ──────────────────────────── */
.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 200ms ease;
}
.footer-credit img { width: 22px; height: 22px; border-radius: 6px; display: block; }
.footer-credit strong { color: var(--gold-light); font-weight: 600; }
.footer-credit:hover { color: var(--ink); }
.footer-credit:hover strong { text-decoration: underline; }

/* rebates callout on service pages */
.svc-note {
  display: block;
  margin-top: 10px;
  padding: 15px 18px;
  border-radius: 14px;
  border-left: 2px solid var(--gold);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
}
.svc-note a { color: var(--gold-light); font-weight: 600; text-decoration: none; white-space: nowrap; }
.svc-note a:hover { text-decoration: underline; }

/* ── Brands we install (logo wall) ────────────────────────────────────── */
.brands { padding: 44px 0 34px; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.brands-head { text-align: center; margin-bottom: 26px; }
.brands-head .eyebrow { justify-content: center; }
.brands-head p { color: var(--muted); margin-top: 10px; font-size: 15.5px; }
.brand-wall {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 24px 40px; max-width: 1080px; margin: 0 auto;
}
.brand-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 2.2vw, 22px);
  letter-spacing: -0.01em;
  color: var(--ink);
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity 240ms ease, color 240ms ease, transform 240ms ease;
  white-space: nowrap;
}
.brand-logo b { color: var(--gold-light); font-weight: 700; }
.brand-logo:hover { opacity: 1; color: var(--gold-light); transform: translateY(-2px); }

/* ── Partner ticker (scrolling marquee, sitewide, above footer) ───────── */
.ticker {
  overflow: hidden;
  position: relative;
  background: var(--deep);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
}
.ticker::before, .ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(to right, var(--deep), transparent); }
.ticker::after { right: 0; background: linear-gradient(to left, var(--deep), transparent); }
.ticker-label {
  display: block; text-align: center; margin-bottom: 16px;
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted);
}
.ticker-track {
  display: flex; align-items: center; gap: 60px; width: max-content;
  animation: ticker-scroll 38s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }
.ticker-item {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  letter-spacing: -0.01em; color: var(--muted); white-space: nowrap;
  opacity: 0.85; transition: opacity 200ms ease, color 200ms ease;
}
.ticker-item:hover { opacity: 1; color: var(--ink); }
.ticker-item img { height: 30px; width: auto; display: block; }
.ticker-item .tk-mark {
  width: 30px; height: 30px; border-radius: 7px; flex: none;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.06); border: 1px solid var(--line);
  font-size: 13px; font-weight: 800; color: var(--gold-light);
}

/* ── Google reviews badge ─────────────────────────────────────────────── */
.gr-badge {
  display: inline-flex; align-items: center; gap: 13px;
  margin-top: 20px; padding: 11px 20px; border-radius: 14px;
  text-decoration: none; transition: background 200ms ease, transform 200ms ease;
}
.gr-badge:hover { background: rgba(255,255,255,0.12); transform: translateY(-1px); }
.gr-badge .gr-g { width: 24px; height: 24px; flex: none; }
.gr-badge .gr-txt { display: flex; flex-direction: column; line-height: 1.25; }
.gr-badge .gr-top { display: flex; align-items: center; gap: 8px; }
.gr-badge .gr-rating { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--ink); }
.gr-badge .gr-stars { color: #ffb400; font-size: 13px; letter-spacing: 1px; }
.gr-badge .gr-sub { font-size: 12px; color: var(--muted); }
.gr-badge:hover .gr-sub { color: var(--gold-light); }

.brand-logo.brand-img { width: auto; }
.ticker-item img.tk-titan { height: 26px; }

/* rebate directory grid */
.rebate-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rebate-tag {
  font-family: var(--font-display); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light);
}
.rebate-grid .service-card .more svg { width: 15px; height: 15px; }
@media (max-width: 900px) { .rebate-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .rebate-grid { grid-template-columns: 1fr; } }

.ticker-item img.tk-richstone { height: 27px; }

.nav-logo .logo-ltd { font-size: 0.62em; font-weight: 600; color: var(--muted); letter-spacing: 0.02em; }
