﻿/* ============================================================
   Santa Clarita Gate Repair — Technical Series
   Palette: deep green-black, emerald primary, bronze accent
   Type: Space Grotesk (display/headlines) + Manrope (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --bg:       #080d0a;
  --bg-deep:  #050805;
  --bg-raised:#0d1610;
  --card:     #101a13;
  --card-h:   #162219;
  --line:     rgba(200,230,210,0.08);
  --line-s:   rgba(200,230,210,0.16);

  --em:        #1a5c3a;  /* bottle green */
  --em-bright: #4db87a;  /* sage green for text */
  --em-deep:   #0e3321;
  --em-glass:  rgba(26,92,58,0.12);
  --em-border: rgba(26,92,58,0.28);

  --br:        #8B2235;  /* deep wine/burgundy */
  --br-bright: #d95070;  /* lighter wine for text */
  --br-glass:  rgba(139,34,53,0.10);
  --br-border: rgba(139,34,53,0.22);

  --ink:       #d8ead0;
  --ink-soft:  #8ca496;
  --ink-faint: #4d6257;

  --f-head: 'Space Grotesk', system-ui, sans-serif;
  --f-body: 'Manrope', system-ui, sans-serif;

  --r:   4px;
  --r-m: 8px;
  --r-l: 14px;
  --container: 1240px;
  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Brands-section compat (copied from yellow site) */
  --radius:       14px;
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --card-hover:   #242019;
  --accent:       #c9954f;
  --accent-bright:#e6bc7c;
  --accent-deep:  #96672c;
  --accent-glow:  rgba(201, 149, 79, 0.13);
  --font-display: var(--f-head);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.65;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: 1.5rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.75rem; border-radius: var(--r-m);
  font-family: var(--f-head); font-size: 0.925rem; font-weight: 600;
  letter-spacing: 0.01em; transition: all 0.2s var(--ease); white-space: nowrap;
  cursor: pointer; border: none;
}
.btn--primary { background: var(--em); color: #fff; }
.btn--primary:hover { background: var(--em-bright); transform: translateY(-1px); }
.btn--ghost { border: 1.5px solid var(--em-border); color: var(--em-bright); background: transparent; }
.btn--ghost:hover { background: var(--em-glass); border-color: var(--em); }
.btn--phone { background: var(--em); color: #fff; padding: 0.55rem 1.2rem; font-size: 0.875rem; }
.btn--phone:hover { background: var(--em-bright); }
.btn--full { width: 100%; justify-content: center; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

/* ---------- Section tag / eyebrow (shared) ---------- */
.section-tag,
.eyebrow {
  display: inline-block;
  font-family: var(--f-head); font-size: 0.69rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--br);
  margin-bottom: 0.75rem;
}

/* ---------- Section title (city pages use this) ---------- */
.section__title {
  font-family: var(--f-head); font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 700; letter-spacing: -0.02em; color: var(--ink);
  line-height: 1.15;
}
.section__title em { color: var(--em-bright); font-style: normal; }
.section__sub {
  margin-top: 0.75rem; font-size: 1.05rem; color: var(--ink-soft); max-width: 58ch;
}
.section__head { margin-bottom: 2.5rem; }

/* ---------- Nav ---------- */
#nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,13,10,0.90);
  backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--line);
  height: var(--nav-h);
  transition: border-color 0.3s;
}
#nav.is-scrolled { border-color: var(--line-s); }
.nav__inner {
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.nav__logo {
  font-family: var(--f-head); font-weight: 700; font-size: 1rem;
  color: var(--ink); letter-spacing: -0.01em; white-space: nowrap;
}
.nav__logo em, .nav__logo-em { color: var(--em-bright); font-style: normal; }
/* also support old .nav__brand / .nav__brand-text on city pages */
.nav__brand {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--f-head); font-weight: 700; font-size: 1rem; color: var(--ink);
}
.nav__brand-mark { width: 32px; height: 32px; color: var(--em-bright); flex-shrink: 0; }
.nav__brand-mark svg { width: 100%; height: 100%; }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav__brand-text em { color: var(--em-bright); font-style: normal; }
.nav__links {
  display: flex; align-items: center; gap: 0.15rem;
}
.nav__links a {
  font-family: var(--f-head); font-size: 0.865rem; font-weight: 500;
  color: var(--ink-soft); padding: 0.35rem 0.65rem; border-radius: var(--r);
  transition: color 0.2s, background 0.2s;
}
.nav__links a:hover { color: var(--ink); background: var(--em-glass); }
.nav__actions {
  display: flex; align-items: center; gap: 0.75rem;
}
.nav__emergency {
  font-family: var(--f-head); font-size: 0.69rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--br-bright);
  background: rgba(139,34,53,0.10);
  border: 1px solid rgba(139,34,53,0.22);
  padding: 0.3rem 0.75rem; border-radius: var(--r);
}
/* old nav phone style (city pages) */
.nav__phone {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--f-head); font-size: 0.875rem; font-weight: 600;
  color: var(--em-bright); padding: 0.5rem 1rem;
  border: 1.5px solid var(--em-border); border-radius: var(--r-m);
  background: var(--em-glass); transition: background 0.2s, border-color 0.2s;
}
.nav__phone:hover { background: rgba(26,92,58,0.18); border-color: var(--em); }
.nav__phone svg { width: 16px; height: 16px; flex-shrink: 0; }
#navToggle {
  display: none; flex-direction: column; justify-content: space-between;
  width: 28px; height: 20px; padding: 0; color: var(--ink);
}
#navToggle span {
  display: block; width: 100%; height: 2px;
  background: currentColor; border-radius: 2px; transition: all 0.25s;
}
/* old .nav__toggle for city pages */
.nav__toggle {
  display: none; flex-direction: column; justify-content: space-between;
  width: 28px; height: 20px; padding: 0; color: var(--ink); cursor: pointer; border: none; background: none;
}
.nav__toggle span {
  display: block; width: 100%; height: 2px;
  background: currentColor; border-radius: 2px; transition: all 0.25s;
}

