:root {
  --ink: #10202b;
  --muted: #5c6b73;
  --line: #dce5e1;
  --paper: #f7faf8;
  --white: #ffffff;
  --solar: #f7b733;
  --solar-dark: #bb7115;
  --gold: #c49a4b;
  --sunrise: #ff8a3d;
  --sky: #1ca7d7;
  --aqua: #28c7b7;
  --leaf: #1f7a5c;
  --teal: #0c5b68;
  --night: #0c2730;
  --blueprint: #073b73;
  --shadow: 0 18px 45px rgba(16, 32, 43, 0.12);
  --glow: 0 20px 55px rgba(28, 167, 215, 0.2);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f7fbff 0%, var(--paper) 42%, #ffffff 100%);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Noto Sans SC",
    sans-serif;
  line-height: 1.6;
}

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

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 52px);
  color: var(--white);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 30px rgba(16, 32, 43, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  min-width: max-content;
}

.brand-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 4px;
  object-fit: contain;
}

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

.brand strong {
  font-size: 0.98rem;
  line-height: 1.15;
}

.brand small {
  margin-top: 2px;
  color: currentColor;
  font-size: 0.76rem;
  opacity: 0.75;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 36px);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--solar);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: var(--night);
  font-size: 0.9rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--solar), #ffd76f);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(247, 183, 51, 0.22);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 90vh;
  overflow: hidden;
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 52%, rgba(247, 183, 51, 0.22) 52.2% 52.9%, transparent 53.2%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 54px);
  mix-blend-mode: screen;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(110deg, rgba(5, 23, 35, 0.86) 0%, rgba(7, 51, 115, 0.56) 42%, rgba(28, 167, 215, 0.14) 100%),
    linear-gradient(0deg, rgba(5, 23, 35, 0.5), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 36px));
  margin: auto;
  padding-top: 112px;
  padding-bottom: 60px;
}

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

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

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.4rem, 6.3vw, 6.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.04rem, 1.6vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  font-weight: 850;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--night);
  background: linear-gradient(135deg, var(--solar), #ffe18c 52%, #ffc24a);
  box-shadow: 0 16px 34px rgba(247, 183, 51, 0.34);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #ffd06b;
}

.btn-secondary {
  color: var(--white);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(28, 167, 215, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(10px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 180px));
  gap: 10px;
  width: min(100%, 560px);
  margin: 34px 0 0;
}

.hero-stats div {
  min-height: 74px;
  padding: 14px 16px;
  background:
    linear-gradient(155deg, rgba(9, 31, 38, 0.7), rgba(12, 91, 104, 0.45)),
    rgba(9, 31, 38, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.hero-stats dt {
  color: #ffd768;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.section {
  padding: clamp(58px, 8vw, 96px) 0;
}

.section-band {
  padding: 42px 0;
  background:
    linear-gradient(90deg, rgba(28, 167, 215, 0.12), rgba(247, 183, 51, 0.18), rgba(40, 199, 183, 0.12)),
    var(--white);
  border-bottom: 1px solid var(--line);
}

.section-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.proof-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.proof-grid span {
  min-height: 38px;
  padding: 8px 16px;
  color: var(--night);
  font-size: 0.88rem;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(28, 167, 215, 0.18);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(16, 32, 43, 0.06);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
}

.section-heading {
  max-width: 680px;
  margin-bottom: clamp(26px, 4vw, 44px);
}

.section-intro {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.field-built {
  background:
    linear-gradient(120deg, rgba(7, 59, 115, 0.08), transparent 34%),
    linear-gradient(315deg, rgba(196, 154, 75, 0.16), transparent 42%),
    var(--white);
}

.field-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
}

.field-copy {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(7, 59, 115, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 20px 54px rgba(7, 59, 115, 0.1);
}

.field-copy p {
  margin: 0;
  font-size: 1.04rem;
}

.field-copy p:first-child {
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.45;
}

.logo-panel {
  width: min(100%, 360px);
  margin-top: 26px;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
}

.logo-panel img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.local-proof {
  background:
    linear-gradient(180deg, #f7fbff, #edf4f0);
  border-top: 1px solid rgba(7, 59, 115, 0.08);
  border-bottom: 1px solid rgba(7, 59, 115, 0.08);
}

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

.local-card {
  min-height: 360px;
  padding: clamp(26px, 4vw, 42px);
  background: var(--white);
  border: 1px solid rgba(7, 59, 115, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(16, 32, 43, 0.08);
}

.local-card h2 {
  max-width: 560px;
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.local-card p:last-child {
  margin-bottom: 0;
}

.dark-card {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(196, 154, 75, 0.26), transparent 34%),
    linear-gradient(145deg, #061b3c, #073b73 58%, #0c5b68);
  border-color: rgba(255, 255, 255, 0.14);
}

.dark-card p {
  color: rgba(255, 255, 255, 0.78);
}

.section-heading p:last-child {
  margin-bottom: 0;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 248, 0.94)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 26px rgba(16, 32, 43, 0.06);
}

.service-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--sky), var(--solar), var(--aqua));
}

.service-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--solar), var(--sunrise), var(--sky));
}

