:root {
  --navy: #123047;
  --navy-dark: #0b2033;
  --navy-deeper: #071624;
  --gold: #d4a54a;
  --gold-light: #e8c47c;
  --cream: #f2f1ec;
  --white: #ffffff;
  --ink: #1c2a33;
  --gray: #5b6b74;
  --gray-light: #8c99a1;
  --line: #e2e0d6;
  --line-dark: rgba(242, 241, 236, 0.14);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(11, 32, 51, 0.08);
  --shadow-lg: 0 20px 60px rgba(11, 32, 51, 0.18);
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
h1, h2, h3, h4 { font-family: "Cambria", "Georgia", "Times New Roman", serif; font-weight: 700; margin: 0 0 16px; color: var(--navy); line-height: 1.2; }
h1 { font-size: 48px; letter-spacing: -0.5px; }
h2 { font-size: 34px; letter-spacing: -0.3px; }
h3 { font-size: 22px; }
p { margin: 0 0 16px; color: var(--gray); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.center { text-align: center; }
.lede { font-size: 19px; color: var(--gray); max-width: 700px; }
.lede.center { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  padding: 13px 26px; border-radius: 999px; font-weight: 700; font-size: 15px;
  border: 2px solid transparent; cursor: pointer; transition: all .15s ease; white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--navy-deeper); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.35); color: var(--white); }
.btn-outline:hover { border-color: var(--white); }
.btn-outline-navy { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-block { width: 100%; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--gold); color: var(--navy-deeper); font-size: 14px; font-weight: 600;
  text-align: center; padding: 10px 44px 10px 16px; position: relative;
}
.announce a { text-decoration: underline; font-weight: 800; }
.announce .close {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  cursor: pointer; font-size: 15px; opacity: .7; background: none; border: none; color: inherit;
}
.announce .close:hover { opacity: 1; }

/* ---------- Nav ---------- */
header.site-header {
  background: var(--navy-deeper); position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--line-dark);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 16px 28px; max-width: var(--maxw); margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 56px; height: 56px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { color: var(--white); font-weight: 800; font-size: 18px; letter-spacing: .2px; }
.brand-product { color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }

nav.main-nav { display: flex; align-items: center; gap: 30px; }
nav.main-nav > ul { display: flex; align-items: center; gap: 30px; }
nav.main-nav a.nav-link {
  color: rgba(242,241,236,0.85); font-size: 14.5px; font-weight: 600; padding: 8px 0; position: relative;
}
nav.main-nav a.nav-link:hover, nav.main-nav a.nav-link.active { color: var(--white); }
nav.main-nav a.nav-link.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: var(--gold); border-radius: 2px;
}
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: -14px; margin-top: 14px; background: var(--white);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); min-width: 210px; padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .15s ease;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 10px 12px; border-radius: 8px; color: var(--navy); font-size: 14.5px; font-weight: 600;
}
.dropdown a:hover { background: var(--cream); }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.menu-toggle { display: none; background: none; border: none; color: var(--white); font-size: 24px; cursor: pointer; }

@media (max-width: 980px) {
  nav.main-nav { position: fixed; inset: 68px 0 0 0; background: var(--navy-deeper); flex-direction: column;
    align-items: stretch; padding: 24px 28px; transform: translateX(100%); transition: transform .2s ease; overflow-y: auto; }
  nav.main-nav.open { transform: translateX(0); }
  nav.main-nav > ul { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
  nav.main-nav a.nav-link { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line-dark); }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(255,255,255,0.04); margin: 4px 0 8px; display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .nav-actions { margin-top: 18px; width: 100%; }
  .nav-actions .btn { width: 100%; }
  .menu-toggle { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  background: radial-gradient(ellipse at 20% -10%, #1a4364 0%, var(--navy-dark) 45%, var(--navy-deeper) 100%);
  color: var(--white); padding: 96px 0 100px; position: relative; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 82% 30%, rgba(212,165,74,0.16), transparent 55%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; position: relative; }
.hero h1 { color: var(--white); font-size: 52px; }
.hero .lede { color: rgba(242,241,236,0.82); font-size: 19px; }
.hero-cta { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 36px; margin-top: 48px; flex-wrap: wrap; }
.hero-stat-num { font-family: "Cambria", serif; font-size: 30px; font-weight: 700; color: var(--gold); }
.hero-stat-label { font-size: 12.5px; color: rgba(242,241,236,0.65); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 38px; }
}

/* ---------- Sections / cards ---------- */
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy-deeper); color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: rgba(242,241,236,0.78); }

.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow); height: 100%;
}
.card-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--cream); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.card-icon img { width: 26px; height: 26px; }
.card h3 { margin-bottom: 8px; font-size: 19px; }
.card p { margin-bottom: 0; font-size: 15px; }
.card .tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }

