:root{
  --bg:#0E1319;
  --panel:#18222E;
  --navy:#2C4A6E;
  --navy-deep:#223A57;
  --ice:#B7CCE4;
  --text:#EDF2F8;
  --muted:#B6C8DB;
  --steel:#3E5674;
  --line:#2E4158;
  --line-light:#A9BFD8;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:'Segoe UI',system-ui,-apple-system,Roboto,Helvetica,Arial,sans-serif;
  font-size:16px;
  line-height:1.7;
  color:var(--text);
  background:var(--bg);
  overflow-x:hidden;
}

a{color:var(--ice);text-decoration:none}
a:hover{text-decoration:none}

img{max-width:100%}

.container{max-width:1200px;margin:0 auto;padding:0 24px}

.reveal{opacity:1;transform:none;transition:opacity .7s ease,transform .7s ease}
.js .reveal{opacity:0;transform:translateY(28px)}
.js .reveal.visible{opacity:1;transform:none}

/* ============ COLUMN NAV ============ */
.column-nav{
  position:sticky;
  top:0;
  z-index:50;
  background:var(--bg);
  border-bottom:1px solid var(--steel);
  transition:box-shadow .3s ease;
}
.column-nav.scrolled{
  box-shadow:0 6px 22px rgba(14,19,25,.85);
}
.nav-inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
  height:68px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{
  color:var(--ice);
  font-size:1.32rem;
  font-weight:800;
  letter-spacing:.1em;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:2px;
}
.nav-link{
  display:flex;
  align-items:center;
  color:var(--text);
  font-size:.94rem;
  font-weight:600;
  padding:22px 13px;
  border-bottom:2px solid transparent;
}
.nav-link::before{
  content:"";
  display:inline-block;
  width:3px;
  height:14px;
  background:var(--steel);
  margin-right:10px;
}
.nav-link:hover{color:var(--ice)}
.nav-link.active{
  color:var(--ice);
  border-bottom-color:var(--ice);
}
.nav-toggle{
  display:none;
  background:none;
  border:0;
  cursor:pointer;
  padding:10px;
  flex-direction:column;
  gap:5px;
}
.nav-toggle span{
  display:block;
  width:24px;
  height:2px;
  background:var(--ice);
}