/* ---------- HOMEPAGE HERO (split 2-column) ---------- */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem;
  padding: 4.5rem 0;
}
.hero__live {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--f-head); font-size: 0.725rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase; color: var(--em-bright);
  background: var(--em-glass); border: 1px solid var(--em-border);
  padding: 0.35rem 0.9rem; border-radius: var(--r);
  margin-bottom: 1.5rem;
}
.hero__live::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--em-bright);
  animation: livepulse 1.8s ease-in-out infinite;
}
@keyframes livepulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.8); }
}
.hero h1 {
  font-family: var(--f-head); font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700; line-height: 1.08; letter-spacing: -0.03em;
  color: var(--ink); margin-bottom: 1.25rem;
}
.hero h1 em { color: var(--em-bright); font-style: normal; }
.hero__sub {
  font-size: 1.08rem; color: var(--ink-soft); line-height: 1.7;
  margin-bottom: 2rem; max-width: 50ch;
}
.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.trust-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.trust-chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--f-head); font-size: 0.765rem; font-weight: 600;
  color: var(--ink-soft);
  background: var(--card); border: 1px solid var(--line);
  padding: 0.3rem 0.75rem; border-radius: var(--r);
}
.trust-chip::before { content: '✓'; color: var(--em-bright); font-weight: 800; }
.hero__photo {
  position: relative; border-radius: var(--r-l);
  overflow: hidden; aspect-ratio: 4/3;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo-badge {
  position: absolute; bottom: 1.25rem; left: 1.25rem;
  font-family: var(--f-head); font-size: 0.77rem; font-weight: 600; color: var(--ink);
  background: rgba(8,13,10,0.90); border: 1px solid var(--line-s);
  padding: 0.45rem 1rem; border-radius: var(--r);
  backdrop-filter: blur(8px);
}

/* ---------- CITY PAGE HERO (full bleed with image) ---------- */
.hero--city {
  position: relative; min-height: 70vh;
  display: flex; align-items: flex-end;
  padding: 0; grid-template-columns: unset;
  background: var(--bg-deep);
}
.hero--city .hero__media {
  position: absolute; inset: 0; overflow: hidden; margin: 0;
}
.hero--city .hero__media img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.55;
}
.hero--city .hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,8,6,0.95) 35%, rgba(5,8,6,0.5) 70%, rgba(5,8,6,0.2) 100%);
}
.hero--city .hero__content {
  position: relative; z-index: 2; padding: 4rem 0;
}
.crumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: var(--ink-faint); margin-bottom: 1.5rem;
}
.crumb a { color: var(--ink-soft); }
.crumb a:hover { color: var(--em-bright); }
.hero__eyebrow { display: block; }
.hero__title {
  font-family: var(--f-head); font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.025em;
  color: var(--ink); margin-bottom: 1.25rem;
}
.hero__title em { color: var(--em-bright); font-style: normal; }
.hero__sub { font-size: 1.05rem; color: var(--ink-soft); max-width: 54ch; margin-bottom: 2rem; line-height: 1.7; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.hero__stats {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  border-top: 1px solid var(--line-s); padding-top: 1.5rem;
}
.hero__stats div { display: flex; flex-direction: column; }
.hero__stats dt { font-family: var(--f-head); font-size: 0.95rem; font-weight: 700; color: var(--em-bright); }
.hero__stats dd { font-size: 0.78rem; color: var(--ink-faint); font-weight: 500; }

/* ---------- Metrics bar ---------- */
.metrics {
  background: var(--bg-raised);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.metrics__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.metric {
  padding: 2rem 1.5rem; text-align: center;
  border-right: 1px solid var(--line);
}
.metric:last-child { border-right: none; }
.metric__num {
  display: block;
  font-family: var(--f-head); font-size: 2rem; font-weight: 700;
  color: var(--em-bright); letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}
.metric__label {
  font-family: var(--f-head); font-size: 0.75rem; font-weight: 600;
  color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.07em;
}

/* ---------- Section spacing ---------- */
.section, section { padding: 5rem 0; }

/* ---------- Process (How it works) ---------- */
.process { background: var(--bg-raised); }
.process__steps {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start; gap: 0; margin-top: 3rem;
}
.process__step {
  padding: 2rem 1.5rem;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-m);
}
.process__connector {
  display: flex; align-items: flex-start; justify-content: center;
  padding: 2.75rem 0.5rem 0;
  font-size: 1.4rem; color: var(--em); opacity: 0.4;
}
.step__num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--em-glass); border: 2px solid var(--em-border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-head); font-size: 1.1rem; font-weight: 700;
  color: var(--em-bright); margin-bottom: 1.25rem; flex-shrink: 0;
}
.process__step h3 {
  font-family: var(--f-head); font-size: 1.05rem; font-weight: 700;
  color: var(--ink); margin-bottom: 0.6rem;
}
.process__step p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.65; }