.service-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--aqua), var(--sky), var(--blueprint));
}

.service-card:nth-child(4)::before {
  background: linear-gradient(90deg, var(--leaf), var(--aqua), var(--solar));
}

.service-card .icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--night);
  font-size: 0.85rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffe08a, var(--solar));
  border-radius: var(--radius);
  box-shadow: 0 10px 22px rgba(247, 183, 51, 0.22);
}

.service-card p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.service-tag {
  display: inline-flex;
  min-height: 30px;
  margin-top: 18px;
  padding: 6px 10px;
  align-items: center;
  color: var(--blueprint);
  font-size: 0.78rem;
  font-weight: 900;
  background: rgba(28, 167, 215, 0.1);
  border: 1px solid rgba(28, 167, 215, 0.2);
  border-radius: 999px;
}

.service-card:nth-child(2) .service-tag {
  color: #8b4a05;
  background: rgba(247, 183, 51, 0.14);
  border-color: rgba(247, 183, 51, 0.26);
}

.service-card:nth-child(3) .service-tag {
  color: #055f67;
  background: rgba(40, 199, 183, 0.14);
  border-color: rgba(40, 199, 183, 0.26);
}

.service-card:nth-child(4) .service-tag {
  color: #1b674f;
  background: rgba(31, 122, 92, 0.12);
  border-color: rgba(31, 122, 92, 0.24);
}

.process-section {
  background:
    linear-gradient(135deg, rgba(7, 59, 115, 0.08), rgba(40, 199, 183, 0.12) 48%, rgba(247, 183, 51, 0.12)),
    #edf4f0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 8vw, 96px);
}

.sticky-copy {
  align-self: start;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blueprint);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 26px rgba(16, 32, 43, 0.05);
}

.timeline article::after {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 45px;
  width: 2px;
  content: "";
  background: linear-gradient(180deg, rgba(247, 183, 51, 0.8), rgba(28, 167, 215, 0));
  transform: translateX(-50%);
}

.timeline span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(145deg, var(--blueprint), var(--sky));
  border-radius: var(--radius);
}

.timeline p {
  margin-bottom: 0;
}

.projects {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6fbff 44%, #ffffff 100%);
}

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

.project-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 clamp(24px, 4vw, 36px);
}

.project-metrics div {
  min-height: 118px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 248, 0.92));
  border: 1px solid rgba(7, 59, 115, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(16, 32, 43, 0.06);
}

.project-metrics strong {
  display: block;
  color: var(--blueprint);
  font-size: clamp(1.15rem, 2vw, 1.9rem);
  line-height: 1.05;
}

.project-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1.35;
}

.project-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
  border-radius: var(--radius);
  box-shadow: var(--glow);
}

.project-card.large {
  grid-column: span 2;
}

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

.project-card.no-distort img {
  object-fit: contain;
}

.project-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(7, 22, 28, 0.82), rgba(7, 22, 28, 0.08) 62%),
    linear-gradient(120deg, rgba(247, 183, 51, 0.24), transparent 44%, rgba(28, 167, 215, 0.18));
}

.project-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 26px;
}

.project-card p {
  max-width: 440px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.media-block {
  margin-top: clamp(34px, 6vw, 68px);
}

.media-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.media-heading h3 {
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}

.media-heading span {
  color: var(--blueprint);
  font-size: 0.9rem;
  font-weight: 800;
}

.photo-gallery,
.video-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.photo-tile,
.video-tile {
  overflow: hidden;
  background: var(--night);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(16, 32, 43, 0.09);
}

.photo-tile a,
.video-tile button {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 178px;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  text-align: left;
  background: var(--night);
  border: 0;
  cursor: pointer;
}

.photo-tile img,
.video-tile img {
  width: 100%;
  height: 100%;
  min-height: 178px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 220ms ease;
}

.photo-tile a::after,
.video-tile button::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(7, 22, 28, 0.78), rgba(7, 22, 28, 0.04) 62%),
    linear-gradient(135deg, rgba(28, 167, 215, 0.18), transparent 58%, rgba(247, 183, 51, 0.18));
}

.photo-tile span,
.video-meta {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 14px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.25;
}

.photo-tile:hover img,
.video-tile:hover img,
.photo-tile a:focus-visible img,
.video-tile button:focus-visible img {
  transform: scale(1.045);
}

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

.video-tile button {
  min-height: 230px;
}

.video-tile img {
  min-height: 230px;
}

.play-mark {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  background: linear-gradient(135deg, #ffe18c, var(--solar));
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.play-mark::before {
  width: 0;
  height: 0;
  margin-left: 4px;
  content: "";
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--night);
}

.video-meta {
  display: grid;
  gap: 4px;
}

.video-meta small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 700;
}

