/* ============================================
   Clarity Electric — Full Width, Natural Flow
   ============================================ */


:root {
  --black:    #0e0e0e;
  --dark:     #151515;
  --charcoal: #222222;
  --mid:      #555555;
  --light:    #fbfbf8;
  --muted:    #888888;
  --border:   #e8e8e8;
  --bg:       #f6f6f4;
  --white:    #ffffff;
  --gold:     #e09a0a;
  --gold-lt:  #f5b120;
  --gold-bg:  #fffbf0;
  --max-w:    1400px;
  --pad:      clamp(20px, 4vw, 80px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ---- TYPOGRAPHY ---- */
h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
h3 { font-size: 1.25rem; font-weight: 700; line-height: 1.35; }
h4 { font-size: 0.95rem; font-weight: 700; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
  border-radius: 2px;
}

/* ---- SCROLL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: inherit;
  letter-spacing: 0.01em;
}
.btn-gold {
  background: var(--gold-lt);
  color: var(--black);
  border-color: var(--gold-lt);
}
.btn-gold:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(224,154,10,0.3);
}
.btn-white {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover {
  background: var(--charcoal);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.btn-lg { padding: 18px 36px; font-size: 1rem; }

/* ---- TOP BAR ---- */
.topbar {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  padding: 9px 0;
  text-align: center;
  letter-spacing: 0.01em;
}
.topbar a { color: var(--gold-lt); font-weight: 700; }
.topbar a:hover { color: var(--white); }

/* ---- HEADER ---- */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.logo {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.04em;
}
.logo span { color: var(--gold); }

nav ul { display: flex; align-items: center; gap: 2px; list-style: none; }
nav ul li a {
  color: var(--mid);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 7px 13px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
nav ul li a:hover,
nav ul li a.active {
  color: var(--black);
  background: var(--bg);
}
.has-submenu {
  position: relative;
}
.services-link::after {
  content: '▾';
  margin-left: 6px;
  font-size: 0.7rem;
  color: var(--muted);
}
.submenu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(0,0,0,0.12);
  padding: 6px;
  z-index: 260;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
  transition-delay: 0.12s;
}
.submenu li {
  width: 100%;
}
.submenu li a {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 0.84rem;
}
.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}
.nav-cta-btn {
  background: var(--gold-lt) !important;
  color: var(--black) !important;
  font-weight: 800 !important;
  padding: 8px 16px !important;
  border-radius: 6px !important;
}
.nav-cta-btn:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO — Full Screen ---- */
.hero {
  background: var(--dark);
  color: var(--white);
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
/* Subtle background texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(224,154,10,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(255,255,255,0.02) 0%, transparent 50%);
  pointer-events: none;
}
/* Diagonal bottom edge */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 72px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-media {
  display: flex;
  align-items: center;
}
.hero-media-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  max-height: 560px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,177,32,0.12);
  border: 1px solid rgba(245,177,32,0.25);
  color: var(--gold-lt);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-label::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--gold-lt);
  border-radius: 50%;
}
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 em {
  font-style: normal;
  color: var(--gold-lt);
  position: relative;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 56px;
}
.hero-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.2);
}
.hero-phone {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.hero-phone:hover { color: var(--gold-lt); }
.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.trust-item::before {
  content: '✓';
  color: var(--gold-lt);
  font-weight: 800;
  font-size: 0.75rem;
}

/* ---- SECTION BASES ---- */
.section       { padding: 96px 0; }
.section-alt   { background: var(--bg); padding: 96px 0; }
.section-dark  { background: var(--dark); color: var(--white); padding: 96px 0; }

/* Diagonal top on alt sections */
.diagonal-top {
  position: relative;
  padding-top: calc(96px + 48px);
}
.diagonal-top::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: inherit;
  clip-path: polygon(0 0, 100% 60px, 100% 100%, 0 100%);
  margin-top: -59px;
  z-index: 1;
}

.section-head { margin-bottom: 56px; }
.section-head h2 { margin-bottom: 14px; }
.section-head .sub { color: var(--muted); font-size: 1rem; max-width: 480px; line-height: 1.7; }
.section-head.center { text-align: center; }
.section-head.center .sub { margin: 14px auto 0; }
.section-dark .section-head h2 { color: var(--white); }
.section-dark .section-head .sub { color: rgba(255,255,255,0.55); }

