:root{
  --navy:#062b50;
  --navy-deep:#042947;
  --gold:#bd8528;
  --cream:#fbf8f2;
  --text:#172033;
  --line:#d8d4cc;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:Inter,Arial,sans-serif;color:var(--text);background:#fff}
a{text-decoration:none;color:inherit}

.site-header{
  background:#fff;
  position:sticky;
  top:0;
  z-index:30;
  box-shadow:0 1px 8px rgba(0,0,0,.06);
}
.nav-wrap{
  max-width:1320px;
  margin:auto;
  min-height:74px;
  display:flex;
  align-items:center;
  gap:28px;
  padding:0 28px;
}
.brand{display:block;flex:0 0 auto}
.brand img{display:block;width:345px;max-width:36vw;height:auto}

.main-nav{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:27px;
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.03em;
  color:#0c2340;
}
.main-nav>a{padding:28px 0 22px;white-space:nowrap}
.main-nav>a.active{color:var(--gold);border-bottom:2px solid var(--gold)}
.main-nav .nav-cta{
  background:var(--navy);
  color:#fff;
  padding:17px 24px;
  border-radius:2px;
  line-height:1.25;
  text-align:center;
}
.menu-toggle{
  display:none;
  margin-left:auto;
  background:none;
  border:0;
  font-size:28px;
  color:var(--navy);
  cursor:pointer;
}

.hero{
  height:245px;
  background:url('hero.jpg') center center/cover no-repeat;
}

.services{
  background:var(--cream);
  padding:8px 0 15px;
}
.services-grid{
  max-width:1210px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
}
.service-card{
  padding:16px 38px 10px;
  text-align:center;
  border-right:1px solid var(--line);
  min-height:177px;
}
.service-card:last-child{border-right:0}
.icon-circle{
  width:56px;
  height:56px;
  background:var(--navy);
  border-radius:50%;
  margin:0 auto 9px;
  display:grid;
  place-items:center;
}
.icon-circle svg{
  width:34px;
  height:34px;
  fill:none;
  stroke:var(--gold);
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.service-card h2{
  font:700 23px/1 'Cormorant Garamond',serif;
  color:#0c2a4f;
  margin:0 0 9px;
}
.service-card p{
  font-size:13px;
  line-height:1.4;
  margin:0 auto;
  max-width:220px;
}

.about{
  max-width:1335px;
  margin:auto;
  display:grid;
  grid-template-columns:1.6fr .92fr .5fr;
  gap:22px;
  align-items:center;
  padding:12px 28px 12px;
}
.about-copy{padding-right:12px}
.eyebrow{
  text-transform:uppercase;
  color:var(--gold);
  font-weight:700;
  font-size:13px;
  letter-spacing:.06em;
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:3px;
}
.eyebrow span{
  display:inline-block;
  width:42px;
  height:1px;
  background:var(--gold);
}
.about h2{
  font:700 31px/1.03 'Cormorant Garamond',serif;
  color:#0d2b51;
  margin:7px 0 10px;
}
.about-copy p{
  font-size:12.3px;
  line-height:1.34;
  margin:0 0 8px;
}
.signature{
  font:italic 30px/1.1 'Cormorant Garamond',serif;
  color:#0d2b51;
  margin-top:8px;
}
.role{
  text-transform:uppercase;
  color:var(--gold);
  font-size:12px;
  font-weight:700;
  letter-spacing:.06em;
  margin-top:4px;
}
.about-photo-wrap{align-self:stretch}
.about-photo{
  display:block;
  width:100%;
  height:100%;
  min-height:290px;
  object-fit:cover;
  object-position:center;
}
.quote-card{
  background:#06345f;
  color:#fff;
  min-height:290px;
  padding:24px 28px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.quote-mark{
  font:700 54px/1 'Cormorant Garamond',serif;
  color:var(--gold);
  height:36px;
}
.quote-card blockquote{
  font:600 20px/1.25 'Cormorant Garamond',serif;
  margin:10px 0 14px;
}
.quote-line{
  width:52px;
  height:2px;
  background:var(--gold);
  display:block;
}

.cta-band{
  height:128px;
  background:url('cta.jpg') center/cover no-repeat;
  position:relative;
  display:grid;
  place-items:center;
  color:#fff;
  text-align:center;
}
.cta-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,37,72,.50);
}
.cta-content{position:relative;z-index:1}
.compass{
  width:30px;
  height:30px;
  border:1px solid var(--gold);
  border-radius:50%;
  display:grid;
  place-items:center;
  color:var(--gold);
  margin:0 auto 3px;
  font-size:18px;
}
.cta-content h2{
  font:700 29px/1 'Cormorant Garamond',serif;
  margin:4px 0 3px;
}
.cta-content p{font-size:12px;margin:0 0 8px}
.gold-btn{
  display:inline-block;
  background:linear-gradient(#d5a03d,#b77c1d);
  color:#fff;
  font-weight:700;
  text-transform:uppercase;
  font-size:11px;
  letter-spacing:.02em;
  padding:11px 20px;
  border-radius:2px;
}

.footer{
  background:#042f56;
  color:#fff;
  padding:18px 28px 12px;
}
.footer-grid{
  max-width:1020px;
  margin:auto;
  display:grid;
  grid-template-columns:1.3fr 1fr 1.25fr .8fr;
  gap:0;
}
.footer-grid>div{
  padding:0 28px;
  border-right:1px solid rgba(255,255,255,.18);
}
.footer-grid>div:last-child{border-right:0}
.footer-brand img{
  width:255px;
  max-width:100%;
}
.footer h3{
  text-transform:uppercase;
  color:var(--gold);
  font-size:11px;
  letter-spacing:.06em;
  margin:0 0 7px;
}
.footer a,.footer p{
  display:block;
  color:#fff;
  font-size:10px;
  line-height:1.55;
  margin:0;
}
.follow-copy{
  font:italic 18px/1.1 'Cormorant Garamond',serif!important;
  margin-top:7px!important;
}
.footer-bottom{
  text-align:center;
  font-size:9px;
  opacity:.85;
  margin-top:17px;
}
.footer-bottom span{padding:0 12px}

@media (max-width:1100px){
  .brand img{max-width:300px}
  .main-nav{gap:15px;font-size:10px}
  .main-nav .nav-cta{padding:13px 15px}
  .service-card{padding-left:18px;padding-right:18px}
  .about{
    grid-template-columns:1.4fr .9fr .55fr;
  }
}

@media (max-width:900px){
  .nav-wrap{padding:8px 18px}
  .brand img{width:290px;max-width:72vw}
  .menu-toggle{display:block}
  .main-nav{
    display:none;
    position:absolute;
    top:74px;
    left:0;
    right:0;
    background:#fff;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:10px 20px 20px;
    box-shadow:0 8px 16px rgba(0,0,0,.08);
  }
  .main-nav.open{display:flex}
  .main-nav>a{padding:12px 0;border-bottom:1px solid #eee}
  .main-nav .nav-cta{margin-top:10px}

  .hero{
    height:38vw;
    min-height:220px;
    background-position:67% center;
  }

  .services-grid{grid-template-columns:repeat(2,1fr)}
  .service-card{border-bottom:1px solid var(--line)}
  .service-card:nth-child(2){border-right:0}

  .about{
    grid-template-columns:1fr 1fr;
    padding:28px 22px;
  }
  .about-copy{grid-column:1/-1}
  .about-photo{height:390px}
  .quote-card{min-height:390px}

  .footer-grid{
    grid-template-columns:1fr 1fr;
    gap:22px;
  }
  .footer-grid>div{border:0;padding:0}
}

@media (max-width:620px){
  .hero{
    height:55vw;
    min-height:210px;
    background-position:72% center;
  }

  .services-grid{grid-template-columns:1fr}
  .service-card{
    border-right:0;
    padding:24px 30px;
  }

  .about{
    grid-template-columns:1fr;
    padding:30px 20px;
  }
  .about h2{font-size:29px}
  .about-copy p{font-size:13px;line-height:1.48}
  .about-photo{height:auto;min-height:0}
  .quote-card{min-height:220px}

  .cta-band{height:210px}
  .cta-content{padding:0 20px}
  .cta-content h2{font-size:26px}

  .footer-grid{grid-template-columns:1fr}
  .footer-brand img{width:270px}
  .footer-bottom{line-height:1.5}
}
