:root {
  --navy-950: #06172d;
  --navy-900: #0c2442;
  --navy-800: #12365d;
  --navy-700: #1d4c78;
  --blue-100: #e8f2fa;
  --blue-50: #f5f9fc;
  --red-700: #a7192f;
  --red-600: #c72d43;
  --red-500: #de4558;
  --ink: #182738;
  --muted: #647687;
  --line: #dce6ed;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(6, 23, 45, 0.13);
  --radius-lg: 1.75rem;
  --radius-md: 1.1rem;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--ink);
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  left: 1rem;
  top: -4rem;
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  background: var(--white);
  color: var(--navy-900);
  box-shadow: var(--shadow);
}

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

.container {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(220, 230, 237, 0.8);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 3rem));
  min-height: 5.25rem;
  margin: 0 auto;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo-wrap {
  position: relative;
  display: grid;
  width: 10rem;
  height: 4.25rem;
  align-items: center;
  overflow: hidden;
}

.brand-logo {
  position: absolute;
  z-index: 1;
  top: -1.78rem;
  left: 0;
  width: 10rem;
  max-width: none;
  max-height: none;
}

.brand-logo.asset-missing {
  visibility: hidden;
}

.brand-fallback,
.footer-brand {
  display: inline-flex;
  flex-direction: column;
  font-family: "Outfit", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 0.9;
}

.brand-fallback {
  position: absolute;
  inset: 0;
  justify-content: center;
  color: var(--navy-900);
}

.brand-fallback span,
.footer-brand span {
  font-size: 1.4rem;
}

.brand-fallback small,
.footer-brand small {
  margin-top: 0.25rem;
  color: var(--red-600);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.35rem);
  margin-left: auto;
}

.desktop-nav a,
.footer-links a {
  color: #42586c;
  font-size: 0.94rem;
  font-weight: 600;
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--red-600);
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 0;
  border-radius: 0.7rem;
  padding: 0.78rem 1rem;
  background: var(--navy-900);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 160ms ease, transform 160ms ease;
}

.header-call:hover {
  background: var(--red-600);
  transform: translateY(-1px);
}

.phone-mark {
  display: grid;
  width: 1.05rem;
  height: 1.05rem;
  place-items: center;
  transform: rotate(-15deg);
  font-size: 1rem;
  font-weight: 700;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(6, 23, 45, 0.99) 0%, rgba(10, 37, 68, 0.98) 63%, rgba(10, 44, 77, 0.97) 100%);
  color: var(--white);
}

.hero::after {
  position: absolute;
  z-index: 0;
  right: -4rem;
  bottom: -11rem;
  width: min(68vw, 59rem);
  height: min(68vw, 59rem);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(22rem, 0.97fr);
  min-height: 38rem;
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: center;
  padding-top: 4.8rem;
  padding-bottom: 4.6rem;
}

.hero-copy {
  max-width: 42rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.2rem;
  color: #cbdbe9;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 1.8rem;
  height: 0.12rem;
  background: var(--red-500);
}

.eyebrow-blue {
  color: var(--navy-700);
}

.hero h1,
.section-heading h2,
.work-heading-row h2,
.contact-copy h2,
.dialog-copy h2 {
  margin: 0;
  font-family: "Outfit", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.047em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 37rem;
  font-size: clamp(3.2rem, 6.2vw, 5.5rem);
}

.hero h1 em {
  color: #bcdcf3;
  font-style: normal;
}

.hero-lede {
  max-width: 33rem;
  margin: 1.75rem 0 0;
  color: #c3d3e1;
  font-size: 1.09rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.25rem;
}

.button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 1px solid transparent;
  border-radius: 0.72rem;
  padding: 0.8rem 1.25rem;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-red {
  border-color: var(--red-500);
  background: var(--red-600);
  color: var(--white);
}

.button-red:hover {
  background: var(--red-500);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.33);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.button-light:hover {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.13);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}

.trust-line {
  display: block;
  width: 3.1rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.46);
}

.hero-trust p {
  margin: 0;
  color: #c3d3e1;
  font-size: 0.82rem;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  width: min(100%, 29rem);
  justify-self: end;
  padding: 2.2rem 1.1rem 1rem 0;
}