/* ============ COURTHOUSE HERO ============ */
.courthouse-hero{
  background:var(--bg);
  padding:92px 0 96px;
  border-bottom:1px solid var(--line);
}
.hero-inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:56px;
}
.hero-copy{flex:1.2;max-width:660px}
.hero-eyebrow{
  display:inline-block;
  background:var(--ice);
  color:#0C1620;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  padding:9px 16px;
  margin-bottom:26px;
}
.hero-title{
  font-size:56px;
  line-height:1.1;
  font-weight:800;
  margin:0 0 26px;
  color:var(--text);
}
.hero-sub{
  font-size:1.12rem;
  color:var(--muted);
  max-width:600px;
  margin:0 0 38px;
}
.hero-ctas{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.btn{
  display:inline-block;
  font-size:.98rem;
  font-weight:700;
  letter-spacing:.02em;
  padding:15px 34px;
  border:2px solid transparent;
  cursor:pointer;
}
.btn-primary{
  background:var(--navy);
  color:var(--text);
  border-color:var(--navy);
}
.btn-primary:hover{background:var(--navy-deep)}
.btn-outline{
  background:transparent;
  color:var(--ice);
  border-color:var(--ice);
}
.btn-outline:hover{background:var(--ice);color:#0C1620}

/* Portico graphic */
.portico{
  flex:0 0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:0 46px;
}
.pediment{
  width:0;
  height:0;
  border-left:116px solid transparent;
  border-right:116px solid transparent;
  border-bottom:90px solid var(--steel);
}
.architrave{
  width:250px;
  height:14px;
  background:var(--steel);
}
.portico-columns{
  display:flex;
  gap:24px;
  padding-top:2px;
}
.portico-col{
  width:38px;
  height:188px;
  background:var(--ice);
}

/* ============ SERVICE GRID ============ */
.service-grid{
  background:var(--bg);
  padding:96px 0;
}
.section-head{
  max-width:800px;
  margin:0 auto 60px;
  text-align:center;
}
.section-eyebrow{
  color:var(--ice);
  font-size:.8rem;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
  margin:0 0 14px;
}
.section-title{
  font-size:40px;
  line-height:1.15;
  font-weight:800;
  margin:0 0 22px;
  color:var(--text);
}
.section-intro{
  color:var(--muted);
  font-size:1.06rem;
  margin:0;
}
.grid-2x3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.service-card{
  background:var(--panel);
  border-top:3px solid var(--steel);
  padding:38px 32px;
}
.service-num{
  color:var(--ice);
  font-size:1.05rem;
  font-weight:800;
  letter-spacing:.1em;
  margin:0 0 16px;
}
.service-card h3{
  font-size:1.32rem;
  font-weight:700;
  margin:0 0 14px;
  color:var(--text);
}
.service-card p{
  margin:0;
  color:var(--muted);
  font-size:.98rem;
}

/* ============ METRIC BAND ============ */
.metric-band{
  background:var(--panel);
  padding:72px 0;
}
.metric-band-lead{
  max-width:820px;
  text-align:center;
  margin:0 auto 52px;
  color:var(--muted);
  font-size:1.06rem;
}
.metrics{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}
.metric{
  text-align:center;
  padding:10px 24px;
}
.metric + .metric{border-left:1px solid var(--line)}
.metric-num{
  font-size:54px;
  line-height:1.1;
  font-weight:800;
  color:var(--ice);
  margin:0 0 10px;
}
.metric-label{
  color:var(--muted);
  font-size:.92rem;
  margin:0;
}

/* ============ PROMISE BAND ============ */
.promise-band{
  background:var(--navy);
  padding:92px 0;
}
.promise-title{
  font-size:38px;
  font-weight:800;
  text-align:center;
  color:var(--text);
  margin:0 0 24px;
}
.promise-lead{
  max-width:840px;
  margin:0 auto 56px;
  text-align:center;
  color:#DCE7F2;
  font-size:1.08rem;
}
.principles{
  display:grid;
  grid-template-columns:repeat(3,1fr);
}
.principle{padding:0 34px}
.principle + .principle{border-left:1px solid var(--line-light)}
.principle h3{
  color:var(--text);
  font-size:1.22rem;
  font-weight:700;
  letter-spacing:.06em;
  margin:0 0 12px;
}
.principle p{
  color:#DCE7F2;
  font-size:.95rem;
  margin:0;
}

/* ============ CTA BAND ============ */
.cta-band{
  background:var(--ice);
  padding:92px 0;
  text-align:center;
}
.cta-title{
  color:#0C1620;
  font-size:40px;
  font-weight:800;
  margin:0 0 18px;
}
.cta-lead{
  color:#20303F;
  font-size:1.12rem;
  max-width:760px;
  margin:0 auto 36px;
}
.cta-band .btn{font-size:1.02rem;padding:16px 42px}

/* ============ PEDIMENT FOOTER ============ */
.pediment-footer{
  background:var(--navy);
}
.footer-inner{
  max-width:1200px;
  margin:0 auto;
  padding:52px 24px 44px;
}
.footer-row1{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding-bottom:30px;
}
.footer-brand{
  color:var(--ice);
  font-size:1.32rem;
  font-weight:800;
  letter-spacing:.1em;
}
.footer-links{
  display:flex;
  gap:30px;
}
.footer-links a{
  color:var(--text);
  font-weight:600;
  font-size:.95rem;
}
.footer-links a:hover{color:var(--ice)}
.footer-row2{
  border-top:1px solid var(--line-light);
  padding-top:26px;
  text-align:center;
  color:#DCE7F2;
  font-size:.9rem;
}
.footer-row2 a{
  color:#DCE7F2;
  text-decoration:underline;
}
.footer-row2 a:hover{color:var(--ice)}

/* ============ SECONDARY PAGES ============ */
.page-hero{
  background:var(--bg);
  padding:88px 0 76px;
  border-bottom:1px solid var(--line);
}
.page-eyebrow{
  color:var(--ice);
  font-size:.8rem;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
  margin:0 0 16px;
}
.page-title{
  font-size:48px;
  line-height:1.12;
  font-weight:800;
  margin:0 0 24px;
  color:var(--text);
}
.page-lead{
  color:var(--muted);
  font-size:1.1rem;
  max-width:780px;
  margin:0;
}

.services-detail{padding:92px 0}
.services-detail .section-title{text-align:center}
.service-block{
  background:var(--panel);
  border-top:3px solid var(--steel);
  padding:42px 40px;
  margin-bottom:26px;
}
.service-block h2{
  font-size:1.5rem;
  font-weight:700;
  color:var(--text);
  margin:0 0 18px;
}
.service-block p{
  color:var(--muted);
  margin:0 0 16px;
}
.service-block p:last-of-type{margin-bottom:20px}
.service-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px 28px;
}
.service-list li{
  position:relative;
  padding-left:22px;
  color:var(--muted);
  font-size:.95rem;
}
.service-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:11px;
  width:8px;
  height:8px;
  background:var(--ice);
}