/* ---------- Services: photo cards (homepage) ---------- */
.services__grid--photo {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 3px; background: var(--bg-deep);
  border-radius: var(--r-m); overflow: hidden; margin-top: 3rem;
}
.service-photo-card {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
}
.service-photo-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-photo-card:hover img { transform: scale(1.05); }
.service-photo-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,8,6,0.93) 35%, rgba(5,8,6,0.3) 70%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
}
.service-photo-card h3 {
  font-family: var(--f-head); font-size: 1rem; font-weight: 700;
  color: #fff; margin-bottom: 0.4rem;
}
.service-photo-card p { font-size: 0.82rem; color: rgba(255,255,255,0.68); line-height: 1.5; }
.service-photo-card--wide { grid-column: span 2; aspect-ratio: 8/3; }

/* Services: text cards (city pages) */
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin-top: 2.5rem;
}
.service-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-m); padding: 1.75rem;
  border-top: 3px solid var(--em-deep);
  transition: border-color 0.2s, background 0.2s;
}
.service-card:hover { border-top-color: var(--em); background: var(--card-h); }
.service-card h3 {
  font-family: var(--f-head); font-size: 1rem; font-weight: 700;
  color: var(--ink); margin-bottom: 0.6rem;
}
.service-card p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.65; }
.accent { color: var(--em-bright); }

