:root {
  --navy: #0a1628;
  --navy-mid: #12233b;
  --navy-soft: #1b3354;
  --orange: #e85d04;
  --orange-hot: #f48c06;
  --paper: #f3efe6;
  --paper-2: #e8e2d4;
  --ink: #142033;
  --muted: #5c6b80;
  --line: rgba(10, 22, 40, 0.12);
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(10, 22, 40, 0.12);
  --radius: 6px;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.55;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: var(--orange);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--orange-hot);
}

h1,
h2,
h3 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin: 0 0 0.4em;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5.1rem);
  font-weight: 700;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
}

h3 {
  font-size: 1.45rem;
  font-weight: 600;
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--orange);
  color: var(--navy);
  padding: 0.5rem 0.8rem;
  z-index: 100;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10, 22, 40, 0.96);
  color: var(--paper);
  border-bottom: 1px solid rgba(243, 239, 230, 0.08);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  text-decoration: none;
}

.brand:hover {
  color: inherit;
}

.brand-mark {
  width: 14px;
  height: 28px;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 18%, 100% 100%, 0 82%);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-sub {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b8c4d4;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav a {
  color: #d7deea;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav a:hover {
  color: var(--white);
}

.nav-cta {
  background: var(--orange);
  color: var(--navy) !important;
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius);
}

.nav-cta:hover {
  background: var(--orange-hot);
}

.header-tools {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
}

.header-phone,
.header-linkedin {
  color: var(--paper);
  text-decoration: none;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.82rem;
}

.header-linkedin {
  color: #b8c4d4;
}

.header-phone:hover,
.header-linkedin:hover {
  color: var(--orange-hot);
}

.hero {
  position: relative;
  background: var(--navy);
  color: var(--paper);
  overflow: hidden;
  padding: 4.5rem 0 5rem;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 93, 4, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 239, 230, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 20% 20%, #000 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 16.5rem;
  gap: 2.4rem;
  align-items: end;
}

.qr-card {
  background: var(--white);
  color: var(--ink);
  padding: 1.1rem 1.1rem 1.15rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
}

.qr-image {
  width: 180px;
  height: 180px;
  margin: 0 auto 0.75rem;
  background: var(--white);
  image-rendering: pixelated;
}

.qr-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.qr-url {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  color: var(--navy-soft);
  word-break: break-all;
  margin-bottom: 0.55rem;
}

.qr-note {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
  margin-bottom: 0.7rem;
}

.qr-note code {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.85em;
}

.qr-download {
  font-size: 0.85rem;
  font-weight: 650;
}

.eyebrow {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.hero-line {
  display: block;
  color: #c5d0e0;
}

.hero-lead {
  max-width: 38rem;
  font-size: 1.2rem;
  color: #d5dce8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.8rem 0 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--orange);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--orange-hot);
  color: var(--navy);
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(243, 239, 230, 0.28);
}

.btn-ghost:hover {
  color: var(--white);
  border-color: var(--orange);
}

address {
  font-style: normal;
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(243, 239, 230, 0.12);
}

.hero-contact strong {
  display: block;
  font-size: 1.05rem;
}

.hero-contact span,
.hero-contact a {
  color: #b8c4d4;
}

.hero-contact a:hover {
  color: var(--orange-hot);
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--paper-2);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.2rem;
}

.section-index,
.section-kicker {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--orange);
  margin-bottom: 0.4rem;
}

.section-kicker {
  font-size: 0.82rem;
  text-transform: uppercase;
  font-weight: 500;
}

.section-lede {
  color: var(--muted);
  font-size: 1.1rem;
}

.card-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  background: var(--white);
  padding: 1.4rem 1.3rem 1.5rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--orange);
  box-shadow: var(--shadow);
}

.card-kicker {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.35rem;
}

.work-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.work-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  background: var(--white);
  padding: 1.3rem 1.4rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.work-num {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  color: var(--orange);
  font-size: 0.85rem;
  padding-top: 0.25rem;
}

.work-list h2,
.metro-list h2,
.city-services h2 {
  font-size: 1.45rem;
  text-transform: none;
  letter-spacing: 0;
}

.territory-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.territory-map {
  margin: 0;
  background: var(--navy);
  border-radius: 8px;
  padding: 1.2rem 1rem 0.6rem;
}