.process-overview{padding:0 0 92px}
.process-overview .section-title{text-align:center}
.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.process-step{
  background:var(--panel);
  border-top:3px solid var(--steel);
  padding:34px 28px;
}
.process-num{
  color:var(--ice);
  font-size:1rem;
  font-weight:800;
  letter-spacing:.1em;
  margin:0 0 14px;
}
.process-step h3{
  font-size:1.2rem;
  font-weight:700;
  color:var(--text);
  margin:0 0 12px;
}
.process-step p{
  color:var(--muted);
  font-size:.95rem;
  margin:0;
}

/* ============ CONTACT PAGE ============ */
.contact-section{padding:92px 0 84px}
.contact-grid{
  display:grid;
  grid-template-columns:1.15fr 1fr;
  gap:56px;
}
.contact-form-heading{
  font-size:1.6rem;
  font-weight:700;
  color:var(--text);
  margin:0 0 10px;
}
.contact-form-note{
  color:var(--muted);
  margin:0 0 34px;
}
.form-field{margin-bottom:24px}
.form-field label{
  display:block;
  color:var(--muted);
  font-size:.9rem;
  font-weight:600;
  margin-bottom:8px;
}
.form-field input,
.form-field textarea{
  width:100%;
  background:#0C1117;
  border:1px solid var(--steel);
  color:var(--text);
  font-size:1rem;
  font-family:inherit;
  padding:14px 16px;
  border-radius:2px;
}
.form-field textarea{resize:vertical}
.form-field input:focus,
.form-field textarea:focus{
  outline:none;
  border-color:var(--ice);
}
.form-status{
  color:var(--ice);
  font-size:.95rem;
  margin:18px 0 0;
  min-height:1.4em;
}

.contact-info{
  background:var(--panel);
  border-top:3px solid var(--steel);
  padding:40px 36px;
}
.contact-info h2{
  font-size:1.35rem;
  font-weight:700;
  color:var(--text);
  margin:0 0 26px;
}
.info-row{
  padding:14px 0;
  border-bottom:1px solid var(--line);
}
.info-row:last-of-type{border-bottom:0}
.info-label{
  display:block;
  color:var(--ice);
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  margin-bottom:6px;
}
.info-value{
  color:var(--text);
  font-size:1rem;
}
.info-value a{color:var(--ice)}

.faq-section{padding:0 0 96px}
.faq-section .section-title{text-align:center}
.faq-list{
  max-width:840px;
  margin:0 auto;
}
.faq-item{
  background:var(--panel);
  border-top:3px solid var(--steel);
  margin-bottom:14px;
}
.faq-question{
  width:100%;
  text-align:left;
  background:none;
  border:0;
  color:var(--text);
  font-family:inherit;
  font-size:1.05rem;
  font-weight:700;
  padding:22px 26px;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}
.faq-icon{
  color:var(--ice);
  font-size:1.5rem;
  line-height:1;
  transition:transform .3s ease;
}
.faq-item.open .faq-icon{transform:rotate(45deg)}
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}
.faq-answer-inner{
  padding:0 26px 24px;
  color:var(--muted);
  font-size:.97rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width:1024px){
  .portico{padding:0 20px}
  .pediment{border-left-width:92px;border-right-width:92px;border-bottom-width:72px}
  .architrave{width:200px}
  .portico-col{width:30px;height:150px}
  .grid-2x3{grid-template-columns:1fr 1fr}
  .process-grid{grid-template-columns:1fr 1fr}
}

@media (max-width:860px){
  .hero-inner{flex-direction:column;align-items:flex-start}
  .portico{display:none}
  .hero-title{font-size:44px}
  .metrics{grid-template-columns:1fr 1fr;gap:36px 24px}
  .metric + .metric{border-left:0}
  .metric-num{font-size:44px}
  .contact-grid{grid-template-columns:1fr}
  .service-list{grid-template-columns:1fr}
}

@media (max-width:720px){
  .nav-toggle{display:flex}
  .nav-links{
    position:absolute;
    top:68px;
    left:0;
    right:0;
    flex-direction:column;
    align-items:stretch;
    background:var(--bg);
    border-bottom:1px solid var(--steel);
    display:none;
    padding:8px 0;
  }
  .nav-links.open{display:flex}
  .nav-link{
    padding:15px 26px;
    border-bottom:1px solid var(--line);
  }
  .nav-link.active{border-bottom:2px solid var(--ice)}
  .hero-title{font-size:36px}
  .section-title{font-size:30px}
  .cta-title{font-size:30px}
  .grid-2x3{grid-template-columns:1fr}
  .principles{grid-template-columns:1fr}
  .principle{padding:0}
  .principle + .principle{border-left:0;border-top:1px solid var(--line-light);padding-top:28px}
  .process-grid{grid-template-columns:1fr}
  .footer-row1{flex-direction:column;align-items:flex-start;gap:20px}
  .footer-links{flex-wrap:wrap;gap:18px}
  .page-title{font-size:36px}
}
