:root {
  --navy: #0F1E2E;
  --neutral: #F4F1EC;
  --gold: #C8A96A;
  --slate: #5A6672;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(15,30,46,.14);
  --shadowSoft: 0 12px 24px rgba(15,30,46,.08);
  --radius: 20px;
  --radiusLg: 28px;
  --maxw: 1140px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--navy);
  background: var(--neutral);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--white);
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(15,30,46,.14);
}
.skip-link:focus { left: 14px; z-index: 999; }

header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244,241,236,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15,30,46,.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand .name {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 800;
  letter-spacing: .2px;
  font-size: 18px;
}

.brand .tag {
  font-size: 12px;
  color: rgba(15,30,46,.70);
  letter-spacing: .3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 12px;
}

.nav-links a.active {
  background: rgba(15,30,46,.06);
}

.nav-links .cta {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadowSoft);
}
.nav-links .cta:hover {
  text-decoration: none;
  border-color: rgba(255,255,255,.16);
  filter: brightness(1.02);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .08s ease, box-shadow .15s ease;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  text-decoration: none;
  filter: brightness(1.02);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: rgba(15,30,46,.22);
}
.btn-secondary:hover {
  text-decoration: none;
  background: rgba(15,30,46,.05);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  background: rgba(200,169,106,.14);
  border: 1px solid rgba(200,169,106,.35);
  border-radius: 999px;
  font-size: 12px;
  color: var(--navy);
}

.hero { padding: 58px 0 36px; }

.hero-card {
  background: linear-gradient(135deg, var(--navy), #132D46);
  color: var(--white);
  border-radius: var(--radiusLg);
  padding: 46px 30px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card:before {
  content: "";
  position: absolute;
  inset: -70px;
  background: radial-gradient(circle at 16% 20%, rgba(200,169,106,.24), transparent 55%),
              radial-gradient(circle at 78% 30%, rgba(244,241,236,.14), transparent 55%),
              radial-gradient(circle at 68% 86%, rgba(200,169,106,.16), transparent 55%);
  transform: rotate(6deg);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 22px;
  align-items: start;
}

@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; }
}

.h1 {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 44px;
  line-height: 1.08;
  margin: 10px 0 14px;
  letter-spacing: .2px;
}

.lede {
  font-size: 16.5px;
  color: rgba(255,255,255,.90);
  max-width: 70ch;
  margin: 0 0 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero-side {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  padding: 18px;
}

.hero-side h3 {
  margin: 6px 0 10px;
  font-size: 12px;
  letter-spacing: .35px;
  color: rgba(255,255,255,.92);
  text-transform: uppercase;
}

.kpi {
  display: grid;
  gap: 10px;
}

.kpi .row {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.kpi .num {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 22px;
  color: var(--gold);
}

.kpi .label {
  color: rgba(255,255,255,.86);
  font-size: 13px;
}

.section { padding: 38px 0; }

.section h2 {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  margin: 0 0 10px;
  font-size: 30px;
  letter-spacing: .2px;
}

.section h3 {
  margin: 10px 0 8px;
  font-size: 16px;
}

.section p {
  margin: 0 0 12px;
  color: rgba(15,30,46,.86);
}

.goldline {
  height: 2px;
  width: 56px;
  background: var(--gold);
  border-radius: 4px;
  margin: 12px 0 18px;
}

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

.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 940px) {
  .grid-3 { grid-template-columns: 1fr; }
}

.grid-2 { grid-template-columns: 1.05fr .95fr; }
@media (max-width: 940px) {
  .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid rgba(15,30,46,.10);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 22px rgba(15,30,46,.06);
}

.card h3 {
  margin: 2px 0 10px;
  font-size: 16px;
}

.small { font-size: 13.5px; color: rgba(15,30,46,.72); }

.quote {
  border-left: 3px solid var(--gold);
  padding-left: 14px;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 18px;
  color: rgba(15,30,46,.92);
}

.list { margin: 0; padding: 0 0 0 18px; color: rgba(15,30,46,.86); }
.list li { margin: 8px 0; }

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15,30,46,.05);
  border: 1px solid rgba(15,30,46,.08);
  font-size: 13px;
  color: rgba(15,30,46,.80);
}

.footer {
  background: var(--navy);
  color: rgba(255,255,255,.88);
  padding: 36px 0;
  margin-top: 34px;
}

.footer .cols {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}
@media (max-width: 940px) {
  .footer .cols { grid-template-columns: 1fr; }
}

.footer a { color: rgba(255,255,255,.90); }
.footer .muted { color: rgba(255,255,255,.72); font-size: 13px; }

.form { display: grid; gap: 12px; }

input, textarea, select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15,30,46,.18);
  font-size: 14px;
  background: var(--white);
  color: var(--navy);
}
textarea { min-height: 130px; resize: vertical; }

.notice {
  background: rgba(15,30,46,.05);
  border: 1px solid rgba(15,30,46,.10);
  border-radius: 16px;
  padding: 14px;
  font-size: 13px;
  color: rgba(15,30,46,.80);
}