.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  padding: 24px;
  place-items: center;
  background: rgba(4, 18, 23, 0.86);
}

.video-lightbox[hidden] {
  display: none;
}

.lightbox-panel {
  width: min(960px, 100%);
  color: var(--white);
}

.lightbox-panel h3 {
  margin-bottom: 14px;
  color: var(--white);
}

.lightbox-panel video {
  width: 100%;
  max-height: min(70vh, 720px);
  background: #000;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 101;
  min-height: 42px;
  padding: 0 16px;
  color: var(--white);
  font-weight: 850;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  cursor: pointer;
}

.about {
  background:
    linear-gradient(135deg, rgba(247, 183, 51, 0.12), transparent 34%),
    linear-gradient(315deg, rgba(28, 167, 215, 0.12), transparent 38%),
    var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 8vw, 82px);
  align-items: center;
}

.about-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 24px 62px rgba(7, 59, 115, 0.18);
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.feature-list div {
  padding-top: 18px;
  border-top: 3px solid var(--solar);
}

.feature-list div:nth-child(2) {
  border-top-color: var(--sky);
}

.feature-list div:nth-child(3) {
  border-top-color: var(--aqua);
}

.feature-list p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.cta-band {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(247, 183, 51, 0.26), transparent 30%),
    linear-gradient(90deg, var(--night), var(--blueprint) 54%, var(--teal));
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.cta-grid h2 {
  max-width: 780px;
}

.contact {
  background:
    linear-gradient(180deg, #ffffff, #f6fbff);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(34px, 8vw, 86px);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  font-style: normal;
}

.contact-list span {
  display: block;
  padding-bottom: 14px;
  color: var(--muted);
  border-bottom: 1px solid rgba(28, 167, 215, 0.18);
}

.contact-list strong {
  display: block;
  color: var(--ink);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 250, 255, 0.94));
  border: 1px solid rgba(28, 167, 215, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 22px 58px rgba(7, 59, 115, 0.14);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cbd9d3;
  border-radius: var(--radius);
}

.contact-form input,
.contact-form select {
  min-height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  resize: vertical;
  padding: 13px 14px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(247, 183, 51, 0.35);
  border-color: var(--solar-dark);
}

.form-note {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  font-size: 0.86rem;
}

.form-note.is-success {
  color: var(--leaf);
  font-weight: 850;
}

.site-footer {
  padding: 30px 0;
  color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(90deg, #07161c, #073b73);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 10px;
    color: currentColor;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius);
  }

  .site-header.is-scrolled .nav-toggle,
  .site-header.is-open .nav-toggle {
    background: #edf4f0;
    border-color: var(--line);
  }

  .nav-toggle span:not(.sr-only) {
    width: 22px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 18px;
    left: 18px;
    display: none;
    grid-column: 1 / -1;
    gap: 0;
    overflow: hidden;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .proof-grid,
  .field-grid,
  .local-grid,
  .split,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .project-grid,
  .project-metrics,
  .photo-gallery,
  .video-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-card.large {
    grid-column: span 2;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

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

  .brand small {
    max-width: 150px;
    font-size: 0.64rem;
    line-height: 1.1;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .site-nav {
    top: 68px;
    right: 12px;
    left: 12px;
  }

  .hero {
    min-height: 800px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(9, 31, 38, 0.88) 0%, rgba(9, 31, 38, 0.66) 54%, rgba(9, 31, 38, 0.34) 100%),
      linear-gradient(90deg, rgba(9, 31, 38, 0.72), transparent);
  }

  .hero-content {
    width: min(100% - 28px, var(--max));
    padding-top: 112px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 12.4vw, 4.15rem);
  }

  .hero-copy {
    font-size: 1.02rem;
  }

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

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

  .hero-stats div {
    min-height: 82px;
    padding: 12px 10px;
  }

  .hero-stats dt {
    font-size: 0.98rem;
  }

  .hero-stats dd {
    font-size: 0.76rem;
  }

  .section-inner {
    width: min(100% - 28px, var(--max));
  }

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

  .field-copy,
  .local-card {
    padding: 22px;
  }

  .local-card {
    min-height: auto;
  }

  .project-card,
  .project-card.large {
    grid-column: auto;
  }

  .media-heading {
    display: grid;
    align-items: start;
  }

  .project-card,
  .project-card img {
    min-height: 340px;
  }

  .photo-gallery,
  .video-gallery {
    grid-template-columns: 1fr;
  }

  .photo-tile a,
  .photo-tile img {
    min-height: 210px;
  }

  .video-tile button,
  .video-tile img {
    min-height: 220px;
  }

  .timeline article {
    grid-template-columns: 46px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .timeline span {
    width: 40px;
    height: 40px;
  }

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

  .cta-grid {
    display: grid;
  }

  .cta-grid .btn {
    width: 100%;
  }

  .footer-grid {
    display: grid;
  }
}
