/* ============================================================
   BRIGHTSIDE ELECTRICAL - Bright Friendly archetype
   Refined tier: CSS transitions, scroll reveals, hover lifts.
   One accent (amber), sky used only as a quiet support tint.
   Mobile-first. WCAG AA on buttons + forms.
   ============================================================ */

/* NAV-SAFETY: never out-ranked, so the mobile drawer always closes */
[hidden] { display: none !important; }

:root {
  /* palette (locked) */
  --paper: #fffdf6;        /* warm off-white background */
  --paper-2: #fff8e9;      /* soft amber-tinted panel */
  --paper-3: #fef3d8;      /* slightly deeper warm panel */
  --ink: #1f2937;          /* primary text */
  --ink-soft: #4b5563;     /* secondary text */
  --ink-faint: #6b7280;    /* tertiary text */
  --line: #f0e7d2;         /* hairline borders on warm bg */
  --line-2: #e7dcc2;

  --accent: #f59e0b;       /* THE accent - amber */
  --accent-press: #d9870b; /* darker amber for hover/active */
  --accent-deep: #9a610a;  /* deepest amber, for text-on-light (AA on paper) */
  --accent-soft: #fef0cf;  /* amber wash */
  --on-accent: #1f2937;    /* dark ink on amber (AA on #f59e0b) */

  --support: #0ea5e9;      /* sky - quiet support tint only */
  --support-soft: #e6f6fe;

  /* dark band (closing cta + final cta + booking) */
  --dark: #1c2733;         /* deep slate-blue, warm-leaning */
  --dark-2: #243341;
  --dark-ink: #f7fafc;
  --dark-soft: #c2cdd8;

  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 11px;
  --shadow-sm: 0 2px 10px rgba(31, 41, 55, 0.06);
  --shadow: 0 14px 34px rgba(31, 41, 55, 0.10);
  --shadow-lg: 0 26px 60px rgba(31, 41, 55, 0.16);
  --shadow-accent: 0 14px 30px rgba(217, 135, 11, 0.30);

  --maxw: 1180px;
  --gap: clamp(1rem, 3vw, 2rem);
  --sp: clamp(3.5rem, 8vw, 7rem);

  --font-display: "Quicksand", system-ui, sans-serif;
  --font-body: "Nunito Sans", system-ui, -apple-system, sans-serif;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; margin: 0; color: var(--ink); letter-spacing: -0.01em; }
p { margin: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--accent); color: var(--on-accent);
  padding: 0.6rem 1rem; border-radius: var(--radius-sm); font-weight: 700;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

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

/* ---------- layout helpers ---------- */
.section-head { max-width: 720px; margin: 0 auto clamp(2rem, 5vw, 3.4rem); text-align: center; }
.section-head h2 { font-size: clamp(1.85rem, 4.4vw, 2.85rem); margin: 0.5rem 0 0.7rem; }
.section-head p { color: var(--ink-soft); font-size: 1.07rem; }
.section-head--light h2 { color: var(--dark-ink); }
.section-head--light p { color: var(--dark-soft); }

.eyebrow {
  display: inline-block; font-family: var(--font-display); font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--accent-deep);
}
.eyebrow--light { color: #ffd479; }

.dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-right: 2px; }
.stars { color: var(--accent); letter-spacing: 1px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  padding: 0.85rem 1.5rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none; line-height: 1; white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn--solid { background: var(--accent); color: var(--on-accent); box-shadow: var(--shadow-accent); }
.btn--solid:hover { background: var(--accent-press); transform: translateY(-2px); box-shadow: 0 18px 38px rgba(217, 135, 11, 0.38); }
.btn--solid:active { transform: translateY(0); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--accent); color: var(--accent-deep); box-shadow: var(--shadow); }
.btn--ghost-dark { background: transparent; color: var(--dark-ink); border-color: rgba(255, 255, 255, 0.5); box-shadow: none; }
.btn--ghost-dark:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; color: #fff; transform: translateY(-2px); }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.08rem; }
.btn--block { width: 100%; }

