:root {
  /* Dark neutrals (black/grey/white base) */
  --blue-900: #1a212c; /* soft charcoal-navy: used for all dark section backgrounds */
  --blue-800: #1a1a1d;
  --blue-700: #036ee5; /* brand blue: text/icon accent on light backgrounds */
  --blue-600: #036ee5; /* brand blue: icon/eyebrow accent */
  --blue-500: #0257ba; /* darker blue: hover state */
  --blue-100: #e5f1fd; /* light blue tint: icon circle backgrounds */
  --gray-900: #17181a;
  --gray-700: #52565c;
  --gray-500: #82868c;
  --gray-200: #e4e5e7;
  --gray-100: #f5f5f6;
  --white: #ffffff;

  /* Brand accent colours sampled from the logo */
  --orange: #fd6a03;
  --orange-dark: #d95a02;
  --orange-light: #fff1e6;
  --blue: #036ee5;
  --blue-dark: #0257ba;

  --radius: 12px;
  --radius-pill: 9999px;
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.16);

  /* Single typeface across the whole site. */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  font-size: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, textarea { font-family: inherit; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 12px;
}
.eyebrow-light { color: #6fb3f5; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.4rem, 5.6vw, 4.1rem); line-height: 1.05; font-weight: 900; letter-spacing: -0.03em; color: var(--white); }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.2; font-weight: 800; letter-spacing: -0.02em; }
h3 { font-size: 1.1rem; }
h4 { font-size: 1rem; }

.section-sub {
  color: var(--gray-700);
  font-size: 1.02rem;
  max-width: 640px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  touch-action: manipulation;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(253, 106, 3, 0.32);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(253, 106, 3, 0.4); }
.btn-primary:active { transform: translateY(0); }
.btn-outline {
  background: var(--white);
  color: var(--blue-700);
  border-color: var(--gray-200);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.btn-outline-light {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.14); border-color: rgba(255, 255, 255, 0.5); transform: translateY(-2px); }
.btn-lg { padding: 14px 26px; font-size: 1rem; }
.btn-block { width: 100%; }

/* Keyboard focus states (accessibility): visible on-brand outline for anyone tabbing through the site */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 6px;
}
.btn:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: var(--radius-pill);
}
.form-row input:focus-visible,
.form-row textarea:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 1px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
}
.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 12px 16px;
  max-width: 1180px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-full-img { height: 58px; width: auto; display: block; }

.nav-desktop { display: flex; flex-wrap: wrap; gap: 10px 24px; }
.nav-desktop a {
  position: relative;
  font-weight: 500;
  font-size: 0.93rem;
  color: var(--gray-700);
  padding: 6px 0;
  transition: color 0.15s ease;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.2s ease;
}
.nav-desktop a:hover { color: var(--orange); }
.nav-desktop a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--gray-900);
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before,
.nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gray-900);
  white-space: nowrap;
  transition: color 0.15s ease;
}
.header-phone:hover { color: var(--orange); }
.nav-cta { white-space: nowrap; }

/* Hero: full-bleed photo with a dark scrim */
.hero {
  position: relative;
  background: var(--blue-900);
  padding: 150px 0 130px;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  z-index: 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(26, 33, 44,0.95) 0%, rgba(26, 33, 44,0.86) 42%, rgba(26, 33, 44,0.55) 70%, rgba(26, 33, 44,0.32) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-copy { max-width: 900px; }
.hero-copy .eyebrow-light { margin-bottom: 22px; }
.hero-copy h1 { margin-bottom: 26px; }
.hero-sub {
  font-size: 1.08rem;
  line-height: 1.65;
  color: #c7c8cc;
  max-width: 680px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .hero-inner { padding: 0 24px; }
  .hero::before {
    background: linear-gradient(180deg, rgba(26, 33, 44,0.9) 0%, rgba(26, 33, 44,0.88) 60%, rgba(26, 33, 44,0.65) 100%);
  }
}

/* Photo frames: real images with a subtle brand tint + hover zoom */
.photo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
  pointer-events: none;
}
.photo-frame:hover img { transform: scale(1.06); }
.photo-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  background: rgba(253, 106, 3, 0.88);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Sections */
.section { padding: 76px 0; }
.section-alt { background: var(--gray-100); }
.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head h2 { position: relative; padding-bottom: 16px; }
.section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 3px;
  border-radius: 3px;
  background: var(--orange);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-services { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 26px;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--orange); }