/* ---- SERVICES ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.svc-card {
  background: var(--white);
  padding: 36px 32px;
  transition: background 0.2s;
  position: relative;
}
.svc-card:hover { background: #fafaf8; }
.svc-card:hover .svc-arrow { transform: translateX(4px); color: var(--gold); }
.svc-line {
  width: 36px;
  height: 3px;
  background: var(--gold-lt);
  border-radius: 2px;
  margin-bottom: 20px;
  transition: width 0.3s;
}
.svc-card:hover .svc-line { width: 52px; }
.svc-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.svc-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; margin-bottom: 16px; }
.svc-arrow {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--mid);
  transition: all 0.2s;
}

/* ---- ABOUT SPLIT ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text h2 { margin-bottom: 20px; color: var(--white); }
.about-text p { color: rgba(255,255,255,0.65); margin-bottom: 16px; font-size: 0.97rem; }
.about-list {
  list-style: none;
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.about-list li {
  display: flex;
  gap: 14px;
  font-size: 0.93rem;
  color: rgba(255,255,255,0.7);
  align-items: flex-start;
  line-height: 1.5;
}
.about-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: rgba(245,177,32,0.15);
  border: 1px solid rgba(245,177,32,0.3);
  border-radius: 50%;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23f5b120' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Stats panel */
.stats-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
}
.stats-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.stat-box {
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.stat-box:last-child { border-right: none; }
.stat-n {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold-lt);
  letter-spacing: -0.03em;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-l {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  line-height: 1.3;
}
.stats-quote {
  padding: 28px 32px;
}
.stats-quote p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 12px;
}
.stats-quote cite {
  color: var(--gold-lt);
  font-size: 0.8rem;
  font-weight: 700;
  font-style: normal;
}

/* ---- REVIEWS ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.review-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.review-card p {
  font-size: 0.9rem;
  color: var(--mid);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 18px;
}
.review-by { font-size: 0.82rem; font-weight: 700; color: var(--dark); }
.review-loc { font-weight: 500; color: var(--muted); }

/* ---- SERVICE AREAS ---- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.area-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 24px 20px;
  transition: all 0.2s;
  display: block;
  text-align: center;
}
.area-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(245,177,32,0.4);
  transform: translateY(-2px);
}
.area-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-lt);
  border-radius: 50%;
  margin: 0 auto 12px;
}
.area-card h3 {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 4px;
}
.area-card p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
  line-height: 1.4;
}

/* ---- CTA BAND ---- */
.cta-band {
  background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-band h2 { color: var(--black); margin-bottom: 12px; }
.cta-band p { color: rgba(0,0,0,0.6); font-size: 1rem; margin-bottom: 36px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- FOOTER ---- */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .logo { color: var(--white); display: inline-block; margin-bottom: 16px; font-size: 1.15rem; }
.footer-brand p { font-size: 0.87rem; line-height: 1.75; max-width: 280px; }
.footer-phone {
  margin-top: 20px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold-lt);
}
footer h5 {
  color: rgba(255,255,255,0.8);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 20px;
}
footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer ul li a {
  color: rgba(255,255,255,0.42);
  font-size: 0.87rem;
  transition: color 0.15s;
}
footer ul li a:hover { color: var(--gold-lt); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}
.footer-bottom a { color: rgba(255,255,255,0.25); }
.footer-bottom a:hover { color: rgba(255,255,255,0.5); }

/* ---- INNER PAGES ---- */
.page-hero {
  background: var(--dark);
  color: var(--white);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 56px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.page-hero h1 { color: var(--white); margin-bottom: 14px; font-size: clamp(1.9rem, 4vw, 3rem); }
.page-hero p { color: rgba(255,255,255,0.6); max-width: 540px; font-size: 1rem; margin: 0; }

.page-hero-dark {
  background: var(--dark);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.page-hero-dark::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 56px;
  background: var(--bg);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.page-hero-dark h1 { color: var(--white); margin-bottom: 14px; font-size: clamp(1.9rem, 4vw, 3rem); }
.page-hero-dark p { color: rgba(255,255,255,0.6); max-width: 540px; font-size: 1rem; margin: 0; }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  padding: 14px 0;
  font-size: 0.8rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--dark); }
.breadcrumb .sep { margin: 0 8px; }

/* ---- QUICK NAV ---- */
.quick-nav-wrap {
  padding: 40px 0;
}
.quick-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.quick-nav-link {
  display: block;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  text-decoration: none;
  transition: all 0.15s;
  line-height: 1.35;
}
.quick-nav-link:hover {
  border-color: #d5d5d5;
  background: #efefeb;
}

/* ---- SERVICES PAGE ---- */
.svc-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.svc-feature:last-of-type { border-bottom: none; }
.svc-feature h2 { margin-bottom: 16px; }
.svc-feature p { color: var(--muted); font-size: 0.95rem; }
.svc-feature ul { list-style: none; margin: 20px 0; display: flex; flex-direction: column; gap: 10px; }
.svc-feature ul li {
  display: flex; gap: 12px;
  font-size: 0.93rem; color: var(--charcoal);
  align-items: flex-start;
}
.svc-feature ul li::before {
  content: '—'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.callout-box {
  background: var(--dark);
  border-radius: 12px;
  padding: 40px;
  color: var(--white);
}
.callout-box h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  font-weight: 700;
  margin-bottom: 22px;
}
.callout-row {
  display: flex; gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin-bottom: 12px;
  line-height: 1.5;
}
.callout-row::before { content: '✓'; color: var(--gold-lt); font-weight: 800; flex-shrink: 0; }
.callout-row:last-child { margin-bottom: 0; }

/* ---- FAQ ---- */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq-item:first-child { padding-top: 0; }
.faq-q { font-weight: 700; font-size: 0.97rem; color: var(--dark); margin-bottom: 10px; }
.faq-a { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }

.faq-list.faq-enhanced .faq-item {
  padding-top: 16px;
  padding-bottom: 16px;
}

.faq-list.faq-enhanced .faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  margin-bottom: 0;
  min-height: 44px;
  gap: 16px;
}

