:root {
  --display: "Caprasimo", "Fraunces", Georgia, serif;
  --body: "Mulish", Arial, sans-serif;
  --sky: #5BB8E8;
  --sky-light: #D8F0FB;
  --navy: #1B3A5B;
  --navy-dark: #082A47;
  --orange: #EF8A2B;
  --orange-deep: #F15A22;
  --yellow: #FFC83D;
  --red: #E84C3D;
  --cream: #FDF7EC;
  --cream-warm: #FBF1DE;
  --white: #FFFFFF;
  --max: 1150px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--navy-dark);
  background: var(--cream);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0;
}

h1,
h2 {
  letter-spacing: -.012em;
}

img,
svg {
  display: block;
}

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

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

/* ---------------- motion ---------------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22, .8, .36, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.trail-line {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.8s cubic-bezier(.4, 0, .2, 1) .25s;
}

.trail-line.in {
  clip-path: inset(0 0 0 0);
}

::selection {
  background: var(--yellow);
  color: var(--navy-dark);
}

a:focus-visible,
.btn:focus-visible,
.footer-button:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 6px;
}

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

.icon-badge {
  transition: transform .25s cubic-bezier(.22, .8, .36, 1), box-shadow .25s ease;
}

.process-step:hover .icon-badge {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(42, 66, 81, .16);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .trail-line { clip-path: none; }
  .hero h1 span { animation: none; opacity: 1; filter: none; }
}

/* ---------------- header ---------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  padding: 26px 0;
  color: #071F3C;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}

.site-header.scrolled {
  padding: 12px 0;
  background: rgba(253, 247, 236, .82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(27, 58, 91, .07), 0 10px 30px rgba(27, 58, 91, .07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 17px;
  line-height: .9;
  text-transform: uppercase;
}

.brand-cloud {
  width: 52px;
  height: auto;
  color: #071F3C;
  flex: 0 0 auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 42px;
  margin-left: auto;
  font-size: 15px;
  font-weight: 800;
}

.main-nav a {
  transition: color .18s ease;
}

.main-nav a:hover {
  color: var(--orange);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.btn span,
.footer-button span {
  transition: transform .2s ease;
}

.btn:hover span,
.footer-button:hover span {
  transform: translateX(4px);
}

.btn-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 6px 18px rgba(239, 138, 43, .28);
}

.btn-primary:hover {
  background: var(--orange-deep);
}

.btn-secondary {
  color: var(--navy-dark);
  background: rgba(255, 255, 255, .95);
  border-color: rgba(8, 42, 71, .1);
  box-shadow: 0 8px 20px rgba(13, 54, 91, .1);
}

.header-cta {
  min-height: 50px;
  padding-inline: 24px;
}

/* ---------------- hero ---------------- */

.hero {
  position: relative;
  min-height: 740px;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(234, 247, 254, .78) 0%, rgba(234, 247, 254, .42) 36%, rgba(234, 247, 254, 0) 60%),
    url("assets/hero-scene.webp");
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #9DDDF7;
}

.hero::before {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 1;
  height: 110px;
  content: "";
  background: linear-gradient(180deg, rgba(157, 221, 247, .85) 0%, rgba(157, 221, 247, 0) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 8;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding-top: 150px;
}

.hero-copy {
  position: relative;
  z-index: 9;
  width: min(100%, 560px);
  padding-bottom: 215px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-deep);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(44px, 4.9vw, 68px);
  line-height: .98;
}

.hero h1 span {
  display: inline-block;
  color: var(--orange-deep);
  opacity: 0;
  filter: blur(14px);
  animation: seen-in 1.6s ease-out .5s forwards;
}

