:root{
  --bg:#0a0f1a;
  --bg-soft:#111827;
  --panel:#ffffff;
  --panel-soft:#f6f8fb;
  --text:#0f172a;
  --muted:#5b6472;
  --line:#e5e7eb;
  --primary:#0f3d91;
  --primary-dark:#0a2f72;
  --accent:#c89b3c;
  --accent-soft:#f6edd8;
  --white:#ffffff;
  --success:#15803d;
  --shadow:0 20px 60px rgba(2, 8, 23, 0.10);
  --radius:22px;
  --max:1180px;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Inter, Arial, Helvetica, sans-serif;
  background:var(--white);
  color:var(--text);
  line-height:1.6;
}

img{
  max-width:100%;
  display:block;
}

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

button,
input,
textarea,
select{
  font:inherit;
}

.container{
  width:min(92%, var(--max));
  margin:0 auto;
}

.section{
  padding:96px 0;
}

.section-sm{
  padding:68px 0;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  background:var(--accent-soft);
  color:#7a5a17;
  font-weight:700;
  font-size:.92rem;
  margin-bottom:18px;
}

h1,h2,h3,h4{
  line-height:1.05;
  letter-spacing:-0.03em;
}

h1{
  font-size:clamp(3rem, 7vw, 5.8rem);
  font-weight:800;
}

h2{
  font-size:clamp(2.2rem, 4vw, 3.4rem);
  font-weight:800;
  margin-bottom:16px;
}

h3{
  font-size:1.35rem;
  font-weight:700;
  margin-bottom:12px;
}

p{
  color:var(--muted);
}

.lead{
  font-size:1.1rem;
  max-width:780px;
}

.section-head{
  max-width:800px;
  margin-bottom:42px;
}

.btn-row{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 24px;
  border-radius:999px;
  font-weight:700;
  border:2px solid transparent;
  transition:.22s ease;
  cursor:pointer;
}

.btn-primary{
  background:var(--accent);
  color:#1b1508;
}

.btn-primary:hover{
  transform:translateY(-2px);
  background:#b88825;
}

.btn-secondary{
  background:transparent;
  border-color:rgba(255,255,255,.18);
  color:var(--white);
}

.btn-secondary:hover{
  border-color:var(--accent);
  color:var(--accent);
}

.btn-outline-dark{
  background:transparent;
  border-color:#ccd5e2;
  color:var(--text);
}

.btn-outline-dark:hover{
  border-color:var(--primary);
  color:var(--primary);
}

.header{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(15,23,42,.06);
}

.nav{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  position:relative;
}

.logo{
  font-size:1.12rem;
  font-weight:800;
  max-width:420px;
}

.logo span{
  color:var(--primary);
}

.nav-toggle{
  display:none;
  background:none;
  border:none;
  font-size:1.9rem;
  cursor:pointer;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:22px;
}

.nav-links a{
  font-weight:600;
  color:#253247;
}

.nav-links a:hover,
.nav-links a.active{
  color:var(--primary);
}

.hero{
  position:relative;
  overflow:hidden;
  color:var(--white);
  background:
    linear-gradient(100deg, rgba(10,15,26,.92), rgba(10,15,26,.68)),
    url("[images.unsplash.com](https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1600&q=80)") center/cover no-repeat;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top right, rgba(200,155,60,.18), transparent 30%);
  pointer-events:none;
}

.hero .container{
  position:relative;
  z-index:2;
  padding:118px 0 98px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:34px;
  align-items:center;
}

.hero p{
  color:#d9e1eb;
  margin:22px 0 28px;
  max-width:760px;
}

.hero-card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(14px);
  border-radius:26px;
  padding:30px;
  box-shadow:var(--shadow);
}

.hero-card h3,
.hero-card p,
.hero-card li{
  color:var(--white);
}

.hero-list{
  list-style:none;
  display:grid;
  gap:12px;
  margin:18px 0 24px;
}

.hero-list li{
  position:relative;
  padding-left:18px;
}

.hero-list li::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--accent);
  position:absolute;
  left:0;
  top:10px;
}

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

.card{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:30px;
  box-shadow:var(--shadow);
}

