:root {
  --navy: #061936;
  --navy-2: #0b2a55;
  --blue: #123f78;
  --gold: #b97817;
  --gold-2: #e2b458;
  --ink: #10182b;
  --muted: #5f6878;
  --line: #e7ddce;
  --paper: #fbfaf8;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(6, 25, 54, .13);
  --radius: 8px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid #eee2d3;
  backdrop-filter: blur(10px);
}

.nav-wrap {
  position: relative;
  max-width: 1480px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 310px;
}

.brand img { width: 62px; height: 62px; object-fit: contain; }
.brand-name {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.05;
  color: var(--navy);
}
.tagline {
  display: block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  margin-top: 2px;
}

.menu-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  border-radius: 6px;
  padding: 9px 11px;
  font-weight: 700;
}

.site-nav {
  position: absolute;
  right: 22px;
  top: 91px;
  width: min(360px, calc(100vw - 44px));
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  background: white;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  z-index: 30;
}

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

.site-nav a {
  padding: 10px 12px;
  border-bottom: 2px solid transparent;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav-cta {
  background: var(--navy);
  color: white !important;
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 10px 14px !important;
  box-shadow: 0 8px 18px rgba(6,25,54,.16);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 6px;
  background: var(--navy);
  border: 1px solid var(--gold);
  color: white;
  font-size: 14px;
  font-weight: 800;
}

.section {
  padding: 58px 22px;
}

.container {
  max-width: 1480px;
  margin: 0 auto;
}

.hero {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(251,250,248,.98) 0%, rgba(251,250,248,.92) 42%, rgba(251,250,248,.73) 100%),
    radial-gradient(circle at 74% 40%, rgba(226,180,88,.2), transparent 35%),
    linear-gradient(135deg, #ffffff, #f3efe7);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  max-width: 1480px;
  margin: 0 auto;
  min-height: 530px;
  padding: 58px 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  align-items: center;
  gap: 34px;
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  line-height: 1.08;
  margin: 0;
  font-weight: 700;
}

h1 { font-size: clamp(38px, 5vw, 64px); letter-spacing: 0; }
h2 { font-size: clamp(30px, 3vw, 44px); }
h3 { font-size: 24px; }

.lead {
  color: #33405a;
  font-size: 18px;
  max-width: 720px;
}

.tight-hero h1 {
  font-size: clamp(38px, 4.3vw, 58px);
  max-width: 820px;
}

.kicker {
  margin-top: 16px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual img {
  max-height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 24px 30px rgba(6,25,54,.18));
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid var(--gold);
  font-weight: 750;
}

.btn.primary {
  background: var(--navy);
  color: white;
  box-shadow: 0 10px 24px rgba(6,25,54,.2);
}

.btn.secondary {
  background: white;
  color: var(--navy);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.seven { grid-template-columns: repeat(7, minmax(0, 1fr)); }

.card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 28px rgba(6,25,54,.06);
}

.card.featured {
  border-color: rgba(185,120,23,.55);
  box-shadow: var(--shadow);
}

.pathway-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.pathway-media {
  height: 124px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.pathway-media .shield-icon {
  margin: 0;
}

.pathway-media img {
  width: 100%;
  max-width: 250px;
  max-height: 112px;
  object-fit: contain;
  object-position: center;
  margin: 0;
}

.pathway-card h3 {
  min-height: 54px;
}

.card h3 {
  text-align: center;
}

.card p { color: var(--muted); margin: 11px 0 0; }
.card ul { margin: 14px 0 0; padding-left: 20px; color: #34405a; }
.card li { margin: 5px 0; }

.card-link {
  display: inline-flex;
  color: var(--gold);
  font-weight: 800;
  margin: auto auto 0;
  padding-top: 18px;
  align-self: center;
  text-align: center;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 26px;
}
.section-head p { color: var(--muted); max-width: 680px; margin: 10px 0 0; }

.service-icon,
.shield-icon {
  width: 86px;
  height: 86px;
  margin-bottom: 18px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #082247, #0e3f78);
  border: 3px solid #d9b05e;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.28), 0 10px 20px rgba(6,25,54,.18);
  color: var(--gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 800;
}

.shield-icon.notary::before { content: "◎"; font-size: 42px; }
.shield-icon.legal::before { content: "§"; }
.shield-icon.medical::before { content: "+"; }
.shield-icon.workflow::before { content: "⌁"; }

.icon-img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  margin-bottom: 16px;
}

.card .icon-img {
  margin-left: auto;
  margin-right: auto;
}

.band {
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dark-band {
  background: linear-gradient(135deg, var(--navy), #09284f);
  color: white;
}
.dark-band h2, .dark-band h3 { color: white; }
.dark-band p { color: #d9e2f1; }

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

.logo-panel {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 260px;
}
.logo-panel img { max-height: 250px; object-fit: contain; }

.brand-card-logo {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 18px;
}

.script-word {
  font-family: "Brush Script MT", "Segoe Script", "Lucida Handwriting", cursive;
  font-weight: 500;
}


.hero-logo {
  max-height: 310px;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(6,25,54,.12));
}

.service-art {
  max-height: 430px;
}

.service-card-art {
  max-height: 120px;
}

.notice {
  border-left: 4px solid var(--gold);
  background: #fff9ee;
  padding: 18px 20px;
  border-radius: 6px;
  color: #3b4050;
}

.notice h3 {
  margin-bottom: 10px;
}

.wide-copy {
  max-width: 980px;
  color: #33405a;
  font-size: 18px;
  margin-top: 24px;
}

.relationship-map {
  position: relative;
  min-height: 430px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(247,243,236,.94));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.relationship-map::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(185,120,23,.18);
  border-radius: 8px;
}

.relationship-map.image-map {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: white;
}

.relationship-map.image-map::before {
  display: none;
}

.relationship-map.image-map img {
  width: 100%;
  height: 100%;
  max-height: 430px;
  object-fit: contain;
  border-radius: 6px;
}

.relationship-map.chain-map {
  min-height: 520px;
}

.relationship-map.chain-map img {
  max-height: 520px;
}

.map-node {
  position: absolute;
  z-index: 2;
  min-width: 112px;
  min-height: 48px;
  display: grid;
  place-items: center;
  padding: 10px 13px;
  border: 1px solid rgba(185,120,23,.55);
  border-radius: 8px;
  background: white;
  color: var(--navy);
  font-weight: 800;
  text-align: center;
  box-shadow: 0 12px 26px rgba(6,25,54,.12);
}

.map-node.central {
  left: 50%;
  top: 50%;
  width: 118px;
  height: 118px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--navy), var(--blue));
  color: white;
  border: 3px solid var(--gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
}

.map-node.people { left: 9%; top: 16%; }
.map-node.orgs { right: 9%; top: 16%; }
.map-node.docs { left: 7%; bottom: 18%; }
.map-node.events { right: 8%; bottom: 19%; }
.map-node.issues { left: 38%; top: 8%; }
.map-node.gaps { left: 35%; bottom: 8%; }

.map-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 170px;
  background: rgba(18,63,120,.35);
  transform-origin: top center;
}

.line-a { transform: rotate(-55deg); }
.line-b { transform: rotate(55deg); }
.line-c { transform: rotate(-125deg); }
.line-d { transform: rotate(125deg); }
.line-e { height: 150px; transform: rotate(180deg); }

.chain-list {
  display: grid;
  gap: 12px;
  counter-reset: chain;
}

.chain-layout {
  display: grid;
  grid-template-columns: minmax(220px, .34fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.chain-step {
  position: relative;
  padding: 14px 14px 14px 52px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #33405a;
  box-shadow: 0 8px 24px rgba(6,25,54,.06);
}

.chain-step::before {
  counter-increment: chain;
  content: counter(chain);
  position: absolute;
  left: 17px;
  top: 50%;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-weight: 800;
}

.chain-copy {
  margin: 18px 0 0;
  color: #33405a;
}

.case-workflow {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.case-workflow span {
  padding: 15px 17px;
  background: white;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  color: var(--navy);
  font-weight: 800;
}

.workflow-list,
.feature-rows {
  display: grid;
  gap: 14px;
}

.workflow-list div,
.feature-rows div {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
  box-shadow: 0 8px 24px rgba(6,25,54,.06);
}

.workflow-list img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.workflow-list span,
.feature-rows span {
  color: #33405a;
}

.feature-rows div {
  grid-template-columns: minmax(180px, .35fr) minmax(0, 1fr);
}

.feature-rows strong {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.1;
}

.process-panel {
  background: white;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 8px 28px rgba(6,25,54,.06);
}

.process-panel h3 {
  text-align: left;
}

.process-panel ol {
  margin: 16px 0 0;
  padding-left: 22px;
  color: #33405a;
}

.process-panel li {
  margin: 8px 0;
}


.mini-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.mini-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 18px;
  text-align: center;
  color: var(--navy);
  font-weight: 750;
}

.form-card label {
  display: block;
  color: var(--navy);
  font-weight: 750;
  margin: 12px 0 6px;
}

.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  border: 1px solid #d9d0c2;
  border-radius: 6px;
  padding: 12px 13px;
  font: inherit;
  background: white;
}

.form-card textarea { min-height: 130px; resize: vertical; }

.site-footer {
  background: #05142d;
  color: #dbe5f4;
  padding: 42px 22px;
}
.footer-grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 26px;
}
.site-footer h3 { color: white; font-size: 20px; margin-bottom: 12px; }
.site-footer a { display: block; margin: 7px 0; color: #dbe5f4; }
.footer-bottom {
  max-width: 1480px;
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: #aeb9ca;
  font-size: 13px;
}

@media (max-width: 980px) {
  .site-nav {
    left: 0;
    right: 0;
    width: auto;
    top: 91px;
    padding: 12px 22px 20px;
    border-bottom: 1px solid var(--line);
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .hero-grid,
  .split,
  .grid.two,
  .grid.three,
  .grid.four,
  .grid.seven,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .mini-list { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { min-height: auto; }
  .chain-layout { grid-template-columns: 1fr; }
  .relationship-map { min-height: 360px; }
  .relationship-map.chain-map { min-height: 360px; }
  .map-node { min-width: 94px; font-size: 13px; }
  .feature-rows div,
  .workflow-list div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .brand { min-width: 0; }
  .brand img { width: 48px; height: 48px; }
  .brand-name { font-size: 18px; }
  .tagline { font-size: 12px; }
  .header-contact { display: none; }
  .section { padding: 42px 18px; }
  .hero-grid { padding: 42px 18px; grid-template-columns: 1fr; }
  .mini-list { grid-template-columns: 1fr; }
}
