:root {
  --navy: #062638;
  --navy-2: #0a3147;
  --orange: #ff5a1f;
  --orange-dark: #e9470d;
  --green: #86aa3d;
  --ink: #102834;
  --muted: #667983;
  --cream: #f6f3ec;
  --line: #dfe4e2;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(3, 31, 46, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.kp-home {
  overflow-x: hidden;
}

.admin-bar .site-header {
  top: 32px;
}

body,
button,
input,
select,
textarea {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

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

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

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

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.topbar {
  background: #041e2d;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.topbar__inner,
.topbar__links {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar__inner {
  min-height: 36px;
}

.topbar__inner p {
  margin: 0;
}

.topbar__links {
  gap: 24px;
}

.topbar a {
  transition: color 180ms ease;
}

.topbar a:hover {
  color: var(--white);
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(16, 40, 52, 0.08);
  backdrop-filter: blur(18px);
}

.header__inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  width: 172px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: 58px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  color: #24404c;
  font-size: 14px;
  font-weight: 650;
}

.nav > a:not(.button) {
  position: relative;
  padding-block: 28px;
}

.nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav > a:not(.button):hover::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border: 1px solid var(--orange);
  border-radius: 9px;
  background: var(--orange);
  color: var(--white);
  font-weight: 760;
  box-shadow: 0 12px 30px rgba(255, 90, 31, 0.2);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

body.kp-home .button {
  display: inline-flex !important;
  min-height: 52px !important;
  padding: 0 24px !important;
  border-color: var(--orange) !important;
  background: var(--orange) !important;
  color: var(--white) !important;
  line-height: 1.2 !important;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: 0 16px 36px rgba(255, 90, 31, 0.28);
}

body.kp-home .button:hover {
  border-color: var(--orange-dark) !important;
  background: var(--orange-dark) !important;
  color: var(--white) !important;
}

.button--small {
  min-height: 44px;
  padding: 0 18px;
}

.button--wide {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 760;
  text-decoration: underline;
  text-decoration-color: rgba(255, 90, 31, 0.45);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  cursor: pointer;
  transition: color 180ms ease;
}

.text-link:hover {
  color: var(--orange);
}

.text-link--light {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.32);
}

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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, black, transparent 72%);
}

.hero__glow {
  position: absolute;
  width: 660px;
  height: 660px;
  right: -180px;
  top: -320px;
  border-radius: 50%;
  background: rgba(255, 90, 31, 0.23);
  filter: blur(4px);
}

.hero__grid {
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
  align-items: center;
  gap: 42px;
}

.hero__copy {
  max-width: 670px;
  padding-block: 76px 84px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #ffb16d;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(49px, 5.4vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero h1 span {
  color: #ff8a4d;
}

.hero__lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 590px;
  margin: 54px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero__proof div {
  padding-right: 20px;
}

.hero__proof div + div {
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero__proof dt {
  color: var(--white);
  font-size: 24px;
  font-weight: 820;
  letter-spacing: -0.03em;
}

.hero__proof dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 12px;
}

.hero__visual {
  position: relative;
  align-self: end;
  min-height: 615px;
}

.hero__visual > img {
  position: absolute;
  z-index: 2;
  right: -65px;
  bottom: 0;
  width: 660px;
  max-width: none;
  filter: saturate(0.92) contrast(1.03);
}

.hero__sun {
  position: absolute;
  width: 420px;
  height: 420px;
  top: 70px;
  right: -30px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffb66d, #fb6428);
  box-shadow: 0 0 0 50px rgba(255, 137, 68, 0.06), 0 0 0 100px rgba(255, 137, 68, 0.035);
}

.hero__note {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 290px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(4, 30, 45, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

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

.hero__note strong {
  font-size: 13px;
}

.hero__note small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #b6d869;
  box-shadow: 0 0 0 5px rgba(182, 216, 105, 0.12);
}

.service-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.service-strip__inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #536a75;
  font-size: 13px;
  font-weight: 720;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-strip i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
}

.section {
  padding-block: 116px;
}

.about__grid,
.solutions__grid,
.quote__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(56px, 8vw, 112px);
}

.about__media {
  position: relative;
  min-height: 560px;
}

