/* ============================================================
   Electric ACE Pronto-style: bold color blocks, chunky display,
   ghost outlined buttons, hard transitions, lots of negative space.
   ============================================================ */
:root {
  /* Pronto-inspired goldenrod, pulled to match logo swoosh */
  --gold:        #DBA94A;
  --gold-deep:   #C4912E;
  --gold-soft:   #E8BD64;

  /* Black / charcoal */
  --ink:         #0F0F0F;
  --ink-2:       #1F1D1A;
  --ink-3:       #5C544A;

  /* Light */
  --paper:       #F4EFE6;
  --paper-2:     #EAE3D3;
  --white:       #FFFFFF;
  --off:         #FBF9F4;

  /* Rules */
  --rule:           rgba(15,15,15,0.14);
  --rule-2:         rgba(15,15,15,0.28);
  --rule-on-gold:   rgba(15,15,15,0.22);
  --rule-on-dark:   rgba(244,239,230,0.18);

  --container: 1280px;

  --display:  "Bricolage Grotesque", "Söhne", system-ui, sans-serif;
  --sans:     "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono:     "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--ink); color: var(--gold); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 56px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--gold);
  padding: 10px 16px; z-index: 1000; font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
}
.skip-link:focus { left: 0; }

/* ============================================================
   Display type
   ============================================================ */
.display {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 86px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0 0 32px;
  font-variation-settings: "opsz" 72;
  font-feature-settings: "ss01","ss02";
}
.display.light { color: var(--paper); }

.kicker {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 28px;
}
.kicker.light { color: var(--gold); }
.kicker.dark  { color: var(--ink); }

.lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  max-width: 56ch;
  margin: 0 0 22px;
  font-weight: 400;
}
.lede.dark { color: var(--ink); }
.block-dark .lede { color: rgba(244,239,230,0.78); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 2px solid currentColor;
  background: transparent;
  color: var(--ink);
  transition: background .15s ease, color .15s ease, transform .12s ease;
  text-decoration: none;
}
.btn-outline.btn-light {
  color: var(--paper);
  border-color: var(--paper);
}
.btn-outline.btn-light:hover {
  background: var(--paper);
  color: var(--gold);
}
.btn-outline:hover { background: var(--ink); color: var(--gold); }

.btn-solid {
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--gold);
  align-self: start;
}
.btn-solid:hover { background: var(--gold); color: var(--ink); border-color: var(--ink); }
.btn-solid-light {
  border: 2px solid var(--paper);
  background: var(--paper);
  color: var(--ink);
}
.btn-solid-light:hover { background: var(--ink); color: var(--paper); border-color: var(--paper); }
.btn-block { width: 100%; }

/* ============================================================
   HERO BLOCK (gold)
   ============================================================ */
.hero {
  background: var(--gold);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}

/* Header is part of the hero block, all gold band */
.site-header {
  position: relative;
  z-index: 5;
  background: var(--gold);
  border-bottom: 2px solid var(--ink);
}
.header-inner {
  display: flex; align-items: center; gap: 28px;
  height: 88px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo { height: 40px; width: auto; }
.primary-nav {
  display: flex; align-items: center; gap: 28px;
  margin-left: 48px;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.primary-nav a {
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color .15s ease;
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--ink);
  transform: scaleX(0); transform-origin: left;
  transition: transform .2s ease;
}
.primary-nav a:hover::after { transform: scaleX(1); }

.header-actions {
  display: flex; align-items: center; gap: 18px;
  margin-left: auto;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 10px 16px;
  border: 2px solid var(--ink);
  background: transparent;
  transition: background .15s ease, color .15s ease;
}
.header-phone:hover { background: var(--ink); color: var(--gold); }
.header-login {
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
  transition: opacity .15s ease;
}
.header-login:hover { opacity: 0.65; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  margin-left: auto;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  border: 2px solid var(--ink);
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--gold);
  border-bottom: 2px solid var(--ink);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  padding: 18px 40px;
  border-bottom: 1px solid var(--rule-on-gold);
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.mobile-nav a:last-child { border-bottom: 0; }

/* Hero copy */
.hero-inner {
  padding-top: 90px;
  padding-bottom: 60px;
  min-height: 78vh;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  gap: 72px;
  align-items: center;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-column: 1;
  grid-row: 1;
  padding-bottom: 24px;
  padding-right: 8px;
  min-width: 0;
}

/* Photo panel: bleed to the right edge of the page */
.hero-media {
  margin: 0;
  grid-column: 2;
  grid-row: 1;
  align-self: stretch;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--ink);
  /* break out beyond .container's 40px right padding so it bleeds to the viewport edge */
  margin-right: calc(50% - 50vw + 0px);
  background: var(--char);
}
.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  display: block;
  filter: contrast(1.04) saturate(0.95);
}