@keyframes seen-in {
  from {
    opacity: 0;
    filter: blur(14px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

.hero-subhead {
  max-width: 30ch;
  margin: 24px 0 28px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
  color: #16395E;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.section-sub {
  max-width: 56ch;
  margin: 12px auto 0;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.55;
  color: #38536F;
}

.cloud-divider {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 215px;
  filter: drop-shadow(0 -10px 22px rgba(34, 74, 95, .08));
}

/* ---------------- approach ---------------- */

.approach {
  position: relative;
  overflow: hidden;
  padding: 84px 0 92px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream) 72%, #FDF9F1 100%);
}

.approach-inner {
  position: relative;
  z-index: 4;
}

.approach-copy {
  width: min(100%, 520px);
}

.approach h2,
.services h2,
.process h2,
.about h2,
.cta-strip h2 {
  margin: 0;
  color: var(--navy-dark);
}

.approach h2 {
  font-size: clamp(30px, 3.1vw, 42px);
  line-height: 1.04;
}

.approach-copy > p:last-child {
  max-width: 46ch;
  margin: 22px 0 0;
  font-size: 16.5px;
  font-weight: 600;
  line-height: 1.7;
  color: #2C4A66;
}

.approach-image {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: min(56vw, 760px);
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .25) 10%, #000 26%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .25) 10%, #000 26%, #000 100%);
}

/* ---------------- credibility strip ---------------- */

.cred {
  padding: 56px 0 60px;
  background: linear-gradient(180deg, #FDF9F1 0%, var(--cream) 100%);
  border-top: 1px solid rgba(27, 58, 91, .07);
  border-bottom: 1px solid rgba(27, 58, 91, .07);
}

.cred-heading {
  max-width: 30ch;
  margin: 0 auto 36px;
  text-align: center;
  font-size: clamp(22px, 2.2vw, 29px);
  line-height: 1.18;
  color: var(--navy-dark);
}

.cred-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}

.cred-point h4 {
  margin: 0 0 6px;
  font-size: 15.5px;
  font-weight: 900;
  color: var(--navy-dark);
}

.cred-point p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  color: #38536F;
}

/* ---------------- services ---------------- */

.services {
  padding: 96px 0 110px;
  background: linear-gradient(180deg, var(--cream) 0%, #FFFDF8 14%, #FFFDF8 100%);
}

.section-heading-centered {
  text-align: center;
}

.services h2 {
  margin: 0 auto;
  max-width: 1010px;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.08;
}

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

.service-card {
  padding: 26px 22px 30px;
  text-align: center;
  background: rgba(255, 253, 247, .9);
  border: 1px solid rgba(153, 128, 91, .2);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(105, 79, 48, .07);
  transition: transform .25s cubic-bezier(.22, .8, .36, 1), box-shadow .25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 54px rgba(105, 79, 48, .13);
}

.service-media {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 180px;
  margin: 0 auto 20px;
}

.service-media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 16px rgba(27, 58, 91, .15));
}

.service-media-direction img {
  object-position: center bottom;
}

.service-card h3 {
  margin: 0 0 10px;
  color: var(--navy-dark);
  font-size: 23px;
  line-height: 1.05;
}

.service-card p {
  margin: 0 auto;
  max-width: 24ch;
  color: #38536F;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.6;
}

.service-card .service-lead {
  max-width: 21ch;
  margin-bottom: 10px;
  color: var(--navy-dark);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

/* ---------------- capabilities ---------------- */

.capabilities {
  padding: 64px 0 80px;
  background: var(--cream);
}

.capabilities-heading {
  font-size: clamp(24px, 2.4vw, 31px);
}

.cap-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 880px;
  margin: 34px auto 0;
  padding: 0;
  list-style: none;
}

.cap-list li {
  padding: 10px 22px;
  color: var(--navy-dark);
  background: var(--white);
  border: 1px solid rgba(27, 58, 91, .14);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: border-color .15s ease, transform .15s ease;
}

.cap-list li:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}

/* ---------------- process ---------------- */

.process {
  position: relative;
  padding: 96px 0 110px;
  background: var(--cream);
}

.process h2 {
  font-size: clamp(28px, 2.9vw, 38px);
  line-height: 1;
}

.process-map {
  position: relative;
  margin-top: 52px;
  padding: 0 56px;
}

.trail-line {
  position: absolute;
  top: -6px;
  left: 9%;
  z-index: 1;
  width: 82%;
  height: 120px;
}

.process-steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
}

.process-step {
  position: relative;
  text-align: center;
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin: 0 auto 22px;
  color: #0E4A82;
  background: var(--white);
  border: 1px solid rgba(8, 42, 71, .1);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(42, 66, 81, .12);
}

.icon-badge svg {
  width: 46px;
  height: 46px;
  fill: currentColor;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 9px;
  color: var(--white);
  background: var(--orange-deep);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  vertical-align: middle;
}

.process-step h4 {
  display: inline-block;
  margin: 0;
  color: var(--navy-dark);
  font-size: 16.5px;
  font-weight: 900;
  line-height: 1.15;
  vertical-align: middle;
}