.hero-image-frame {
  position: relative;
  overflow: hidden;
  min-height: 28rem;
  border-radius: 7rem 1.25rem 1.25rem 1.25rem;
  background:
    radial-gradient(circle at 50% 25%, rgba(83, 150, 199, 0.42), transparent 30%),
    linear-gradient(145deg, #082b4d, #174b78);
  box-shadow: 1.6rem 1.6rem 0 rgba(199, 45, 67, 0.78);
}

.hero-image-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 25, 45, 0.02) 20%, rgba(5, 25, 45, 0.28));
  content: "";
  pointer-events: none;
}

.hero-gauges {
  position: relative;
  z-index: 2;
  width: 118%;
  max-width: none;
  margin: 3.2rem 0 0 -9%;
  filter: drop-shadow(0 1.4rem 1.35rem rgba(0, 0, 0, 0.34));
}

.equipment-grid {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.72;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(151, 203, 237, 0.28) 12% 12.5%, transparent 12.5% 87%, rgba(151, 203, 237, 0.28) 87% 87.5%, transparent 87.5%),
    linear-gradient(0deg, transparent 0 18%, rgba(151, 203, 237, 0.18) 18% 18.3%, transparent 18.3% 81%, rgba(151, 203, 237, 0.18) 81% 81.3%, transparent 81.3%);
  background-size: 6rem 6rem;
}

.equipment-grid::before {
  position: absolute;
  top: 4rem;
  left: 4rem;
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 50%;
  border: 1px solid rgba(163, 209, 240, 0.34);
  box-shadow: 0 0 0 1.25rem rgba(163, 209, 240, 0.07);
  content: "";
}

.quality-badge {
  position: absolute;
  z-index: 4;
  top: 1.75rem;
  right: -2.4rem;
  width: 7.1rem;
  height: 7.1rem;
  border: 0.28rem solid var(--white);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0.85rem 1.7rem rgba(1, 17, 33, 0.28);
  object-fit: cover;
}

.hero-ribbon {
  position: absolute;
  z-index: 4;
  top: 0;
  left: -1.7rem;
  padding: 0.75rem 1.1rem;
  transform: rotate(-5deg);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 0.5rem;
  background: var(--red-600);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-ribbon span {
  padding: 0 0.25rem;
  color: #ffc1ca;
}

.service-card {
  position: absolute;
  z-index: 4;
  bottom: 2.15rem;
  left: -2.55rem;
  display: flex;
  width: min(19rem, 77%);
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1rem 2rem rgba(1, 17, 33, 0.17);
  color: var(--navy-900);
}

.service-card-icon {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 0.55rem;
  background: var(--blue-100);
  color: var(--red-600);
}

.service-card span,
.service-card strong {
  display: block;
}

.service-card span {
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 600;
}

.service-card strong {
  margin-top: 0.15rem;
  font-size: 0.82rem;
  line-height: 1.2;
}

.hero-corner-note {
  position: absolute;
  z-index: 4;
  right: -1.2rem;
  bottom: -0.3rem;
  color: rgba(255, 255, 255, 0.65);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  top: -16rem;
  left: -12rem;
  width: 35rem;
  height: 35rem;
}

.hero-orbit-two {
  top: 12rem;
  left: 30%;
  width: 19rem;
  height: 19rem;
}

.intro-strip {
  border-bottom: 1px solid #dfeaf2;
  background: var(--blue-100);
}

.intro-strip-inner {
  display: flex;
  min-height: 5.7rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.intro-strip p {
  margin: 0;
  color: var(--navy-800);
  font-size: 1rem;
  font-weight: 700;
}

.intro-strip a {
  flex: 0 0 auto;
  color: var(--red-600);
  font-size: 0.9rem;
  font-weight: 700;
}

.intro-strip a span {
  padding-left: 0.3rem;
}

.section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.services-section {
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.6fr);
  align-items: end;
  gap: 3rem;
}

.section-heading h2,
.work-heading-row h2,
.contact-copy h2 {
  max-width: 40rem;
  color: var(--navy-900);
  font-size: clamp(2.4rem, 4.2vw, 4.2rem);
}

.section-heading > p,
.work-heading-row > p {
  max-width: 26rem;
  margin: 0 0 0.3rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3.25rem;
}

.service-tile {
  position: relative;
  min-height: 23.5rem;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-tile::before {
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 12rem;
  height: 12rem;
  border: 1px solid #e8f0f6;
  border-radius: 50%;
  content: "";
}

.service-tile:hover {
  border-color: #b9cce0;
  box-shadow: 0 1rem 2.2rem rgba(15, 47, 78, 0.08);
  transform: translateY(-0.25rem);
}

.service-tile-featured {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: var(--white);
}

.service-tile-featured::before {
  border-color: rgba(255, 255, 255, 0.12);
}

.tile-number {
  position: absolute;
  top: 1.75rem;
  right: 1.9rem;
  color: #9fb0bf;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.service-tile-featured .tile-number {
  color: #b5cae0;
}

.tile-icon {
  display: grid;
  width: 3.35rem;
  height: 3.35rem;
  place-items: center;
  border-radius: 0.8rem;
  background: var(--blue-100);
  color: var(--navy-800);
}

.service-tile-featured .tile-icon {
  background: var(--red-600);
  color: var(--white);
}

.tile-icon svg {
  width: 1.7rem;
  height: 1.7rem;
}

.service-tile h3 {
  margin: 4.45rem 0 0;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 1.7rem;
  letter-spacing: -0.03em;
}

.service-tile p {
  max-width: 19rem;
  margin: 0.8rem 0 1.8rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.service-tile-featured p {
  color: #c3d4e3;
}

.service-tile a {
  position: absolute;
  bottom: 2rem;
  color: var(--navy-800);
  font-size: 0.86rem;
  font-weight: 700;
}

.service-tile a span {
  padding-left: 0.4rem;
}

.service-tile-featured a {
  color: var(--white);
}

.work-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  background: #edf5fb;
}

.work-section::after {
  position: absolute;
  right: -13rem;
  bottom: -19rem;
  width: 38rem;
  height: 38rem;
  border: 1px solid rgba(18, 54, 93, 0.1);
  border-radius: 50%;
  content: "";
}

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

.work-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.work-topline a {
  color: var(--red-600);
  font-size: 0.88rem;
  font-weight: 700;
}

.work-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.55fr);
  align-items: end;
  gap: 3rem;
  margin-top: 0.35rem;
}