/* ---------- Brands (copied verbatim from yellow site) ---------- */
.brands { background: var(--bg); }

.brands__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  list-style: none;
}
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 118px;
  padding: 1.4rem 1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.35s, background 0.35s, transform 0.35s var(--ease-out);
}
.brand:hover {
  border-color: rgba(201, 149, 79, 0.45);
  background: var(--card-hover);
  transform: translateY(-3px);
}
.brand img {
  height: 30px;
  width: auto;
  max-width: 86%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity 0.4s, filter 0.4s;
}
.brand:hover img { opacity: 1; }
.brand img.brand__logo--tinted { filter: grayscale(1) brightness(1.2); opacity: 0.7; }
.brand:hover img.brand__logo--tinted { filter: none; opacity: 1; }
.brand span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-align: center;
  transition: color 0.35s;
}
.brand:hover span { color: var(--ink-soft); }
.brand--text span {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 340;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--accent);
}
.brand--text:hover span { color: var(--accent-bright); }
.brands__note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-faint);
}
.brands__note a {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid rgba(201, 149, 79, 0.45);
  transition: color 0.25s, border-color 0.25s;
}
.brands__note a:hover { color: var(--accent-bright); border-color: var(--accent-bright); }

/* ---------- Gallery ---------- */
.gallery__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px; gap: 4px; margin-top: 2.5rem;
}
.gallery__item { overflow: hidden; border-radius: var(--r); }
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* ---------- Credentials (spec-sheet) ---------- */
.cred-grid {
  border: 1px solid var(--line); border-radius: var(--r-m);
  overflow: hidden; margin-top: 2.5rem;
}
.cred-row {
  display: grid; grid-template-columns: 220px 1fr;
  border-bottom: 1px solid var(--line);
}
.cred-row:last-child { border-bottom: none; }
.cred-label {
  padding: 1rem 1.5rem; background: var(--bg-raised);
  font-family: var(--f-head); font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-faint);
  border-right: 1px solid var(--line);
  display: flex; align-items: center;
}
.cred-value {
  padding: 1rem 1.5rem;
  font-size: 0.93rem; font-weight: 500; color: var(--ink);
  display: flex; align-items: center;
}
.cred-value--em { color: var(--em-bright); font-weight: 700; }

/* ---------- Service areas ---------- */
.areas__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin-top: 2.5rem;
}
.area-card {
  display: block; padding: 1.5rem;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-m); transition: background 0.2s, border-color 0.2s;
}
.area-card:hover { background: var(--card-h); border-color: var(--em-border); }
.area-card__name {
  font-family: var(--f-head); font-size: 1rem; font-weight: 700;
  color: var(--ink); margin-bottom: 0.25rem;
}
.area-card__sub { font-size: 0.8rem; color: var(--ink-faint); }
.area-card__cta {
  display: inline-block; margin-top: 0.9rem;
  font-family: var(--f-head); font-size: 0.8rem; font-weight: 600;
  color: var(--em); letter-spacing: 0.02em;
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--bg-raised); }
.testimonials__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-top: 2.5rem;
}
/* homepage version */
.testi-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-m); padding: 1.75rem;
  transition: border-color 0.2s;
}
.testi-card:hover { border-color: var(--em-border); }
.testi-stars { color: var(--br-bright); font-size: 0.85rem; margin-bottom: 0.75rem; }
.testi-quote {
  font-size: 0.93rem; line-height: 1.7; color: var(--ink-soft);
  margin-bottom: 1.25rem;
}
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: var(--em-glass); border: 1px solid var(--em-border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-head); font-size: 0.8rem; font-weight: 700;
  color: var(--em-bright);
}
.testi-name { font-family: var(--f-head); font-size: 0.88rem; font-weight: 700; color: var(--ink); }
.testi-city { font-size: 0.76rem; color: var(--ink-faint); }
/* city page t-cards */
.t-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-m); padding: 1.75rem;
}
.t-card--feature {
  border-left: 3px solid var(--em);
}
.t-card__stars { color: var(--br-bright); margin-bottom: 0.75rem; font-size: 0.85rem; }
.t-card blockquote p {
  font-size: 0.95rem; line-height: 1.7; color: var(--ink-soft); font-style: italic;
  margin-bottom: 1.25rem;
}
.t-card figcaption {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.88rem;
}
.t-card__avatar {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: var(--em-glass); border: 1px solid var(--em-border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-head); font-size: 0.8rem; font-weight: 700; color: var(--em-bright);
}
.t-card figcaption span { display: flex; flex-direction: column; }
.t-card figcaption strong { color: var(--ink); font-family: var(--f-head); }
.t-card figcaption em { font-size: 0.76rem; color: var(--ink-faint); font-style: normal; }