.faq-list.faq-enhanced .faq-q::after {
  content: '+';
  font-size: 1.2rem;
  line-height: 1;
  color: var(--gold);
  flex-shrink: 0;
}

.faq-list.faq-enhanced .faq-item.open .faq-q::after {
  content: '-';
}

.faq-list.faq-enhanced .faq-a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.25s ease, opacity 0.2s ease, margin-top 0.2s ease;
}

.faq-list.faq-enhanced .faq-item.open .faq-a {
  max-height: 520px;
  opacity: 1;
  margin-top: 10px;
}

/* ---- CONTACT ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 28px; }
.cinfo-item {
  display: flex; gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.cinfo-item:last-of-type { border-bottom: none; }
.cinfo-label { font-weight: 700; font-size: 0.82rem; color: var(--dark); min-width: 76px; padding-top: 2px; text-transform: uppercase; letter-spacing: 0.05em; }
.cinfo-val { color: var(--muted); font-size: 0.93rem; }
.cinfo-val a { color: var(--dark); font-weight: 600; }
.cinfo-val a:hover { color: var(--gold); }

/* ---- FORM ---- */
.form-box {
  background: var(--bg);
  border-radius: 12px;
  padding: 44px;
  border: 1px solid var(--border);
}
.form-box h3 { margin-bottom: 6px; }
.form-box .form-sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 28px; }
.fg { margin-bottom: 16px; }
.fr { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: 0.82rem; font-weight: 700; margin-bottom: 6px; color: var(--dark); letter-spacing: 0.02em; }
input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #d8d8d8;
  border-radius: 6px;
  font-size: 0.93rem;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(224,154,10,0.1);
}
textarea { resize: vertical; min-height: 110px; }
.btn-submit { width: 100%; padding: 15px; font-size: 0.97rem; justify-content: center; margin-top: 4px; }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.utility-card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.utility-card h2 {
  margin: 40px 0 16px;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.utility-card h2:first-child {
  margin-top: 0;
}

.utility-card p,
.utility-card li {
  color: var(--mid);
  font-size: 0.96rem;
}

.utility-card ul {
  padding-left: 20px;
  margin: 16px 0 20px;
}

.utility-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ---- CITY PAGES ---- */
.city-hero-section {
  background: var(--dark);
  padding: 72px 0 72px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.city-hero-section::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 56px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.city-hero-section h1 { color: var(--white); margin-bottom: 16px; }
.city-hero-section p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 560px; margin-bottom: 32px; }
.city-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
  margin-bottom: 36px;
}
.city-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 36px; }
.city-tag {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.7);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
}
.city-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
.detail-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.detail-row {
  display: flex;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.detail-row:last-child { border-bottom: none; }
.detail-key {
  background: var(--bg);
  padding: 14px 18px;
  font-weight: 700;
  font-size: 0.82rem;
  min-width: 130px;
  color: var(--dark);
  border-right: 1px solid var(--border);
}
.detail-val { padding: 14px 18px; color: var(--muted); flex: 1; }
.city-highlight {
  font-weight: 700;
  color: var(--dark);
}
.city-body-cta {
  margin-top: 16px;
}
.city-feature-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  max-height: 220px;
  margin-bottom: 20px;
}
.city-areas-wrap {
  text-align: center;
}
.city-areas-heading {
  margin-bottom: 32px;
}
.city-areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