.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blue-100);
  color: var(--blue-700);
  margin-bottom: 16px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.card:hover .card-icon { background: var(--orange); color: var(--white); }
.card h3 { font-size: 1.02rem; }
.card p { color: var(--gray-700); margin-top: 8px; font-size: 0.92rem; }

/* Pill eyebrow badges, used on the featured-service blocks */
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.eyebrow-pill-orange { background: var(--orange-light); color: var(--orange-dark); }
.eyebrow-pill-blue { background: var(--blue-100); color: var(--blue-700); }

/* Featured services: Solar Panel Installation / Battery Installation */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 72px;
}
.feature-block-reverse .feature-copy { order: 2; }
.feature-copy p { color: var(--gray-700); margin-top: 14px; }
.feature-copy .btn { margin-top: 4px; }

.checklist { display: flex; flex-direction: column; gap: 13px; margin: 22px 0 26px; }
.checklist li { display: flex; align-items: flex-start; gap: 11px; font-size: 0.92rem; color: var(--gray-700); }
.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-icon-orange { background: var(--orange-light); color: var(--orange-dark); }
.check-icon-blue { background: var(--blue-100); color: var(--blue-700); }

.feature-visual { position: relative; margin-bottom: 36px; }
.feature-photo-frame-panel { aspect-ratio: 4 / 3; }
.feature-photo-frame-battery { aspect-ratio: 9 / 10; }
.feature-stat-card {
  position: absolute;
  right: 24px;
  bottom: -28px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  min-width: 180px;
}
.feature-stat-card-left { right: auto; left: 24px; }
.feature-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
}
.feature-stat-icon-orange { background: var(--orange-light); color: var(--orange-dark); }
.feature-stat-icon-blue { background: var(--blue-100); color: var(--blue-700); }
.feature-stat-text { display: flex; flex-direction: column; }
.feature-stat-text strong { font-family: var(--font-mono); font-size: 1.15rem; font-weight: 700; color: var(--gray-900); line-height: 1.2; }
.feature-stat-text span { font-size: 0.76rem; color: var(--gray-500); }

.services-subhead { margin-top: 8px; margin-bottom: 32px; }
.services-subhead h3 { font-size: 1.3rem; }

@media (max-width: 900px) {
  .feature-block { grid-template-columns: 1fr; gap: 32px; }
  .feature-block-reverse .feature-copy { order: 0; }
  .feature-block-reverse .feature-visual { order: -1; }
}

.feature {
  padding: 22px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.feature:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--blue-100);
  color: var(--blue-700);
  margin-bottom: 12px;
}
.feature p { color: var(--gray-700); margin-top: 6px; font-size: 0.92rem; }

/* Reviews */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.reviews-google-mark { display: inline-flex; }
.reviews-stars, .review-stars { color: #fbbc04; letter-spacing: 2px; font-size: 1rem; }
.reviews-summary p { color: var(--gray-700); font-size: 0.95rem; }
.grid-reviews { align-items: stretch; }
.review-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--orange); }
.review-card .review-stars { margin-bottom: 12px; }
.review-text {
  color: var(--gray-700);
  font-size: 0.9rem;
  flex-grow: 1;
  margin-bottom: 16px;
}
.review-author { display: flex; flex-direction: column; border-top: 1px solid var(--gray-200); padding-top: 12px; }
.review-name { font-weight: 600; font-size: 0.9rem; }
.review-meta { color: var(--gray-500); font-size: 0.8rem; }

/* About */
.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.about-copy p { color: var(--gray-700); margin-top: 16px; }
.about-visual img { width: 100%; height: auto; border-radius: 12px; box-shadow: var(--shadow-lg); display: block; }
/* Stat row styled like a rating plate: bordered, mono numerals, dividers between
   fields, the same vernacular as the printed spec plate on an inverter or switchboard. */
.about-stats {
  display: flex;
  margin-top: 28px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.about-stats div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  border-left: 1px solid var(--gray-200);
}
.about-stats div:first-child { border-left: none; }
.about-stats strong { font-family: var(--font-mono); font-size: 1.5rem; color: var(--blue-700); font-weight: 600; }
.about-stats span { color: var(--gray-500); font-size: 0.78rem; font-weight: 500; }
@media (max-width: 480px) {
  .about-stats { flex-direction: column; }
  .about-stats div { border-left: none; border-top: 1px solid var(--gray-200); }
  .about-stats div:first-child { border-top: none; }
}