/* ---------- FAQ (native <details>) ---------- */
.faq__list,
.faq__wrap {
  border: 1px solid var(--line); border-radius: var(--r-m); overflow: hidden;
  margin-top: 2.5rem;
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item:last-child { border-bottom: none; }
.faq__item summary,
.faq__question {
  list-style: none; -webkit-appearance: none;
  width: 100%; padding: 1.25rem 1.5rem;
  font-family: var(--f-head); font-size: 0.975rem; font-weight: 600;
  color: var(--ink); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: background 0.2s;
  background: none; border: none; text-align: left;
}
.faq__item summary:hover,
.faq__question:hover { background: var(--em-glass); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after,
.faq__question::after {
  content: '+'; flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--em-glass); border: 1px solid var(--em-border);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--em-bright); font-weight: 700;
  transition: transform 0.25s, background 0.25s;
}
.faq__item[open] summary::after { content: '−'; background: var(--em); color: #fff; border-color: var(--em); }
.faq__item p,
.faq__answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem; color: var(--ink-soft); line-height: 1.7;
  border-top: 1px solid var(--line);
}

/* ---------- Neighbourhood list (city pages) ---------- */
.neigh { background: var(--bg-raised); }
.neigh__list {
  display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem;
}
.neigh__list li {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r); padding: 0.4rem 0.9rem;
  font-family: var(--f-head); font-size: 0.85rem; font-weight: 500; color: var(--ink-soft);
}

/* Local section (city pages — 2-col text + image) ---------- */
.local { background: var(--bg-raised); }
.local__layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.local__text h2 { margin-bottom: 1rem; }
.local__text p { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 1rem; line-height: 1.7; }
.local__text p strong { color: var(--ink); font-weight: 600; }
.local__media {
  border-radius: var(--r-m); overflow: hidden; margin: 0;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.local__media img { width: 100%; height: 100%; object-fit: cover; }
.local__media figcaption {
  padding: 0.75rem 1rem; background: var(--bg-raised);
  font-size: 0.78rem; color: var(--ink-faint);
  border-top: 1px solid var(--line);
}

/* Nearby section (city pages) */
.nearby { }
.nearby__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin-top: 2.5rem;
}
.nearby__card {
  display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-m); padding: 1.25rem 1.5rem;
  transition: background 0.2s, border-color 0.2s;
}
.nearby__card:hover { background: var(--card-h); border-color: var(--em-border); }
.nearby__card strong { font-family: var(--f-head); font-weight: 700; color: var(--ink); margin-bottom: 0.25rem; }
.nearby__card span:not(.nearby__go) { font-size: 0.82rem; color: var(--ink-faint); }
.nearby__go { margin-top: auto; padding-top: 0.75rem; font-size: 0.8rem; color: var(--em); font-weight: 600; font-family: var(--f-head); }

