:root {
  color-scheme: light;
  --navy: #071528;
  --navy-2: #0d2038;
  --charcoal: #20262d;
  --slate: #52606d;
  --muted: #6d7782;
  --line: #d9dee5;
  --soft: #f3f6f9;
  --white: #ffffff;
  --blue: #2b78c2;
  --blue-dark: #1d5d9b;
  --shadow: 0 18px 48px rgba(7, 21, 40, 0.14);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

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

.skip-link,
.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:focus {
  z-index: 100;
  width: auto;
  height: auto;
  margin: 12px;
  padding: 10px 14px;
  clip: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 21, 40, 0.96);
  color: var(--white);
  backdrop-filter: blur(16px);
  transition:
    box-shadow 180ms ease,
    background 180ms ease;
}

.site-header.is-elevated {
  background: rgba(7, 21, 40, 0.99);
  box-shadow: 0 12px 30px rgba(7, 21, 40, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: fit-content;
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: #05070a;
  object-fit: cover;
}

.brand-lines {
  display: grid;
  gap: 1px;
}

.brand-lines span {
  font-size: 1rem;
  line-height: 1.1;
}

.brand-lines small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-toggle {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.nav-toggle span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 6px));
}

.nav-toggle span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 6px));
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.site-nav {
  position: absolute;
  top: calc(100% + 8px);
  right: 16px;
  left: 16px;
  display: none;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

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

.site-nav a {
  padding: 12px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  outline: none;
}

.site-nav .nav-cta {
  margin-top: 6px;
  background: var(--blue);
  color: var(--white);
  text-align: center;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 21, 40, 0.95) 0%, rgba(7, 21, 40, 0.86) 48%, rgba(7, 21, 40, 0.4) 100%),
    linear-gradient(0deg, rgba(7, 21, 40, 0.48), rgba(7, 21, 40, 0.12));
}

.hero-inner {
  display: grid;
  gap: 28px;
  padding: 52px 0 38px;
}

.hero-copy {
  max-width: 760px;
}

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

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

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