/* Process: a real sequence (call, assess, quote, install), so the numbering earns its
   place. The connecting line between circles is a small circuit-trace reference —
   card backgrounds sit above it, so it only reads in the gaps between steps. */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
@media (min-width: 961px) {
  .process-grid::before {
    content: "";
    position: absolute;
    top: 41px;
    left: 24px;
    right: 24px;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--gray-200) 0 6px, transparent 6px 12px);
    z-index: 0;
  }
}
.process-step {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.process-step:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.process-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.process-step p { color: var(--gray-700); margin-top: 6px; font-size: 0.9rem; }

/* FAQ: native <details>/<summary> accordion, no JS required */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: border-color 0.2s ease;
}
.faq-item[open] { border-color: var(--orange); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h4 { color: var(--gray-900); font-size: 1rem; margin: 0; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-700);
  font-family: var(--font-mono);
  font-size: 1rem;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.faq-item[open] summary::after {
  content: "\2212";
  background: var(--orange);
  color: var(--white);
}
.faq-item p { color: var(--gray-700); font-size: 0.92rem; line-height: 1.55; margin-top: 14px; }

/* CTA */
.cta-section { background: var(--blue-900); padding: 64px 0; text-align: center; }
.cta-inner h2 { color: var(--white); }
.cta-inner p { color: #c7c8cc; margin-top: 12px; font-size: 1.05rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; justify-content: center; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

/* Contact */
.contact-section { background: var(--blue-900); color: var(--white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
}
.contact-inner .eyebrow { color: #6fb3f5; }
.contact-inner h2 { color: var(--white); }
.contact-inner p { color: var(--gray-200); margin-top: 12px; }
.contact-list { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; font-family: var(--font-mono); font-size: 0.92rem; }
.contact-list strong { color: var(--white); font-weight: 600; margin-right: 6px; }
.contact-list li { color: var(--gray-200); }

.contact-form {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
}
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-row input, .form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid var(--gray-200);
  font-family: inherit;
  font-size: 16px;
  color: var(--gray-900);
  background: var(--gray-100);
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}
.form-note {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--gray-900);
  text-align: center;
}

/* Footer */
.site-footer { background: var(--blue-900); color: var(--gray-200); padding: 56px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand p { color: #b7b9bc; font-size: 0.9rem; margin-top: 10px; line-height: 1.55; }
.footer-logo { display: flex; align-items: center; }
.footer-col h5 { color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 14px; letter-spacing: 0.02em; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { color: #b7b9bc; font-size: 0.9rem; transition: color 0.15s ease; }
.footer-nav a:hover { color: var(--orange); }
.footer-contact-list { display: flex; flex-direction: column; gap: 10px; color: #b7b9bc; font-family: var(--font-mono); font-size: 0.85rem; }
.footer-bottom {
  padding: 20px 24px;
  text-align: center;
  font-size: 0.8rem;
  color: #8a8d92;
}

/* Sticky mobile call/quote bar */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.mobile-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 10px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  touch-action: manipulation;
}
.mobile-bar-call { background: var(--gray-100); color: var(--gray-900); border: 1px solid var(--gray-200); }
.mobile-bar-quote { background: var(--orange); color: var(--white); }

/* Responsive */

/* Header: switch to the hamburger well before the desktop nav (4 links + phone + CTA
   button) would run out of room and wrap/overflow. */
@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .header-phone,
  .nav-cta { display: none; }
  .nav-desktop {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
    padding: 4px 24px 12px;
  }
  .nav-desktop.open { display: flex; }
  .nav-desktop a { padding: 14px 0; font-size: 1rem; border-bottom: 1px solid var(--gray-100); }
  .nav-desktop a:last-child { border-bottom: none; }
  .nav-desktop a::after { display: none; }
}

@media (max-width: 1024px) {
  .grid-services { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-services { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { order: -1; max-width: 420px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .grid-3, .grid-4, .grid-services, .process-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .hero { padding: 70px 0 56px; min-height: 0; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 74px; }
}
