:root{
  --white:#ffffff;
  --cream:#f8f5ef;
  --navy:#0e2238;
  --navy-soft:#173451;
  --gold:#c59a4a;
  --gold-soft:#f4ead7;
  --ink:#1d2430;
  --muted:#687385;
  --line:#e8edf3;
  --shadow:0 22px 60px rgba(14,34,56,.14);
  --radius:28px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:Arial, Helvetica, sans-serif;
  color:var(--ink);
  background:var(--white);
  line-height:1.6;
  overflow-x:hidden;
}

a{color:inherit;text-decoration:none}

.site-header{
  position:sticky;
  top:0;
  z-index:30;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line);
}

.nav{
  width:min(1160px,92%);
  margin:auto;
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{display:flex;align-items:center;gap:14px}
.brand-mark{
  width:48px;
  height:48px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--navy),var(--navy-soft));
  color:#fff;
  font-weight:800;
  box-shadow:0 14px 28px rgba(14,34,56,.18);
}
.brand strong{display:block;color:var(--navy);font-size:1.05rem}
.brand small{display:block;color:var(--muted);font-size:.78rem;margin-top:-2px}

.nav-links{display:flex;gap:10px;align-items:center}
.nav-links a{
  padding:10px 15px;
  color:var(--navy);
  border-radius:999px;
  font-weight:700;
  font-size:.92rem;
  transition:.25s ease;
}
.nav-links a:hover{background:var(--gold-soft);color:var(--navy)}

.menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border:0;
  border-radius:14px;
  background:var(--navy);
  cursor:pointer;
}
.menu-toggle span{display:block;width:22px;height:2px;background:#fff;margin:5px auto;border-radius:4px}

.section-shell{width:min(1160px,92%);margin:auto}

.hero{
  min-height:calc(100vh - 78px);
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:42px;
  align-items:center;
  padding:80px 0;
  position:relative;
}
.hero:before{
  content:"";
  position:absolute;
  width:520px;
  height:520px;
  border-radius:50%;
  background:radial-gradient(circle,var(--gold-soft),transparent 68%);
  right:-170px;
  top:20px;
  z-index:-1;
}
.hero:after{
  content:"";
  position:absolute;
  width:280px;
  height:280px;
  border:1px solid rgba(197,154,74,.32);
  border-radius:50%;
  left:-120px;
  bottom:60px;
  z-index:-1;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:8px 13px;
  border-radius:999px;
  background:var(--gold-soft);
  color:#805f23;
  font-weight:800;
  font-size:.78rem;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.eyebrow:before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--gold);
}