/* ---- MOBILE STICKY CTA ---- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  background: var(--dark);
  padding: 14px 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.mobile-cta a {
  display: block;
  background: var(--gold-lt);
  color: var(--black);
  font-weight: 800;
  font-size: 1rem;
  padding: 14px;
  border-radius: 8px;
  letter-spacing: -0.01em;
}
.mobile-cta a:hover { background: var(--gold); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { display: none !important; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .svc-feature { grid-template-columns: 1fr; gap: 32px; }
  .city-body { grid-template-columns: 1fr; gap: 40px; }
  .city-areas-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-divider { display: none; }
  .quick-nav-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  html { -webkit-text-size-adjust: 100%; }
  .section, .section-alt, .section-dark { padding: 64px 0; }
  .hero { min-height: auto; padding: 60px 0 80px; }
  .hero h1 { font-size: clamp(2rem, 10vw, 2.7rem); }
  .hero-sub { font-size: 1rem; line-height: 1.65; }
  .hero-trust { gap: 16px; padding-top: 24px; }
  .trust-item { font-size: 0.77rem; }
  .topbar { font-size: 0.74rem; line-height: 1.4; padding: 10px 0; }
  .topbar .container { padding-left: 14px; padding-right: 14px; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .fr { grid-template-columns: 1fr; }
  .form-box { padding: 28px 20px; }
  .utility-card { padding: 28px 20px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
  nav { display: none; }
  nav.open {
    display: block;
    position: absolute;
    top: 66px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    padding: 10px;
    z-index: 200;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  nav.open ul { flex-direction: column; gap: 2px; }
  nav.open ul li a {
    display: block;
    padding: 13px 16px;
    border-radius: 6px;
    min-height: 44px;
    line-height: 1.3;
  }
  nav.open .has-submenu .submenu {
    display: none;
    position: static;
    min-width: 100%;
    border: none;
    box-shadow: none;
    padding: 4px 0 0;
    margin-left: 12px;
  }
  nav.open .has-submenu .submenu.open {
    display: block;
  }
  nav.open .has-submenu .submenu li a {
    padding: 10px 14px;
    font-size: 0.84rem;
  }
  nav.open .services-link::after {
    display: none;
  }
  .hamburger { display: flex; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .mobile-cta { display: block; }
  .mobile-cta a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.97rem;
  }
  body { padding-bottom: 84px; }
  .btn {
    min-height: 46px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .hero-actions,
  .city-hero-actions,
  .cta-buttons,
  .utility-actions {
    width: 100%;
  }
  .hero-actions .btn,
  .city-hero-actions .btn,
  .cta-buttons .btn,
  .utility-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .city-areas-grid {
    grid-template-columns: 1fr;
  }
  .quick-nav-wrap {
    padding: 24px 0;
  }
  .quick-nav-grid {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .quick-nav-link {
    min-width: 170px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 10px 12px;
    font-size: 0.8rem;
  }
  .section-head { margin-bottom: 34px; }
  .section-head .sub { font-size: 0.94rem; }
  .callout-box { padding: 26px 20px; }
  .breadcrumb {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .breadcrumb .container { padding-bottom: 2px; }
  .cta-band::before, .cta-band::after { display: none; }
  .page-hero::after, .page-hero-dark::after, .city-hero-section::after { display: none; }
  .hero::after { display: none; }
  .hero { padding-bottom: 64px; }
}

/* ---- BLOG ---- */
.blog-hero {
  background: var(--dark);
  color: var(--white);
  padding: 72px 0 88px;
  position: relative;
  overflow: hidden;
}
.blog-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 56px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.blog-hero h1 { color: var(--white); margin-bottom: 14px; }
.blog-hero p { color: rgba(255,255,255,0.6); max-width: 540px; font-size: 1rem; margin: 0; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.blog-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-meta {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.blog-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 10px;
}
.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}
.blog-card-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  transition: color 0.15s;
}
.blog-card-link:hover { color: var(--dark); }