.hero-foot {
  grid-column: 1 / -1;
  grid-row: 2;
  width: 100%;
  margin-top: 20px;
}
.hero-content > .btn { align-self: flex-start; margin-bottom: 40px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper);
  padding: 10px 16px;
  margin: 0 0 28px;
  align-self: flex-start;
}
.he-stars { color: var(--gold-deep); letter-spacing: 0.05em; font-size: 13px; }
.hero-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(54px, 7.6vw, 124px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin: 0 0 32px;
  color: var(--paper);
  font-variation-settings: "opsz" 96;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: none;
}
.hero-sub {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 36px;
  font-weight: 400;
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  align-self: flex-start;
  margin-bottom: 60px;
}
.hero-foot {
  margin-top: auto;
  padding-top: 80px;
  display: flex;
  justify-content: space-between;
  border-top: 2px solid var(--ink);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 0;
  gap: 20px;
}

/* ============================================================
   Block utilities
   ============================================================ */
.block { padding: 140px 0; }
.block-light { background: var(--paper); color: var(--ink); border-bottom: 2px solid var(--ink); }
.block-gold  { background: var(--gold);  color: var(--ink); border-bottom: 2px solid var(--ink); }
.block-dark  { background: var(--ink);   color: var(--paper); border-bottom: 2px solid var(--ink); }

.block-head { max-width: 980px; margin: 0 0 80px; }
.block-head.dark .display, .block-head.dark .lede { color: var(--paper); }

/* ============================================================
   WHAT WE DO
   ============================================================ */
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 100px;
  align-items: end;
}
.what-head .display { margin: 0; }
.what-copy p { margin: 0 0 18px; }
.what-copy p:last-child { margin-bottom: 0; color: var(--ink-3); font-size: 17px; }

.service-stack {
  border-top: 2px solid var(--ink);
}
.service-row {
  display: grid;
  grid-template-columns: 80px 1.4fr 2fr 1.2fr;
  gap: 32px;
  align-items: baseline;
  padding: 36px 0;
  border-bottom: 1px solid var(--rule-2);
  transition: background .2s ease, padding .2s ease;
  position: relative;
}
.service-row::after {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; bottom: 0;
  background: var(--gold);
  opacity: 0; z-index: -1;
  transition: opacity .25s ease;
}
.service-row:hover { padding-left: 24px; padding-right: 24px; }
.service-row:hover::after { opacity: 0.35; }

.srv-no {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--ink-3);
}
.srv-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
  color: var(--ink);
  font-variation-settings: "opsz" 36;
}
.srv-desc {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: 60ch;
}
.srv-tags {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
  text-align: right;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.srv-tags li {
  white-space: nowrap;
  position: relative;
  padding-right: 16px;
}
.srv-tags li::after {
  content: ""; position: absolute; right: 0; top: 50%;
  width: 8px; height: 1px;
  background: var(--gold-deep);
}

/* ============================================================
   GENERATORS FEATURE BLOCK
   ============================================================ */
.generators { border-bottom: 2px solid var(--ink); }
.generators-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.gen-copy .display { color: var(--paper); margin-bottom: 28px; }
.gen-copy .lede { color: rgba(244,239,230,0.78); max-width: 60ch; margin-bottom: 36px; }

.gen-bullets {
  list-style: none; padding: 0; margin: 0 0 40px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule-on-dark);
}
.gen-bullets li {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule-on-dark);
  align-items: baseline;
}
.gen-bullets li strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--gold);
}
.gen-bullets li span {
  font-size: 15px;
  color: rgba(244,239,230,0.72);
  line-height: 1.55;
}

.gen-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.gen-side {
  background: var(--gold);
  color: var(--ink);
  padding: 36px 32px;
  border: 2px solid var(--gold);
  position: sticky;
  top: 110px;
}
.gen-side-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0 0 14px;
}
.gen-side-body {
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 36ch;
}
.gen-stats {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 0;
  border-top: 2px solid var(--ink);
}
.gen-stats li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule-on-gold);
}
.gs-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.gs-text {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: right;
  max-width: 14ch;
}

