@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap");

/* ── Tokens ── */
:root {
  --navy: #0a2342;
  --navy-mid: #102e52;
  --orange: #f57c00;
  --orange-hover: #e06f00;
  --white: #fefefe;
  --offwhite: #f5f6f7;
  --ink: #1a1e26;
  --text: #3b4049;
  --muted: #6b7280;
  --rule: #d4d7dc;
  --rule-light: rgba(255, 255, 255, 0.15);
  --container: min(1080px, calc(100% - 3rem));
  --container-wide: min(1200px, calc(100% - 3rem));
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}

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

a {
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0;
  font-weight: 700;
  text-wrap: balance;
}

p, ul, ol, blockquote {
  margin: 0;
}

/* ── Skip ── */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus {
  top: 1rem;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}

.site-header__inner {
  width: var(--container-wide);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  gap: 1.5rem;
}

.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand__logo {
  height: clamp(82px, 8vw, 112px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}

.brand__name {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--navy);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand__sep {
  color: var(--rule);
  font-weight: 300;
}

.brand__tag {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 400;
}

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

.site-nav__links {
  display: flex;
  gap: 1.75rem;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 150ms;
}
.nav-link:hover {
  color: var(--ink);
}

.nav-link[aria-current="page"] {
  color: var(--navy);
}

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

.header-phone {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-toggle {
  display: none;
  padding: 0.6rem 1rem;
  border: 1px solid var(--rule);
  background: transparent;
  font: inherit;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 150ms, color 150ms, border-color 150ms;
}

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

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--offwhite);
}

.btn[disabled] {
  opacity: 0.5;
  cursor: wait;
}

.hero .btn--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.hero .btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

/* Arrow links */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.arrow-link::after {
  content: "\2192";
  transition: transform 150ms;
}
.arrow-link:hover::after {
  transform: translateX(3px);
}

.arrow-link--light {
  color: rgba(255, 255, 255, 0.85);
}

/* ── Sections ── */
.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section__inner {
  width: var(--container);
  margin: 0 auto;
}

.section--navy {
  background:
    radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px),
    var(--navy);
  background-size: 20px 20px;
  color: rgba(255, 255, 255, 0.8);
}

.section--navy h2,
.section--navy h3,
.section--navy strong {
  color: var(--white);
}

.section--navy p,
.section--navy .section-intro p {
  color: rgba(255, 255, 255, 0.7);
}

.section--navy-border {
  border-top: 1px solid var(--rule-light);
}

.section--gray {
  background:
    radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px),
    var(--navy);
  background-size: 20px 20px;
  color: rgba(255, 255, 255, 0.8);
}

.section--gray h2,
.section--gray h3,
.section--gray strong {
  color: var(--white);
}

.section--gray p {
  color: rgba(255, 255, 255, 0.75);
}

.section--gray .section-intro p {
  color: rgba(255, 255, 255, 0.7);
}

/* ── Overview ── */
.section--overview {
  border-bottom: 2px solid var(--rule);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.overview-body p {
  line-height: 1.75;
}

.overview-body p + p {
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ── Hero ── */
.hero {
  padding: clamp(4rem, 9vw, 8rem) 0 clamp(3.5rem, 7vw, 6rem);
  background:
    linear-gradient(to right, rgba(10,35,66,0.92) 0%, rgba(10,35,66,0.82) 50%, rgba(10,35,66,0.7) 100%),
    url('/assets/img/hero-bg.jpg') center / cover no-repeat;
  color: rgba(255,255,255,0.85);
  border-bottom: 4px solid var(--orange);
  position: relative;
  overflow: hidden;
}

.hero__inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw + 1rem, 4.5rem);
  font-weight: 800;
  max-width: 20ch;
  margin-bottom: 1.25rem;
  text-wrap: balance;
  word-break: normal;
  overflow-wrap: break-word;
  color: var(--white);
}

.hero__sub {
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  max-width: 56ch;
  line-height: 1.7;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 3.5rem;
  border-top: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
  background: transparent;
}

.hero__fact {
  padding: 1.25rem 0;
}
.hero__fact:not(:last-child) {
  border-right: 1px solid var(--rule-light);
  padding-right: 1.5rem;
}
.hero__fact:not(:first-child) {
  padding-left: 1.5rem;
}

.hero__fact-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.hero__fact-value {
  font-weight: 600;
  color: var(--white);
}