/* ============================================================
   NAV
   ============================================================ */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(255, 253, 246, 0.86); backdrop-filter: saturate(160%) blur(12px); border-bottom: 1px solid transparent; transition: box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease; }
.nav.scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--line); background: rgba(255, 253, 246, 0.95); }
.nav__inner { max-width: var(--maxw); margin: 0 auto; padding: 0.7rem var(--gap); display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 64px; }

.wordmark { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.wordmark__mark { color: var(--accent); display: inline-flex; }
.wordmark__text { font-family: var(--font-display); font-weight: 700; font-size: 1.32rem; color: var(--ink); line-height: 1; display: inline-flex; align-items: baseline; gap: 0.35rem; letter-spacing: -0.01em; }
.wordmark__sub { font-weight: 600; font-size: 0.84rem; color: var(--accent-deep); }

.nav__links { display: none; gap: 1.5rem; }
.nav__links a { text-decoration: none; color: var(--ink-soft); font-weight: 600; font-size: 0.98rem; position: relative; padding: 0.2rem 0; transition: color 0.18s ease; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--accent); border-radius: 2px; transition: width 0.22s ease; }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: none; align-items: center; gap: 1rem; }
.phone-link { display: inline-flex; align-items: center; gap: 0.45rem; text-decoration: none; color: var(--ink); font-family: var(--font-display); font-weight: 700; font-size: 1rem; transition: color 0.18s ease; }
.phone-link svg { color: var(--accent-deep); }
.phone-link:hover { color: var(--accent-deep); }