h1,h2,h3{line-height:1.12;color:var(--navy)}
h1{font-size:clamp(3rem,8vw,6.8rem);letter-spacing:-.07em;margin:18px 0}
h2{font-size:clamp(2rem,4vw,3.25rem);letter-spacing:-.04em;margin:14px 0}
h3{font-size:1.35rem;margin-bottom:12px}
.hero-text{font-size:clamp(1.1rem,2vw,1.45rem);max-width:650px;color:var(--muted);margin-bottom:28px}
.hero-actions{display:flex;flex-wrap:wrap;gap:14px}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 24px;
  border-radius:999px;
  font-weight:800;
  transition:.25s ease;
  border:1px solid transparent;
}
.btn-primary{background:var(--navy);color:#fff;box-shadow:0 16px 30px rgba(14,34,56,.2)}
.btn-primary:hover{transform:translateY(-3px);background:var(--navy-soft)}
.btn-secondary{background:#fff;color:var(--navy);border-color:var(--line)}
.btn-secondary:hover{border-color:var(--gold);transform:translateY(-3px)}
.btn-light{background:#fff;color:var(--navy)}
.btn-light:hover{transform:translateY(-3px)}

.hero-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:38px;
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}
.hero-card:after{
  content:"";
  position:absolute;
  inset:auto -60px -80px auto;
  width:220px;
  height:220px;
  background:var(--gold-soft);
  border-radius:50%;
}
.justice-icon{
  width:150px;
  height:150px;
  border-radius:32px;
  background:linear-gradient(145deg,var(--navy),#1d4167);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:10px;
  margin-bottom:26px;
  box-shadow:0 22px 38px rgba(14,34,56,.22);
}
.pillar{display:block;background:var(--gold);border-radius:999px}
.pillar.top{width:90px;height:12px}
.pillar.middle{width:18px;height:70px;box-shadow:32px 0 0 var(--gold),-32px 0 0 var(--gold)}
.pillar.base{width:110px;height:14px}
.hero-card p{color:var(--muted);margin-bottom:22px}
.mini-list{display:flex;flex-wrap:wrap;gap:10px;position:relative;z-index:2}
.mini-list span{
  padding:9px 13px;
  border-radius:999px;
  background:var(--cream);
  color:var(--navy);
  font-weight:700;
  font-size:.9rem;
}

.intro{padding:70px 0 28px}
.centered{text-align:center;margin:auto;max-width:850px}
.section-heading{margin-bottom:34px}
.section-heading p{color:var(--muted);font-size:1.05rem;max-width:760px}
.centered p{margin:auto}

.services{padding:70px 0}
.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.service-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:26px;
  padding:28px;
  min-height:245px;
  position:relative;
  overflow:hidden;
  box-shadow:0 12px 34px rgba(14,34,56,.06);
  transition:.28s ease;
}
.service-card:hover{transform:translateY(-8px);box-shadow:var(--shadow);border-color:rgba(197,154,74,.45)}
.service-card:after{
  content:"";
  position:absolute;
  width:150px;
  height:150px;
  border-radius:50%;
  background:var(--gold-soft);
  right:-70px;
  top:-70px;
}
.service-icon{
  width:56px;
  height:56px;
  border-radius:18px;
  background:var(--navy);
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:900;
  margin-bottom:24px;
}
.service-card p{color:var(--muted)}

.highlight{padding:40px 0 78px}
.highlight-panel{
  background:linear-gradient(135deg,var(--navy),#15395d);
  color:#fff;
  border-radius:34px;
  padding:44px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  overflow:hidden;
  position:relative;
}
.highlight-panel:after{
  content:"";
  position:absolute;
  width:300px;
  height:300px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.18);
  right:-80px;
  top:-80px;
}
.highlight-panel .eyebrow{background:rgba(255,255,255,.12);color:#fff}
.highlight-panel h2{color:#fff;max-width:700px}
.highlight-panel p{color:rgba(255,255,255,.78);max-width:660px}
.highlight-panel .btn{position:relative;z-index:1;white-space:nowrap}

.location{padding:64px 0 90px}
.location-card{
  display:grid;
  grid-template-columns:1fr 1fr;
  border:1px solid var(--line);
  border-radius:34px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:#fff;
}
.map-visual{
  min-height:390px;
  background:linear-gradient(135deg,#eef3f8,#fff8ec);
  position:relative;
  overflow:hidden;
}
.map-grid{
  position:absolute;
  inset:0;
  background-image:linear-gradient(rgba(14,34,56,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(14,34,56,.08) 1px,transparent 1px);
  background-size:42px 42px;
  transform:rotate(-8deg) scale(1.2);
}
.pin{
  position:absolute;
  top:50%;
  left:50%;
  width:54px;
  height:54px;
  background:var(--gold);
  border-radius:50% 50% 50% 6px;
  transform:translate(-50%,-50%) rotate(-45deg);
  box-shadow:0 16px 30px rgba(197,154,74,.35);
}
.pin:after{
  content:"";
  position:absolute;
  width:18px;
  height:18px;
  border-radius:50%;
  background:#fff;
  top:18px;
  left:18px;
}
.location-info{padding:46px;display:flex;flex-direction:column;justify-content:center;align-items:flex-start}
.location-info p{color:var(--muted);margin-bottom:26px}

.footer{
  background:var(--navy);
  color:#fff;
  padding:28px 0;
}
.footer-inner{
  width:min(1160px,92%);
  margin:auto;
  display:flex;
  gap:16px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}
.footer span{color:rgba(255,255,255,.72)}
.footer a{color:#fff;font-weight:800;border-bottom:1px solid rgba(255,255,255,.5)}

.reveal{opacity:0;transform:translateY(24px);transition:.7s ease}
.reveal.show{opacity:1;transform:none}

@media (max-width:900px){
  .menu-toggle{display:block}
  .nav-links{
    position:absolute;
    top:78px;
    left:4%;
    right:4%;
    background:#fff;
    border:1px solid var(--line);
    border-radius:22px;
    box-shadow:var(--shadow);
    padding:12px;
    display:none;
    flex-direction:column;
    align-items:stretch;
  }
  .nav-links.open{display:flex}
  .hero,.location-card{grid-template-columns:1fr}
  .hero{padding:54px 0}
  .service-grid{grid-template-columns:repeat(2,1fr)}
  .highlight-panel{flex-direction:column;align-items:flex-start}
}

@media (max-width:620px){
  .service-grid{grid-template-columns:1fr}
  .hero-card,.highlight-panel,.location-info{padding:28px}
  .map-visual{min-height:270px}
  .btn{width:100%}
  .hero-actions{width:100%}
  h1{letter-spacing:-.05em}
}