/* Interior hero */
.hero--interior {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.hero--interior h1 {
  font-size: clamp(2rem, 3.5vw + 0.5rem, 3.5rem);
  text-wrap: balance;
}

/* ── About page ── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-story__text h2 {
  font-size: clamp(1.6rem, 2.5vw + 0.5rem, 2.6rem);
  margin-bottom: 1.25rem;
}

.about-story__text p {
  color: var(--text);
  line-height: 1.75;
}

.about-story__text p + p {
  margin-top: 1rem;
}

.about-story__img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-light);
}

.value-item {
  padding: 2rem 2rem 2rem 0;
  border-bottom: 1px solid var(--rule-light);
}
.value-item:nth-child(even) {
  padding-left: 2rem;
  border-left: 1px solid var(--rule-light);
}

.value-item__num {
  display: block;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.value-item h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.value-item p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
}

.stat-item {
  padding: 2rem 1.5rem;
  text-align: center;
}
.stat-item:not(:last-child) {
  border-right: 1px solid var(--rule);
}

.stat-item__num {
  display: block;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item__label {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* ── Section headers ── */
.section-intro {
  max-width: 46rem;
  margin-bottom: 3rem;
}

.section-intro h2 {
  font-size: clamp(1.6rem, 2.5vw + 0.5rem, 2.6rem);
  margin-bottom: 0.75rem;
  text-wrap: balance;
}

.section-intro p {
  color: var(--text);
  max-width: 50ch;
  text-wrap: pretty;
}

/* ── Service list (no cards) ── */
.service-list {
  list-style: none;
  padding: 0;
  border-top: 2px solid var(--navy);
}

.service-item {
  display: grid;
  grid-template-columns: 14rem 1fr auto;
  gap: 2rem;
  align-items: baseline;
  padding: 2rem 0 2rem 1.25rem;
  border-bottom: 1px solid var(--rule);
  border-left: 3px solid transparent;
  transition: border-color 150ms;
}

.service-item:hover {
  border-left-color: var(--orange);
}

.service-item__name {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(1.15rem, 1rem + 0.5vw, 1.35rem);
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.service-item__desc {
  color: var(--text);
  max-width: 45ch;
}

.service-item__link {
  white-space: nowrap;
}

/* ── Service cards (services page, image + text) ── */
.svc-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--rule);
}
.svc-card:first-child {
  border-top: 2px solid var(--navy);
}

.svc-card__img {
  overflow: hidden;
}
.svc-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svc-card__body {
  padding: 2.5rem 0 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.svc-card__body h3 {
  font-size: clamp(1.3rem, 1.5vw + 0.5rem, 1.85rem);
  margin-bottom: 0.75rem;
}

.svc-card__body > p {
  color: var(--text);
  margin-bottom: 1.25rem;
  max-width: 45ch;
  text-wrap: pretty;
}

.svc-card__body .detail-list {
  margin-bottom: 1.5rem;
}

.svc-card__body .btn {
  align-self: flex-start;
}

.svc-card--flip .svc-card__img {
  order: 2;
}
.svc-card--flip .svc-card__body {
  padding: 2.5rem 3rem 2.5rem 0;
}

/* Compare cards (mobile-friendly grid replacing table) */
.compare-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule-light);
}

.compare-card {
  padding: 1.75rem 1.5rem;
  background: var(--navy);
}

.compare-card h3 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.compare-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  background: var(--orange);
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.75rem;
}

.compare-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.compare-card__coverage {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
}

/* ── Service detail (legacy, kept for compat) ── */
.service-detail {
  padding: 3rem 0;
  border-bottom: 1px solid var(--rule);
}
.service-detail:first-child {
  padding-top: 0;
}

.service-detail__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 2rem;
  margin-bottom: 1.25rem;
}

.service-detail h3 {
  font-size: clamp(1.3rem, 1.5vw + 0.5rem, 1.85rem);
}

.service-detail__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 4rem;
}

.service-detail__text {
  color: var(--text);
  max-width: 50ch;
  text-wrap: pretty;
}

.detail-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.detail-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--text);
}
.detail-list li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: var(--muted);
}

.service-detail__actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
}

/* ── Trust/Why section ── */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.trust-points {
  display: grid;
  gap: 1.5rem;
}

