:root {
  --navy-900: #081a30;
  --navy-800: #0d2843;
  --navy-700: #123a63;
  --navy-600: #1c4d80;
  --gold-500: #c9a227;
  --gold-400: #dab94a;
  --ink: #1c2733;
  --ink-soft: #4a5666;
  --paper: #ffffff;
  --paper-soft: #f4f6f9;
  --border: #e3e8ef;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(8, 26, 48, 0.08);
  --max-width: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; }

h1, h2, h3 {
  font-family: "Georgia", "Times New Roman", serif;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--navy-900);
}

h2 { font-size: 2rem; }
h3 { font-size: 1.15rem; }

p { margin: 0 0 16px; color: var(--ink-soft); }

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-900);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}

.brand-mark {
  font-family: "Georgia", serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--gold-400);
}

.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: #cfd9e6;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  text-decoration: none;
  color: #dbe4f0;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-nav a:hover { color: var(--gold-400); }

.nav-cta {
  border: 1px solid var(--gold-500);
  padding: 8px 18px;
  border-radius: 999px;
  color: var(--gold-400) !important;
}

.nav-cta:hover {
  background: var(--gold-500);
  color: var(--navy-900) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #dbe4f0;
  display: block;
}

/* Hero */
.hero {
  background: radial-gradient(circle at top right, var(--navy-600), var(--navy-900) 65%);
  color: #fff;
  padding: 110px 0 90px;
}

.hero-inner { max-width: 760px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--gold-400);
  font-weight: 600;
  margin-bottom: 18px;
}

.hero h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 22px;
}

.hero-lead {
  color: #cfd9e6;
  font-size: 1.1rem;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--gold-500);
  color: var(--navy-900);
}

.btn-primary:hover { background: var(--gold-400); transform: translateY(-1px); }

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn-ghost:hover { border-color: var(--gold-400); color: var(--gold-400); }

/* Sections */
.section { padding: 88px 0; }
.section-alt { background: var(--paper-soft); }

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--gold-500);
  font-weight: 700;
  margin-bottom: 10px;
}

.section-lead {
  max-width: 700px;
  font-size: 1.05rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-card {
  background: var(--navy-900);
  color: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.about-card h3 { color: #fff; }

.check-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.check-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: #dbe4f0;
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--gold-400);
  font-weight: 700;
}

.about-card-note {
  color: #b7c3d4;
  font-size: 0.92rem;
  margin: 0;
}

/* Services */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-icon { font-size: 1.8rem; margin-bottom: 14px; }
.card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.card p { font-size: 0.92rem; margin: 0; }

/* Leadership */
.md-message {
  background: var(--paper-soft);
  border-left: 4px solid var(--gold-500);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 820px;
  margin: 40px auto 64px;
}

.md-message h3 { margin-bottom: 18px; }

.signature {
  margin-top: 24px;
  font-weight: 700;
  color: var(--navy-900);
}

.signature span { font-weight: 400; color: var(--ink-soft); }

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

.leader-card {
  text-align: center;
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.leader-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: "Georgia", serif;
  font-weight: 700;
  font-size: 1.2rem;
}

.leader-title {
  color: var(--gold-500);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.leader-card p:last-child { font-size: 0.92rem; margin-bottom: 0; }

/* Commitment */
.commitment-inner { max-width: 780px; }

.tagline {
  font-family: "Georgia", serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--navy-900);
  margin-top: 32px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.contact-card {
  background: var(--paper-soft);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}

.contact-card h3 { color: var(--gold-500); margin-bottom: 14px; }
.contact-card p { margin: 0 0 6px; }
.contact-card a { text-decoration: none; color: var(--navy-900); font-weight: 600; }
.contact-card a:hover { color: var(--gold-500); }

/* Footer */
.site-footer {
  background: var(--navy-900);
  color: #b7c3d4;
  padding: 48px 0;
}

.footer-inner {
  text-align: center;
}

.footer-inner .brand-mark { display: block; font-size: 1.3rem; }
.footer-inner .brand-sub { display: block; margin-bottom: 16px; }

.tagline-footer {
  font-family: "Georgia", serif;
  font-style: italic;
  color: #dbe4f0;
  margin-bottom: 10px;
}

.copyright { font-size: 0.8rem; margin: 0; color: #8494a8; }

/* Responsive */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .leadership-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.3rem; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--navy-900);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a { width: 100%; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-cta { border: none; padding: 14px 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .hero { padding: 90px 0 70px; }
  .hero h1 { font-size: 1.9rem; }
  .section { padding: 64px 0; }
  .md-message { padding: 24px; }
}
