
:root {
  --ink: #13233a;
  --ink-soft: #20334b;
  --navy: #0b1a2d;
  --blue: #1f5f93;
  --blue-deep: #164a74;
  --sky: #eaf2f7;
  --sand: #f5f1e9;
  --gold: #b68a4a;
  --white: #ffffff;
  --line: #d7e1e8;
  --muted: #5c6c7d;
  --shadow: 0 20px 55px rgba(11, 26, 45, .10);
  --radius: 18px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  top: -80px;
  left: 12px;
  z-index: 999;
  background: var(--white);
  color: var(--navy);
  padding: .65rem 1rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(215,225,232,.85);
  backdrop-filter: blur(10px);
}
.nav-wrap {
  width: min(calc(100% - 42px), var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -.035em;
}
.brand-mark {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 17px;
  letter-spacing: -.08em;
}
.brand-name {
  display: grid;
  gap: 0;
  font-size: .94rem;
  line-height: 1.05;
}
.brand-name span:last-child {
  font-size: .59rem;
  letter-spacing: .16em;
  font-weight: 700;
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  color: #405166;
  font-weight: 650;
  font-size: .92rem;
}
.nav-links a { padding: 27px 0 24px; border-bottom: 3px solid transparent; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--navy); border-bottom-color: var(--gold); }
.nav-cta {
  border: 1px solid var(--navy) !important;
  border-radius: 9px;
  padding: 9px 13px !important;
  color: var(--navy) !important;
}
.nav-cta:hover { color: var(--white) !important; background: var(--navy); }

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--navy);
  padding: 8px;
  cursor: pointer;
}
.menu-toggle svg { width: 26px; height: 26px; display: block; }