.project-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(16rem, 0.58fr);
  gap: 1rem;
  margin-top: 3.25rem;
}

.project-card {
  position: relative;
  min-height: 25.5rem;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--navy-800);
  color: var(--white);
  text-align: left;
  box-shadow: 0 0 0 0 rgba(12, 36, 66, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.project-card:hover {
  box-shadow: 0 1.1rem 2rem rgba(12, 36, 66, 0.17);
  transform: translateY(-0.25rem);
}

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

.project-frame,
.project-fallback {
  position: absolute;
  inset: 0;
}

.project-frame {
  overflow: hidden;
}

.project-frame img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.project-frame::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 22, 40, 0.04) 28%, rgba(4, 22, 40, 0.82) 100%);
  content: "";
}

.project-fallback {
  z-index: 0;
  overflow: hidden;
}

.project-fallback-dark {
  background: linear-gradient(130deg, #274d72, #6da2c3);
}

.fallback-unit {
  position: absolute;
  right: 18%;
  bottom: 13%;
  width: 38%;
  height: 44%;
  border: 0.65rem solid #dce9ef;
  border-radius: 0.9rem;
  background:
    repeating-linear-gradient(90deg, transparent 0 0.55rem, rgba(8, 40, 66, 0.7) 0.55rem 0.76rem),
    #7c9dae;
}

.fallback-lines {
  position: absolute;
  top: 15%;
  left: 12%;
  width: 12rem;
  height: 5rem;
  border-top: 0.17rem solid rgba(255, 255, 255, 0.75);
  border-bottom: 0.17rem solid rgba(255, 255, 255, 0.35);
  transform: skewY(-16deg);
}

.project-fallback-light {
  background: linear-gradient(140deg, #a3c7dd, #e1eef5);
}

.fallback-vent {
  position: absolute;
  top: 16%;
  left: 21%;
  width: 58%;
  height: 17%;
  border: 0.75rem solid #e5ebee;
  border-radius: 0.5rem;
  background: repeating-linear-gradient(90deg, #5c819a 0 0.3rem, #a8bdc9 0.3rem 0.6rem);
  box-shadow: 0 1rem 1.7rem rgba(14, 54, 85, 0.18);
}

.fallback-dots {
  position: absolute;
  bottom: -4rem;
  left: -3rem;
  width: 14rem;
  height: 14rem;
  border: 1.5rem dotted rgba(255, 255, 255, 0.42);
  border-radius: 50%;
}

.project-caption {
  position: absolute;
  z-index: 3;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  max-width: 22rem;
}

.project-caption span {
  display: block;
  margin-bottom: 0.45rem;
  color: #c0d9eb;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-caption strong {
  display: block;
  font-family: "Outfit", Arial, sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.project-arrow {
  position: absolute;
  z-index: 3;
  top: 1.5rem;
  right: 1.5rem;
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy-900);
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.project-card:hover .project-arrow {
  transform: rotate(45deg);
}

.reviews-section {
  background: var(--white);
}

.reviews-heading {
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.55fr);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1.08fr 1.08fr 0.84fr;
  gap: 1rem;
  margin-top: 3.25rem;
}

.review-card {
  display: flex;
  min-height: 21rem;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.review-card-primary {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: var(--white);
}

.quote-mark {
  color: #9fbcd3;
  font-family: Georgia, serif;
  font-size: 4.4rem;
  line-height: 0.7;
}

.review-card-primary .quote-mark {
  color: var(--red-500);
}

.review-placeholder {
  max-width: 17rem;
  margin: 2.15rem 0 auto;
  color: #597084;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.review-card-primary .review-placeholder {
  color: #e0edf6;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.review-avatar {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #dceaf4;
  color: var(--navy-800);
  font-size: 0.79rem;
  font-weight: 800;
}

.review-card-primary .review-avatar {
  background: var(--red-600);
  color: var(--white);
}

.review-footer strong,
.review-footer small {
  display: block;
}

.review-footer strong {
  color: var(--ink);
  font-size: 0.82rem;
}

.review-card-primary .review-footer strong {
  color: var(--white);
}

.review-footer small {
  margin-top: 0.08rem;
  color: var(--muted);
  font-size: 0.69rem;
}

.review-card-primary .review-footer small {
  color: #b5c9da;
}

.review-card-accent {
  justify-content: flex-start;
  border-color: transparent;
  background: var(--red-600);
  color: var(--white);
}

.review-card-accent .quote-mark {
  color: #ffd9dd;
}

.review-card-accent .review-placeholder {
  color: var(--white);
}

.review-card-accent .review-avatar {
  background: var(--white);
  color: var(--red-600);
}

.review-card-accent .review-footer strong {
  color: var(--white);
}

.review-card-accent .review-footer small {
  color: #ffd9dd;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: var(--blue-100);
}

.contact-wave {
  position: absolute;
  top: -19rem;
  right: -8rem;
  width: 46rem;
  height: 46rem;
  border: 1px solid rgba(23, 72, 113, 0.15);
  border-radius: 48% 52% 57% 43% / 43% 40% 60% 57%;
  transform: rotate(-16deg);
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 9rem);
}

.contact-copy h2 {
  margin-top: 0;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 29rem;
  margin: 1.4rem 0 0;
  color: #526c81;
  font-size: 1rem;
  line-height: 1.7;
}

.contact-options {
  display: grid;
  gap: 0.75rem;
}

.contact-option {
  display: grid;
  grid-template-columns: 2.75rem 1fr 1.5rem;
  align-items: center;
  gap: 0.9rem;
  width: 100%;
  padding: 1.05rem 1.15rem;
  border: 1px solid #c7dae9;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy-900);
  text-align: left;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.contact-option:hover {
  border-color: var(--navy-700);
  background: var(--white);
  transform: translateX(0.22rem);
}

.contact-icon {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border-radius: 0.7rem;
  background: var(--navy-900);
  color: var(--white);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.contact-icon-facebook {
  background: var(--red-600);
  font-family: Arial, sans-serif;
  font-size: 1.6rem;
}

.contact-option small,
.contact-option strong {
  display: block;
}

.contact-option small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 600;
}

.contact-option strong {
  margin-top: 0.1rem;
  font-size: 1rem;
}

.contact-email {
  font-size: clamp(0.77rem, 1.8vw, 1rem) !important;
}

.contact-chevron {
  color: var(--red-600);
  font-size: 1.25rem;
  font-weight: 700;
  transition: transform 160ms ease;
}

.contact-option:hover .contact-chevron {
  transform: translateX(0.2rem);
}

.site-footer {
  background: var(--navy-950);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.25fr auto;
  align-items: center;
  gap: 2rem;
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}

.footer-brand {
  color: var(--white);
}

.footer-brand small {
  color: #9ac5e2;
}

.footer-main > p {
  margin: 0;
  color: #b7cbdb;
  font-size: 0.86rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem 1.5rem;
}

.footer-links a {
  color: #c7d5e1;
  font-size: 0.8rem;
}

.footer-bottom {
  display: flex;
  min-height: 4.3rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: #8096a9;
  font-size: 0.72rem;
}

.footer-draft {
  color: #adc1d1 !important;
  font-weight: 700;
}

.project-dialog {
  width: min(52rem, calc(100% - 2rem));
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 1.25rem;
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.35);
}

.project-dialog::backdrop {
  background: rgba(4, 18, 34, 0.74);
  backdrop-filter: blur(5px);
}

.dialog-image {
  overflow: hidden;
  min-height: 19rem;
  background: linear-gradient(135deg, #6fa2c2, #e0eef5);
}

.dialog-project-image {
  width: 100%;
  height: min(43vw, 29rem);
  min-height: 19rem;
  object-fit: cover;
}

.dialog-copy {
  padding: 2rem;
}

.dialog-copy h2 {
  margin-top: 0.15rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.dialog-copy > p:not(.eyebrow) {
  max-width: 37rem;
  margin: 1.1rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 0.9rem;
  right: 0.9rem;
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy-900);
  font-size: 1.7rem;
  line-height: 1;
}

@media (max-width: 880px) {
  .desktop-nav,
  .header-call {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 2.7rem;
    height: 2.7rem;
    align-content: center;
    justify-content: center;
    gap: 0.28rem;
    border: 1px solid var(--line);
    border-radius: 0.65rem;
    background: var(--white);
  }

  .menu-toggle span {
    display: block;
    width: 1.15rem;
    height: 0.12rem;
    border-radius: 2rem;
    background: var(--navy-900);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(0.4rem) rotate(45deg);
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-0.4rem) rotate(-45deg);
  }

  .mobile-nav {
    display: grid;
    max-height: 0;
    overflow: hidden;
    background: var(--white);
    transition: max-height 220ms ease;
  }

  .mobile-nav.is-open {
    max-height: 20rem;
    border-top: 1px solid var(--line);
  }

  .mobile-nav a {
    padding: 1rem max(1.5rem, calc((100% - 1180px) / 2));
    border-bottom: 1px solid #edf2f6;
    color: var(--navy-900);
    font-weight: 700;
  }

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

  .hero-grid {
    min-height: 0;
    padding-top: 4.5rem;
  }

  .hero-visual {
    width: min(100%, 33rem);
    justify-self: start;
    margin: 0 auto;
  }

  .section-heading,
  .work-heading-row,
  .reviews-heading {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .section-heading > p,
  .work-heading-row > p {
    max-width: 38rem;
  }

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

  .service-tile {
    min-height: 18rem;
  }

  .project-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

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

  .review-card-accent {
    grid-column: 1 / -1;
    min-height: 14rem;
  }

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

  .footer-main > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 600px) {
  .container,
  .header-inner {
    width: min(100% - 2rem, 1180px);
  }

  .header-inner {
    min-height: 4.55rem;
  }

  .brand-logo-wrap {
    width: 8.8rem;
    height: 3.75rem;
  }

  .brand-logo {
    width: 8.8rem;
    top: -1.57rem;
  }

  .brand-fallback span {
    font-size: 1.2rem;
  }

  .hero-grid {
    padding-top: 3.55rem;
    padding-bottom: 3.9rem;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 14vw, 4rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-trust {
    margin-top: 2.35rem;
  }

  .hero-visual {
    padding-top: 2.2rem;
    padding-right: 0.55rem;
  }

  .hero-image-frame,
  .hero-project-photo {
    min-height: 22rem;
    height: 22rem;
  }

  .hero-ribbon {
    left: -0.55rem;
    padding: 0.62rem 0.8rem;
    font-size: 0.62rem;
  }

  .service-card {
    bottom: 1rem;
    left: -0.25rem;
  }

  .intro-strip-inner,
  .work-topline,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .intro-strip-inner {
    padding: 1.2rem 0;
  }

  .section {
    padding: 4.5rem 0;
  }

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

  .project-card {
    min-height: 22rem;
  }

  .project-card-wide {
    min-height: 25rem;
  }

  .review-card {
    min-height: 17rem;
  }

  .review-card-accent {
    grid-column: auto;
  }

  .contact-inner {
    gap: 2.5rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2.2rem 0;
  }

  .footer-main > p {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-bottom {
    min-height: 5.3rem;
    padding: 1.2rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
