:root{
  --navy:#071B34;
  --dark-navy:#041224;
  --gold:#D6B45A;
  --cream:#f7f5ef;
  --white:#ffffff;
}

*{
  box-sizing:border-box;
}

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

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

header{
  background:var(--navy);
  padding:14px 0;
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
}

.logo img{
  height:95px;
  width:auto;
  display:block;
}

nav{
  display:flex;
  gap:30px;
  align-items:center;
}

nav a{
  color:white;
  text-decoration:none;
  font-weight:700;
}

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

.hero{
  background:
    linear-gradient(rgba(7,27,52,.72), rgba(7,27,52,.78)),
    url("images/ChatGPT Image Jun 2, 2026, 04_34_59 PM.png");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  color:white;
  text-align:center;
  min-height:720px;
  display:flex;
  align-items:center;
}

.hero-content{
  padding:120px 0;
}

.eyebrow{
  color:var(--gold);
  letter-spacing:3px;
  text-transform:uppercase;
  font-weight:800;
  font-size:.9rem;
}

.hero h1{
  font-size:clamp(2.8rem, 6vw, 5.4rem);
  line-height:1.05;
  max-width:1050px;
  margin:20px auto 25px;
}

.hero-text{
  max-width:850px;
  margin:auto;
  font-size:1.25rem;
}

.buttons{
  margin-top:40px;
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
  display:inline-block;
  padding:15px 28px;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
}

.btn-primary{
  background:var(--gold);
  color:var(--navy);
}

.btn-secondary{
  border:2px solid var(--gold);
  color:white;
}

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

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

.card{
  background:white;
  padding:35px;
  border-top:6px solid var(--gold);
  box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.card h2{
  margin-top:0;
}

.about-preview{
  padding:90px 0;
  background:white;
}

.about-layout{
  display:grid;
  grid-template-columns:330px 1fr;
  gap:65px;
  align-items:center;
}

.about-photo img{
  width:100%;
  max-width:330px;
  border-radius:22px;
  box-shadow:0 18px 45px rgba(0,0,0,.18);
  display:block;
}

.about-content h2,
.services-preview h2,
.why h2,
.cta h2{
  font-size:clamp(2rem, 4vw, 3.2rem);
  line-height:1.1;
  margin:15px 0 25px;
}

.about-content{
  text-align:left;
}

.services-preview{
  background:var(--navy);
  color:white;
  padding:90px 0;
  text-align:center;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  margin-top:45px;
}

.service-card{
  background:white;
  color:var(--navy);
  padding:35px;
  border-radius:16px;
  box-shadow:0 8px 25px rgba(0,0,0,.15);
}

.service-card h3{
  margin-top:0;
}

.service-card strong{
  color:#9c7a24;
}

.why{
  padding:90px 0;
  text-align:center;
  background:white;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
  margin-top:45px;
}

.why-grid div{
  background:var(--cream);
  padding:30px;
  border-radius:16px;
}

.cta{
  background:var(--navy);
  color:white;
  text-align:center;
  padding:110px 0;
}

.cta p{
  max-width:850px;
  margin:0 auto 35px;
  font-size:1.15rem;
}

footer{
  background:var(--dark-navy);
  color:white;
  text-align:center;
  padding:45px 0;
}

.footer-logo{
  height:110px;
  width:auto;
  margin-bottom:18px;
}

@media(max-width:900px){

  .nav{
    flex-direction:column;
  }

  .logo img{
    height:115px;
  }

  nav{
    flex-wrap:wrap;
    justify-content:center;
    gap:18px;
  }

  .hero{
    min-height:620px;
  }

  .hero-content{
    padding:90px 0;
  }

  .trust-grid,
  .service-grid,
  .why-grid,
  .about-layout{
    grid-template-columns:1fr;
  }

  .about-photo{
    text-align:center;
  }

  .about-photo img{
    margin:auto;
  }

  .about-content{
    text-align:center;
  }

  .footer-logo{
    height:90px;
  }
}