.trust-point {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule-light);
}
.trust-point:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.trust-point strong {
  display: block;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ── Process (inline, no cards) ── */
.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.process-step__num {
  display: block;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(3rem, 3vw + 1rem, 4.5rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.process-step {
  border-left: 3px solid var(--orange);
  padding-left: 1.5rem;
}

.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* ── Service area ── */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.city-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.city-list li {
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--rule-light);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ── Testimonials (pull-quote style) ── */
.testimonials {
  display: grid;
  gap: 0;
  border-top: 2px solid var(--navy);
}

.testimonial {
  padding: 2.5rem 0 2.5rem 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
}

.testimonial::before {
  content: "\201C";
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.15;
  position: absolute;
  top: 0.5rem;
  left: -0.15rem;
  line-height: 1;
  pointer-events: none;
}

.testimonial__text {
  font-size: clamp(1.05rem, 0.9rem + 0.5vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
  max-width: 55ch;
  margin-bottom: 0.75rem;
  text-wrap: pretty;
}

.testimonial__author {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

/* ── CTA band ── */
.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 2vw + 0.5rem, 2.2rem);
  max-width: 28ch;
  text-wrap: balance;
}

.cta-band__actions {
  display: flex;
  gap: 0.75rem;
}

/* ── Comparison table ── */
.table-wrap {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  min-width: 36rem;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  text-align: left;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--rule-light);
  vertical-align: top;
  color: rgba(255,255,255,0.85);
}

.compare-table thead th {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid rgba(255,255,255,0.3);
}

.compare-table tbody th {
  font-weight: 600;
  color: var(--white);
}

.compare-table a {
  color: var(--orange);
  font-weight: 600;
}

/* ── Industries ── */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}

.industry-item {
  padding: 1.75rem 1.5rem 1.75rem 0;
  border-bottom: 1px solid var(--rule);
}
.industry-item:not(:nth-child(3n)) {
  border-right: 1px solid var(--rule);
}
.industry-item:not(:nth-child(3n+1)) {
  padding-left: 1.5rem;
}

.industry-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.industry-item p {
  font-size: 0.95rem;
  color: var(--muted);
}

/* ── Contact / Quote form ── */
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1.5rem;
}

.contact-methods {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.contact-methods li {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--rule);
}

.contact-methods__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.contact-methods a,
.contact-methods strong {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}

.contact-note {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  font-size: 0.9rem;
  color: var(--muted);
}

/* Form */
.form-section h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-bottom: 0.5rem;
}

.form-section > p {
  color: var(--muted);
  margin-bottom: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-field {
  display: grid;
  gap: 0.35rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field--hidden {
  position: absolute;
  left: -9999px;
}

.form-field label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--rule);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 150ms;
}

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

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #9ca3af;
}

.form-field textarea {
  resize: vertical;
  min-height: 6rem;
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.form-status {
  min-height: 1.5rem;
  margin-top: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.form-status.is-success {
  color: #0f7b42;
}
.form-status.is-error {
  color: #b42318;
}

/* ── Footer ── */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 3.5rem 0 2rem;
  border-top: 4px solid var(--orange);
}

.footer__inner {
  width: var(--container-wide);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--rule-light);
}

.footer-brand {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.footer-tagline {
  max-width: 26rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-heading {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 150ms;
}
.footer-list a:hover {
  color: var(--white);
}

.footer-list li:not(:has(a)) {
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  gap: 1rem;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero__facts {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero__fact {
    padding: 1rem 0;
    border-bottom: 1px solid var(--rule-light);
  }
  .hero__fact:not(:last-child) {
    border-right: none;
    padding-right: 0;
  }
  .hero__fact:not(:first-child) {
    padding-left: 0;
  }
  .hero__fact:last-child {
    border-bottom: none;
  }


  .service-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .svc-card {
    grid-template-columns: 1fr;
  }
  .svc-card__img {
    max-height: 220px;
  }
  .svc-card__body {
    padding: 1.5rem 0;
  }
  .svc-card--flip .svc-card__img {
    order: 0;
  }
  .svc-card--flip .svc-card__body {
    padding: 1.5rem 0;
  }

  .compare-cards {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail__body {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .service-detail__head {
    flex-direction: column;
    gap: 0.5rem;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .area-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .quote-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .industry-grid {
    grid-template-columns: 1fr;
  }
  .industry-item:not(:nth-child(3n)) {
    border-right: none;
  }
  .industry-item:not(:nth-child(3n+1)) {
    padding-left: 0;
  }
  .industry-item {
    padding-right: 0;
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
  .value-item:nth-child(even) {
    padding-left: 0;
    border-left: none;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-item:nth-child(2) {
    border-right: none;
  }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid var(--rule);
  }
}

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

  .site-header__inner {
    width: calc(100% - 1.5rem);
    padding: 0.75rem 0;
    gap: 0.75rem;
  }

  .brand__logo {
    height: 74px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
    padding: 0.7rem 1rem;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--rule);
    padding: 1.5rem;
    flex-direction: column;
    gap: 1.25rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__links {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
  }

  .compare-cards {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* ── Focus ── */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .arrow-link::after {
    transition: none;
  }
}
