:root {
  --navy: #071b3d;
  --blue: #0a3472;
  --blue-2: #0f4d9b;
  --yellow: #ffc400;
  --yellow-2: #ffda4a;
  --ink: #0d1a2e;
  --muted: #5f6979;
  --cloud: #f3f6fa;
  --white: #ffffff;
  --line: #dce3ec;
  --shadow: 0 22px 60px rgba(7, 27, 61, 0.14);
  --radius: 20px;
  --container: min(1160px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.05;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 6.4vw, 6.25rem);
  font-weight: 850;
}

h1 em {
  color: var(--yellow);
  font-style: normal;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.3rem, 4vw, 4.25rem);
  font-weight: 820;
}

h3 {
  font-size: 1.45rem;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  color: var(--navy);
  background: var(--yellow);
  border: 2px solid var(--yellow);
  border-radius: 10px;
  box-shadow: 0 11px 28px rgba(255, 196, 0, 0.22);
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--yellow-2);
  border-color: var(--yellow-2);
}

.button:focus-visible,
.filter-button:focus-visible,
.text-link:focus-visible,
.project-card:focus-visible,
.menu-toggle:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(255, 196, 0, 0.5);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding: 0 17px;
  font-size: 0.9rem;
}

.button-ghost {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: none;
}

.button-ghost:hover {
  color: var(--navy);
}

.button-dark {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 4px;
  background: var(--yellow);
  border-radius: 99px;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.72);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(220, 227, 236, 0.82);
  backdrop-filter: blur(16px);
}

.utility-bar {
  color: var(--white);
  background: var(--navy);
  font-size: 0.78rem;
}

.utility-inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  gap: 24px;
}

.utility-inner span:first-child {
  color: var(--yellow);
  font-weight: 800;
  text-transform: uppercase;
}

.utility-inner a {
  margin-left: auto;
  font-weight: 800;
  text-decoration: none;
}

.nav {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

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

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--navy);
  background: var(--yellow);
  clip-path: polygon(50% 0, 100% 24%, 100% 100%, 0 100%, 0 24%);
  font-size: 1rem;
  font-weight: 950;
}

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

.brand-copy strong {
  display: flex;
  align-items: center;
  color: var(--navy);
  font-size: 1.14rem;
  font-weight: 950;
  letter-spacing: 0.02em;
}

.brand-copy strong em {
  padding: 3px 6px 2px;
  margin-left: 5px;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 4px;
  font-style: normal;
  letter-spacing: 0;
}

.brand-subline {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 5px;
  color: var(--blue);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.075em;
}