.map-line {
  stroke: var(--orange);
  stroke-width: 2;
  stroke-dasharray: 6 5;
}

.map-node {
  fill: var(--orange);
}

.map-code {
  fill: var(--paper);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 14px;
  letter-spacing: 0.12em;
}

.map-label {
  fill: #c5d0e0;
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
}

.map-hint {
  fill: #8ea0b8;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.metro-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.metro-list li {
  display: grid;
  grid-template-columns: 4.2rem 1fr;
  gap: 0.9rem;
  align-items: start;
}

.metro-code {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--navy);
  background: #f7d3b3;
  border: 1px solid #efb27a;
  text-align: center;
  padding: 0.35rem 0.2rem;
  border-radius: 4px;
}

.section-rfq {
  background: var(--navy);
  color: var(--paper);
}

.section-rfq .section-lede,
.section-rfq .form-note,
.section-rfq .form-aside {
  color: #c5d0e0;
}

.rfq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.4rem;
  align-items: start;
}

.rfq-facts {
  list-style: none;
  margin: 1.4rem 0;
  padding: 0;
}

.rfq-facts li {
  display: grid;
  gap: 0.15rem;
  padding: 0.7rem 0;
  border-top: 1px solid rgba(243, 239, 230, 0.12);
}

.rfq-facts span {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

.rfq-facts a {
  color: var(--paper);
}

.form-note {
  font-size: 0.95rem;
}

.form-note code {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.85em;
  color: var(--orange-hot);
}

.rfq-form {
  background: var(--white);
  color: var(--ink);
  padding: 1.4rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.field,
fieldset {
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

label,
legend {
  display: block;
  font-weight: 650;
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
}

.field-hint {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 0.8rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #c9d0da;
  border-radius: var(--radius);
  padding: 0.55rem 0.7rem;
  font: inherit;
  color: var(--ink);
  background: #fbfaf7;
}

textarea {
  min-height: 8rem;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--orange);
  outline-offset: 1px;
  border-color: var(--orange);
}

.parts-fields {
  padding: 0.9rem 0.9rem 0.2rem;
  border: 1px dashed #d2b08a;
  background: #fff8f1;
  border-radius: var(--radius);
}

.error-banner,
.success-banner {
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.error-banner {
  background: #fde8e8;
  color: #8a1f1f;
}

.success-banner {
  background: #e5f6ea;
  color: #14532d;
}

.form-actions {
  display: grid;
  gap: 0.7rem;
}

.form-aside {
  font-size: 0.88rem;
  color: var(--muted);
}

.optional {
  font-weight: 500;
  color: var(--muted);
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 0.8rem;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-weight: 500;
  font-size: 0.92rem;
}

.check input {
  width: auto;
  min-height: 0;
  margin-top: 0.2rem;
}

.pace-list {
  margin: 0 0 1.2rem;
  padding-left: 1.1rem;
  color: #c5d0e0;
}

.pace-list li {
  margin: 0.35rem 0;
}

.also-pricing {
  max-width: 46rem;
}

.also-pricing h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.brand-quiet {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}

.brand-quiet-footer {
  color: #8ea0b8;
  margin-top: 1rem;
}

.text-link {
  font-weight: 650;
}

.site-footer {
  background: #07101c;
  color: #c5d0e0;
  padding: 3rem 0 2.5rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand,
.footer-label {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--paper);
  margin-bottom: 0.6rem;
}

.footer-label {
  color: var(--orange);
  font-size: 1rem;
}

.site-footer a {
  color: #f3efe6;
}

.city-hero .hero-inner {
  grid-template-columns: 1fr;
}

.city-services {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.city-services li {
  background: var(--white);
  padding: 1.3rem 1.4rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--orange);
  box-shadow: var(--shadow);
}

.city-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .card-grid,
  .territory-layout,
  .rfq-layout,
  .footer-grid,
  .field-row,
  .hero-inner,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .qr-card {
    max-width: 20rem;
  }

  .hero {
    padding: 3.2rem 0 3.6rem;
  }

  .header-phone,
  .header-linkedin {
    font-size: 0.72rem;
  }
}

@media (max-width: 520px) {
  .hero-actions .btn {
    width: 100%;
  }

  .brand-name {
    font-size: 0.98rem;
  }

  .header-linkedin {
    max-width: 11.5rem;
    text-align: right;
    line-height: 1.25;
  }
}