/* ============================================================
   FAMILY OF BRANDS (gold block)
   ============================================================ */
.brand-stack { border-top: 2px solid var(--ink); }
.brand-row {
  display: grid;
  grid-template-columns: 56px 220px 1fr 200px;
  gap: 36px;
  align-items: start;
  padding: 44px 0;
  border-bottom: 2px solid var(--ink);
}
.br-logo {
  background: var(--white);
  border: 2px solid var(--ink);
  height: 92px;
  display: flex; align-items: center; justify-content: center;
  padding: 14px 18px;
  width: 100%;
}
.br-logo img, .br-logo svg { max-height: 100%; max-width: 100%; width: auto; height: auto; object-fit: contain; }

/* HTML-rendered wordmarks for brands without a real logo file */
.wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-family: var(--display);
  color: var(--ink);
  line-height: 1;
}
.wordmark .wm-mark {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  font-variation-settings: "opsz" 60;
}
.wordmark .wm-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.wordmark .wm-sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.wordmark .wm-tag {
  display: inline-block;
  background: var(--ink);
  color: var(--gold);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 2px 7px 3px;
}
.wordmark .wm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.wordmark .wm-eyebrow i {
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--ink);
}
.br-no {
  font-family: var(--display);
  font-weight: 800;
  font-size: 36px;
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 60;
}
.br-since {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 12px;
}
.br-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: var(--ink);
  font-variation-settings: "opsz" 48;
}
.br-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
  max-width: 64ch;
}
.br-phone {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 14px 18px;
  text-align: center;
  align-self: start;
  transition: background .15s ease, color .15s ease;
  white-space: nowrap;
}
.br-phone:hover { background: var(--ink); color: var(--gold); }
.br-name a {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-size: 0% 2px;
  background-repeat: no-repeat;
  transition: background-size .25s ease;
  padding-bottom: 2px;
}
.br-name a:hover { background-size: 100% 2px; }
.footer-col ul a { transition: color .15s ease; }
.footer-col ul a:hover { color: var(--gold); }

/* ============================================================
   SERVICE AREA
   ============================================================ */
.area-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.towns {
  list-style: none; padding: 24px 0; margin: 28px 0 18px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}
.towns li {
  white-space: nowrap;
  flex: 0 0 auto;
}
.towns li::before { content: "→ "; color: var(--gold-deep); margin-right: 4px; }
.towns-note {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0;
}
.map-fig {
  margin: 0;
  border: 2px solid var(--ink);
  background: var(--paper-2);
  position: relative;
  max-width: 520px;
  margin-left: auto;
  width: 100%;
  overflow: hidden;
}
.map-svg { width: 100%; height: auto; aspect-ratio: 480/540; display: block; }

/* ============================================================
   WHY (dark block)
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}
.why-item {
  padding: 44px 40px 44px 0;
  border-bottom: 1px solid var(--rule-on-dark);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: start;
  position: relative;
}
.why-item:nth-child(2n) { padding-left: 40px; padding-right: 0; border-left: 1px solid var(--rule-on-dark); }
.why-item:nth-last-child(-n+2) { border-bottom: 0; }

.why-num {
  grid-row: 1 / 3;
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: 30px;
  color: var(--gold);
  line-height: 1;
  padding-top: 4px;
  letter-spacing: -0.03em;
}
.why-item h3 {
  grid-column: 2;
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: var(--paper);
  line-height: 1.05;
}
.why-item p {
  grid-column: 2;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(244,239,230,0.72);
  margin: 0;
}

/* ============================================================
   CONTACT (gold block)
   ============================================================ */
.contact { border-bottom: 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-title {
  font-size: clamp(64px, 9vw, 132px);
  line-height: 0.88;
  margin: 8px 0 24px;
  color: var(--paper);
}

.phone-list { list-style: none; padding: 0; margin: 36px 0 32px; border-top: 2px solid var(--ink); }
.phone-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule-on-gold);
  gap: 16px;
}
.phone-list span {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.phone-list a {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: 0.04em;
  border-bottom: 2px solid transparent;
  transition: border-color .15s ease;
}
.phone-list a:hover { border-color: var(--ink); }

.hq-address {
  font-style: normal;
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--ink-2);
  letter-spacing: 0.06em;
}