.about__media::before {
  content: "";
  position: absolute;
  top: -24px;
  right: 0;
  width: 70%;
  height: 82%;
  background: var(--cream);
}

.about__media img {
  position: absolute;
  z-index: 1;
  top: 30px;
  left: 0;
  width: 84%;
  height: 500px;
  object-fit: cover;
  object-position: center;
}

.about__metric {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 10px;
  width: 245px;
  padding: 28px;
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 18px 45px rgba(255, 90, 31, 0.24);
}

.about__metric strong,
.about__metric span {
  display: block;
}

.about__metric strong {
  font-size: 20px;
}

.about__metric span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.section h2,
.journal h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.about__copy > p:not(.eyebrow),
.solutions__copy > p:not(.eyebrow),
.quote__copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.about__copy .section-lead {
  color: #294753;
  font-size: 18px;
  font-weight: 630;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 30px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #294753;
  font-weight: 620;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}

.services {
  background: var(--cream);
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(270px, 0.55fr);
  align-items: end;
  gap: 80px;
}

.section-heading--split > p {
  margin: 0 0 4px;
  color: var(--muted);
  line-height: 1.7;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 72px;
  margin-top: 64px;
  border-top: 1px solid #ccd5d2;
}

.service {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr 24px;
  gap: 22px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid #ccd5d2;
  transition: transform 180ms ease, color 180ms ease;
}

.service:hover {
  transform: translateX(5px);
}

.service__number {
  color: var(--orange);
  font-size: 13px;
  font-weight: 820;
}

.service h3 {
  margin: -4px 0 8px;
  font-size: 23px;
  letter-spacing: -0.025em;
}

.service p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.service__arrow {
  color: var(--orange);
  font-size: 20px;
  transition: transform 180ms ease;
}

.service:hover .service__arrow {
  transform: translate(3px, -3px);
}

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

.process::after {
  content: "";
  position: absolute;
  top: -220px;
  right: -180px;
  width: 520px;
  height: 520px;
  border: 90px solid rgba(255, 255, 255, 0.025);
  border-radius: 50%;
}

.process__heading h2,
.reference h2 {
  color: var(--white);
}

.process__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 60px 0 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.process__step {
  min-height: 260px;
  padding: 34px 38px 34px 0;
}

.process__step + .process__step {
  padding-left: 38px;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.process__step > span {
  color: #ff9d63;
  font-size: 14px;
  font-weight: 820;
}

.process__step h3 {
  max-width: 260px;
  margin: 72px 0 12px;
  font-size: 24px;
  letter-spacing: -0.025em;
}

.process__step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
}

.solutions {
  background: var(--white);
}

.solutions__facts {
  display: grid;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.solutions__facts div {
  display: grid;
  grid-template-columns: minmax(140px, 0.8fr) 1.2fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.solutions__facts strong {
  color: var(--ink);
}

.solutions__facts span {
  color: var(--muted);
  font-size: 14px;
}

.solutions__visual {
  position: relative;
  min-height: 610px;
}

.solutions__visual > img {
  width: calc(100% - 72px);
  height: 530px;
  margin-left: 72px;
  object-fit: cover;
}

.solutions__aside {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 290px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.solutions__aside img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.solutions__aside p {
  margin: 0;
  padding: 20px 22px 24px;
}

.solutions__aside strong,
.solutions__aside span {
  display: block;
}

.solutions__aside span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.reference {
  padding-top: 0;
}

.reference__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  min-height: 430px;
  background: var(--navy);
  color: var(--white);
}

.reference__media {
  position: relative;
  min-height: 430px;
  overflow: hidden;
}

.reference__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(6, 38, 56, 0.52));
}

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