.uc-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px; }
.uc-card .uc-num { color: var(--gold); font-weight: 800; font-size: 12px; letter-spacing: 1px; }
.uc-card h4 { font-size: 16.5px; color: var(--navy); margin: 6px 0 8px; font-family: "Inter", sans-serif; font-weight: 700; }
.uc-card p { font-size: 14px; margin-bottom: 0; }
.uc-group-title { font-size: 13px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin: 52px 0 20px; }
.uc-group-title:first-of-type { margin-top: 8px; }

.step-row { display: flex; gap: 22px; align-items: flex-start; margin-bottom: 42px; }
.step-num {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-family: "Cambria", serif; font-weight: 700; font-size: 18px;
}
.step-row h3 { margin-bottom: 6px; }
.step-connector { width: 2px; background: var(--line); margin: 0 0 0 23px; height: 42px; }

.pillar { text-align: center; padding: 10px; }
.pillar img { width: 56px; height: 56px; margin: 0 auto 16px; }

.quote-card { background: var(--white); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.quote-card .stars { color: var(--gold); font-size: 15px; margin-bottom: 14px; }

/* ---------- Pricing ---------- */
.price-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; text-align: center; position: relative; }
.price-card.featured { border: 2px solid var(--gold); box-shadow: var(--shadow-lg); }
.price-card .badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy-deeper); font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; }
.price-card .amount { font-family: "Cambria", serif; font-size: 30px; color: var(--navy); margin: 14px 0; font-weight: 700; }
.price-card .amount span { font-size: 14px; color: var(--gray); font-weight: 400; font-family: "Inter", sans-serif; }
.price-list { text-align: left; margin: 24px 0; }
.price-list li { padding: 8px 0; font-size: 14.5px; color: var(--gray); border-bottom: 1px solid var(--line); display: flex; gap: 10px; }
.price-list li::before { content: "✓"; color: var(--gold); font-weight: 800; }

/* ---------- Forms ---------- */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-row.single { grid-template-columns: 1fr; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-size: 14.5px; font-family: inherit; color: var(--ink); background: var(--white);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 90px; }
#lead-status { margin-top: 16px; font-size: 14px; font-weight: 600; display: none; }
#lead-status.ok { color: #1a7a4c; display: block; }
#lead-status.err { color: #b3372c; display: block; }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--navy-deeper); color: rgba(242,241,236,0.7); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 { color: var(--white); font-size: 13px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; font-family: "Inter", sans-serif; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--line-dark); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; }

/* ---------- Blog / Newsroom ---------- */
.post-card { display: flex; gap: 22px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.post-card .meta { font-size: 12.5px; color: var(--gold); font-weight: 700; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 8px; }
.post-card h3 { margin-bottom: 8px; }
.post-thumb { width: 96px; height: 96px; border-radius: var(--radius-sm); background: linear-gradient(135deg, var(--navy), var(--navy-dark)); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.post-thumb span { color: var(--gold); font-family: "Cambria", serif; font-weight: 700; font-size: 26px; }
.article-header { max-width: 760px; margin: 0 auto; }
.article-body { max-width: 760px; margin: 0 auto; font-size: 17px; }
.article-body p { color: var(--ink); margin-bottom: 20px; }
.article-meta { display: flex; gap: 16px; align-items: center; color: var(--gray-light); font-size: 13.5px; margin-bottom: 28px; }
.news-item { padding: 30px 0; border-bottom: 1px solid var(--line); }
.news-item .date { font-size: 13px; color: var(--gray-light); font-weight: 600; margin-bottom: 6px; }
.news-item .news-tag { display: inline-block; background: var(--cream); color: var(--navy); font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; margin-left: 10px; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--navy-dark), var(--navy-deeper)); color: var(--white); border-radius: 24px; padding: 60px; text-align: center; margin: 0 28px; }
.cta-band h2 { color: var(--white); }
.cta-band .lede { color: rgba(242,241,236,0.8); margin: 0 auto 30px; }

/* ---------- Placeholder / About ---------- */
.avatar-placeholder {
  width: 168px; height: 168px; border-radius: 50%; background: var(--cream); border: 2px dashed var(--gray-light);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--gray-light); font-size: 13px; text-align: center; padding: 10px;
}

