:root {
  --ink: #161616;
  --muted: #5f6267;
  --paper: #f6f6f6;
  --surface: #ffffff;
  --line: #dedede;
  --kw-red: #b40101;
  --kw-red-bright: #d71920;
  --kw-black: #111111;
  --forest: var(--kw-red);
  --forest-dark: var(--kw-black);
  --gold: var(--kw-red);
  --clay: var(--kw-red-bright);
  --sky: #eceff1;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

img {
  display: block;
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(222, 222, 222, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  text-decoration: none;
}

.logo-image {
  width: auto;
  height: 56px;
  max-width: 96px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.74rem;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
  font-size: 0.9rem;
}

.main-nav a,
.footer-links a {
  text-decoration: none;
}

.main-nav a:hover,
.footer-links a:hover,
.social-links a:hover {
  color: var(--forest);
}

.header-phone {
  padding: 10px 14px;
  color: #fff;
  background: var(--forest);
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  padding: clamp(80px, 12vw, 140px) clamp(20px, 5vw, 70px) clamp(46px, 7vw, 86px);
  overflow: hidden;
}

.page-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-content: end;
  padding: clamp(86px, 12vw, 150px) clamp(20px, 5vw, 70px) clamp(46px, 7vw, 78px);
  color: #fff;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #111;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.58) 55%, rgba(180, 1, 1, 0.2));
}

.reo-hero::before {
  background: url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=2200&q=80") center/cover;
}

.bpo-hero::before {
  background: url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=2200&q=80") center/cover;
}

.corporate-hero::before {
  background: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=2200&q=80") center/cover;
}

.search-hero::before {
  background: url("https://images.unsplash.com/photo-1560520653-9e0e4c89eb11?auto=format&fit=crop&w=2200&q=80") center/cover;
}

.about-hero::before {
  background: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=2200&q=80") center/cover;
}

.contact-hero::before {
  background: url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=2200&q=80") center/cover;
}

.service-area-hero::before {
  background: url("https://images.unsplash.com/photo-1465447142348-e9952c393450?auto=format&fit=crop&w=2200&q=80") center/cover;
}

.hud-hero::before {
  background: url("https://images.unsplash.com/photo-1564013799919-ab600027ffc6?auto=format&fit=crop&w=2200&q=80") center/cover;
}

.page-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.56) 45%, rgba(180, 1, 1, 0.14)),
    url("https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?auto=format&fit=crop&w=2200&q=80") center/cover;
}

.hero-content {
  position: relative;
  max-width: 780px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero p:not(.eyebrow) {
  max-width: 710px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}

.hero-actions,
.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button,
.contact-options a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--forest);
}

.button.secondary {
  color: #fff;
  background: var(--forest-dark);
}

.button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.proof-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.proof-bar div {
  padding: 22px clamp(16px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.proof-bar div:last-child {
  border-right: 0;
}

.proof-bar strong,
.proof-bar span {
  display: block;
}

.proof-bar strong {
  color: var(--forest-dark);
  font-size: 1.45rem;
}

.proof-bar span {
  color: var(--muted);
}

.section {
  padding: clamp(58px, 8vw, 100px) clamp(20px, 5vw, 70px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.split-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.split-content h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.copy-stack {
  display: grid;
  gap: 18px;
}

.copy-stack p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.intro h2,
.section-heading h2,
.network h2,
.appointment h2,
.testimonials h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro p:last-child,
.network-copy p,
.appointment p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 0;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(23, 32, 27, 0.08);
}

.service-card img {
  height: 245px;
  object-fit: cover;
}

.service-card div {
  padding: 24px;
}

.service-card h3,
.detail-panel h2,
.coverage-grid h3 {
  margin: 0 0 10px;
  line-height: 1.15;
}

.service-card p,
.coverage-grid p,
.quote-grid p,
.faq p,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

.details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: #111111;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 0;
}

.process article {
  min-height: 210px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
}

.process span {
  display: inline-flex;
  min-width: 42px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  padding: 5px 10px;
  color: #fff;
  background: var(--kw-red);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 800;
}

.process h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.process p {
  margin: 0;
  color: var(--muted);
}

.detail-panel {
  padding: 28px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.detail-panel ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.84);
}

.detail-panel li + li {
  margin-top: 9px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.coverage {
  background: var(--sky);
}

.county-section {
  background: var(--surface);
}

.county-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.county-grid span {
  padding: 13px 14px;
  color: var(--forest-dark);
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--kw-red);
  border-radius: 6px;
  font-weight: 800;
}

.coverage-grid,
.quote-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.coverage-grid article,
.quote-grid blockquote,
.faq details {
  margin: 0;
  padding: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(23, 32, 27, 0.1);
  border-radius: 8px;
}

.network {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: var(--surface);
}

.search-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.search-callout h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.search-callout p:not(.eyebrow) {
  max-width: 820px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.full-network {
  padding-top: clamp(58px, 8vw, 100px);
}

.home-search-embed {
  background: var(--surface);
}

.home-search-embed iframe {
  display: block;
  min-height: 800px;
  background: var(--surface);
}

.network-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.network-links a {
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--forest-dark);
  font-weight: 800;
  text-decoration: none;
}

.network-links a:hover {
  border-color: var(--forest);
  transform: translateY(-1px);
}

.testimonials {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 70px);
}

.quote-grid {
  grid-template-columns: repeat(3, 1fr);
}

.quote-grid cite {
  display: block;
  margin-top: 18px;
  color: var(--forest);
  font-style: normal;
  font-weight: 800;
}

.faq {
  background: #efefef;
}

.faq-grid {
  grid-template-columns: repeat(2, 1fr);
}

.faq summary {
  color: var(--forest-dark);
  cursor: pointer;
  font-weight: 800;
}

.faq p {
  margin-top: 12px;
}

.appointment {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: #111111;
  color: #fff;
}

.contact-page {
  padding-top: clamp(58px, 8vw, 100px);
}

.page-proof {
  padding: 0;
}

.appointment p {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 18px;
}

.contact-options a {
  color: #fff;
  background: var(--forest);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: var(--surface);
  border-radius: 8px;
  color: var(--ink);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--forest-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, 1.2fr) minmax(180px, 0.8fr);
  gap: 22px;
  padding: 28px clamp(20px, 5vw, 70px);
  background: #080808;
  color: #fff;
}

.site-footer p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.86);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  justify-content: flex-end;
}

.social-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .proof-bar,
  .service-grid,
  .details,
  .coverage-grid,
  .quote-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .county-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .intro,
  .network,
  .testimonials,
  .appointment,
  .search-callout,
  .split-content {
    grid-template-columns: 1fr;
  }

  .process {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    position: relative;
    display: block;
  }

  .main-nav {
    margin-top: 16px;
  }

  .header-phone {
    display: inline-flex;
    margin-top: 14px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-actions .button,
  .contact-options a {
    width: 100%;
  }

  .proof-bar,
  .service-grid,
  .details,
  .coverage-grid,
  .county-grid,
  .network-links,
  .quote-grid,
  .faq-grid,
  .process {
    grid-template-columns: 1fr;
  }

  .proof-bar div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .site-footer {
    display: block;
  }

  .footer-links,
  .social-links {
    margin-top: 18px;
    justify-content: flex-start;
  }
}
