:root{
  --navy:#00162F;
  --amber:#E9B45A;
  --white:#FFFFFF;
  --background:#F7F8FA;
  --text:#00162F;
  --muted:#5F6875;
  --border:#DDE2E7;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.55;
}
a{color:inherit}
.container{width:min(1080px,92%);margin:0 auto}
.site-header{
  background:#fff;
  border-bottom:1px solid #edf0f3;
  position:sticky;
  top:0;
  z-index:10;
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:14px 0;
}
.nav-logo img{width:180px;height:auto;display:block}
.nav-links{
  display:flex;
  gap:22px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav-links a{
  text-decoration:none;
  font-size:.95rem;
  color:var(--navy);
}
.hero{
  padding:84px 0 72px;
  text-align:center;
}
.hero h1{
  margin:0 0 16px;
  font-size:clamp(2.4rem,5vw,4rem);
  line-height:1.08;
  color:var(--navy);
  letter-spacing:-.02em;
}
.hero p{
  max-width:780px;
  margin:0 auto 30px;
  color:var(--muted);
  font-size:clamp(1.05rem,2vw,1.28rem);
}
.actions{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}
.btn{
  display:inline-block;
  text-decoration:none;
  border-radius:9px;
  padding:13px 20px;
  font-weight:700;
  border:1px solid var(--navy);
}
.btn-primary{background:var(--navy);color:#fff}
.btn-secondary{background:#fff;color:var(--navy)}
.btn-amber{background:var(--amber);border-color:var(--amber);color:var(--navy)}
.section{padding:62px 0}
.section-alt{background:var(--background)}
.section h2{
  text-align:center;
  margin:0 0 32px;
  color:var(--navy);
  font-size:clamp(1.9rem,3vw,2.45rem);
}
.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.service-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  padding:22px;
  min-height:165px;
}
.service-card h3{
  margin:0 0 10px;
  font-size:1.08rem;
  color:var(--navy);
}
.service-card p{margin:0;color:#334155}
.rma{
  max-width:760px;
  margin:0 auto;
  text-align:center;
}
.rma .name{
  font-size:1.25rem;
  font-weight:800;
  margin-bottom:4px;
}
.rma .role{margin:0 0 4px;color:var(--muted)}
.rma .credential{font-weight:700;margin:10px 0 4px}
.rma .qualification{font-style:italic;color:#334155}
.disclaimer{
  max-width:840px;
  margin:30px auto 0;
  color:var(--muted);
  font-size:.88rem;
  text-align:center;
}
.site-footer{
  background:var(--navy);
  color:#fff;
  text-align:center;
  padding:32px 0;
  font-size:.92rem;
}
.site-footer a{color:#fff}
.footer-lines{display:grid;gap:3px}

/* Connect page */
.connect-page{
  background:linear-gradient(#fff,#fbfbfc);
  min-height:100vh;
}
.connect-wrap{
  width:min(620px,92%);
  margin:0 auto;
  padding:34px 0 42px;
  text-align:center;
}
.connect-logo{
  width:min(260px,62vw);
  height:auto;
  margin:0 auto 18px;
  display:block;
}
.connect-wrap h1{
  margin:0 0 6px;
  font-size:clamp(1.9rem,6vw,2.7rem);
  line-height:1.1;
  color:var(--navy);
}
.connect-role{
  margin:0 0 2px;
  font-weight:700;
  color:var(--navy);
}
.connect-credential{
  margin:2px 0 24px;
  color:var(--muted);
}
.connect-stack{
  display:grid;
  gap:12px;
  margin-top:22px;
}
.connect-stack a{
  display:block;
  padding:15px 18px;
  border-radius:10px;
  text-decoration:none;
  font-weight:800;
  border:1px solid var(--border);
}
.connect-stack .primary{
  background:var(--navy);
  color:#fff;
  border-color:var(--navy);
}
.connect-stack .secondary{
  background:#fff;
  color:var(--navy);
}
.connect-stack .amber{
  background:var(--amber);
  color:var(--navy);
  border-color:var(--amber);
}
.connect-footer{
  margin-top:30px;
  color:var(--muted);
  font-size:.92rem;
}
@media (max-width:760px){
  .nav{align-items:flex-start}
  .nav-logo img{width:150px}
  .nav-links{gap:12px}
  .hero{padding:58px 0 52px}
  .service-grid{grid-template-columns:1fr}
}

/* V3: professional portrait on Connect page */
.connect-portrait-wrap{
  display:flex;
  justify-content:center;
  margin:6px auto 24px;
}
.connect-portrait{
  width:220px;
  height:220px;
  object-fit:cover;
  object-position:center 20%;
  border-radius:50%;
  border:4px solid #FFFFFF;
  box-shadow:0 8px 28px rgba(0,22,47,.12);
  background:#fff;
}
@media (max-width:520px){
  .connect-portrait{
    width:176px;
    height:176px;
  }
}


/* V4: Connect page header and dual business telephone numbers */
.connect-site-header{
  width:100%;
  background:#fff;
  border-bottom:1px solid #e7ebf0;
}
.connect-header-inner{
  max-width:1120px;
  margin:0 auto;
  padding:14px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.connect-header-logo{
  display:block;
  width:142px;
  height:auto;
}
.connect-home-link{
  color:#001f3f;
  text-decoration:none;
  font-weight:600;
}
.connect-v4{
  padding-top:34px;
}
@media (max-width:520px){
  .connect-header-inner{
    padding:10px 16px;
  }
  .connect-header-logo{
    width:118px;
  }
  .connect-v4{
    padding-top:26px;
  }
}