.reference__media > span {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  padding: 9px 13px;
  border-radius: 6px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reference__copy {
  align-self: center;
  padding: 54px;
}

.reference__copy h2 {
  font-size: clamp(32px, 3vw, 46px);
}

.reference__copy > p:not(.eyebrow) {
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.7;
}

.quote {
  background: var(--cream);
}

.quote__grid {
  align-items: start;
}

.quote__copy {
  position: sticky;
  top: 125px;
}

.contact-card {
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid #d8dedb;
}

.contact-card span,
.contact-card small {
  display: block;
  color: var(--muted);
}

.contact-card a {
  display: inline-block;
  margin: 7px 0;
  color: var(--ink);
  font-size: 27px;
  font-weight: 820;
  letter-spacing: -0.03em;
}

.quote__form {
  min-height: 570px;
  padding: 46px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote__form .wpcf7,
.quote__form .wpcf7-form {
  margin: 0;
}

.quote__form .wpcf7-form > h3 {
  margin: 0 0 26px;
  color: var(--ink);
  font-size: 28px;
  letter-spacing: -0.03em;
}

.quote__form .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 18px;
}

.quote__form .wpcf7-form > input:not([type="hidden"]),
.quote__form .wpcf7-form > textarea {
  display: block;
  margin-bottom: 18px;
}

.quote__form .wpcf7-submit {
  width: 100%;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--orange);
  border-radius: 9px;
  background: var(--orange);
  color: var(--white);
  font-weight: 760;
  box-shadow: 0 12px 30px rgba(255, 90, 31, 0.2);
  cursor: pointer;
}

.quote__form .wpcf7-submit:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.quote__form .wpcf7-spinner {
  display: block;
  margin: 14px auto 0;
}

.quote__form .wpcf7-response-output {
  margin: 20px 0 0 !important;
  padding: 14px 16px !important;
  border-width: 1px !important;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.5;
}

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

.quote__form label {
  display: block;
  margin-bottom: 20px;
  color: #284550;
  font-size: 13px;
  font-weight: 720;
}

.quote__form input,
.quote__form select,
.quote__form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid #d5ddda;
  border-radius: 5px;
  outline: none;
  background: #fbfcfb;
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.quote__form input,
.quote__form select {
  height: 50px;
  padding: 0 14px;
}

.quote__form textarea {
  padding: 13px 14px;
  resize: vertical;
}

.quote__form input:focus,
.quote__form select:focus,
.quote__form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.11);
}

.quote__form ::placeholder {
  color: #9aa8ad;
}

.form__note {
  margin: 13px 0 0;
  color: #8a999f;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.form-success {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.form-success > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 50%;
  background: #eaf4d8;
  color: #5f851b;
  font-size: 26px;
  font-weight: 900;
}

.form-success h3 {
  margin: 0;
  font-size: 32px;
}

.form-success p {
  margin: 16px 0 28px;
  color: var(--muted);
  line-height: 1.7;
}

.form-success p a {
  color: var(--ink);
  font-weight: 760;
}

.journal {
  padding-block: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #041e2d;
  color: var(--white);
}

.journal__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: end;
  gap: 60px;
}

.journal h2 {
  color: var(--white);
  font-size: 38px;
}

.journal__inner > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
}

.journal .text-link {
  color: var(--white);
}

.footer {
  padding: 78px 0 26px;
  background: #041e2d;
  color: rgba(255, 255, 255, 0.62);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 1fr 0.7fr;
  gap: 64px;
}

.footer__brand img {
  width: 190px;
  height: 88px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer__brand p {
  max-width: 300px;
  margin: 22px 0 0;
  line-height: 1.65;
}

.footer h3 {
  margin: 0 0 22px;
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer a,
.footer__grid > div > p {
  display: block;
  margin: 0 0 11px;
  font-size: 14px;
  line-height: 1.6;
}

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

.footer__bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 62px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1080px) {
  .nav {
    gap: 17px;
    font-size: 13px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.8fr);
  }

  .hero__visual > img {
    width: 570px;
  }

  .hero__sun {
    width: 350px;
    height: 350px;
  }
}