h1 {
  margin-bottom: 12px;
  font-size: 3.4rem;
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: 2.05rem;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-subheadline {
  max-width: 740px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-support {
  max-width: 670px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.02rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

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

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 26px rgba(43, 120, 194, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue-dark);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.hero-panel {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.hero-panel div {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(7, 21, 40, 0.68);
  backdrop-filter: blur(12px);
}

.hero-panel strong {
  color: var(--white);
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
}

.section {
  padding: 64px 0;
}

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

.band {
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin-bottom: 28px;
}

.section-heading p,
.lead,
.about-copy p,
.contact-copy p {
  color: var(--slate);
  font-size: 1.04rem;
}

.narrow {
  max-width: 720px;
}

.service-grid,
.project-grid {
  display: grid;
  gap: 16px;
}

.service-card,
.project-card,
.about-card,
.quote-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(7, 21, 40, 0.06);
}

.service-card {
  display: grid;
  align-content: start;
  min-height: 218px;
  padding: 22px;
  border-top: 4px solid var(--blue);
}

.service-card:nth-child(even) {
  border-top-color: var(--navy-2);
}

.service-card p {
  margin: 0;
  color: var(--slate);
}

.service-number {
  width: fit-content;
  margin-bottom: 28px;
  padding: 5px 8px;
  border-radius: 6px;
  background: var(--soft);
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.split-layout {
  display: grid;
  gap: 28px;
}

.feature-grid {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.feature-grid span,
.area-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--charcoal);
  font-weight: 800;
}

.feature-grid span::before,
.area-list span::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--blue);
}

.feature-grid span:nth-child(2n)::before,
.area-list span:nth-child(3n)::before {
  background: var(--navy-2);
}

.project-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.project-media {
  display: grid;
  min-height: 178px;
  place-items: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(7, 21, 40, 0.06) 25%, transparent 25%) 0 0 / 22px 22px,
    linear-gradient(135deg, transparent 75%, rgba(7, 21, 40, 0.06) 75%) 0 0 / 22px 22px,
    linear-gradient(145deg, #e7edf4, #ffffff);
}

.project-media.blue {
  background:
    linear-gradient(135deg, rgba(43, 120, 194, 0.1) 25%, transparent 25%) 0 0 / 22px 22px,
    linear-gradient(135deg, transparent 75%, rgba(43, 120, 194, 0.1) 75%) 0 0 / 22px 22px,
    linear-gradient(145deg, #ddeaf8, #ffffff);
}

.project-media.charcoal {
  background:
    linear-gradient(135deg, rgba(32, 38, 45, 0.08) 25%, transparent 25%) 0 0 / 22px 22px,
    linear-gradient(135deg, transparent 75%, rgba(32, 38, 45, 0.08) 75%) 0 0 / 22px 22px,
    linear-gradient(145deg, #dfe4e9, #ffffff);
}

.project-media.light {
  background:
    linear-gradient(135deg, rgba(82, 96, 109, 0.08) 25%, transparent 25%) 0 0 / 22px 22px,
    linear-gradient(135deg, transparent 75%, rgba(82, 96, 109, 0.08) 75%) 0 0 / 22px 22px,
    linear-gradient(145deg, #eef2f6, #ffffff);
}

.project-media span {
  padding: 9px 11px;
  border: 1px solid rgba(7, 21, 40, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card-body {
  display: grid;
  align-content: start;
  padding: 20px;
}

.project-card-body p {
  margin-bottom: 8px;
  color: var(--slate);
}

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

.project-status {
  color: var(--blue-dark) !important;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.process-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps li {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.process-steps span {
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.process-steps h3 {
  margin: 0;
  font-size: 1rem;
}

.about-grid {
  display: grid;
  gap: 18px;
}

.about-card {
  padding: 24px;
  background: var(--navy);
}

.about-logo {
  display: block;
  width: 116px;
  height: 116px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--white);
  object-fit: cover;
}

.about-card h2 {
  color: var(--white);
}

.about-copy {
  display: grid;
  gap: 14px;
}

.about-copy p {
  margin: 0;
}

.review-grid {
  display: grid;
  gap: 16px;
}

.review-card {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(7, 21, 40, 0.06);
}

.review-stars {
  color: var(--blue-dark);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
}

.review-card blockquote {
  margin-bottom: 0;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.55;
}

.review-card figcaption {
  display: grid;
  gap: 2px;
  margin-top: 2px;
}

.review-card cite {
  color: var(--navy);
  font-weight: 900;
  font-style: normal;
}

.review-card figcaption span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.review-actions .button {
  appearance: none;
}

.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 18px;
}

.modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 21, 40, 0.74);
  backdrop-filter: blur(4px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: 26px;
  border: 1px solid rgba(7, 21, 40, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(7, 21, 40, 0.32);
}

.modal-card-small {
  width: min(520px, 100%);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(7, 21, 40, 0.14);
  border-radius: 6px;
  background: var(--soft);
  color: var(--navy);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover,
.modal-close:focus-visible {
  border-color: rgba(43, 120, 194, 0.45);
  background: var(--white);
  outline: 3px solid rgba(43, 120, 194, 0.16);
}

.modal-heading {
  display: grid;
  gap: 8px;
  padding-right: 48px;
  margin-bottom: 20px;
}

.modal-heading h2 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
}

.modal-heading p:last-child {
  margin: 0;
  color: var(--slate);
}

.optional-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.star-rating {
  display: grid;
  gap: 9px;
  min-width: 0;
  padding: 0;
  border: 0;
}

.star-rating legend {
  padding: 0;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 850;
}

.star-rating-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.star-rating-options label {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.star-rating-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.star-rating-options span {
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 10px 8px;
  border: 1px solid #c8d1dc;
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 850;
  text-align: center;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.star-rating-options input:checked + span {
  border-color: var(--blue);
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(7, 21, 40, 0.14);
}

.star-rating-options input:focus-visible + span {
  outline: 3px solid rgba(43, 120, 194, 0.18);
  outline-offset: 2px;
}

.social-modal-links {
  display: grid;
  gap: 12px;
}

.social-modal-link {
  display: grid;
  gap: 3px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--navy);
  text-decoration: none;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.social-modal-link:hover,
.social-modal-link:focus-visible {
  border-color: rgba(43, 120, 194, 0.45);
  background: var(--white);
  outline: none;
  transform: translateY(-1px);
}

.social-modal-link span {
  font-size: 1.04rem;
  font-weight: 900;
}

.social-modal-link small {
  color: var(--muted);
  font-weight: 750;
  overflow-wrap: anywhere;
}

.button-outline {
  border-color: rgba(7, 21, 40, 0.18);
  background: var(--white);
  color: var(--navy);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: rgba(43, 120, 194, 0.45);
  background: var(--soft);
}

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

.trust-strip {
  padding: 24px 0;
  background: var(--navy-2);
  color: var(--white);
}

.trust-strip p {
  max-width: 980px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
}

.contact {
  background: linear-gradient(180deg, var(--white), var(--soft));
}

.contact-grid {
  display: grid;
  gap: 28px;
}

.contact-details {
  display: grid;
  gap: 12px;
  max-width: 430px;
  margin-top: 24px;
}

.contact-details div {
  display: grid;
  gap: 3px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-details span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-details a,
.form-note a {
  color: var(--blue-dark);
  font-weight: 850;
}

.quote-form {
  padding: 20px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 7px;
}

label {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 850;
}

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

input,
select {
  min-height: 48px;
  padding: 0 12px;
}

input[type="file"] {
  padding: 11px 12px;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(43, 120, 194, 0.16);
}

.honeypot {
  display: none;
}

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

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.footer-grid {
  display: grid;
  gap: 26px;
  padding: 44px 0 30px;
}

.footer-grid p {
  max-width: 390px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-logo {
  width: 70px;
  height: 70px;
}

.footer-grid h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 0.86rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-grid div:not(:first-child) {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-grid a,
.footer-grid span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
  text-decoration: none;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--white);
  outline: none;
}

.footer-compliance {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-compliance p {
  max-width: 980px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.footer-compliance p + p {
  margin-top: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.thanks-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  background:
    linear-gradient(rgba(7, 21, 40, 0.88), rgba(7, 21, 40, 0.76)),
    url("assets/kpd-projects-hero.png") center / cover;
  color: var(--white);
}

.thanks-shell {
  width: min(720px, calc(100% - 32px));
}

.thanks-shell h1 {
  margin: 42px 0 18px;
  color: var(--white);
  font-size: 2.8rem;
}

.thanks-shell p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.thanks-logo {
  width: 72px;
  height: 72px;
}

@media (max-width: 560px) {
  .brand-lines small {
    display: none;
  }

  .modal-card {
    padding: 22px 18px;
  }

  .modal-heading {
    padding-right: 44px;
  }

  .star-rating-options {
    grid-template-columns: 1fr;
  }

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

  .project-media {
    min-height: 148px;
  }

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

@media (max-width: 719px) {
  .hero-panel {
    display: none;
  }
}

@media (min-width: 720px) {
  h1 {
    font-size: 5.3rem;
  }

  h2 {
    font-size: 3rem;
  }

  .hero-subheadline {
    font-size: 1.55rem;
  }

  .hero-panel,
  .service-grid,
  .project-grid,
  .review-grid,
  .process-steps,
  .feature-grid,
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-panel {
    max-width: none;
  }

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

  .section {
    padding: 82px 0;
  }

  .thanks-shell h1 {
    font-size: 4.8rem;
    line-height: 1;
  }
}

@media (min-width: 980px) {
  .site-header {
    padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  }

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

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    padding: 10px 11px;
    font-size: 0.88rem;
  }

  .site-nav .nav-cta {
    margin: 0 0 0 8px;
    padding-inline: 15px;
  }

  .hero-inner {
    min-height: 620px;
    grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.56fr);
    align-items: end;
    padding: 74px 0 46px;
  }

  h1 {
    font-size: 6.4rem;
  }

  h2 {
    font-size: 3.6rem;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

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

  .service-card {
    grid-column: span 2;
  }

  .service-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .service-card-wide {
    grid-column: span 2;
  }

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

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

  .process-steps {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .split-layout,
  .about-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
    align-items: start;
  }

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

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