:root {
  --ocean: #0178bd;
  --ocean-2: #005d9e;
  --navy: #052b55;
  --ink: #071935;
  --pumpkin: #f36c00;
  --pumpkin-2: #ff8a16;
  --mist: #eaf7ff;
  --white: #fff;
  --shadow: 0 20px 60px rgba(5, 43, 85, .16);
  --radius: 24px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fff 0%, #f5fbff 52%, #fff 100%);
  line-height: 1.5
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem clamp(1rem, 4vw, 4.5rem);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 0px 0 rgba(5, 43, 85, .08);
  position: relative;
  z-index: 5
}

.brand {
  display: flex;
  align-items: center;
  gap: .9rem;
  text-decoration: none;
  color: var(--navy)
}

.brand img {
  width: 72px;
  height: auto;
  border-radius: 50%
}

.brand-text {
  display: grid;
  line-height: 1
}

.brand-text strong {
  font-size: clamp(1.75rem, 4vw, 6.45rem);
  font-weight: 750;
  letter-spacing: -.055em
}

.brand-text strong span {
  color: var(--pumpkin);
  margin-left: .07em
}

.brand-text em {
  margin-top: .25rem;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(.55rem, 1.1vw, 1.5rem);
  color: var(--ocean)
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1rem, 3vw, 2.75rem);
  flex-wrap: wrap;
  font-weight: 700;
  font-size: clamp(.85rem, 1.5vw, 1.6rem);
}

.main-nav a {
  color: var(--navy);
  text-decoration: none
}

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

.hero {
  position: relative;
  min-height: clamp(570px, 64vw, 680px);
  overflow: hidden;
  background: var(--mist)
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 74% center;
  z-index: 0
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(245, 251, 255, .98) 0%, rgba(245, 251, 255, .92) 23%, rgba(245, 251, 255, .45) 43%, rgba(245, 251, 255, .02) 66%);
  z-index: 1
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(560px, 90vw);
  padding: clamp(3.5rem, 7vw, 5.4rem) 0 clamp(3rem, 7vw, 5rem);
  margin-left: clamp(1.25rem, 5vw, 4.6rem)
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--ocean);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(4rem, 8.3vw, 6.4rem);
  line-height: .94;
  letter-spacing: -.07em
}

.hero h1 span {
  color: var(--pumpkin)
}

.intro {
  max-width: 480px;
  margin: 1.4rem 0 1.6rem;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  font-weight: 520;
  color: #092143
}

.actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .92rem 1.55rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ocean), var(--ocean-2));
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 850;
  letter-spacing: .03em;
  box-shadow: 0 12px 28px rgba(1, 120, 189, .27)
}

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

.button.orange {
  background: linear-gradient(135deg, var(--pumpkin), var(--pumpkin-2));
  box-shadow: 0 12px 28px rgba(243, 108, 0, .27)
}

.text-link {
  color: var(--navy);
  font-weight: 800;
  text-decoration: none
}

.tagline {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.3rem 0 0;
  color: var(--ocean);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-style: italic
}

.tagline:before,
.tagline:after {
  content: "";
  display: block;
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ocean))
}

.tagline:after {
  background: linear-gradient(90deg, var(--ocean), transparent)
}

.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 1.9rem clamp(1rem, 4vw, 4.5rem);
  background: #fff;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 3
}

.services article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1rem;
  padding: 1rem clamp(.8rem, 2vw, 2rem);
  border-right: 1px solid rgba(5, 43, 85, .14)
}

.services article:last-child {
  border-right: 0
}

.icon {
  grid-row: span 2;
  width: 4.7rem;
  height: 4.7rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(1, 120, 189, .13);
  color: var(--ocean);
  font-size: 2rem;
  font-weight: 800
}

.services h2 {
  margin: .25rem 0 .2rem;
  text-transform: uppercase;
  color: var(--navy);
  font-size: 1rem
}

.services p {
  margin: 0;
  max-width: 25ch;
  color: #102547
}

.closing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
  padding: 2.4rem clamp(1.25rem, 5vw, 9rem);
  background: linear-gradient(120deg, #06406f, var(--ocean));
  color: #fff
}

.closing h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem)
}

.closing h2 span {
  color: var(--pumpkin-2)
}

.closing p {
  margin: .35rem 0 0;
  font-size: 1.15rem
}

.closing .button {
  flex: 0 0 auto
}

.closing-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  flex-wrap: nowrap
}

.copyright {
  width: 100%;
  text-align: center;
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8
}

.mobile-tagline {
  display: none
}

@media (max-width:900px) {
  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    background: #fff
  }

  .mobile-tagline {
    display: flex;
    justify-content: center;
    margin: 1.5rem 20px 1rem
  }

  .hero-image {
    position: relative;
    height: clamp(340px, 72vw, 520px);
    object-position: 67% center;
    border-radius: 18px;
    margin: 0 20px;
    width: calc(100% - 40px)
  }

  .hero-shade {
    display: none
  }

  .hero-content {
    width: auto;
    margin: 0;
    padding: 2rem clamp(1.25rem, 6vw, 3rem);
    background: linear-gradient(180deg, #f5fbff, #fff)
  }

  .hero h1 {
    font-size: clamp(3.5rem, 13vw, 5.4rem)
  }

  .services {
    grid-template-columns: repeat(2, 1fr);
    box-shadow: none
  }

  .services article:nth-child(2) {
    border-right: 0
  }

  .services article {
    border-bottom: 1px solid rgba(5, 43, 85, .12)
  }
}

@media (max-width:850px) {
  .main-nav a[href^="mailto"] {
    display: none
  }

  .main-nav a[href^="tel"] {
    font-size: 1.4em
  }

  .main-nav {
    justify-content: flex-end
  }
}

@media (max-width:560px) {
  .brand img {
    width: 58px
  }

  .brand-text strong {
    font-size: 2.1rem
  }

  .brand-text em {
    letter-spacing: .16em
  }

  .main-nav {
    gap: .7rem 1.2rem;
    font-size: .95rem
  }

  .hero-image {
    height: 360px;
    object-position: 64% center
  }

  .services {
    grid-template-columns: 1fr;
    padding: 1rem
  }

  .services article {
    border-right: 0
  }

  .closing {
    padding: 2rem 1.25rem
  }

  .tagline {
    font-size: 1rem
  }
}