/* Post layout */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
  padding-top: 56px;
  padding-bottom: 80px;
}
.post-body h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin: 48px 0 16px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.post-body h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.post-body h3 { font-size: 1.1rem; margin: 28px 0 10px; }
.post-body p { color: var(--mid); font-size: 0.97rem; line-height: 1.8; margin-bottom: 18px; }
.post-body ul, .post-body ol { padding-left: 20px; margin-bottom: 18px; }
.post-body li { color: var(--mid); font-size: 0.97rem; line-height: 1.8; margin-bottom: 6px; }
.post-body strong { color: var(--dark); }
.post-callout {
  background: var(--gold-bg);
  border-left: 4px solid var(--gold-lt);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.post-callout p { color: var(--charcoal); margin: 0; font-size: 0.93rem; }

.post-sidebar { position: sticky; top: 90px; }
.sidebar-card {
  background: var(--dark);
  border-radius: 12px;
  padding: 28px;
  color: var(--white);
  margin-bottom: 20px;
}
.sidebar-card h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
  font-weight: 700;
}
.sidebar-card p { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin-bottom: 16px; }
.sidebar-phone {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold-lt);
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 12px;
}
.sidebar-links { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.sidebar-links li a { color: rgba(255,255,255,0.55); font-size: 0.85rem; transition: color 0.15s; }
.sidebar-links li a:hover { color: var(--gold-lt); }
.sidebar-links li a::before { content: '→ '; }

/* Post meta bar */
.post-meta {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
  font-size: 0.82rem;
  color: var(--muted);
  flex-wrap: wrap;
}
.post-meta strong { color: var(--dark); font-weight: 700; }

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ---- PHOTO STRIP ---- */
.photo-strip {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.photo-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(15,15,15,0.88) 0%,
    rgba(15,15,15,0.55) 55%,
    rgba(15,15,15,0.2) 100%
  );
}
.photo-strip img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.photo-strip-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--pad);
}
.photo-strip blockquote {
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.025em;
  max-width: 680px;
  margin-bottom: 20px;
}
.photo-strip blockquote em {
  font-style: normal;
  color: var(--gold-lt);
}
.photo-strip cite {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.photo-strip cite::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--gold-lt);
  flex-shrink: 0;
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--black);
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-bar-inner {
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.trust-bar-item:last-child { border-right: none; }
.trust-bar-item::before {
  content: '✓';
  color: var(--gold-lt);
  font-size: 0.75rem;
  font-weight: 900;
}

/* ---- TRUST STRIP (MONEY PAGES) ---- */
.trust-strip {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-strip-inner {
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-right: 1px solid var(--border);
}
.trust-strip-item:last-child {
  border-right: none;
}
.trust-strip-item::before {
  content: '✓';
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
}

/* ---- SECTION ACCENT ---- */
.section-head h2 {
  position: relative;
}
.section-accent {
  display: block;
  width: 48px;
  height: 4px;
  background: var(--gold-lt);
  border-radius: 2px;
  margin-bottom: 20px;
}

/* ---- FEATURED SVC CARD ---- */
.svc-card.featured {
  background: var(--dark);
  grid-column: span 2;
}
.svc-card.featured h3 { color: var(--white); }
.svc-card.featured p { color: rgba(255,255,255,0.55); }
.svc-card.featured .svc-line { background: var(--gold-lt); }
.svc-card.featured .svc-arrow { color: var(--gold-lt); }

.hero-sidecard {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 18px;
}

.hero-sidecard img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 18px;
}

.hero-sidecard h3 {
  color: var(--white);
  margin-bottom: 10px;
}

.hero-sidecard p {
  color: rgba(255,255,255,0.66);
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.hero-sidepoints {
  display: grid;
  gap: 10px;
}

.hero-sidepoint {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.84rem;
}

.hero-sidepoint strong {
  color: var(--white);
  font-weight: 700;
}

.hero-sidepoint span {
  color: rgba(255,255,255,0.5);
  text-align: right;
}

.home-proof-strip {
  padding: 0 0 86px;
  background: var(--white);
}

.home-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.home-proof-item {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
}

.home-proof-item:last-child {
  border-right: none;
}

.home-proof-k {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--dark);
  margin-bottom: 6px;
}

.home-proof-v {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

/* ---- RESPONSIVE PHOTO STRIP ---- */
@media (max-width: 640px) {
  .photo-strip { height: 300px; }
  .photo-strip blockquote { font-size: 1.4rem; }
  .trust-bar-item { padding: 6px 14px; font-size: 0.7rem; }
  .svc-card.featured { grid-column: span 1; }
  .home-proof-grid { grid-template-columns: 1fr; }
  .home-proof-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .home-proof-item:last-child { border-bottom: none; }
  .trust-strip-item {
    width: 100%;
    justify-content: center;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .trust-strip-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 1024px) {
  .svc-card.featured { grid-column: span 2; }
  .home-proof-grid { grid-template-columns: repeat(2, 1fr); }
  .home-proof-item:nth-child(2n) { border-right: none; }
}