/* ---------- Contact ---------- */
.contact { background: var(--bg-raised); }
/* Homepage split layout */
.contact__grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 5rem; align-items: start;
}
/* City page layout */
.contact__layout {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 5rem; align-items: start;
}
.contact__info h2,
.contact__info .section__title {
  font-family: var(--f-head); font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; letter-spacing: -0.02em; color: var(--ink);
  line-height: 1.2; margin-bottom: 1.75rem;
}
.contact__info .section__sub { margin-bottom: 1.5rem; }
.contact__phone-big {
  display: flex; flex-direction: column; margin-bottom: 1.75rem;
  gap: 0.2rem;
}
.contact__phone-big a {
  font-family: var(--f-head); font-size: 2rem; font-weight: 700;
  color: var(--em-bright); letter-spacing: -0.02em;
}
.contact__phone-big a:hover { text-decoration: underline; }
.contact__phone-big span { font-size: 0.78rem; color: var(--ink-faint); font-weight: 500; }
.contact__stats-row {
  display: flex; gap: 2rem; flex-wrap: wrap;
}
.cstat { display: flex; flex-direction: column; }
.cstat__num {
  font-family: var(--f-head); font-size: 1.4rem; font-weight: 700;
  color: var(--br-bright); letter-spacing: -0.01em;
}
.cstat__lbl { font-size: 0.73rem; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.07em; }
/* old city page phone/hours */
.contact__phone {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem 1.25rem; background: var(--em-glass);
  border: 1px solid var(--em-border); border-radius: var(--r-m);
  margin-bottom: 1.25rem; text-decoration: none; color: inherit;
  transition: background 0.2s;
}
.contact__phone:hover { background: rgba(26,92,58,0.18); }
.contact__phone svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--em-bright); }
.contact__phone span { display: flex; flex-direction: column; }
.contact__phone em { font-size: 0.78rem; color: var(--ink-faint); font-style: normal; }
.contact__phone strong { font-family: var(--f-head); font-size: 1.05rem; font-weight: 700; color: var(--em-bright); }
.contact__hours {
  list-style: none; display: flex; flex-direction: column; gap: 0.35rem;
}
.contact__hours li {
  display: flex; justify-content: space-between; gap: 1rem;
  font-size: 0.875rem; color: var(--ink-soft);
}
.contact__hours .accent { color: var(--em-bright); font-weight: 700; }

/* Form */
.contact__form,
.form-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-m); padding: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group,
.form-field {
  display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem;
}
.form-group label,
.form-field label {
  font-family: var(--f-head); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-faint);
}
.form-group input, .form-group select, .form-group textarea,
.form-field input, .form-field select, .form-field textarea {
  background: var(--bg-raised); border: 1px solid var(--line);
  border-radius: var(--r); padding: 0.7rem 1rem;
  font-family: var(--f-body); font-size: 0.93rem; color: var(--ink);
  outline: none; transition: border-color 0.2s; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus,
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--em);
}
.form-group input.is-invalid, .form-group select.is-invalid, .form-group textarea.is-invalid,
.form-field input.is-invalid, .form-field select.is-invalid, .form-field textarea.is-invalid {
  border-color: #e05555;
}
.form-group textarea, .form-field textarea { resize: vertical; min-height: 120px; }
.form-group select option, .form-field select option { background: var(--card); }
.form-select { position: relative; }
.form-select select { appearance: none; padding-right: 2.5rem; }
.form-select svg {
  position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; color: var(--ink-faint); pointer-events: none;
}
.form-hp { display: none !important; }
.form-note { font-size: 0.78rem; color: var(--ink-faint); margin-top: 0.75rem; text-align: center; }
.form-success, #formSuccess {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 1rem 1.25rem; border-radius: var(--r);
  margin-top: 1rem; font-size: 0.88rem;
  background: var(--em-glass); border: 1px solid var(--em-border); color: var(--em-bright);
}
.form-success svg, #formSuccess svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--em-bright); }
.form-success a, #formSuccess a { color: var(--em-bright); text-decoration: underline; }
.form-error, #formError {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 1rem 1.25rem; border-radius: var(--r);
  margin-top: 1rem; font-size: 0.88rem;
  background: rgba(224,85,85,0.08); border: 1px solid rgba(224,85,85,0.25); color: #f08585;
}
.form-error svg, #formError svg { width: 22px; height: 22px; flex-shrink: 0; }
.form-error a, #formError a { color: #f08585; text-decoration: underline; }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  padding: 4rem 0 2.5rem;
}
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer__brand p.footer__name,
.footer__brand h3 {
  font-family: var(--f-head); font-size: 1rem; font-weight: 700;
  color: var(--ink); margin-bottom: 0.75rem;
}
.footer__brand h3 span,
.footer__brand p.footer__name em { color: var(--em-bright); font-style: normal; }
.footer__brand p.footer__tag,
.footer__brand p:not(.footer__name):not(.footer__tag) {
  font-size: 0.85rem; color: var(--ink-faint); line-height: 1.65;
}
.footer__phone-wrap,
.footer__phone {
  display: block; margin-top: 1rem;
}
.footer__phone-wrap a,
.footer__phone {
  font-family: var(--f-head); font-size: 1.2rem; font-weight: 700;
  color: var(--em-bright); display: block;
  transition: color 0.2s;
}
.footer__phone-wrap a:hover,
.footer__phone:hover { color: var(--em-bright); text-decoration: underline; }
.footer__phone-wrap span { font-size: 0.73rem; color: var(--ink-faint); display: block; margin-top: 0.15rem; }
.footer__col h4 {
  font-family: var(--f-head); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-faint); margin-bottom: 1rem;
}
.footer__col ul li { margin-bottom: 0.45rem; }
.footer__col ul li a {
  font-size: 0.875rem; color: var(--ink-soft); transition: color 0.2s;
}
.footer__col ul li a:hover { color: var(--em-bright); }
.footer__col ul li:not(:has(a)) { font-size: 0.875rem; color: var(--ink-soft); }
.footer__bottom {
  border-top: 1px solid var(--line); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.78rem; color: var(--ink-faint);
}
.footer__bottom a { color: var(--ink-faint); transition: color 0.2s; }
.footer__bottom a:hover { color: var(--em-bright); }

