:root {
  --navy: #132936;
  --navy-2: #1c3a49;
  --deep: #0b1b24;
  --zinc: #c7d0cf;
  --mist: #f1f4f3;
  --soft: #e5ecea;
  --white: #fff;
  --orange: #ef6b3b;
  --orange-2: #d9572c;
  --ink: #17252c;
  --muted: #617078;
  --line: #d5dddb;
  --radius: 22px;
  --shadow: 0 16px 45px rgba(19, 41, 54, 0.09);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--mist);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}
a {
  color: inherit;
}
.skip {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 99;
  background: #fff;
  padding: 0.8rem 1rem;
}
.skip:focus {
  top: 1rem;
}
.container {
  width: min(1248px, calc(100% - 40px));
  margin-inline: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(11, 27, 36, 0.97);
  color: #fff;
  backdrop-filter: blur(14px);
}
.nav-wrap {
  width: min(1248px, calc(100% - 40px));
  height: 78px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.brand img {
  display: block;
  width: 172px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}
.footer-logo img {
  width: 205px;
  height: 98px;
}
.desktop-nav {
  display: flex;
  gap: 2rem;
}
.desktop-nav a,
.mobile-nav a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: #dbe3e2;
  transition: color 0.2s;
}
.desktop-nav a:hover {
  color: var(--orange);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.phone-placeholder {
  font-size: 0.77rem;
  color: #b8c7c8;
}
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.45rem;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font:
    600 0.9rem "DM Sans",
    sans-serif;
  cursor: pointer;
  transition:
    transform 0.2s,
    background 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-orange {
  background: var(--orange);
  color: var(--deep);
  box-shadow: 0 12px 26px -12px rgba(239, 107, 59, 0.8);
}
.button-orange:hover {
  background: #ff7a4a;
}
.button.small {
  min-height: 44px;
  padding: 0 1.2rem;
  font-size: 0.82rem;
}
.button-outline {
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}
.button-outline:hover {
  background: #fff;
  color: var(--deep);
}
.menu-toggle,
.mobile-nav {
  display: none;
}
.hero {
  position: relative;
  min-height: 680px;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.hero > img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero-shade {
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(11, 27, 36, 0.97) 0%,
      rgba(11, 27, 36, 0.87) 42%,
      rgba(11, 27, 36, 0.28) 78%
    ),
    linear-gradient(0deg, rgba(11, 27, 36, 0.7), transparent 60%);
}
.hero-content {
  padding-top: 112px;
  padding-bottom: 105px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.1rem;
  font:
    600 0.7rem "IBM Plex Mono",
    monospace;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange-2);
}
.kicker.light {
  color: #d6e0df;
}
.hero h1 {
  max-width: 760px;
  margin: 0;
  font:
    600 clamp(4.6rem, 8vw, 7.5rem) / 0.84 "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.035em;
}
.hero h1 span,
.hero h1 strong {
  display: block;
}
.hero h1 strong {
  color: var(--orange);
  font-weight: 600;
}
.hero-content > p:not(.kicker) {
  max-width: 630px;
  margin: 1.8rem 0 0;
  color: #d2dcdd;
  font-size: 1.08rem;
}
.hero-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  margin: 2.2rem 0 0;
  padding: 0;
  color: #dbe4e4;
  font-size: 0.84rem;
  font-weight: 500;
}
.trust-row li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.trust-row i,
.feature-copy i {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--deep);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
}
.section {
  padding: 90px 0;
}
.section-soft {
  background: var(--soft);
}
.section-heading {
  max-width: 660px;
  margin-bottom: 42px;
}
.section-heading-wide {
  max-width: 900px;
}
.section-heading-wide h2 {
  text-wrap: balance;
}
.section-heading.centered {
  text-align: center;
  margin-inline: auto;
}
.section-heading.centered .kicker {
  justify-content: center;
}
.section-heading h2,
.feature h2,
.quote-intro h2,
.cta h2 {
  margin: 0;
  font:
    600 clamp(2.8rem, 5vw, 4.1rem) / 0.95 "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  color: var(--navy);
}
.section-heading > p:last-child {
  color: var(--muted);
  margin: 1rem 0 0;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.process-grid,
.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.process-grid .card,
.reason-grid .card {
  padding: 30px;
}
.process-grid span,
.reason-grid span {
  font:
    600 3rem "Barlow Condensed",
    sans-serif;
  color: var(--orange);
}
.process-grid h3,
.reason-grid h3,
.service-card h3 {
  font:
    600 1.55rem "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
  line-height: 1;
  margin: 1rem 0 0.7rem;
  color: var(--navy);
}
.process-grid p,
.reason-grid p,
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.service-image {
  height: 230px;
  background-image: url("images/service-grid.jpg");
  background-repeat: no-repeat;
  background-size: 200% 200%;
}
.crop-1 {
  background-position: 0 0;
}
.crop-2 {
  background-position: 100% 0;
}
.crop-3 {
  background-position: 0 100%;
}
.crop-4 {
  background-position: 100% 100%;
}
.card-copy {
  padding: 23px;
  display: flex;
  flex-direction: column;
  min-height: 260px;
}
.tag {
  align-self: flex-start;
  background: var(--soft);
  color: var(--navy);
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  font:
    600 0.58rem "IBM Plex Mono",
    monospace;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.service-card h3 {
  margin-top: 1.2rem;
}
.service-card a {
  margin-top: auto;
  padding-top: 1.2rem;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}
.service-card a b {
  color: var(--orange);
  font-size: 1rem;
}
.feature {
  background: var(--navy);
  color: #fff;
  padding: 90px 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  align-items: center;
}
.feature-photo {
  aspect-ratio: 5/4;
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}
.feature h2 {
  color: #fff;
}
.feature-copy > p:not(.kicker) {
  color: #c2cfd0;
}
.feature-copy ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem 1.2rem;
  margin: 1.7rem 0 2rem;
  padding: 0;
}
.feature-copy li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.86rem;
  color: #e0e7e7;
}
.reason-grid .card span {
  font-size: 2.3rem;
}
.reason-grid h3 {
  margin-top: 0.7rem;
}
.quote-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.quote-intro {
  position: sticky;
  top: 120px;
}
.quote-intro > p:not(.kicker, .area-note) {
  color: var(--muted);
}
.contact-placeholder {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.contact-placeholder span {
  font:
    600 0.65rem "IBM Plex Mono",
    monospace;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-placeholder strong {
  font:
    600 1.05rem "Barlow Condensed",
    sans-serif;
  color: var(--navy);
}
.area-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 1.5rem;
}
.quote-form {
  padding: 32px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.quote-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--navy);
}
.quote-form em {
  font-style: normal;
  color: var(--orange-2);
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--mist);
  font:
    400 0.9rem "DM Sans",
    sans-serif;
  color: var(--ink);
  outline: none;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(239, 107, 59, 0.17);
}
.quote-form .button {
  width: 100%;
}
.form-note,
.form-status {
  text-align: center;
  font-size: 0.7rem;
  color: var(--muted);
  margin: 0.8rem 0 0;
}
.form-status {
  font-weight: 600;
  color: var(--orange-2);
}
.cta {
  background: var(--deep);
  color: #fff;
  text-align: center;
  padding: 74px 0;
}
.cta h2 {
  color: #fff;
}
.cta p {
  color: #bbc9ca;
  margin: 1rem auto 1.7rem;
}
.cta .container {
  max-width: 740px;
}
footer {
  background: var(--navy);
  color: #c5d0d1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 56px;
}
.footer-grid > div:first-child > p {
  max-width: 340px;
  font-size: 0.84rem;
}
.footer-grid h3 {
  margin: 0 0 1rem;
  font:
    600 1rem "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
  color: var(--orange);
}
.footer-grid a,
.footer-grid > div:not(:first-child) p {
  display: block;
  text-decoration: none;
  margin: 0.55rem 0;
  font-size: 0.8rem;
  color: #c5d0d1;
}
.footer-grid a:hover {
  color: var(--orange);
}
.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-tags span {
  background: var(--navy-2);
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  font-size: 0.65rem;
}
.footer-bottom {
  border-top: 1px solid #395362;
  padding-top: 20px;
  padding-bottom: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  color: #91a5a8;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}
@media (max-width: 1000px) {
  .desktop-nav,
  .phone-placeholder {
    display: none;
  }
  .process-grid,
  .reason-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-grid,
  .quote-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .quote-intro {
    position: static;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-photo {
    max-width: 700px;
  }
  .service-image {
    height: 280px;
  }
}
@media (max-width: 680px) {
  .container,
  .nav-wrap {
    width: min(100% - 28px, 1248px);
  }
  .nav-wrap {
    height: 68px;
  }
  .header-actions > .button {
    display: none;
  }
  .menu-toggle {
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }
  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
  }
  .mobile-nav {
    display: none;
    padding: 8px 20px 18px;
    background: var(--deep);
  }
  .mobile-nav.open {
    display: flex;
    flex-direction: column;
  }
  .mobile-nav a {
    padding: 11px 0;
    border-bottom: 1px solid #29424f;
  }
  .hero {
    min-height: 650px;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(11, 27, 36, 0.96), rgba(11, 27, 36, 0.76)),
      linear-gradient(0deg, rgba(11, 27, 36, 0.72), transparent);
  }
  .hero-content {
    padding-top: 82px;
    padding-bottom: 78px;
  }
  .hero h1 {
    font-size: 4.15rem;
  }
  .hero-content > p:not(.kicker) {
    font-size: 0.95rem;
  }
  .trust-row {
    flex-direction: column;
    gap: 0.65rem;
  }
  .section {
    padding: 70px 0;
  }
  .section-heading h2,
  .feature h2,
  .quote-intro h2,
  .cta h2 {
    font-size: 2.75rem;
  }
  .process-grid,
  .reason-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-image {
    height: 280px;
  }
  .feature {
    padding: 70px 0;
  }
  .feature-grid {
    gap: 35px;
  }
  .feature-copy ul {
    grid-template-columns: 1fr;
  }
  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .quote-form {
    padding: 22px;
  }
  .contact-placeholder {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }
  .brand img {
    width: 146px;
    height: 52px;
  }
  .section-heading.centered {
    text-align: left;
  }
  .section-heading.centered .kicker {
    justify-content: flex-start;
  }
}
/* Borderless surface treatment */
.button-outline {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}
.card {
  border: 0;
  box-shadow: 0 10px 30px rgba(19, 41, 54, 0.06);
}
.contact-placeholder {
  border: 0;
  box-shadow: 0 8px 22px rgba(19, 41, 54, 0.05);
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  border: 0;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  box-shadow: 0 0 0 3px rgba(239, 107, 59, 0.22);
}
.footer-bottom {
  border-top: 0;
}
.mobile-nav a {
  border-bottom: 0;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition-duration: 0.01ms !important;
  }
}
