:root {
  --blue: #0a1d4d;
  --blue-deep: #08163d;
  --blue-card: #0e2560;
  --gold: #d89a00;
  --gold-bright: #f0b000;
  --text: #25304a;
  --muted: #6e7485;
  --line: #e4e6ed;
  --paper: #ffffff;
  --soft: #f5f6f8;
  --shadow: 0 18px 46px rgba(8, 22, 61, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--paper);
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 200;
  transform: translateY(-140%);
  background: var(--gold);
  color: var(--blue);
  padding: 10px 14px;
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1280px, calc(100% - 56px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-solid,
.site-header.is-open {
  background: rgba(8, 22, 61, 0.95);
  border-bottom-color: rgba(216, 154, 0, 0.72);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.site-nav {
  width: min(1280px, calc(100% - 56px));
  margin: 0 auto;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  min-width: 0;
}

.brand-logo {
  width: 74px;
  height: 60px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: "League Spartan", sans-serif;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-tagline {
  margin-top: 5px;
  font-size: 9px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a,
.mobile-menu a {
  color: #eaecf5;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus,
.mobile-menu a:hover,
.mobile-menu a:focus {
  color: var(--gold);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--blue);
  border: 2px solid var(--gold);
  min-height: 46px;
  padding: 14px 30px;
  font-family: "League Spartan", sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-1px);
}

.button-small {
  min-height: 40px;
  padding: 11px 18px;
  font-size: 12px;
}

.button-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
}

.button-secondary:hover,
.button-secondary:focus {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  width: min(1280px, calc(100% - 56px));
  margin: 0 auto 16px;
  padding: 8px 0 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: calc(100vh - 92px);
  overflow-y: auto;
}

.mobile-menu a:not(.button) {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.section {
  padding: 92px 0;
}

section[id] {
  scroll-margin-top: 96px;
}

.section-light {
  background: #fff;
}

.section-muted {
  background: var(--soft);
}

.section-dark {
  position: relative;
  background: var(--blue);
  color: #fff;
  overflow: hidden;
}

.section-content {
  position: relative;
  z-index: 1;
}

.hero {
  min-height: 92vh;
  padding-top: 92px;
  display: flex;
  align-items: stretch;
}

.hero-bg,
.hero-shade,
.grid-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background: url("assets/hero-1536.jpg") center / cover no-repeat;
}

.hero-shade {
  background: linear-gradient(100deg, rgba(8, 18, 54, 0.78) 0%, rgba(8, 18, 54, 0.62) 46%, rgba(8, 18, 54, 0.28) 100%);
}

.grid-overlay {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: calc(92vh - 92px);
  flex-direction: column;
  justify-content: center;
  padding: 78px 0 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: "League Spartan", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 38px;
  height: 3px;
  background: currentColor;
  flex: 0 0 auto;
}

.eyebrow-dark {
  color: var(--gold);
}

.hero h1,
.section-title {
  margin: 0;
  color: var(--blue);
  font-family: "League Spartan", sans-serif;
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 14ch;
  color: #fff;
  font-family: Anton, sans-serif;
  font-size: clamp(46px, 7vw, 104px);
  font-weight: 400;
  line-height: 0.95;
}

.hero h1 span {
  color: var(--gold);
}

.hero-copy {
  max-width: 58ch;
  margin: 28px 0 0;
  color: #cbd2e6;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 300;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: auto;
  padding: 34px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.stat {
  min-width: 0;
}

.stat-number,
.stat-suffix {
  color: var(--gold);
  font-family: Anton, sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
}

.stat-label {
  display: block;
  margin-top: 8px;
  color: #aeb6d6;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-strip {
  background: var(--gold);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 36px;
  padding: 15px 0;
}

.trust-list span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-family: "League Spartan", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-list span::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--blue);
  transform: rotate(45deg);
}

.section-title {
  max-width: 20ch;
  font-size: clamp(30px, 4vw, 46px);
}

.section-title.compact {
  margin-bottom: 38px;
}

.title-light {
  color: #fff;
}

.section-lead,
.section-heading-row p,
.about p,
.contact p {
  max-width: 62ch;
  color: #333;
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.72;
}

.section-lead {
  margin: 14px 0 46px;
}

.why-grid,
.service-grid,
.project-grid,
.testimonial-grid {
  display: grid;
  gap: 22px;
}

.why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.why-card {
  padding: 30px 26px;
  background: var(--soft);
  border-top: 3px solid var(--gold);
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.why-card:hover {
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.why-card span,
.service-top span {
  color: var(--gold);
  font-family: Anton, sans-serif;
  font-size: 34px;
  line-height: 1;
}

.why-card h3,
.service-card h3,
.mission-grid h3,
.values h3,
.project-card h3,
.quote-form h3,
.form-success h3 {
  margin: 16px 0 10px;
  font-family: "League Spartan", sans-serif;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-transform: uppercase;
}

.why-card h3 {
  color: var(--blue);
}

.why-card p {
  margin: 0;
  color: #333;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
}

.services {
  position: relative;
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 48px;
}

.section-heading-row p {
  margin: 0;
  color: #aeb6d6;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  display: flex;
  min-height: 272px;
  flex-direction: column;
  padding: 28px 24px;
  background: var(--blue-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.service-card:hover {
  background: #112a6e;
  border-color: rgba(216, 154, 0, 0.8);
  transform: translateY(-2px);
}

.service-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.service-top small {
  color: rgba(255, 255, 255, 0.42);
  font-family: "Courier New", monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-card h3 {
  color: #fff;
}

.service-card p {
  margin: 0 0 16px;
  color: #c0c7e2;
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.62;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.chips span {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #aeb6d6;
  padding: 4px 9px;
  font-size: 11px;
  letter-spacing: 0.02em;
}

.service-card a {
  margin-top: 20px;
  color: var(--gold);
  font-family: "League Spartan", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.note {
  border-left: 2px solid var(--gold);
  padding-left: 14px;
  color: #7b8190 !important;
  font-size: 13px !important;
  font-style: italic;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 32px;
  margin-top: 28px;
}

.mission-grid h3,
.values h3 {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 14px;
  letter-spacing: 0.04em;
}

.mission-grid p {
  margin: 0;
  font-size: 13.5px;
}

.values {
  margin-top: 32px;
}

.value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.value-list span {
  padding: 8px 14px;
  background: var(--soft);
  border-left: 3px solid var(--gold);
  color: var(--blue);
  font-size: 12.5px;
  font-weight: 600;
}

.photo-panel {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.photo-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.cert-panel {
  background: var(--blue);
  color: #fff;
  padding: 22px 24px;
}

.cert-panel small {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-family: "Courier New", monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cert-panel p {
  margin: 0;
  color: #c8cee4;
  font-size: 12.5px;
  line-height: 1.6;
}

.project-note {
  max-width: 70ch;
  margin-bottom: 40px;
}

.project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.project-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.project-card:hover {
  border-color: rgba(216, 154, 0, 0.9);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.project-card figure {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #e9e9ee;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.project-card:hover img {
  transform: scale(1.03);
}

.project-card figcaption {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--blue);
  color: #fff;
  padding: 6px 11px;
  font-family: "League Spartan", sans-serif;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 24px 26px;
}

.project-body h3 {
  margin-top: 0;
  color: var(--blue);
  font-size: 20px;
}

.project-meta {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.project-body p:not(.project-meta) {
  color: #333;
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.65;
}

.project-scope {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #eeeeee;
}

.project-scope strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-family: "League Spartan", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.chips-light {
  margin: 0 0 14px;
}

.chips-light span {
  background: var(--soft);
  border: 0;
  color: #555;
}

.project-scope small {
  color: #7b8190;
  font-size: 12px;
}

.testimonials {
  position: relative;
}

.testimonial-note {
  margin: 0 0 40px;
  color: #8a93bb;
  font-size: 12.5px;
  font-style: italic;
}

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

.testimonial-grid article {
  background: var(--blue-card);
  border-top: 3px solid var(--gold);
  padding: 30px 28px;
}

.quote-mark {
  display: block;
  height: 22px;
  color: var(--gold);
  font-family: Anton, sans-serif;
  font-size: 44px;
  line-height: 0.5;
}

.testimonial-grid p {
  margin: 0 0 22px;
  color: #dde2f2;
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.7;
}

.testimonial-grid footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}

.testimonial-grid strong {
  color: #fff;
  font-size: 13.5px;
}

.testimonial-grid small {
  color: #8a93bb;
  font-size: 11.5px;
}

.contact-grid {
  align-items: start;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 28px 0 24px;
}

.contact-list div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border-left: 3px solid var(--gold);
}

.contact-list strong {
  width: 82px;
  flex: 0 0 auto;
  color: #7b8190;
  font-family: "League Spartan", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-list span,
.contact-list a {
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
}

.emergency-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--blue);
  color: #fff;
  padding: 18px 22px;
  text-decoration: none;
  transition: background-color 160ms ease;
}

.emergency-link:hover,
.emergency-link:focus {
  background: var(--blue-deep);
}

.emergency-link span {
  font-family: "League Spartan", sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.emergency-link strong {
  color: var(--gold);
  font-size: 15px;
}

.quote-card {
  min-height: 100%;
  background: var(--blue);
  padding: 38px 36px;
  box-shadow: var(--shadow);
}

.quote-form h3,
.form-success h3 {
  margin: 0 0 24px;
  color: #fff;
  font-size: 23px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quote-form label {
  display: block;
  margin-top: 14px;
}

.quote-form .form-grid label {
  margin-top: 0;
}

.quote-form label span {
  display: block;
  margin-bottom: 7px;
  color: #aeb6d6;
  font-size: 12px;
  font-weight: 600;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--blue-card);
  color: #fff;
  padding: 13px 14px;
  font: inherit;
  font-size: 14px;
  outline: none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--gold);
}

.quote-form textarea {
  resize: vertical;
}

.quote-form button {
  width: 100%;
  margin-top: 18px;
}

.form-note {
  margin: 14px 0 0 !important;
  color: #8a93bb !important;
  font-size: 11.5px !important;
  text-align: center;
}

.form-success {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-success span {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--blue);
  font-family: "League Spartan", sans-serif;
  font-size: 15px;
  font-weight: 900;
}

.form-success p {
  margin: 0;
  color: #c8cee4;
}

.site-footer {
  background: var(--blue-deep);
  color: #fff;
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #fff;
  font-family: "League Spartan", sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.footer-brand img {
  width: 48px;
  height: 40px;
  object-fit: contain;
}

.footer-line {
  margin: 0 0 14px !important;
  color: var(--gold) !important;
  font-family: "League Spartan", sans-serif;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer p {
  max-width: 40ch;
  margin: 0;
  color: #9aa3c6;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
}

.site-footer h3 {
  margin: 0 0 16px;
  color: #fff;
  font-family: "League Spartan", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer a:not(.button),
.site-footer span {
  display: block;
  color: #9aa3c6;
  font-size: 13.5px;
  line-height: 1.5;
  text-decoration: none;
}

.site-footer a:not(.button) + a,
.site-footer span + span,
.site-footer span + a {
  margin-top: 11px;
}

.site-footer .button {
  margin-top: 18px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
}

.footer-bottom > span {
  color: #6d77a0;
  font-size: 12px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  min-width: 82px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #9aa3c6;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 160ms ease, color 160ms ease;
}

.social-links a + a {
  margin-top: 0;
}

.social-links a:hover,
.social-links a:focus {
  border-color: var(--gold);
  color: var(--gold);
}

[hidden] {
  display: none !important;
}

@media (max-width: 1180px) {
  .service-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 960px) {
  .site-nav {
    min-height: 76px;
  }

  .brand-logo {
    width: 62px;
    height: 52px;
  }

  .brand-name {
    font-size: 17px;
  }

  .brand-tagline {
    letter-spacing: 0.16em;
  }

  .nav-links,
  .nav-quote {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 78px;
  }

  .hero-inner {
    min-height: calc(88vh - 78px);
    padding-top: 60px;
  }

  .stats-grid,
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .contact-grid {
    gap: 40px;
  }

  .project-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .section-heading-row {
    display: block;
  }

  .section-heading-row p {
    margin-top: 16px;
  }
}

@media (max-width: 700px) {
  .container,
  .site-nav,
  .mobile-menu {
    width: min(100% - 36px, 1280px);
  }

  .section {
    padding: 62px 0;
  }

  section[id] {
    scroll-margin-top: 82px;
  }

  .hero {
    min-height: auto;
    padding-top: 78px;
  }

  .hero-bg {
    background-image: url("assets/hero-768.jpg");
    background-position: center top;
  }

  .hero-inner {
    min-height: auto;
    padding: 52px 0 24px;
  }

  .brand-copy {
    display: none;
  }

  .hero h1 {
    font-size: clamp(39px, 14vw, 64px);
    line-height: 0.98;
  }

  .hero-copy {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.62;
  }

  .hero-actions,
  .button-secondary {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 48px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .service-grid,
  .why-grid,
  .mission-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
    margin-top: 34px;
    padding: 24px 0 0;
  }

  .stat-number,
  .stat-suffix {
    font-size: 36px;
  }

  .stat-label {
    font-size: 10.5px;
    letter-spacing: 0.08em;
  }

  .service-card {
    min-height: 0;
  }

  .photo-panel img {
    aspect-ratio: 16 / 11;
  }

  .contact-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .contact-list strong {
    width: auto;
  }

  .quote-card {
    padding: 30px 24px;
  }

  .quote-form input,
  .quote-form select,
  .quote-form textarea {
    font-size: 16px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .eyebrow {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
    letter-spacing: 0.16em;
  }
}
