* {
  box-sizing: border-box;
}

:root {
  --navy: #071b33;
  --navy-light: #0d2948;
  --orange: #ff7a30;
  --orange-dark: #e9631d;
  --white: #ffffff;
  --light: #f5f7fa;
  --text: #182638;
  --muted: #667586;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 35px;
  padding: 15px 6%;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e9edf2;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  margin-right: auto;
}

.logo-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--navy);
  color: var(--orange);
  font-weight: 900;
  font-size: 15px;
}

.brand-name {
  color: var(--navy);
  font-size: 27px;
  font-weight: 900;
  line-height: .9;
}

.brand-sub {
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 4px;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

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

.phone-button {
  background: var(--navy);
  color: white;
  text-decoration: none;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  color: var(--navy);
  font-size: 28px;
}


/* HERO */

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
  padding: 75px 7%;
  background: var(--light);
}

.hero-content {
  max-width: 650px;
}

.eyebrow {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.5px;
}

.hero h1 {
  margin: 15px 0 25px;
  color: var(--navy);
  font-size: clamp(45px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -2px;
}

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

.hero-content > p {
  color: var(--muted);
  font-size: 18px;
  max-width: 600px;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  transition: .2s;
}

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

.primary {
  background: var(--orange);
  color: white;
}

.primary:hover,
.orange:hover {
  background: var(--orange-dark);
}

.outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: white;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
  color: #526274;
  font-size: 13px;
  font-weight: 700;
}


/* HERO IMAGE */

.hero-image {
  position: relative;
  min-height: 500px;
  border-radius: 24px;
  overflow: hidden;

  background-image:
    url("https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=1400&q=85");

  background-size: cover;
  background-position: center;
  box-shadow: 0 25px 70px rgba(7,27,51,.2);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(7,27,51,.75)
  );
}

.image-card {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  padding: 20px;
  border-radius: 14px;
  background: rgba(7,27,51,.88);
  color: white;
}

.image-card strong {
  display: block;
  color: var(--orange);
  font-size: 12px;
  letter-spacing: 2px;
}

.image-card span {
  display: block;
  font-size: 20px;
  font-weight: 800;
}


/* CONTACT STRIP */

.contact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 25px 7%;
  background: var(--navy);
  color: white;
}

.contact-strip div {
  border-right: 1px solid rgba(255,255,255,.15);
  padding-right: 20px;
}

.contact-strip div:last-child {
  border: 0;
}

.contact-strip strong,
.contact-strip span {
  display: block;
}

.contact-strip strong {
  color: var(--orange);
  font-size: 12px;
  margin-bottom: 3px;
}

.contact-strip span {
  color: #dbe3ec;
  font-size: 13px;
}


/* SERVICES */

.section {
  padding: 100px 7%;
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading h2 {
  margin: 8px 0;
  color: var(--navy);
  font-size: 48px;
  letter-spacing: -1px;
}

.section-heading p {
  color: var(--muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  padding: 32px;
  background: white;
  border: 1px solid #e5eaf0;
  border-radius: 16px;
  transition: .25s;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 45px rgba(7,27,51,.1);
  border-color: #d5dfe9;
}

.service-number {
  position: absolute;
  right: 20px;
  top: 18px;
  color: #e9edf2;
  font-size: 40px;
  font-weight: 900;
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--navy);
  color: var(--orange);
  font-size: 23px;
}

.service-card h3 {
  color: var(--navy);
  font-size: 22px;
  margin: 20px 0 8px;
}

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


/* ABOUT */

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 550px;
}

.about-image {
  min-height: 500px;
  background-image:
    url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1400&q=85");
  background-size: cover;
  background-position: center;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 9%;
  background: var(--navy);
  color: white;
}

.about-content h2 {
  font-size: 46px;
  line-height: 1.08;
  margin: 15px 0 20px;
}

.about-content p {
  color: #cbd6e1;
  max-width: 600px;
}


/* QUOTE */

.quote-section {
  padding: 100px 7%;
  text-align: center;
  background: var(--light);
}

.quote-section h2 {
  color: var(--navy);
  font-size: 48px;
  margin: 10px 0;
}

.quote-section > p {
  color: var(--muted);
  max-width: 650px;
  margin: auto;
}

.center {
  justify-content: center;
}

.orange {
  background: var(--orange);
  color: white;
}

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


/* FOOTER */

.footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding: 55px 7%;
  background: #041222;
  color: #b9c5d2;
}

.footer-brand {
  color: white;
  font-size: 25px;
  font-weight: 900;
}

.footer strong {
  color: white;
  font-size: 13px;
}

.footer a {
  text-decoration: none;
}

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


/* TABLET */

@media (max-width: 900px) {

  .header {
    padding: 12px 5%;
  }

  .phone-button {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 77px;
    left: 0;
    right: 0;
    padding: 25px 7%;
    flex-direction: column;
    background: white;
    box-shadow: 0 15px 30px rgba(0,0,0,.1);
  }

  .nav.open {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 60px 6%;
  }

  .hero-image {
    min-height: 420px;
  }

  .contact-strip {
    grid-template-columns: 1fr 1fr;
  }

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

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

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


/* PHONE */

@media (max-width: 600px) {

  .brand-name {
    font-size: 24px;
  }

  .hero {
    padding: 50px 5%;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-image {
    min-height: 380px;
  }

  .contact-strip,
  .services-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .contact-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
    padding: 12px 0;
  }

  .section-heading h2,
  .quote-section h2 {
    font-size: 38px;
  }

  .about-content h2 {
    font-size: 38px;
  }
}