.brand-subline small {
  padding: 2px 4px;
  color: var(--white);
  background: var(--blue);
  border-radius: 3px;
  font-size: 0.48rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

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

.nav-links > a:not(.button) {
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links > a:not(.button):hover {
  color: var(--blue-2);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 4px;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 22%, rgba(15, 77, 155, 0.88), transparent 38%),
    linear-gradient(135deg, #061631 0%, #071b3d 60%, #0b2d61 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.hero::before {
  width: 460px;
  height: 460px;
  top: -240px;
  left: -100px;
}

.hero::after {
  width: 680px;
  height: 680px;
  right: -360px;
  bottom: -400px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 720px;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 72px;
  padding-block: 80px;
}

.hero-copy .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.65vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-trust {
  display: grid;
  max-width: 650px;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 32px 0 0;
  margin: 38px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  list-style: none;
}

.hero-trust li {
  display: flex;
  flex-direction: column;
}

.hero-trust strong {
  color: var(--yellow);
  font-size: 1.26rem;
}

.hero-trust span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
}

.hero-visual {
  position: relative;
}

.image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.92;
  background: var(--blue);
  border: 8px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px 28px 90px 28px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.project-ribbon {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 18px 22px;
  background: rgba(7, 27, 61, 0.92);
  backdrop-filter: blur(12px);
}

.project-ribbon span {
  color: var(--yellow);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-ribbon strong {
  font-size: 0.92rem;
}

.veteran-seal {
  position: absolute;
  top: -28px;
  right: -24px;
  display: flex;
  width: 142px;
  height: 142px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--white);
  background: var(--blue-2);
  border: 7px solid var(--yellow);
  border-radius: 50%;
  box-shadow: var(--shadow);
  text-align: center;
  transform: rotate(5deg);
}

.veteran-seal span {
  color: var(--yellow);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
}

.veteran-seal strong {
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.veteran-seal small {
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.showcase {
  padding-block: 112px;
  background: var(--cloud);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  align-items: end;
  gap: 76px;
}

.split-heading > p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 1.03rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 48px;
}

.service-card {
  display: flex;
  min-height: 310px;
  padding: 28px;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(7, 27, 61, 0.05);
}

.service-card.featured {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.service-number {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: auto;
  place-items: center;
  color: var(--blue);
  background: rgba(10, 52, 114, 0.08);
  border-radius: 50%;
  font-size: 0.74rem;
  font-weight: 850;
}

.featured .service-number {
  color: var(--navy);
  background: var(--yellow);
}

.service-card h3 {
  margin: 30px 0 12px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.91rem;
}

.featured p {
  color: rgba(255, 255, 255, 0.7);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 0;
  color: var(--blue-2);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
}

.featured .text-link {
  color: var(--yellow);
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.project-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-top: 120px;
  scroll-margin-top: 120px;
}

.filter-group {
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 11px;
}

.filter-button {
  min-height: 38px;
  padding: 0 15px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.83rem;
  font-weight: 750;
}

.filter-button.active {
  color: var(--white);
  background: var(--blue);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.project-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.8;
  padding: 0;
  background: var(--navy);
  border: 0;
  border-radius: 18px;
  box-shadow: var(--shadow);
  cursor: pointer;
  text-align: left;
}

.project-card[hidden] {
  display: none;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 27, 61, 0.95), transparent 58%);
}

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

.project-card:first-child img {
  object-position: 50% 44%;
}

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

.project-card-copy {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 14px;
  align-items: end;
  padding: 28px;
  color: var(--white);
}

.project-card-copy small {
  grid-column: 1 / -1;
  color: var(--yellow);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-card-copy strong {
  font-size: 1.15rem;
}

.project-card-copy > span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  white-space: nowrap;
}

.why-strip {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 68px;
  margin-top: 108px;
  padding: 54px;
  color: var(--white);
  background:
    radial-gradient(circle at 0 100%, rgba(15, 77, 155, 0.65), transparent 42%),
    var(--navy);
  border-radius: 26px;
  scroll-margin-top: 120px;
}

.why-strip h2 {
  max-width: 480px;
  font-size: clamp(2.1rem, 3.4vw, 3.6rem);
}

.why-strip ul {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.why-strip li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 25px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.why-strip li:last-child {
  border-bottom: 0;
}

.why-strip li strong {
  color: var(--yellow);
}

.why-strip li span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.service-area-copy {
  grid-column: 1 / -1;
  padding-top: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

.contact-section {
  padding-block: 112px;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 78px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 142px;
}

.contact-copy p:not(.eyebrow) {
  max-width: 510px;
  margin-top: 24px;
  color: var(--muted);
}

.contact-options {
  display: grid;
  gap: 9px;
  margin-top: 34px;
}

.contact-options a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 17px;
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: 10px;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.contact-options a:hover {
  transform: translateX(3px);
  border-color: var(--blue-2);
}

.contact-options span {
  color: var(--blue-2);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-options strong {
  overflow-wrap: anywhere;
  font-size: 0.85rem;
  text-align: right;
}

.estimate-form {
  padding: 34px;
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.form-heading span {
  font-size: 1.18rem;
  font-weight: 850;
}

.form-heading small {
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.form-grid label {
  display: grid;
  gap: 8px;
}

.form-grid label > span {
  color: #344054;
  font-size: 0.79rem;
  font-weight: 800;
}

.full-width {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cbd5e1;
  border-radius: 9px;
}

input,
select {
  height: 48px;
  padding: 0 13px;
}

textarea {
  min-height: 128px;
  padding: 12px 13px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-2);
}

.form-submit {
  width: 100%;
  margin-top: 24px;
}

.form-note {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
}

.form-result {
  display: grid;
  gap: 7px;
  margin-top: 22px;
  padding: 20px;
  color: var(--white);
  background: var(--blue);
  border-radius: 12px;
}

.form-result[hidden] {
  display: none;
}

.form-result > span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.form-result > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.site-footer {
  padding-block: 34px;
  color: rgba(255, 255, 255, 0.68);
  background: #041027;
  font-size: 0.8rem;
}

.footer-inner,
.footer-inner > div {
  display: flex;
}

.footer-inner {
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-inner > div {
  flex-direction: column;
}

.footer-inner > div:last-child {
  align-items: end;
  text-align: right;
}

.footer-inner strong {
  color: var(--yellow);
}

.profile-links {
  display: grid;
  gap: 10px;
}

.profile-links > span {
  color: var(--white);
  font-weight: 800;
}

.profile-links > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile-links a {
  padding: 7px 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.profile-links a:hover,
.profile-links a:focus-visible {
  color: var(--navy);
  background: var(--yellow);
  border-color: var(--yellow);
}

.mobile-actions {
  display: none;
}

.project-dialog {
  width: min(1040px, calc(100% - 38px));
  max-height: 92vh;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
}

.project-dialog::backdrop {
  background: rgba(2, 10, 26, 0.86);
  backdrop-filter: blur(8px);
}

.project-dialog figure {
  position: relative;
  overflow: hidden;
  max-height: 88vh;
  margin: 0;
  background: var(--navy);
  border-radius: 18px;
}

.project-dialog img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.project-dialog figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  color: var(--white);
  background: rgba(7, 27, 61, 0.92);
}

.project-dialog figcaption small {
  color: var(--yellow);
  font-weight: 800;
  text-transform: uppercase;
}

.dialog-close,
.dialog-arrow {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--yellow);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.dialog-close {
  top: -17px;
  right: -17px;
  width: 42px;
  height: 42px;
  font-size: 1.6rem;
}

.dialog-arrow {
  top: 50%;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  transform: translateY(-50%);
}

.dialog-arrow.previous {
  left: -23px;
}

.dialog-arrow.next {
  right: -23px;
}

@media (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 38px;
  }

  .veteran-seal {
    right: -8px;
  }

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

  .contact-grid {
    grid-template-columns: 0.86fr 1.14fr;
    gap: 42px;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 78px;
  }

  .utility-inner span:nth-child(2) {
    display: none;
  }

  .nav {
    min-height: 70px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(4) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: 104px;
    right: 0;
    left: 0;
    display: grid;
    padding: 24px 20px 28px;
    gap: 8px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(7, 27, 61, 0.12);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links > a:not(.button) {
    padding: 13px 10px;
    border-bottom: 1px solid var(--line);
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 72px 86px;
  }

  .hero-visual {
    width: min(620px, 100%);
  }

  .image-frame {
    aspect-ratio: 1.18;
  }

  .split-heading,
  .contact-grid,
  .why-strip {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 26px;
  }

  .split-heading > p {
    max-width: 680px;
  }

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

  .project-card:last-child {
    grid-column: 1 / -1;
    aspect-ratio: 1.8;
  }

  .why-strip {
    gap: 30px;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(100% - 28px, 1160px);
  }

  body {
    padding-bottom: 62px;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.25rem);
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  .utility-inner {
    gap: 10px;
    justify-content: space-between;
  }

  .utility-inner a {
    margin-left: 0;
  }

  .brand-copy strong {
    font-size: 1.02rem;
  }

  .brand-copy small {
    font-size: 0.48rem;
  }

  .nav-links {
    top: 104px;
  }

  .hero-grid {
    gap: 54px;
    padding-block: 56px 72px;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-trust {
    gap: 10px;
  }

  .hero-trust strong {
    font-size: 1.05rem;
  }

  .hero-trust span {
    font-size: 0.7rem;
  }

  .image-frame {
    aspect-ratio: 0.92;
    border-radius: 22px 22px 64px 22px;
  }

  .project-ribbon {
    align-items: start;
    flex-direction: column;
  }

  .veteran-seal {
    top: -34px;
    right: -5px;
    width: 112px;
    height: 112px;
    border-width: 5px;
  }

  .veteran-seal strong {
    font-size: 0.85rem;
  }

  .showcase,
  .contact-section {
    padding-block: 78px;
  }

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

  .service-card {
    min-height: 280px;
  }

  .project-header {
    align-items: start;
    flex-direction: column;
    margin-top: 86px;
  }

  .filter-group {
    width: 100%;
  }

  .filter-button {
    flex: 1;
  }

  .project-card,
  .project-card:last-child {
    grid-column: auto;
    aspect-ratio: 0.86;
  }

  .why-strip {
    margin-top: 78px;
    padding: 32px 24px;
  }

  .why-strip li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-grid {
    gap: 44px;
  }

  .contact-options a {
    align-items: start;
    flex-direction: column;
    gap: 3px;
  }

  .contact-options strong {
    text-align: left;
  }

  .estimate-form {
    padding: 23px;
  }

  .full-width {
    grid-column: auto;
  }

  .footer-inner,
  .footer-inner > div:last-child {
    align-items: start;
    flex-direction: column;
    text-align: left;
  }

  .profile-links {
    width: 100%;
  }

  .mobile-actions {
    position: fixed;
    z-index: 45;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1.35fr;
    min-height: 62px;
    padding-bottom: env(safe-area-inset-bottom);
    background: var(--navy);
    box-shadow: 0 -10px 28px rgba(7, 27, 61, 0.2);
  }

  .mobile-actions a {
    display: grid;
    place-items: center;
    color: var(--white);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.83rem;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-actions a.primary {
    color: var(--navy);
    background: var(--yellow);
  }

  .project-dialog {
    width: calc(100% - 20px);
  }

  .dialog-arrow {
    top: auto;
    bottom: 68px;
    transform: none;
  }

  .dialog-arrow.previous {
    left: 10px;
  }

  .dialog-arrow.next {
    right: 10px;
  }

  .dialog-close {
    top: 10px;
    right: 10px;
  }

  .project-dialog figcaption {
    align-items: start;
    flex-direction: column;
    gap: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
