:root {
  --navy: #0f2a43;
  --navy-deep: #0a1f33;
  --gold: #d9a441;
  --gold-dark: #b9862c;
  --ink: #1c2733;
  --muted: #5a6a7a;
  --line: #dde4ec;
  --bg: #ffffff;
  --bg-alt: #f4f7fa;
  --radius: 10px;
  --font-serif: Georgia, "Times New Roman", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
}

.brand-name {
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.2px;
}

.brand-name .llc {
  color: #9fb2c5;
  font-weight: 400;
  font-size: 14px;
}

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

.site-nav a {
  color: #d7e1ea;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
}

.site-nav a:hover { color: #fff; }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
}

.nav-cta:hover { background: #e5b458; }

/* Hero */
.hero {
  background:
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 60%, #081a2c 100%);
  color: #fff;
  padding: 96px 0 104px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1.15;
  max-width: 720px;
  font-weight: 700;
}

.hero-sub {
  margin-top: 22px;
  max-width: 640px;
  font-size: 18px;
  color: #c3d1de;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15.5px;
  transition: background 0.15s ease;
}

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

.btn-primary:hover { background: #e5b458; }

.btn-ghost {
  border: 1.5px solid #4a6076;
  color: #d7e1ea;
}

.btn-ghost:hover { border-color: #7d94aa; color: #fff; }

/* Sections */
.section { padding: 78px 0; }
.section-alt { background: var(--bg-alt); }

.section h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 10px;
}

.section-lead {
  color: var(--muted);
  font-size: 17px;
  max-width: 640px;
  margin-bottom: 36px;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 26px 24px;
}

.card h3 {
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 10px;
}

.card p {
  font-size: 14.5px;
  color: var(--muted);
}

/* Features */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 34px;
}

.feature h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 8px;
}

.feature p {
  color: var(--muted);
  font-size: 15px;
}

/* Contracting table */
.data-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg);
  min-width: 480px;
}

.data-table th,
.data-table td {
  text-align: left;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.data-table tr:last-child th,
.data-table tr:last-child td { border-bottom: none; }

.data-table th {
  width: 220px;
  color: var(--navy);
  font-weight: 600;
  background: var(--bg-alt);
}

.data-table td { color: var(--ink); }

/* Contact */
.contact-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 32px;
  max-width: 520px;
}

.contact-row {
  display: flex;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
}

.contact-row:last-child { border-bottom: none; }

.contact-label {
  width: 90px;
  flex-shrink: 0;
  color: var(--muted);
  font-weight: 600;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-top: 2px;
}

.contact-row a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}

.contact-row a:hover { text-decoration: underline; }

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: #8fa3b6;
  padding: 26px 0;
  font-size: 13.5px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* Mobile */
@media (max-width: 640px) {
  .site-nav { gap: 14px; }
  .site-nav a:not(.nav-cta) { display: none; }
  .hero { padding: 64px 0 72px; }
}