.process-step p {
  max-width: 23ch;
  margin: 12px auto 0;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.55;
  color: #38536F;
}

.signpost {
  position: absolute;
  top: -2px;
  right: -28px;
  z-index: 3;
  width: 128px;
  height: auto;
}

/* ---------------- about ---------------- */

.about {
  padding: 92px 0;
  background: linear-gradient(180deg, var(--cream-warm) 0%, #F8EFDC 100%);
}

.about-inner {
  display: grid;
  grid-template-columns: 250px 1fr 320px;
  align-items: center;
  gap: 48px;
}

.about-badge img {
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(27, 58, 91, .18));
}

.about-copy {
  min-width: 0;
}

.about h2 {
  font-size: clamp(28px, 2.9vw, 38px);
  line-height: 1.06;
}

.about-copy p {
  max-width: 52ch;
  margin: 18px 0 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  color: #2C4A66;
}

.about-copy .eyebrow {
  margin: 0 0 12px;
}

.about-copy .about-second {
  margin-top: 12px;
  font-size: 14px;
  color: #516881;
}

.value-list {
  display: grid;
  min-width: 0;
  gap: 24px;
  padding-left: 36px;
  border-left: 1px dashed rgba(8, 42, 71, .4);
}

.value-point {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  align-items: center;
}

.value-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  color: #0B4577;
  background: var(--white);
  border: 1px solid rgba(8, 42, 71, .1);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(42, 66, 81, .1);
}

.value-icon svg {
  width: 32px;
  height: 32px;
}

.value-point h4 {
  margin: 0 0 4px;
  font-size: 15.5px;
  font-weight: 900;
  line-height: 1.15;
}

.value-point p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  color: #38536F;
}

/* ---------------- CTA strip ---------------- */

.cta-strip {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 92px 0 100px;
  background-image: url("assets/cta-landscape-strip.webp");
  background-size: cover;
  background-position: center 62%;
}

.cta-strip::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, #F8EFDC 0%, rgba(248, 239, 220, 0) 18%),
    linear-gradient(90deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .55) 32%, rgba(255, 255, 255, .55) 66%, rgba(255, 255, 255, .08));
}

.cta-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), 760px);
  margin: 0 auto;
  text-align: center;
}

.cta-strip h2 {
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1.02;
}

.cta-strip p {
  max-width: 54ch;
  margin: 14px auto 24px;
  font-size: 15.5px;
  font-weight: 800;
  line-height: 1.5;
  color: #14375C;
}

.cta-button {
  min-height: 52px;
}

/* ---------------- footer ---------------- */

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 52px 0 46px;
  color: rgba(216, 240, 251, .94);
  background: linear-gradient(180deg, #092D4D 0%, #06233D 100%);
}

.footer-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.5fr .95fr .75fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
}

.footer-cloud {
  width: 44px;
  color: var(--white);
}

.footer-logo-row strong {
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  line-height: .92;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 220px;
  margin: 14px 0 18px;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.55;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  border: 1.5px solid rgba(216, 240, 251, .6);
  border-radius: 50%;
  transition: background .15s ease;
}

.socials a:hover {
  background: rgba(255, 255, 255, .12);
}

.socials svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linejoin: round;
}

.socials svg.icon-fill {
  fill: currentColor;
  stroke: none;
}

.footer-column {
  display: grid;
  gap: 10px;
  justify-items: start;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.footer-heading {
  margin: 0 0 6px;
  color: var(--yellow);
  font-size: 13.5px;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1;
}

.footer-column a {
  color: rgba(216, 240, 251, .94);
  transition: color .15s ease;
}

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

.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: max-content;
  margin-top: 10px;
  padding: 11px 22px;
  color: var(--yellow) !important;
  border: 2px solid var(--yellow);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 900;
  transition: background .15s ease, color .15s ease;
}

.footer-button:hover {
  background: var(--yellow);
  color: var(--navy-dark) !important;
}

.footer-address {
  margin: 0 0 4px;
  color: rgba(216, 240, 251, .94);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--max));
  margin: 40px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(216, 240, 251, .14);
}

.footer-bottom p {
  margin: 0;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .02em;
  color: rgba(216, 240, 251, .55);
}

.footer-watermark {
  position: absolute;
  right: -30px;
  bottom: -80px;
  z-index: 1;
  width: 290px;
  opacity: .09;
  filter: brightness(0) invert(1);
  pointer-events: none;
}