@media (max-width: 900px) {
  .shell {
    width: min(100% - 36px, 740px);
  }

  .topbar__inner > p,
  .topbar__links a:first-child {
    display: none;
  }

  .topbar__inner {
    justify-content: flex-end;
  }

  .menu-button {
    width: 46px;
    height: 46px;
    display: grid;
    align-content: center;
    gap: 7px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: var(--white);
  }

  .menu-button span {
    display: block;
    height: 2px;
    background: var(--navy);
  }

  .nav {
    position: absolute;
    inset: 80px 0 auto;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 14px 18px 22px;
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 24px 45px rgba(4, 30, 45, 0.14);
  }

  .nav--open {
    display: grid;
  }

  .nav > a:not(.button) {
    padding: 13px 7px;
    border-bottom: 1px solid #edf0ef;
  }

  .nav > a:not(.button)::after {
    display: none;
  }

  .nav .button {
    margin-top: 15px;
  }

  .hero__grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero__copy {
    max-width: 680px;
    padding: 78px 0 30px;
  }

  .hero__visual {
    min-height: 520px;
  }

  .hero__visual > img {
    right: 50%;
    width: 610px;
    transform: translateX(56%);
  }

  .hero__sun {
    right: 10%;
  }

  .section {
    padding-block: 90px;
  }

  .about__grid,
  .solutions__grid,
  .quote__grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .about__media {
    max-width: 620px;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .services__grid {
    column-gap: 36px;
  }

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

  .process__step {
    min-height: auto;
    padding: 30px 0;
  }

  .process__step + .process__step {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.17);
    border-left: 0;
  }

  .process__step h3 {
    margin-top: 36px;
  }

  .solutions__visual {
    max-width: 620px;
  }

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

  .reference__media {
    min-height: 380px;
  }

  .reference__media::after {
    background: linear-gradient(0deg, rgba(6, 38, 56, 0.4), transparent 45%);
  }

  .quote__copy {
    position: static;
  }

  .journal__inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
  }

  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer__grid > div:last-child {
    grid-column: 2;
  }
}

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

  body {
    padding-bottom: 62px;
  }

  .admin-bar .site-header {
    top: 46px;
  }

  .shell {
    width: calc(100% - 32px);
  }

  .topbar__inner {
    min-height: 32px;
  }

  .header__inner {
    min-height: 72px;
  }

  .brand {
    width: 145px;
  }

  .brand img {
    height: 50px;
  }

  .nav {
    top: 72px;
  }

  .hero__copy {
    padding-top: 64px;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 59px);
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }

  .hero__actions .text-link {
    justify-content: center;
  }

  .hero__proof {
    gap: 12px;
  }

  .hero__proof div {
    padding-right: 8px;
  }

  .hero__proof div + div {
    padding-left: 12px;
  }

  .hero__proof dt {
    font-size: 21px;
  }

  .hero__visual {
    min-height: 430px;
  }

  .hero__visual > img {
    width: 500px;
  }

  .hero__sun {
    width: 290px;
    height: 290px;
    right: 0;
  }

  .hero__note {
    right: 0;
    bottom: 24px;
    width: 250px;
  }

  .service-strip__inner {
    min-height: 68px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
    padding-block: 14px;
    font-size: 10px;
  }

  .section {
    padding-block: 72px;
  }

  .section h2,
  .journal h2 {
    font-size: 37px;
  }

  .about__media {
    min-height: 430px;
  }

  .about__media img {
    width: 92%;
    height: 370px;
  }

  .about__metric {
    width: 215px;
    padding: 21px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    margin-top: 46px;
  }

  .service {
    grid-template-columns: 36px 1fr 22px;
    gap: 13px;
  }

  .solutions__facts div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .solutions__visual {
    min-height: 490px;
  }

  .solutions__visual > img {
    width: calc(100% - 34px);
    height: 430px;
    margin-left: 34px;
  }

  .solutions__aside {
    width: 235px;
  }

  .solutions__aside img {
    height: 125px;
  }

  .reference__media {
    min-height: 260px;
  }

  .reference__copy {
    padding: 34px 26px 42px;
  }

  .quote__form {
    min-height: 0;
    padding: 28px 20px;
  }

  .form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .journal {
    padding-block: 56px;
  }

  .footer {
    padding-top: 60px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

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

  .footer__grid > div:last-child {
    grid-column: auto;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 50;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    box-shadow: 0 -12px 30px rgba(4, 30, 45, 0.15);
  }

  .mobile-cta a {
    min-height: 62px;
    display: grid;
    place-items: center;
    background: var(--white);
    color: var(--navy);
    font-size: 14px;
    font-weight: 790;
  }

  .mobile-cta a:last-child {
    background: var(--orange);
    color: var(--white);
  }
}

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

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