/* ---------- Reset & base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Work Sans', -apple-system, sans-serif;
  color: #1F2A37;
  background: #FAFAF8;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Playfair Display', serif; margin: 0; }
p { margin: 0; }
a { text-decoration: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

.btn {
  display: inline-block;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 22px;
  border: none;
  cursor: pointer;
  font-family: 'Work Sans', sans-serif;
}
.btn-primary { background: #4A93A0; color: #fff; transition: background .15s ease; }
.btn-primary:hover { background: #3F818C; }
.btn-ghost { border: 1.5px solid #fff; color: #fff; background: transparent; }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-lg { padding: 15px 28px; font-size: 15px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: #12253B;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.header-inner {
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  background: #fff; border-radius: 8px; padding: 6px 10px;
  display: flex; align-items: center;
}
.brand-mark img { height: 34px; width: auto; display: block; }
.brand-word {
  font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600;
  color: #fff; line-height: 1.15; letter-spacing: 0.2px;
}
.brand-llc {
  font-size: 11px; font-weight: 500; letter-spacing: 2px;
  font-family: 'Work Sans', sans-serif; color: #9FC3C9;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: #E8F2F1; opacity: 0.85; font-size: 15px; font-weight: 500; transition: opacity .15s;
}
.nav-links a:hover { opacity: 1; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, #12253B 0%, #1B3A5C 55%, #234A73 100%);
  overflow: hidden;
}
.hero-watermark {
  position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
  height: 640px; width: 640px; opacity: 0.06; pointer-events: none; overflow: hidden;
}
.hero-watermark img { height: 100%; width: 100%; object-fit: contain; mix-blend-mode: multiply; }
.hero-grid {
  padding: 96px 32px 88px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center;
  position: relative;
}
.eyebrow-pill {
  display: inline-block; padding: 7px 16px; border-radius: 999px;
  background: rgba(107,175,184,0.15); border: 1px solid rgba(107,175,184,0.35);
  color: #9FC3C9; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 24px;
}
.hero-title { font-size: 52px; line-height: 1.12; color: #fff; font-weight: 600; max-width: 620px; }
.hero-sub { font-size: 18px; line-height: 1.65; color: #C9D6DE; max-width: 560px; margin-top: 22px; }
.hero-ctas { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 56px; flex-wrap: wrap; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 700; color: #fff; }
.stat-label { font-size: 13px; color: #9FB1C2; margin-top: 4px; font-weight: 500; }

.hero-card { position: relative; z-index: 1; }
.hero-card-inner {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px; padding: 40px;
}
.hero-card-logo {
  background: #fff; border-radius: 12px; padding: 20px;
  display: flex; justify-content: center; margin: 0 auto 20px; max-width: 280px;
}
.hero-card-divider { height: 1px; background: rgba(255,255,255,0.15); margin: 24px 0; }
.hero-card-list { display: flex; flex-direction: column; gap: 14px; }
.hero-card-list li {
  position: relative; padding-left: 20px; color: #E8F2F1; font-size: 14px;
}
.hero-card-list li::before {
  content: ''; position: absolute; left: 0; top: 6px;
  width: 8px; height: 8px; border-radius: 50%; background: #6BAFB8;
}

/* ---------- Sections shared ---------- */
.section { max-width: 1200px; margin: 0 auto; padding: 100px 32px 90px; }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 2px; color: #4A93A0;
  text-transform: uppercase; margin-bottom: 14px;
}
.eyebrow-light { color: #6BAFB8; }
.section-head h2 { font-size: 36px; color: #12253B; font-weight: 600; }
.section-head p { font-size: 16px; color: #5B6472; margin-top: 16px; line-height: 1.6; }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card {
  background: #fff; border: 1px solid #E3E6EA; border-radius: 12px; padding: 32px 28px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(18,37,59,0.10); border-color: #4A93A0; }
.svc-icon {
  width: 52px; height: 52px; border-radius: 10px; background: #EAF3F3;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.svc-icon svg { width: 24px; height: 24px; }
.svc-card h3 { font-size: 19px; color: #12253B; font-weight: 600; margin-bottom: 10px; }
.svc-card p { font-size: 14.5px; color: #5B6472; line-height: 1.6; }
.svc-card-cta {
  background: linear-gradient(135deg, #1B3A5C, #234A73); border: none;
  display: flex; flex-direction: column; justify-content: center;
}
.svc-card-cta h3 { color: #fff; }
.svc-card-cta p { color: #C9D6DE; margin-bottom: 20px; }
.svc-card-cta:hover { transform: none; box-shadow: none; }

/* ---------- About band ---------- */
.about-band { background: #12253B; padding: 76px 32px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.light-title { font-size: 32px; color: #fff; font-weight: 600; line-height: 1.3; }
.light-p { font-size: 16px; color: #C9D6DE; margin-top: 18px; line-height: 1.7; }
.stats-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat-tile {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 28px 20px; text-align: center;
}
.stat-tile-num { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 700; color: #fff; }
.stat-tile-label { font-size: 13px; color: #9FB1C2; margin-top: 8px; font-weight: 500; }

/* ---------- Process ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step { text-align: center; padding: 0 16px; }
.step-num {
  font-family: 'Playfair Display', serif; width: 56px; height: 56px; border-radius: 50%;
  background: #EAF3F3; color: #1B3A5C; font-size: 22px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.step h3 { font-size: 18px; color: #12253B; font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: #5B6472; line-height: 1.6; }

/* ---------- Contact ---------- */
.contact-section { background: #F1F3F1; padding: 96px 32px; }
.contact-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start;
}
.contact-intro { position: sticky; top: 100px; }
.contact-intro h2 { font-size: 34px; color: #12253B; font-weight: 600; line-height: 1.25; }
.contact-intro > p { font-size: 15.5px; color: #5B6472; margin-top: 16px; line-height: 1.65; }
.reassure-list { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.reassure-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: #1F2A37; }
.reassure-list svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.contact-email-block { margin-top: 36px; padding-top: 28px; border-top: 1px solid #DADFE1; }
.contact-email-label { font-size: 13px; color: #5B6472; font-weight: 600; margin-bottom: 6px; }
.contact-email-block a { font-size: 15.5px; color: #1B3A5C; font-weight: 600; }

.form-card {
  background: #fff; border-radius: 14px; padding: 40px;
  box-shadow: 0 10px 40px rgba(18,37,59,0.08); border: 1px solid #E3E6EA;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { margin-bottom: 0; }
.field label, .services-field legend {
  display: block; font-size: 13.5px; font-weight: 600; color: #1F2A37; margin-bottom: 7px; padding: 0;
}
.req { color: #C0504D; }
.opt { color: #9AA3AC; font-weight: 500; }
.field input, .field textarea {
  width: 100%; box-sizing: border-box; padding: 12px 14px; border: 1px solid #D6DADE;
  border-radius: 7px; font-size: 14.5px; color: #1F2A37; font-family: 'Work Sans', sans-serif;
}
.field input:focus, .field textarea:focus { outline: 2px solid #4A93A0; outline-offset: 1px; }
.field textarea { resize: vertical; }
.services-field { border: none; padding: 0; margin: 0 0 24px; }
.chk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.chk-card {
  position: relative;
  display: flex; flex-flow: row nowrap; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 8px;
  border: 1.5px solid #D6DADE; background: #fff; cursor: pointer;
  transition: border-color .12s ease, background .12s ease, box-shadow .12s ease;
}
.chk-card:hover { border-color: #9FB7BC; }
.chk-card input {
  position: absolute;
  appearance: none; -webkit-appearance: none;
  margin: 0; padding: 0; border: 0; outline: none;
  width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap;
}
.chk-text { flex: 1 1 auto; min-width: 0; font-size: 13.5px; color: #1F2A37; font-weight: 500; pointer-events: none; }
/* Checked state: no checkbox icon — the whole card gets a bold, darker outline + tinted fill */
.chk-card:has(input:checked) {
  border-color: #1B3A5C;
  box-shadow: 0 0 0 1px #1B3A5C inset;
  background: #EAF3F3;
}
.chk-card:has(input:checked) .chk-text { color: #12253B; font-weight: 600; }
/* Focus visibility for keyboard users, since the native checkbox is visually hidden */
.chk-card:has(input:focus-visible) { box-shadow: 0 0 0 2px #4A93A0; }
.hidden-field { position: absolute; left: -9999px; top: -9999px; }

.form-error {
  background: #FBEAEA; border: 1px solid #EAC5C5; color: #A13F3C; font-size: 13.5px;
  padding: 11px 14px; border-radius: 7px; margin: 0 0 18px;
}
.btn-submit {
  width: 100%; background: #1B3A5C; color: #fff; padding: 15px; font-size: 15px;
  transition: background .15s ease;
}
.btn-submit:hover { background: #12253B; }
.form-disclaimer { font-size: 12px; color: #9AA3AC; text-align: center; margin-top: 14px; line-height: 1.5; }

.form-success { text-align: center; padding: 40px 12px; }
.success-icon {
  width: 64px; height: 64px; border-radius: 50%; background: #EAF3F3;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.success-icon svg { width: 30px; height: 30px; }
.form-success h3 { font-size: 22px; color: #12253B; font-weight: 600; margin-bottom: 10px; }
.form-success p { font-size: 15px; color: #5B6472; line-height: 1.6; max-width: 380px; margin: 0 auto; }
.btn-ghost-dark {
  margin-top: 24px; background: transparent; border: 1.5px solid #1B3A5C; color: #1B3A5C;
}

/* ---------- Footer ---------- */
.site-footer { background: #0E1E30; padding: 56px 32px 28px; }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; }
.foot-logo {
  background: #fff; border-radius: 7px; padding: 5px 9px; display: inline-flex;
  align-items: center; margin-bottom: 14px;
}
.foot-logo img { height: 26px; width: auto; display: block; }
.foot-blurb { font-size: 13.5px; color: #8FA0AE; line-height: 1.6; max-width: 260px; }
.foot-heading { font-size: 13px; font-weight: 700; color: #fff; letter-spacing: 0.5px; margin-bottom: 16px; }
.footlink { display: block; font-size: 14px; color: #C9D6DE; margin-bottom: 10px; }
.footlink:hover { color: #fff; }
.foot-bottom {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12.5px; color: #6E8090;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero-grid, .contact-grid, .foot-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .hero-stats { justify-content: flex-start; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; row-gap: 32px; }
  .steps-grid { grid-template-columns: 1fr; }
  .foot-grid { row-gap: 32px; }
  .contact-intro { position: static; }
}
@media (max-width: 560px) {
  .svc-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 38px; }
  .chk-grid { grid-template-columns: 1fr; }
}

/* ---------- Service cards as links ---------- */
.svc-card { text-decoration: none; display: flex; flex-direction: column; }
.svc-more {
  margin-top: auto; padding-top: 16px; font-size: 13.5px; font-weight: 600;
  color: #4A93A0; display: flex; align-items: center; gap: 6px;
}
.svc-more svg { width: 15px; height: 15px; transition: transform .15s ease; }
.svc-card:hover .svc-more svg { transform: translateX(3px); }
.svc-card-cta { text-decoration: none; }

/* ---------- Service detail pages ---------- */
.breadcrumb {
  display: flex; align-items: center; gap: 6px; font-size: 14px; color: #5B6472;
  font-weight: 500; margin-bottom: 28px;
}
.breadcrumb svg { width: 15px; height: 15px; }
.breadcrumb:hover { color: #1B3A5C; }

.svc-hero { background: linear-gradient(135deg, #12253B 0%, #1B3A5C 55%, #234A73 100%); padding: 64px 32px 72px; }
.svc-hero-inner { max-width: 900px; margin: 0 auto; }
.svc-hero-icon {
  width: 64px; height: 64px; border-radius: 14px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16); display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.svc-hero-icon svg { width: 30px; height: 30px; }
.svc-hero h1 { font-size: 42px; color: #fff; font-weight: 600; line-height: 1.2; max-width: 640px; }
.svc-hero-sub { font-size: 17px; color: #C9D6DE; margin-top: 18px; max-width: 620px; line-height: 1.65; }
.svc-hero .hero-ctas { margin-top: 32px; }

.svc-body { max-width: 900px; margin: 0 auto; padding: 72px 32px; }
.svc-body h2 { font-size: 26px; color: #12253B; font-weight: 600; margin-bottom: 20px; }
.svc-intro { font-size: 16.5px; color: #3C4652; line-height: 1.75; margin-bottom: 56px; max-width: 760px; }

.svc-include-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 56px; }
.svc-include-item {
  display: flex; align-items: flex-start; gap: 12px; background: #fff; border: 1px solid #E3E6EA;
  border-radius: 10px; padding: 16px 18px;
}
.svc-include-item svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.svc-include-item span { font-size: 14.5px; color: #1F2A37; font-weight: 500; line-height: 1.5; }

.svc-process { margin-bottom: 56px; }
.svc-process-list { display: flex; flex-direction: column; gap: 0; }
.svc-process-item { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid #E3E6EA; }
.svc-process-item:last-child { border-bottom: none; }
.svc-process-num {
  font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: #4A93A0;
  width: 36px; flex-shrink: 0;
}
.svc-process-item h3 { font-size: 16px; color: #12253B; font-weight: 600; margin-bottom: 6px; }
.svc-process-item p { font-size: 14.5px; color: #5B6472; line-height: 1.6; }

.svc-cta-band {
  background: linear-gradient(135deg, #1B3A5C, #234A73); border-radius: 14px;
  padding: 40px; text-align: center;
}
.svc-cta-band h2 { color: #fff; margin-bottom: 10px; }
.svc-cta-band p { color: #C9D6DE; font-size: 15px; margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto; }

.related-services { padding: 0 32px 96px; }
.related-inner { max-width: 900px; margin: 0 auto; }
.related-inner h2 { font-size: 20px; color: #12253B; font-weight: 600; margin-bottom: 20px; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.related-card {
  text-decoration: none; background: #fff; border: 1px solid #E3E6EA; border-radius: 10px;
  padding: 18px 16px; font-size: 13.5px; font-weight: 600; color: #1B3A5C;
  transition: border-color .15s ease, transform .15s ease;
}
.related-card:hover { border-color: #4A93A0; transform: translateY(-2px); }

@media (max-width: 900px) {
  .svc-include-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .svc-hero h1 { font-size: 32px; }
}
@media (max-width: 560px) {
  .related-grid { grid-template-columns: 1fr; }
}