main { overflow: hidden; }
.container { width: min(calc(100% - 42px), var(--max)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-tight { padding: 72px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-deep);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; height: 1px; width: 31px; background: var(--gold); }
.section-heading { max-width: 735px; }
.section-heading h2, .page-hero h1 {
  margin: .6rem 0 1rem;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.05;
}
.section-heading h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
.section-heading p { color: var(--muted); max-width: 680px; margin: 0; font-size: 1.08rem; }

.hero {
  position: relative;
  color: var(--white);
  min-height: 635px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 80% 22%, rgba(74,143,190,.26), transparent 27%),
    linear-gradient(119deg, #081526 0%, #102a43 54%, #154f7e 130%);
}
.hero::after {
  position: absolute;
  content: "";
  inset: 0;
  opacity: .55;
  background-image: linear-gradient(135deg, rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(45deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to left, #000, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; padding: 95px 0 104px; max-width: 820px; }
.hero .eyebrow { color: #dcecff; }
.hero .eyebrow::before { background: var(--gold); }
.hero h1 {
  max-width: 740px;
  margin: .75rem 0 1.35rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: .98;
  letter-spacing: -.06em;
  font-weight: 500;
}
.hero-copy { max-width: 655px; color: #dce7f0; font-size: 1.2rem; margin: 0; }
.actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 31px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-weight: 750;
  font-size: .94rem;
  transition: .2s ease;
}
.button-primary { background: var(--gold); color: var(--navy); }
.button-primary:hover { background: #c99f60; transform: translateY(-1px); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.48); }
.button-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.button-dark { background: var(--navy); color: var(--white); }
.button-dark:hover { background: #203b5c; transform: translateY(-1px); }
.button-light { background: var(--white); color: var(--navy); }
.button-light:hover { background: #eff4f8; transform: translateY(-1px); }

.feature-strip {
  position: relative;
  z-index: 2;
  margin-top: -72px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature {
  padding: 30px 32px;
  border-right: 1px solid var(--line);
}
.feature:last-child { border-right: 0; }
.feature-number {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.75rem;
  line-height: 1;
}
.feature h3 { margin: 12px 0 6px; color: var(--navy); font-size: 1rem; }
.feature p { margin: 0; color: var(--muted); font-size: .92rem; }

.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 45px;
}
.service-card {
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(11,26,45,.08); }
.service-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  background: var(--sky);
  color: var(--blue-deep);
  border-radius: 11px;
  font-weight: 800;
}
.service-card h3 { margin: 20px 0 9px; color: var(--navy); font-size: 1.22rem; letter-spacing: -.02em; }
.service-card p { margin: 0; color: var(--muted); }
.text-link {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin-top: 20px;
  color: var(--blue-deep);
  font-weight: 800;
  font-size: .9rem;
}
.text-link:hover { text-decoration: underline; }
.text-link span { font-size: 1.1rem; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(3px); }

.statement {
  padding: 72px 0;
  background: var(--sand);
}
.statement-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 76px;
  align-items: center;
}
.statement-quote {
  margin: 0;
  max-width: 760px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 3.65rem);
  line-height: 1.09;
  letter-spacing: -.045em;
}
.statement-side {
  border-left: 2px solid var(--gold);
  padding-left: 23px;
  color: var(--muted);
}
.statement-side strong { display: block; color: var(--navy); font-size: 1.05rem; margin-bottom: 4px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; margin-top: 42px; }
.step { position: relative; padding-top: 46px; }
.step:not(:last-child)::after { content: ""; position: absolute; top: 15px; left: 86px; width: calc(100% - 52px); height: 1px; background: var(--line); }
.step-number {
  position: absolute; top: 0; left: 0;
  width: 31px; height: 31px; display: grid; place-items: center;
  border-radius: 50%; color: var(--white); background: var(--navy);
  font-size: .75rem; font-weight: 800;
}
.step h3 { margin: 0 0 7px; color: var(--navy); font-size: 1.08rem; }
.step p { margin: 0; color: var(--muted); }

.cta-band {
  color: var(--white);
  background: var(--navy);
}
.cta-flex { padding: 70px 0; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.cta-flex h2 {
  max-width: 690px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -.04em;
}
.cta-flex p { max-width: 680px; margin: 10px 0 0; color: #cbd8e5; }

.page-hero {
  padding: 91px 0 78px;
  color: var(--white);
  background: linear-gradient(118deg, var(--navy), #174c76);
}
.page-hero h1 { color: var(--white); max-width: 760px; font-size: clamp(3rem, 5.5vw, 5rem); }
.page-hero p { max-width: 670px; margin: 0; color: #dbe7f0; font-size: 1.14rem; }
.page-hero .eyebrow { color: #dbe7f0; }

.service-detail {
  display: grid;
  grid-template-columns: 92px 1fr .85fr;
  gap: 46px;
  padding: 58px 0;
  border-bottom: 1px solid var(--line);
}
.service-detail:first-of-type { padding-top: 0; }
.service-detail:last-of-type { border-bottom: 0; padding-bottom: 0; }
.service-index {
  color: var(--gold);
  font: 2.7rem/1 Georgia, serif;
  letter-spacing: -.06em;
}
.service-detail h2 {
  color: var(--navy);
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.service-detail p { margin: 0; color: var(--muted); font-size: 1.04rem; }
.service-detail ul { margin: 0; padding: 0; list-style: none; }
.service-detail li { position: relative; padding: 0 0 12px 21px; color: var(--ink-soft); font-size: .95rem; }
.service-detail li::before { content: ""; position: absolute; left: 0; top: .66em; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

.callout-panel {
  margin-top: 58px;
  padding: 36px;
  border-radius: var(--radius);
  background: var(--sky);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
.callout-panel h2 { margin: 0 0 6px; color: var(--navy); font-size: 1.5rem; letter-spacing: -.03em; }
.callout-panel p { margin: 0; color: var(--muted); }

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.about-lead {
  position: sticky;
  top: 108px;
}
.about-lead h2 {
  margin: .6rem 0 1rem;
  color: var(--navy);
  font: 500 clamp(2.2rem, 4vw, 3.5rem)/1.08 Georgia, serif;
  letter-spacing: -.045em;
}
.about-lead p { color: var(--muted); margin: 0; }
.about-copy p { margin: 0 0 1.2rem; color: var(--ink-soft); font-size: 1.05rem; }
.pillars { display: grid; gap: 0; margin: 32px 0 0; border-top: 1px solid var(--line); }
.pillar { padding: 18px 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; gap: 25px; align-items: baseline; }
.pillar strong { color: var(--navy); font-size: 1rem; }
.pillar span { color: var(--muted); font-size: .9rem; text-align: right; }
.credential-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 34px; gap: 16px; }
.credential { padding: 20px; border-radius: 13px; background: var(--sand); }
.credential strong { display: block; color: var(--navy); font: 500 1.55rem/1 Georgia, serif; margin-bottom: 7px; }
.credential span { color: var(--muted); font-size: .83rem; }

.contact-grid {
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  gap: 65px;
  align-items: start;
}
.contact-intro h2 {
  margin: .6rem 0 1rem;
  color: var(--navy);
  font: 500 clamp(2.2rem, 4vw, 3.5rem)/1.08 Georgia, serif;
  letter-spacing: -.045em;
}
.contact-intro p { color: var(--muted); margin: 0; font-size: 1.05rem; }
.contact-methods { margin-top: 34px; display: grid; gap: 17px; }
.contact-method { padding: 17px 0; border-bottom: 1px solid var(--line); }
.contact-method small { display: block; color: var(--blue-deep); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-method a, .contact-method span { display: inline-block; color: var(--navy); font-size: 1.03rem; font-weight: 700; margin-top: 4px; }
.contact-card { padding: 34px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 16px 38px rgba(11,26,45,.07); }
.contact-card h2 { margin: 0 0 22px; color: var(--navy); font-size: 1.42rem; letter-spacing: -.03em; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }
label { color: var(--ink-soft); font-weight: 750; font-size: .86rem; }
input, textarea, select {
  width: 100%;
  border: 1px solid #c8d5df;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  outline: none;
}
textarea { resize: vertical; min-height: 125px; }
input:focus, textarea:focus, select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(31,95,147,.12); }
.form-note { margin: 15px 0 0; color: var(--muted); font-size: .78rem; }
.form-success { display: none; margin-top: 17px; padding: 11px 13px; border-radius: 8px; color: #164a32; background: #eaf6ee; font-size: .88rem; }
.form-success.is-visible { display: block; }
.form-error { display: none; margin-top: 17px; padding: 11px 13px; border-radius: 8px; color: #7a1f1f; background: #fdeaea; font-size: .88rem; }
.form-error.is-visible { display: block; }

.disclaimer { background: #f8fafb; border-top: 1px solid var(--line); }
.disclaimer p { margin: 0; padding: 18px 0; color: #6a7886; font-size: .76rem; line-height: 1.5; }

.site-footer { background: #081526; color: #d8e1e9; }
.footer-inner { padding: 46px 0 28px; display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 50px; }
.footer-brand .brand { color: var(--white); }
.footer-brand .brand-mark { background: var(--gold); color: var(--navy); }
.footer-brand p { max-width: 350px; margin: 17px 0 0; color: #aebdca; font-size: .9rem; }
.footer-title { color: var(--white); margin: 0 0 11px; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: grid; gap: 8px; color: #c3d0da; font-size: .9rem; }
.footer-links a:hover { color: var(--white); text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.13); padding: 19px 0 25px; color: #8fa1b2; font-size: .78rem; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }

@media (max-width: 800px) {
  .nav-wrap { min-height: 68px; }
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    padding: 12px 21px 18px;
    gap: 0;
    background: rgba(255,255,255,.99);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 25px rgba(11,26,45,.06);
  }
  .nav-links.is-open { display: grid; }
  .nav-links a { padding: 11px 0; border: none; }
  .nav-cta { margin-top: 6px; padding: 10px 12px !important; text-align: center; }
  .hero { min-height: 585px; }
  .hero-inner { padding: 82px 0 91px; }
  .feature-grid, .service-cards, .statement-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .feature { border-right: 0; border-bottom: 1px solid var(--line); }
  .feature:last-child { border-bottom: 0; }
  .statement-grid, .about-grid, .contact-grid { gap: 38px; }
  .about-lead { position: static; }
  .steps { grid-template-columns: 1fr; gap: 27px; }
  .step:not(:last-child)::after { display: none; }
  .service-detail { grid-template-columns: 55px 1fr; gap: 18px; }
  .service-detail ul { grid-column: 2; }
  .callout-panel { grid-template-columns: 1fr; }
  .cta-flex { align-items: flex-start; flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 520px) {
  .container, .nav-wrap { width: min(calc(100% - 32px), var(--max)); }
  .section { padding: 72px 0; }
  .page-hero { padding: 70px 0 60px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .service-detail { grid-template-columns: 1fr; gap: 12px; padding: 43px 0; }
  .service-detail ul { grid-column: auto; margin-top: 8px; }
  .credential-grid { grid-template-columns: 1fr; }
}