/* ---------- Call bar (mobile sticky CTA) ---------- */
.callbar {
  display: none;
  position: fixed; bottom: 0; inset-inline: 0; z-index: 200;
  background: var(--em); color: #fff;
  padding: 1rem; text-align: center;
  font-family: var(--f-head); font-size: 0.95rem; font-weight: 700;
  align-items: center; justify-content: center; gap: 0.5rem;
  transition: background 0.2s;
}
.callbar:hover { background: var(--em-bright); }
.callbar svg { width: 18px; height: 18px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr; min-height: auto;
    padding: 3.5rem 0; gap: 2.5rem;
  }
  .hero__photo { max-height: 380px; }
  .metrics__grid { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(2) { border-right: none; }
  .metric:nth-child(3), .metric:nth-child(4) { border-top: 1px solid var(--line); }
  .process__steps {
    grid-template-columns: 1fr; gap: 1rem;
  }
  .process__connector { padding: 0; height: 28px; justify-content: flex-start; padding-left: 1.5rem; }
  .services__grid--photo { grid-template-columns: 1fr 1fr; }
  .service-photo-card--wide { grid-column: span 1; aspect-ratio: 4/3; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .local__layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .areas__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid, .contact__layout { grid-template-columns: 1fr; gap: 3rem; }
  .nearby__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav__links { display: none; }
  #navToggle,
  .nav__toggle { display: flex; }
  .nav__links.is-open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 0.25rem;
    position: fixed; inset: var(--nav-h) 0 0 0;
    background: rgba(8,13,10,0.97); padding: 1.5rem;
    overflow-y: auto; z-index: 99;
  }
  .nav__links.is-open a { font-size: 1.1rem; padding: 0.65rem 0.75rem; width: 100%; }
  .nav__emergency { display: none; }
  section, .section { padding: 3.5rem 0; }
  .hero h1 { font-size: 2.1rem; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .services__grid--photo { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide, .gallery__item--tall { grid-column: span 1; grid-row: span 1; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .cred-row { grid-template-columns: 1fr; }
  .cred-label { border-right: none; border-bottom: 1px solid var(--line); }
  .areas__grid { grid-template-columns: 1fr 1fr; }
  .brands__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .callbar { display: flex; }
  body { padding-bottom: 64px; }
  .hero--city { min-height: 60vh; }
  .nearby__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; }
  .areas__grid, .nearby__grid { grid-template-columns: 1fr; }
  .brands__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .services__grid { grid-template-columns: 1fr; }
}