.nav__toggle { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 46px; height: 46px; padding: 0 11px; background: #fff; border: 1px solid var(--line-2); border-radius: 12px; cursor: pointer; box-shadow: var(--shadow-sm); }
.nav__toggle span { display: block; height: 2.5px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 150; background: var(--paper); padding: 5.5rem 1.5rem 2rem; display: flex; flex-direction: column; }
.drawer__close { position: absolute; top: 1rem; right: 1.2rem; width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center; background: #fff; border: 1px solid var(--line-2); border-radius: 12px; color: var(--ink); cursor: pointer; box-shadow: var(--shadow-sm); }
.drawer__links { display: flex; flex-direction: column; gap: 0.4rem; }
.drawer__links a { text-decoration: none; color: var(--ink); font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; padding: 0.65rem 0; border-bottom: 1px solid var(--line); }
.drawer__cta { justify-content: center; margin-top: 1rem; border-bottom: none !important; color: var(--on-accent) !important; }
.drawer__phone { border-bottom: none !important; color: var(--accent-deep) !important; font-size: 1.15rem !important; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%); padding: clamp(2rem, 5vw, 3.5rem) var(--gap) clamp(3rem, 6vw, 4.5rem); overflow: hidden; }
.hero::before { content: ""; position: absolute; top: -18%; right: -10%; width: 48vw; height: 48vw; max-width: 620px; max-height: 620px; background: radial-gradient(circle, rgba(245, 158, 11, 0.18), transparent 66%); border-radius: 50%; pointer-events: none; }
.hero::after { content: ""; position: absolute; bottom: -22%; left: -12%; width: 40vw; height: 40vw; max-width: 480px; max-height: 480px; background: radial-gradient(circle, rgba(14, 165, 233, 0.10), transparent 68%); border-radius: 50%; pointer-events: none; }
.hero__inner { position: relative; max-width: var(--maxw); margin: 0 auto; display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.hero__copy { max-width: 620px; }
.hero__title { font-size: clamp(2.3rem, 6.6vw, 4rem); letter-spacing: -0.02em; margin-top: 0.7rem; }
.hero__title em { font-style: normal; color: var(--accent-deep); position: relative; white-space: nowrap; }
.hero__title em::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0.04em; height: 0.26em; background: var(--accent-soft); z-index: -1; border-radius: 4px; }
.hero__sub { color: var(--ink-soft); font-size: clamp(1.05rem, 2.4vw, 1.22rem); margin-top: 1.1rem; max-width: 36rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.7rem; }

.trust-strip { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; padding: 0; margin: 1.8rem 0 0; }
.trust-strip li { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 700; font-size: 0.92rem; color: var(--ink-soft); }
.trust-strip svg { color: var(--accent-deep); }

.hero__media { position: relative; max-width: 520px; justify-self: center; width: 100%; }
.hero__img { width: 100%; height: auto; aspect-ratio: 5 / 6; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero__chip { position: absolute; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 0.7rem 0.95rem; display: flex; align-items: center; gap: 0.55rem; font-weight: 700; font-size: 0.86rem; line-height: 1.2; }
.hero__chip--rating { bottom: 1rem; left: -0.6rem; flex-direction: column; align-items: flex-start; gap: 0.15rem; }
.hero__chip--rating .stars { font-size: 0.95rem; }
.hero__chip--fast { top: 1rem; right: -0.6rem; color: var(--ink); }
.hero__chip--fast svg { color: var(--accent); background: var(--accent-soft); border-radius: 9px; padding: 5px; box-sizing: content-box; width: 18px; height: 18px; }

.hero__scrollcue { display: none; }

/* ============================================================
   STATS
   ============================================================ */
.stats { background: var(--ink); color: #fff; }
.stats__inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(1.6rem, 4vw, 2.4rem) var(--gap); display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1rem; }
.stat { text-align: center; }
.stat__num { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 5vw, 2.6rem); color: #ffce6e; line-height: 1; }
.stat__label { display: block; margin-top: 0.4rem; font-size: 0.86rem; color: #cbd2da; font-weight: 600; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: var(--sp) var(--gap); max-width: var(--maxw); margin: 0 auto; }
.services__grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.svc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.6rem; box-shadow: var(--shadow-sm); transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.svc:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-2); }
.svc__icon { display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: 15px; background: var(--accent-soft); color: var(--accent-deep); margin-bottom: 1rem; }
.svc__icon svg { width: 28px; height: 28px; }
.svc h3 { font-size: 1.22rem; margin-bottom: 0.4rem; }
.svc p { color: var(--ink-soft); font-size: 0.98rem; }
.services__cta { margin-top: 2.4rem; text-align: center; display: grid; gap: 1rem; justify-items: center; }
.services__cta p { color: var(--ink-soft); font-weight: 600; }

/* ============================================================
   WHY
   ============================================================ */
.why { background: var(--paper-2); padding: var(--sp) var(--gap); }
.why__inner { max-width: var(--maxw); margin: 0 auto; display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.why__media { position: relative; max-width: 480px; justify-self: center; width: 100%; }
.why__media img { width: 100%; height: auto; aspect-ratio: 9 / 11; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.why__badge { position: absolute; right: -0.5rem; bottom: 1.5rem; background: var(--accent); color: var(--on-accent); border-radius: var(--radius); padding: 0.9rem 1.1rem; display: flex; flex-direction: column; align-items: center; line-height: 1; box-shadow: var(--shadow); }
.why__badge strong { font-family: var(--font-display); font-size: 1.9rem; }
.why__badge span { font-size: 0.72rem; font-weight: 700; text-align: center; margin-top: 0.25rem; }
.why__copy h2 { font-size: clamp(1.8rem, 4.2vw, 2.7rem); margin: 0.5rem 0 1.4rem; }
.why__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.2rem; }
.why__list li { display: flex; gap: 1rem; }
.why__num { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--accent-deep); background: var(--accent-soft); width: 42px; height: 42px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why__list h3 { font-size: 1.12rem; margin-bottom: 0.25rem; }
.why__list p { color: var(--ink-soft); font-size: 0.97rem; }
.why__cta { margin-top: 1.8rem; }

/* ============================================================
   WORK / GALLERY
   ============================================================ */
.work { padding: var(--sp) var(--gap); max-width: var(--maxw); margin: 0 auto; }
.gallery { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.gallery__item { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 2; transition: transform 0.5s ease; }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem 1rem 0.85rem; color: #fff; font-weight: 700; font-size: 0.9rem; background: linear-gradient(180deg, transparent, rgba(20, 25, 33, 0.82)); }
.work__note { text-align: center; color: var(--ink-faint); font-size: 0.92rem; margin-top: 1.4rem; font-style: italic; }

/* ============================================================
   CLOSING CTA (dark band)
   ============================================================ */
.missed { background: var(--dark); color: var(--dark-ink); padding: var(--sp) var(--gap); position: relative; overflow: hidden; }
.missed::before { content: ""; position: absolute; top: -30%; left: -10%; width: 40vw; height: 40vw; max-width: 460px; max-height: 460px; background: radial-gradient(circle, rgba(245, 158, 11, 0.16), transparent 68%); border-radius: 50%; }
.missed__inner { position: relative; max-width: var(--maxw); margin: 0 auto; display: grid; gap: clamp(2.4rem, 5vw, 4rem); align-items: center; }
.missed__copy h2 { color: var(--dark-ink); font-size: clamp(1.85rem, 4.4vw, 2.85rem); margin: 0.5rem 0 1rem; }
.missed__copy > p { color: var(--dark-soft); font-size: 1.05rem; }
.missed__list { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: 0.7rem; }
.missed__list li { display: flex; align-items: center; gap: 0.6rem; font-weight: 700; color: var(--dark-ink); }
.missed__list svg { color: #ffce6e; background: rgba(245, 158, 11, 0.16); border-radius: 8px; padding: 4px; box-sizing: content-box; flex-shrink: 0; }
.missed__cta { margin-top: 1.9rem; }

/* single-column closing CTA */
.missed__inner--solo { max-width: 760px; text-align: center; }
.missed__inner--solo .missed__list { justify-items: center; }
.missed__inner--solo .missed__list li { justify-content: flex-start; text-align: left; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { padding: var(--sp) var(--gap); max-width: var(--maxw); margin: 0 auto; }
.reviews__rating { display: inline-flex; align-items: center; gap: 0.5rem; justify-content: center; font-weight: 700; color: var(--ink-soft); }
.reviews__grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.review { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review__stars { color: var(--accent); letter-spacing: 2px; font-size: 1.05rem; margin-bottom: 0.7rem; }
.review blockquote { margin: 0 0 1rem; font-size: 1rem; color: var(--ink); line-height: 1.55; }
.review figcaption { display: flex; align-items: baseline; gap: 0.5rem; }
.review__name { font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.review__where { font-size: 0.86rem; color: var(--ink-faint); }

/* ============================================================
   AREAS + QUOTE FORM
   ============================================================ */
.areas { padding: var(--sp) var(--gap); background: var(--paper-2); }
.areas__grid { max-width: var(--maxw); margin: 0 auto; display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.areas__info h2 { font-size: clamp(1.8rem, 4.2vw, 2.6rem); margin: 0.5rem 0 1rem; }
.areas__info > p { color: var(--ink-soft); }
.areas__list { list-style: none; padding: 0; margin: 1.4rem 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem 1rem; }
.areas__list li { display: flex; align-items: center; gap: 0.55rem; font-weight: 700; color: var(--ink); font-size: 0.97rem; }
.areas__list li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.areas__line { color: var(--ink-soft); font-size: 0.97rem; }
.areas__phone { color: var(--accent-deep); font-weight: 700; text-decoration: none; }
.areas__phone:hover { text-decoration: underline; }
.areas__assure { list-style: none; padding: 1.3rem 0 0; margin: 1.3rem 0 0; border-top: 1px solid var(--line-2); display: grid; gap: 0.6rem; }
.areas__assure li { display: flex; align-items: center; gap: 0.6rem; font-weight: 700; color: var(--ink); font-size: 0.95rem; }
.areas__assure svg { color: #fff; background: var(--accent); border-radius: 50%; padding: 3px; box-sizing: content-box; flex-shrink: 0; }

.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: clamp(1.5rem, 4vw, 2.4rem); }
.quote__form h3 { font-size: 1.5rem; margin-bottom: 0.35rem; }
.quote__lead { color: var(--ink-soft); font-size: 0.97rem; margin-bottom: 1.3rem; }
.field { margin-bottom: 1rem; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.field label { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; margin-bottom: 0.35rem; color: var(--ink); }
.field__opt { color: var(--ink-faint); font-weight: 600; }
.field input, .field select, .field textarea { font-family: var(--font-body); font-size: 1rem; padding: 0.8rem 0.95rem; border: 1.5px solid var(--line-2); border-radius: var(--radius-sm); background: var(--paper); color: var(--ink); width: 100%; transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease; }
.field textarea { resize: vertical; min-height: 84px; }
.field input::placeholder, .field textarea::placeholder { color: #737b85; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18); }
.field__error { display: none; color: #b42318; font-size: 0.82rem; font-weight: 700; margin-top: 0.35rem; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #d9534f; background: #fff5f5; }
.field.invalid .field__error { display: block; }
.quote__fineprint { text-align: center; color: var(--ink-faint); font-size: 0.82rem; margin-top: 0.85rem; }

.quote__success { text-align: center; padding: 1.5rem 0.5rem; }
.quote__tick { color: var(--accent-deep); display: inline-flex; margin-bottom: 0.8rem; }
.quote__success h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.quote__success p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.phone-link--big { font-size: 1.05rem; justify-content: center; }

/* ============================================================
   BOOKING (dark band)
   ============================================================ */
.booking { background: var(--dark-2); color: var(--dark-ink); padding: var(--sp) var(--gap); }
.booking__inner { max-width: 840px; margin: 0 auto; }
.booking__embed { margin-top: 0.5rem; }
.booking__placeholder { background: rgba(255, 255, 255, 0.05); border: 1.5px dashed rgba(255, 255, 255, 0.28); border-radius: 18px; padding: clamp(2rem, 5vw, 3rem); text-align: center; color: var(--dark-ink); }
.booking__placeholder svg { color: #ffce6e; margin-bottom: 0.8rem; }
.booking__placeholder h3 { color: var(--dark-ink); font-size: 1.35rem; margin-bottom: 0.5rem; }
.booking__placeholder p { color: var(--dark-soft); max-width: 30rem; margin: 0 auto 1.3rem; font-size: 0.98rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: var(--sp) var(--gap); max-width: 820px; margin: 0 auto; }
.faq__list { display: grid; gap: 0.8rem; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq__item summary { cursor: pointer; list-style: none; padding: 1.1rem 1.3rem; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: ""; width: 11px; height: 11px; border-right: 2.5px solid var(--accent-deep); border-bottom: 2.5px solid var(--accent-deep); transform: rotate(45deg); transition: transform 0.25s ease; flex-shrink: 0; margin-top: -4px; }
.faq__item[open] summary::after { transform: rotate(-135deg); margin-top: 2px; }
.faq__body { padding: 0 1.3rem 1.2rem; }
.faq__body p { color: var(--ink-soft); font-size: 0.98rem; }

/* ============================================================
   FINAL CTA (dark band)
   ============================================================ */
.finalcta { background: linear-gradient(135deg, var(--dark) 0%, #16202a 100%); color: var(--dark-ink); padding: var(--sp) var(--gap); position: relative; overflow: hidden; }
.finalcta::before { content: ""; position: absolute; top: -40%; right: -8%; width: 44vw; height: 44vw; max-width: 520px; max-height: 520px; background: radial-gradient(circle, rgba(245, 158, 11, 0.20), transparent 66%); border-radius: 50%; }
.finalcta__inner { position: relative; max-width: 760px; margin: 0 auto; text-align: center; }
.finalcta__inner h2 { color: var(--dark-ink); font-size: clamp(1.9rem, 4.8vw, 3rem); margin: 0.5rem 0 1rem; }
.finalcta__inner > p { color: var(--dark-soft); font-size: 1.08rem; max-width: 36rem; margin: 0 auto; }
.finalcta__btns { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; margin-top: 1.9rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #141a22; color: #c2cdd8; padding: clamp(3rem, 6vw, 4.5rem) var(--gap) 1.5rem; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 2.2rem; }
.footer__col h4 { font-family: var(--font-display); color: #fff; font-size: 1rem; margin-bottom: 0.9rem; }
.footer__col--brand p { font-size: 0.95rem; max-width: 30rem; margin-top: 0.9rem; line-height: 1.6; }
.wordmark--footer .wordmark__text { color: #fff; }
.wordmark--footer .wordmark__sub { color: #ffce6e; }
.footer__social { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.footer__social a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 11px; background: rgba(255, 255, 255, 0.07); color: #cbd2da; transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease; }
.footer__social a:hover { background: var(--accent); color: var(--on-accent); transform: translateY(-2px); }
.footer__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.footer__list a { color: #c2cdd8; text-decoration: none; transition: color 0.18s ease; }
.footer__list a:hover { color: #ffce6e; }
.footer__list--areas { grid-template-columns: 1fr 1fr; }
.footer__emerg { color: #ffce6e; font-weight: 700; }
.footer__bar { max-width: var(--maxw); margin: 2.4rem auto 0; padding-top: 1.4rem; border-top: 1px solid rgba(255, 255, 255, 0.1); display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between; font-size: 0.84rem; color: #8a94a0; }

/* ============================================================
   STICKY MOBILE CALL BAR
   ============================================================ */
.callbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: flex; gap: 0.6rem; padding: 0.6rem 0.7rem calc(0.6rem + env(safe-area-inset-bottom)); background: rgba(255, 253, 246, 0.96); backdrop-filter: blur(10px); border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(31, 41, 55, 0.1); }
.callbar__btn { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem; font-family: var(--font-display); font-weight: 700; font-size: 1rem; padding: 0.85rem; border-radius: 999px; text-decoration: none; }
.callbar__btn--quote { background: #fff; color: var(--ink); border: 1.5px solid var(--line-2); }
.callbar__btn--call { background: var(--accent); color: var(--on-accent); box-shadow: var(--shadow-accent); }

/* ============================================================
   SCROLL REVEALS (refined tier)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.05s; }
.reveal:nth-child(3) { transition-delay: 0.1s; }
.reveal:nth-child(4) { transition-delay: 0.15s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn, .svc, .review, .gallery__item img, .footer__social a { transition: none !important; }
  * { scroll-behavior: auto !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 560px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__inner { grid-template-columns: repeat(4, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-flow: dense; }
  .gallery__item--wide { grid-column: span 2; }
}

@media (min-width: 861px) {
  body { font-size: 17px; }
  .nav__links { display: flex; }
  .nav__cta { display: flex; }
  .nav__toggle { display: none; }
  .callbar { display: none; }

  .hero { padding-bottom: clamp(4rem, 6vw, 5.5rem); min-height: calc(100vh - 64px); display: flex; align-items: center; }
  .hero__inner { grid-template-columns: 1.05fr 0.95fr; gap: clamp(2.5rem, 5vw, 4.5rem); }
  .hero__scrollcue { display: block; position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid var(--line-2); border-radius: 999px; }
  .hero__scrollcue span { position: absolute; left: 50%; top: 8px; transform: translateX(-50%); width: 5px; height: 9px; border-radius: 3px; background: var(--accent-deep); animation: scrollcue 1.8s ease-in-out infinite; }
  @keyframes scrollcue { 0% { opacity: 0; transform: translate(-50%, 0); } 30% { opacity: 1; } 70% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 12px); } }

  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .why__inner { grid-template-columns: 0.95fr 1.05fr; }
  .missed__inner--solo { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .areas__grid { grid-template-columns: 1fr 1.05fr; }
  .footer__inner { grid-template-columns: 2.2fr 1fr 1fr 1.2fr; gap: 2.4rem; }
}

@media (min-width: 1024px) {
  .reviews__grid { grid-template-columns: repeat(4, 1fr); }
  .gallery { grid-template-columns: repeat(4, 1fr); }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 2; }
  .gallery__item--tall img { aspect-ratio: 3 / 4; height: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__scrollcue span { animation: none !important; }
}