/* ---------- Leadership card (photo + bio) ---------- */
.leader-card { display: grid; grid-template-columns: 240px 1fr; gap: 40px; align-items: start; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.leader-photo { width: 100%; aspect-ratio: 1024 / 1536; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow); background: var(--cream); }
.leader-photo img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }
.leader-name { font-size: 24px; margin-bottom: 2px; }
.leader-title { color: var(--gold); font-weight: 700; font-size: 14px; letter-spacing: .3px; margin-bottom: 18px; }
.leader-bio p { font-size: 15.5px; }
.leader-credentials { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.leader-credentials h4 { font-size: 12px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--navy); margin-bottom: 10px; font-family: "Inter", sans-serif; }
.leader-credentials p { font-size: 14px; margin-bottom: 6px; }
@media (max-width: 720px) {
  .leader-card { grid-template-columns: 1fr; }
  .leader-photo { max-width: 240px; margin: 0 auto; }
}

/* ---------- Explainer video block ---------- */
.explainer-wrap { background: var(--navy-deeper); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line-dark); }
.explainer-stage { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.explainer-scene { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px; opacity: 0; transition: opacity .6s ease; }
.explainer-scene.active { opacity: 1; }
.explainer-scene .big { font-family: "Cambria", serif; font-weight: 700; color: var(--white); font-size: 30px; max-width: 640px; line-height: 1.3; }
.explainer-scene .small { color: rgba(242,241,236,0.7); font-size: 15px; margin-top: 14px; max-width: 520px; }
.explainer-scene .stat { font-family: "Cambria", serif; font-weight: 700; color: var(--gold); font-size: 56px; }
.explainer-controls { display: flex; align-items: center; gap: 14px; padding: 14px 20px; background: var(--navy-dark); }
.explainer-controls button { background: var(--gold); border: none; width: 34px; height: 34px; border-radius: 50%; cursor: pointer; color: var(--navy-deeper); font-size: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.explainer-progress { flex: 1; height: 4px; background: rgba(255,255,255,0.15); border-radius: 4px; overflow: hidden; }
.explainer-progress-bar { height: 100%; width: 0%; background: var(--gold); border-radius: 4px; transition: width .1s linear; }
.explainer-caption { color: rgba(242,241,236,0.55); font-size: 12.5px; min-width: 130px; text-align: right; }
.orbit { position: absolute; border: 1px solid rgba(212,165,74,0.25); border-radius: 50%; }
.node-dot { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); }

/* ---------- Internal leads admin page ---------- */
.admin-shell { min-height: 100vh; background: var(--cream); }
.admin-topbar { background: var(--navy-deeper); color: var(--white); padding: 18px 28px; display: flex; align-items: center; justify-content: space-between; }
.admin-topbar .brand-name { font-size: 15px; }
.admin-topbar .brand-product { font-size: 10px; }
.admin-gate { max-width: 420px; margin: 90px auto; }
.admin-gate .field { margin-bottom: 16px; }
.admin-table-wrap { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: auto; box-shadow: var(--shadow); }
table.admin-table { width: 100%; border-collapse: collapse; font-size: 13.5px; min-width: 1080px; }
table.admin-table th {
  text-align: left; font-size: 11px; letter-spacing: .6px; text-transform: uppercase; color: var(--gray);
  background: var(--cream); padding: 12px 14px; border-bottom: 1px solid var(--line); white-space: nowrap; position: sticky; top: 0;
}
table.admin-table td { padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; color: var(--ink); }
table.admin-table tr:last-child td { border-bottom: none; }
table.admin-table tr:hover td { background: #fbfaf7; }
.cell-name { font-weight: 700; color: var(--navy); }
.cell-sub { color: var(--gray-light); font-size: 12px; }
.cell-msg { max-width: 260px; white-space: pre-wrap; color: var(--gray); }
.status-select {
  font-size: 12.5px; font-weight: 700; padding: 6px 10px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; appearance: none; -webkit-appearance: none; background-position: right 8px center; background-repeat: no-repeat;
}
.status-select.status-open { background-color: #fdf3e1; color: #8a5d10; border-color: #edcf8f; }
.status-select.status-in-progress { background-color: #e6eef7; color: #1e4e8c; border-color: #b7cfe9; }
.status-select.status-closed { background-color: #e8f3ea; color: #2c6b3f; border-color: #b9dcc0; }
.admin-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; flex-wrap: wrap; gap: 12px; }
.admin-toolbar .count { color: var(--gray); font-size: 14px; }
.admin-empty { text-align: center; padding: 60px 20px; color: var(--gray-light); }
.toast { position: fixed; bottom: 24px; right: 24px; background: var(--navy-deeper); color: var(--white); padding: 12px 20px; border-radius: 10px; font-size: 13.5px; box-shadow: var(--shadow-lg); opacity: 0; transform: translateY(10px); transition: all .2s ease; pointer-events: none; }
.toast.show { opacity: 1; transform: translateY(0); }
.toast.err { background: #b3372c; }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.divider { height: 1px; background: var(--line); border: none; margin: 48px 0; }
.badge-pill { display: inline-block; background: var(--cream); color: var(--navy); font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 999px; margin-bottom: 16px; }