hr.sep {
  border: none;
  height: 1px;
  background: rgba(15,30,46,.10);
  margin: 20px 0;
}

.kicker {
  font-size: 12px;
  letter-spacing: .35px;
  text-transform: uppercase;
  color: rgba(15,30,46,.72);
}

/* Visibility fixes if navigation or links are placed over dark hero backgrounds */
.hero-card .nav-links a,
.hero-card a {
  color: rgba(255,255,255,.92);
}
.hero-card .nav-links a.active {
  background: rgba(255,255,255,.12);
}
.hero-card .nav-links a:hover {
  text-decoration: none;
  background: rgba(255,255,255,.10);
}

/* Slightly increase contrast for pills on hero */
.hero-card .pill {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.90);
}

/* Add subtle neutral band option */
.band-neutral {
  background: rgba(244,241,236,.85);
  border-top: 1px solid rgba(15,30,46,.06);
  border-bottom: 1px solid rgba(15,30,46,.06);
}



/* Make hero tabs/pills highly visible using gold + neutral */
.hero-card .pill,
.hero-card .badge {
  background: #C8A96A; /* gold */
  color: #0F1E2E;      /* navy text */
  border: 1px solid rgba(15,30,46,.18);
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
}
.hero-card .pill:hover,
.hero-card .badge:hover {
  filter: brightness(1.03);
}
.hero-card .pill.alt {
  background: #F4F1EC; /* neutral */
  color: #0F1E2E;
}



/* ===== Luxury Executive Finish ===== */

/* Thin gold divider under section titles */
.section h2 + .goldline {
  height: 3px;
  width: 64px;
  background: linear-gradient(90deg, #C8A96A, #E7D3A3);
  border-radius: 6px;
}

/* Elevated card look */
.card {
  border: 1px solid rgba(15,30,46,.08);
  box-shadow: 0 20px 40px rgba(15,30,46,.10);
}

/* Premium hero glow */
.hero-card {
  box-shadow: 0 28px 60px rgba(0,0,0,.25);
}

/* Subtle gold top border for sections */
.section {
  border-top: 1px solid rgba(200,169,106,.25);
}

/* Premium button hover */
.btn-primary:hover {
  box-shadow: 0 22px 44px rgba(0,0,0,.22);
  transform: translateY(-1px);
}

/* Elegant footer accent */
.footer {
  border-top: 3px solid #C8A96A;
}



/* ===== Hero Tabs Visibility (Override) ===== */
.hero-card .badge {
  background: #C8A96A !important;      /* gold */
  color: #0F1E2E !important;           /* navy */
  border: 1px solid rgba(15,30,46,.18) !important;
  box-shadow: 0 10px 22px rgba(0,0,0,.18) !important;
  font-weight: 800 !important;
}

.hero-card .pill {
  background: rgba(244,241,236,.95) !important;  /* warm neutral */
  color: #0F1E2E !important;                     /* navy */
  border: 1px solid rgba(200,169,106,.65) !important; /* gold border */
  box-shadow: 0 10px 22px rgba(0,0,0,.18) !important;
  font-weight: 700 !important;
}

.hero-card .pill:hover {
  filter: brightness(1.02) !important;
}




/* ===== Alternate Design: Inviting Executive (Light Hero) ===== */

/* Light hero to eliminate visibility issues in builders and improve warmth */
.hero-card{
  background: linear-gradient(135deg, rgba(244,241,236,.98), rgba(255,255,255,.98)) !important;
  color: #0F1E2E !important;
  border: 1px solid rgba(15,30,46,.10) !important;
  box-shadow: 0 28px 60px rgba(15,30,46,.14) !important;
}
.hero-card:before{ display:none !important; }

.lede{ color: rgba(15,30,46,.82) !important; }

/* Keep badge/pills high-contrast */
.hero-card .badge{
  background: #0F1E2E !important;
  color: #F4F1EC !important;
  border: 1px solid rgba(200,169,106,.55) !important;
}
.hero-card .pill{
  background: #C8A96A !important;
  color: #0F1E2E !important;
  border: 1px solid rgba(15,30,46,.14) !important;
}

/* Buttons: navy primary, gold outline secondary */
.btn-secondary{
  border-color: rgba(200,169,106,.75) !important;
}
.btn-secondary:hover{
  background: rgba(200,169,106,.16) !important;
}

/* Add a subtle gold corner accent */
.hero-side{
  background: rgba(15,30,46,.03) !important;
  border: 1px solid rgba(200,169,106,.28) !important;
}
.hero-side h3{ color: rgba(15,30,46,.74) !important; text-transform: none !important; letter-spacing: .2px !important; }
.kpi .label{ color: rgba(15,30,46,.74) !important; }
.kpi .num{ color: #0F1E2E !important; font-weight: 900 !important; }

/* Warm invite: soften section borders */
.section{ border-top: 1px solid rgba(15,30,46,.06) !important; }