.icon{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border-radius:15px;
  background:var(--accent-soft);
  color:#7a5a17;
  font-weight:800;
  margin-bottom:16px;
}

.gray{
  background:var(--panel-soft);
}

.dark{
  background:linear-gradient(135deg, #0a0f1a, #132033);
  color:var(--white);
}

.dark p{
  color:#d7dfeb;
}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:36px;
  align-items:center;
}

.image-frame{
  min-height:420px;
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:#fff;
}

.image-frame img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.headshot-frame{
  min-height:420px;
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:#fff;
  border:1px solid var(--line);
}

.headshot-frame img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.checklist{
  list-style:none;
  display:grid;
  gap:12px;
  margin-top:18px;
}

.checklist li{
  position:relative;
  padding-left:28px;
  color:var(--muted);
}

.checklist li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--success);
  font-weight:800;
}

.stats{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
  margin-top:30px;
}

.stat{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:20px;
  padding:24px;
  text-align:center;
  box-shadow:var(--shadow);
}

.stat strong{
  display:block;
  font-size:2rem;
  color:var(--primary);
  margin-bottom:8px;
}

.service-block{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:24px;
  padding:36px;
  box-shadow:var(--shadow);
}

.service-block + .service-block{
  margin-top:24px;
}

.service-meta{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  margin-top:18px;
}

.service-meta ul{
  list-style:none;
  display:grid;
  gap:10px;
}

.service-meta li{
  position:relative;
  padding-left:20px;
  color:var(--muted);
}

.service-meta li::before{
  content:"•";
  position:absolute;
  left:0;
  color:var(--accent);
}

.form-wrap{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:24px;
  padding:30px;
  box-shadow:var(--shadow);
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:16px;
}

.field{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.field.full{
  grid-column:1 / -1;
}

label{
  font-weight:700;
  color:#1d2940;
}

input,
select,
textarea{
  width:100%;
  border:1px solid #d4deea;
  border-radius:14px;
  padding:14px 16px;
  background:#fff;
  color:var(--text);
}

textarea{
  min-height:160px;
  resize:vertical;
}

.help-text{
  margin-top:10px;
  color:var(--muted);
  font-size:.95rem;
}

.area-list{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}

.area-item{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:20px;
  padding:24px;
  box-shadow:var(--shadow);
}

.cta-band{
  border-radius:28px;
  padding:40px;
  background:linear-gradient(135deg, #0f3d91, #0a2f72);
  color:var(--white);
  box-shadow:var(--shadow);
}

.cta-band p{
  color:#d8e6ff;
}

.faq{
  display:grid;
  gap:16px;
}

.faq-item{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:18px;
  padding:22px;
  box-shadow:var(--shadow);
}

.footer{
  background:#0a0f1a;
  color:#d4ddec;
  padding:58px 0 26px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  gap:24px;
  margin-bottom:28px;
}

.footer h4{
  color:var(--white);
  margin-bottom:14px;
}

.footer p,
.footer a,
.footer li{
  color:#d4ddec;
}

.footer ul{
  list-style:none;
  display:grid;
  gap:10px;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  padding-top:20px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.page-hero{
  background:linear-gradient(135deg, #f8fafc, #eff3f8);
  border-bottom:1px solid var(--line);
}

.page-hero .container{
  padding:78px 0;
}

.page-hero p{
  margin-top:14px;
  max-width:760px;
}

@media (max-width:1024px){
  .hero-grid,
  .split,
  .grid-3,
  .stats,
  .service-meta,
  .area-list,
  .footer-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width:820px){
  .nav-toggle{
    display:block;
  }

  .nav-links{
    display:none;
    position:absolute;
    left:0;
    right:0;
    top:100%;
    background:#fff;
    border-bottom:1px solid var(--line);
    padding:18px 4%;
    flex-direction:column;
    align-items:flex-start;
  }

  .nav-links.open{
    display:flex;
  }

  .hero .container{
    padding:92px 0 78px;
  }

  .hero-grid,
  .split,
  .grid-3,
  .stats,
  .service-meta,
  .form-grid,
  .area-list,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .section{
    padding:76px 0;
  }
}