.intake-form {
  display: grid;
  gap: 16px;
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: 36px;
}
.form-title {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 14px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.intake-form label { display: grid; gap: 8px; }
.intake-form label > span {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.intake-form input,
.intake-form select,
.intake-form textarea {
  background: var(--white);
  border: 1.5px solid var(--ink);
  border-radius: 0;
  padding: 13px 14px;
  color: var(--ink);
  font-size: 15.5px;
  font-family: var(--sans);
  width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.intake-form textarea { resize: vertical; min-height: 100px; }
.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--off);
}
.intake-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 18px) 18px, calc(100% - 13px) 18px;
  background-size: 5px 5px;
  background-repeat: no-repeat;
  padding-right: 40px;
}
.form-note {
  margin: 6px 0 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  min-height: 18px;
}
.form-note.ok { color: #2A7740; }
.form-note.err { color: #B23F2A; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(244,239,230,0.72);
  padding: 90px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--rule-on-dark);
}
.footer-brand .footer-logo { height: 42px; width: auto; margin-bottom: 22px; }
.footer-tag {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: var(--gold);
  margin: 0;
}
.footer-h {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule-on-dark);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 14px; }
.footer-col address { font-style: normal; font-size: 14px; line-height: 1.7; color: rgba(244,239,230,0.72); font-family: var(--mono); letter-spacing: 0.04em; }
.footer-lines li { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.footer-lines a { color: var(--paper); font-family: var(--mono); font-weight: 500; font-size: 13.5px; letter-spacing: 0.04em; }
.footer-lines a:hover { color: var(--gold); }
.footer-lines span { font-family: var(--mono); font-size: 10.5px; color: rgba(244,239,230,0.4); letter-spacing: 0.12em; text-transform: uppercase; }

.footer-legal {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.5);
}

/* ============================================================
   BRAND PAGES (sub-pages: /hitchcock, /gotpwr, etc.)
   ============================================================ */
.brand-page-hero {
  background: var(--gold);
  color: var(--ink);
  padding: 80px 0 100px;
  border-bottom: 2px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.brand-page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.brand-page-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 32px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .15s ease;
}
.brand-page-back:hover { border-color: var(--ink); }
.brand-page-eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 18px;
}
.brand-page-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0 0 24px;
  color: var(--ink);
  font-variation-settings: "opsz" 80;
}
.brand-page-tag {
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 32px;
  font-weight: 500;
  max-width: 50ch;
}
.brand-page-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.brand-page-mark {
  background: var(--white);
  border: 2px solid var(--ink);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  position: relative;
}
.brand-page-mark img,
.brand-page-mark svg { max-width: 100%; max-height: 220px; height: auto; width: auto; }
.brand-page-mark .wordmark { gap: 8px; }
.brand-page-mark .wordmark .wm-mark { font-size: 56px; }
.brand-page-mark .wordmark .wm-sub  { font-size: 16px; }
.brand-page-mark .wordmark .wm-eyebrow { font-size: 13px; }
.brand-page-mark .wordmark .wm-tag { font-size: 14px; padding: 4px 10px; }
.brand-page-mark .wordmark .wm-eyebrow i { width: 24px; }

.brand-section {
  padding: 100px 0;
  border-bottom: 2px solid var(--ink);
}
.brand-section.dark { background: var(--ink); color: var(--paper); }
.brand-section.dark .brand-section-title { color: var(--paper); }
.brand-section.dark .brand-prose,
.brand-section.dark .brand-prose p { color: rgba(244,239,230,0.8); }

.brand-section-head { max-width: 880px; margin: 0 0 56px; }
.brand-section-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0 0 22px;
  color: var(--ink);
}

.brand-prose { max-width: 60ch; }
.brand-prose p {
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 20px;
}
.brand-prose p:last-child { margin-bottom: 0; }

.brand-specialties {
  list-style: none; padding: 0; margin: 0;
  border-top: 2px solid var(--ink);
}
.brand-section.dark .brand-specialties { border-top-color: var(--gold); }
.brand-spec-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid var(--rule-2);
  align-items: baseline;
}
.brand-section.dark .brand-spec-row { border-bottom-color: var(--rule-on-dark); }
.brand-spec-no {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--gold-deep);
}
.brand-section.dark .brand-spec-no { color: var(--gold); }
.brand-spec-body h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 0 0 6px;
  line-height: 1.1;
  color: var(--ink);
}
.brand-section.dark .brand-spec-body h3 { color: var(--paper); }
.brand-spec-body p {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: 64ch;
}
.brand-section.dark .brand-spec-body p { color: rgba(244,239,230,0.72); }