/* ---------------- contact modal ---------------- */

.contact-modal {
  width: min(calc(100% - 32px), 520px);
  padding: 0;
  border: none;
  border-radius: 22px;
  background: transparent;
}

.contact-modal::backdrop {
  background: rgba(8, 42, 71, .55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.contact-card {
  position: relative;
  padding: 38px 36px 34px;
  background: var(--cream);
  border-radius: 22px;
  box-shadow: 0 40px 90px rgba(8, 42, 71, .35);
}

.contact-card h3 {
  margin: 0 0 22px;
  color: var(--navy-dark);
  font-size: 28px;
  line-height: 1.1;
}

.contact-close {
  position: absolute;
  top: 16px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--navy-dark);
  background: rgba(8, 42, 71, .06);
  border: none;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background .15s ease;
}

.contact-close:hover {
  background: rgba(8, 42, 71, .12);
}

.hp-field {
  display: none;
}

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

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

.contact-form label span {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy-dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--navy-dark);
  background: var(--white);
  border: 1.5px solid rgba(8, 42, 71, .16);
  border-radius: 10px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 96px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(239, 138, 43, .18);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(8, 42, 71, .38);
  font-weight: 500;
}

.contact-submit {
  justify-self: start;
  margin-top: 4px;
}

.contact-note {
  min-height: 1.2em;
  margin: 0;
  font-size: 13.5px;
  font-weight: 700;
  color: #2C4A66;
}

/* ---------------- tablet ---------------- */

@media (max-width: 960px) {
  .header-inner {
    flex-wrap: wrap;
    row-gap: 14px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 28px;
  }

  .hero {
    min-height: 0;
    background-size: auto 640px;
    background-position: 42% bottom;
  }

  .hero-inner {
    padding-top: 170px;
  }

  .hero-copy {
    padding-bottom: 480px;
  }

  .cred-points {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .approach {
    padding-bottom: 0;
  }

  .approach-copy {
    width: 100%;
  }

  .approach-image {
    position: static;
    width: calc(100% + 48px);
    height: 260px;
    margin: 36px -24px 0;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 22%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 22%);
  }

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

  .process-map {
    padding-inline: 0;
  }

  .trail-line,
  .signpost {
    display: none;
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 22px;
  }

  .about-inner {
    grid-template-columns: 200px 1fr;
    gap: 32px;
  }

  .value-list {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    border-left: 0;
    padding-left: 0;
    border-top: 1px dashed rgba(8, 42, 71, .35);
    padding-top: 26px;
  }

  .footer-inner {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 30px;
  }

  .footer-connect {
    grid-column: span 3;
  }
}

/* ---------------- mobile ---------------- */

@media (max-width: 600px) {
  .section-inner,
  .header-inner,
  .footer-inner,
  .hero-inner,
  .cta-inner {
    width: min(calc(100% - 32px), 460px);
  }

  .site-header {
    padding: 16px 0;
  }

  .brand {
    font-size: 14px;
  }

  .brand-cloud {
    width: 40px;
  }

  .header-cta {
    min-height: 42px;
    padding-inline: 16px;
    font-size: 13px;
  }

  .main-nav {
    gap: 18px;
    font-size: 13.5px;
    flex-wrap: wrap;
  }

  .hero-inner {
    padding-top: 150px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .hero-subhead {
    font-size: 16px;
  }

  .hero {
    background-size: auto 500px;
    background-position: 55% bottom;
  }

  .hero-copy {
    padding-bottom: 430px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .cap-list li {
    font-size: 13px;
    padding: 9px 18px;
  }

  .cloud-divider {
    left: -70%;
    right: auto;
    width: 240%;
    height: 130px;
  }

  .approach h2,
  .about h2 {
    font-size: 30px;
  }

  .services h2,
  .process h2 {
    font-size: 27px;
  }

  .approach-image {
    height: 210px;
    width: calc(100% + 32px);
    margin-inline: -16px;
  }

  .service-grid,
  .process-steps,
  .about-inner,
  .value-list,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .service-media {
    height: 230px;
  }

  .about-badge {
    display: flex;
    justify-content: center;
  }

  .about-badge img {
    max-width: 210px;
  }

  .value-list {
    gap: 18px;
  }

  .cta-strip {
    padding: 64px 0 72px;
  }

  .footer-connect {
    grid-column: auto;
  }

  .footer-watermark {
    right: -50px;
    width: 230px;
  }
}