/* sister-brands strip */
.sister-brands { padding: 80px 0; background: var(--paper-2); border-bottom: 2px solid var(--ink); }
.sister-head {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 28px;
}
.sister-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.sister-card {
  background: var(--white);
  border: 2px solid var(--ink);
  padding: 24px 20px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 130px;
  position: relative;
  transition: transform .15s ease, box-shadow .2s ease, border-color .15s ease;
}
.sister-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0 var(--ink);
  border-color: var(--ink);
}
.sister-card img,
.sister-card .wordmark { max-height: 60px; max-width: 100%; height: auto; width: auto; object-fit: contain; }
.sister-card .wordmark .wm-mark { font-size: 22px; }
.sister-card .wordmark .wm-sub  { font-size: 11px; }
.sister-card .wordmark .wm-eyebrow { font-size: 9px; }
.sister-card .wordmark .wm-tag { font-size: 10px; padding: 2px 6px; }

@media (max-width: 1100px) {
  .brand-page-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .brand-page-mark { min-height: 200px; padding: 32px; }
  .sister-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .brand-section { padding: 72px 0; }
  .sister-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-page-hero { padding: 50px 0 70px; }
  .brand-page-mark .wordmark .wm-mark { font-size: 36px; }
}

/* ============================================================
   Reveal animations
   ============================================================ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .what-grid { grid-template-columns: 1fr; gap: 32px; }
  .service-row { grid-template-columns: 60px 1.6fr 2fr; }
  .service-row .srv-tags { display: none; }
  .generators-grid { grid-template-columns: 1fr; gap: 50px; }
  .gen-side { position: static; }
  .gen-bullets li { grid-template-columns: 220px 1fr; gap: 18px; }
  .brand-row { grid-template-columns: 180px 1fr; gap: 24px 28px; }
  .br-no { grid-column: 1; grid-row: 1; align-self: end; }
  .br-logo { grid-column: 1; grid-row: 2; height: 80px; }
  .br-body { grid-column: 2; grid-row: 1 / 3; }
  .br-phone { grid-column: 1 / -1; justify-self: start; padding: 12px 18px; }
  .area-grid { grid-template-columns: 1fr; gap: 50px; }
  .map-fig { margin: 0; max-width: 100%; }
  .why-grid { grid-template-columns: 1fr; }
  .why-item, .why-item:nth-child(2n) { padding: 32px 0; border-left: 0 !important; }
  .why-item:not(:last-child) { border-bottom: 1px solid var(--rule-on-dark); }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
}
@media (max-width: 1100px) {
  .primary-nav { gap: 20px; margin-left: 28px; }
  .header-login { display: none; }
}
@media (max-width: 900px) {
  .primary-nav, .header-actions { display: none; }
  .nav-toggle { display: inline-flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 28px;
    padding-top: 50px;
    padding-bottom: 40px;
    min-height: auto;
  }
  .hero-content { grid-column: 1; grid-row: 1; padding-bottom: 0; }
  .hero-media {
    grid-column: 1;
    grid-row: 2;
    margin-right: -24px;
    margin-left: -24px;
    aspect-ratio: 16 / 10;
    align-self: auto;
  }
  .hero-media img { min-height: 0; }
  .hero-foot { grid-column: 1; grid-row: 3; padding-top: 0; margin-top: 24px; flex-direction: column; gap: 8px; }
  .hero-title { font-size: clamp(64px, 16vw, 120px); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-legal { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 900px) {
  .container { padding: 0 36px; }
}
@media (max-width: 600px) {
  .container { padding: 0 24px; }
  .brand-pill { padding: 10px 24px; margin-left: -24px; }
  .nav-toggle { width: 60px; margin-right: -24px; }
  .mobile-nav a { padding: 16px 24px; }
  .header-inner { height: 68px; }
  .brand-logo { height: 30px; }

  .display { font-size: clamp(44px, 12vw, 72px); }
  .block { padding: 90px 0; }
  .block-head { margin-bottom: 48px; }

  .service-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
  }
  .srv-name { font-size: 28px; }
  .gen-bullets li { grid-template-columns: 1fr; gap: 4px; }
  .gen-side { padding: 28px 22px; }
  .wordmark .wm-mark { font-size: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .intake-form { padding: 24px; }
  .towns { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}
