:root {
  --navy: #10233f;
  --navy-deep: #0a172c;
  --navy-soft: #183250;
  --gold: #c5a468;
  --gold-soft: #ead9b8;
  --cream: #f5f1ea;
  --white: #ffffff;
  --card: #fcfaf6;
  --text: #152841;
  --muted: #5f7185;
  --line: #e6ddcf;
  --shadow: 0 18px 44px rgba(16, 35, 63, 0.09);
  --shadow-soft: 0 14px 34px rgba(16, 35, 63, 0.07);
  --radius: 24px;
  --max: 1140px;
  --header-offset: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-offset); }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.section { padding: 88px 0; }
.surface { background: var(--white); }
.cream-surface { background: var(--cream); }
.navy-surface { background: var(--navy-deep); color: rgba(255,255,255,.92); }
.navy-surface h2, .navy-surface h3, .navy-surface h4 { color: var(--white); }
.navy-surface .muted, .navy-surface p { color: rgba(255,255,255,.78); }

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

h1, h2, h3, h4 {
  margin: 0 0 16px;
  color: var(--text);
  line-height: 1.08;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 600; }
h1 { font-size: clamp(42px, 6vw, 70px); color: var(--white); letter-spacing: -.025em; }
h2 { font-size: clamp(32px, 4vw, 48px); letter-spacing: -.018em; }
h3 { font-size: 24px; }
h4 { font-size: 18px; font-weight: 700; }
p { margin: 0 0 16px; font-size: 17px; }
.muted { color: var(--muted); }
.small { font-size: 14px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(245, 241, 234, .94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(230, 221, 207, .92);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-shrink: 0;
}

.brand img { width: 44px; height: 44px; object-fit: contain; flex-shrink: 0; }
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 25px;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: -.02em;
  color: var(--navy-deep);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a { white-space: nowrap; line-height: 1.15; }
.nav-links .btn { min-height: 46px; padding: 0 17px; font-size: 14px; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--navy); }

.mobile-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 750;
  transition: .22s ease;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(16,35,63,.16);
}
.btn-primary:hover { background: var(--navy-deep); transform: translateY(-1px); }
.btn-outline { background: rgba(255,255,255,.94); color: var(--navy); border-color: rgba(255,255,255,.65); }
.btn-outline:hover { background: var(--white); }
.btn-light { background: var(--white); color: var(--navy); }
.btn-light:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0,0,0,.16); }
.btn-quiet { background: transparent; border-color: var(--line); color: var(--navy); }
.btn-quiet:hover { background: var(--white); }

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(rgba(8, 19, 35, .49), rgba(8, 19, 35, .64)),
    url('hero-dorado.webp') center center/cover no-repeat;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 160px;
  background: linear-gradient(to top, rgba(8,19,35,.30), rgba(8,19,35,0));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 805px;
  padding: 96px 0 76px;
}

.hero p { color: rgba(255,255,255,.92); }
.hero-lead { font-size: 20px; max-width: 660px; }
.hero-support { max-width: 720px; color: rgba(255,255,255,.83); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.grid { display: grid; gap: 24px; }
.trust-strip, .risk-grid, .services-grid, .steps, .faq-grid, .contact-grid, .founder-grid, .report-grid, .advisor-grid, .workflow-grid, .record-grid, .resource-grid { display: grid; gap: 24px; }
.trust-strip { grid-template-columns: repeat(4, 1fr); margin-top: -42px; position: relative; z-index: 2; }
.risk-grid { grid-template-columns: repeat(2, 1fr); }
.services-grid { grid-template-columns: repeat(3, 1fr); }
.steps { grid-template-columns: repeat(5, 1fr); }
.workflow-grid { grid-template-columns: repeat(5, 1fr); }
.faq-grid { grid-template-columns: repeat(2, 1fr); }
.contact-grid { grid-template-columns: .95fr 1.05fr; align-items: stretch; }
.founder-grid { grid-template-columns: .9fr 1.1fr; align-items: center; }
.report-grid { grid-template-columns: 1.05fr .95fr; align-items: center; }
.advisor-grid { grid-template-columns: .9fr 1.1fr; align-items: center; }
.record-grid { grid-template-columns: 1fr 1fr; align-items: stretch; }
.resource-grid { grid-template-columns: 1.1fr .9fr; align-items: center; }

.card, .risk-card, .service-card, .step, .faq, .contact-box, .contact-info, .founder-copy, .founder-visual, .founder-headshot-card, .report-copy, .report-visual, .service-note, .advisor-card, .workflow-card, .record-card, .resource-card, .policy-card, .checklist-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card, .risk-card, .service-card, .step, .faq, .contact-box, .contact-info, .founder-copy, .report-copy, .service-note, .advisor-card, .workflow-card, .record-card, .resource-card, .policy-card, .checklist-card { padding: 28px; }

.card p:last-child, .risk-card p:last-child, .service-card p:last-child, .step p:last-child, .faq p:last-child, .report-copy p:last-child, .service-note p:last-child, .advisor-card p:last-child, .workflow-card p:last-child, .record-card p:last-child, .resource-card p:last-child, .policy-card p:last-child, .checklist-card p:last-child { margin-bottom: 0; }

.icon-chip {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(197,164,104,.16);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 16px;
}
.icon-chip.dark {
  background: rgba(255,255,255,.10);
  color: var(--gold-soft);
  border: 1px solid rgba(255,255,255,.16);
}

.section-header { max-width: 720px; margin-bottom: 34px; }
.section-header--wide { max-width: 920px; }
.section-kicker { margin-top: -10px; max-width: 800px; }

.step-number {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: rgba(197,164,104,.16);
  color: var(--gold);
  font-weight: 800;
  font-size: 14px;
}

.clean-list, .compact-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.clean-list li, .compact-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
}
.checkmark {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(197,164,104,.16);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  margin-top: 2px;
}

.service-note {
  margin-top: 24px;
  background: linear-gradient(180deg, #fcfaf6, #f7f1e7);
}
.service-note.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
}
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  font-size: 13px;
  color: var(--text);
  font-weight: 700;
}

.report-copy, .record-card, .resource-card { background: linear-gradient(180deg, #ffffff, #fcfaf6); }
.report-visual, .founder-visual {
  padding: 20px;
  background: linear-gradient(180deg, #fdfbf7, #f7f1e7);
  border-radius: var(--radius);
}
.report-preview-card {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 40px rgba(16,35,63,.10);
}
.report-preview-card img { width: 100%; height: auto; object-fit: cover; }
.report-caption { padding: 16px 18px; background: rgba(255,255,255,.96); border-top: 1px solid var(--line); }

.founder-copy { background: var(--white); color: var(--text); }
.founder-copy h2 { margin-bottom: 14px; }
.founder-copy p, .founder-copy li { color: var(--text); }
.founder-headshot-card { display: grid; gap: 20px; padding: 20px; background: rgba(255,255,255,.92); text-align: center; }
.founder-headshot { width: min(100%, 280px); aspect-ratio: 1 / 1; object-fit: cover; border-radius: 24px; margin: 0 auto; box-shadow: 0 18px 40px rgba(16,35,63,.12); }
.founder-meta h3 { margin-bottom: 8px; font-size: 30px; }
.founder-role { display: inline-block; margin-bottom: 10px; color: var(--gold); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: 12px; }
.founder-credentials { margin: 14px auto 0; padding-top: 14px; border-top: 1px solid var(--line); max-width: 340px; color: var(--text); font-size: 15px; line-height: 1.55; font-weight: 650; }

.contact-info {
  background: linear-gradient(180deg, rgba(16,35,63,.99), rgba(16,35,63,.94));
  color: rgba(255,255,255,.94);
}
.contact-info h3, .contact-info p, .contact-info a, .contact-info li { color: rgba(255,255,255,.94); }

.contact-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 14px; }
.contact-list li { display: grid; grid-template-columns: 18px 1fr; gap: 12px; align-items: start; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 22px; }
.full { grid-column: 1 / -1; }
label { display: block; margin-bottom: 7px; color: var(--muted); font-size: 13px; font-weight: 750; letter-spacing: .02em; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fcfbf8;
  color: var(--text);
  border-radius: 14px;
  padding: 15px 16px;
  outline: none;
}
textarea { min-height: 150px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: #8e9cad; box-shadow: 0 0 0 4px rgba(16,35,63,.08); }

.page-hero {
  padding: 86px 0 54px;
  background: linear-gradient(180deg, var(--navy-deep), var(--navy));
  color: rgba(255,255,255,.92);
}
.page-hero h1 { max-width: 850px; }
.page-hero p { max-width: 760px; color: rgba(255,255,255,.80); }
.breadcrumb { margin-bottom: 16px; color: var(--gold-soft); font-size: 14px; font-weight: 750; }
.policy-wrap { max-width: 920px; margin: 0 auto; }
.policy-card h2, .checklist-card h2 { margin-top: 10px; font-size: 28px; }
.policy-card h3, .checklist-card h3 { font-size: 23px; margin-top: 30px; }
.policy-card ul, .checklist-card ul { margin-top: 8px; }
.checklist-card > h3 { border-top: 1px solid var(--line); padding-top: 26px; }
.checklist-card > h3:first-of-type { border-top: 0; padding-top: 0; }
.checklist-note { margin-top: 30px; padding: 22px 24px; }
.checklist-note h3 { margin-top: 0; margin-bottom: 10px; font-size: 22px; }
.checklist-note p { margin-bottom: 0; }

.print-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

footer {
  margin-top: 84px;
  padding: 46px 0 32px;
  background: var(--navy-deep);
  color: rgba(255,255,255,.86);
}
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 28px; align-items: start; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 48px; height: 48px; object-fit: contain; }
.footer-title { color: var(--white); font-family: 'Playfair Display', serif; font-size: 24px; margin-bottom: 6px; }
.mini { font-size: 14px; }
.footer-heading { color: var(--gold-soft); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 10px; }
.footer-list { display: grid; gap: 8px; }
.footer-disclaimer { margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.68); font-size: 12px; line-height: 1.6; }
.footer-disclaimer a { color: rgba(255,255,255,.86); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 1180px) {
  .brand-name { font-size: 23px; }
  .nav-links { gap: 13px; font-size: 13px; }
  .nav-links .btn { min-height: 46px; padding: 0 15px; font-size: 13px; }
}

@media (max-width: 1080px) {
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .steps, .workflow-grid { grid-template-columns: 1fr 1fr; }
  .founder-grid, .report-grid, .advisor-grid, .record-grid, .resource-grid { grid-template-columns: 1fr; }
  .founder-headshot-card { padding: 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 980px) {
  .section { padding: 76px 0; }
  .hero { min-height: auto; background-position: center center; }
  .hero-inner { padding: 88px 0 68px; }
  .mobile-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 1001;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }
  .nav-links.active { display: flex; }
  .nav-links .btn { width: 100%; }
  .risk-grid, .services-grid, .faq-grid, .contact-grid, .form-grid, .service-note.split, .advisor-roles { grid-template-columns: 1fr; }
  .trust-strip { margin-top: 0; }
  .brand-name { font-size: 22px; white-space: normal; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  h1 { font-size: clamp(38px, 10vw, 54px); }
  h2 { font-size: clamp(30px, 8vw, 40px); }
  p { font-size: 16px; }
  .btn { width: 100%; }
  .card, .risk-card, .service-card, .step, .faq, .contact-box, .contact-info, .founder-copy, .report-copy, .service-note, .advisor-card, .workflow-card, .record-card, .resource-card, .policy-card, .checklist-card { padding: 24px; }
  .founder-headshot { max-width: 220px; }
  .trust-strip, .steps, .workflow-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  footer { margin-top: 64px; }
}

@media print {
  .site-header, footer, .btn-row, .print-actions { display: none !important; }
  body { background: white; color: #111; }
  .page-hero { background: white; color: #111; padding: 20px 0; }
  .page-hero h1, .page-hero p { color: #111; }
  .section { padding: 18px 0; }
  .policy-card, .checklist-card { box-shadow: none; border: 1px solid #ddd; }
}

/* V5 cleanup refinements */
.nav-links { gap: 11px; font-size: 13px; }
.nav-links .btn { min-height: 44px; padding: 0 15px; }

.navy-surface .workflow-card {
  background: rgba(255,255,255,.075);
  border-color: rgba(255,255,255,.16);
  box-shadow: none;
}
.navy-surface .workflow-card h4 { color: #ffffff; }
.navy-surface .workflow-card p,
.navy-surface .workflow-card .muted { color: rgba(255,255,255,.78); }
.navy-surface .workflow-card .icon-chip {
  background: rgba(234,217,184,.14);
  color: var(--gold-soft);
  border: 1px solid rgba(234,217,184,.18);
}

.inline-note {
  margin-top: 20px;
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
  background: rgba(197,164,104,.09);
  border-radius: 14px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
}

.service-area-note {
  margin-top: 20px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.82) !important;
}

@media (max-width: 1180px) {
  .nav-links { gap: 9px; font-size: 12.5px; }
  .nav-links .btn { padding: 0 13px; font-size: 12.5px; }
}


/* V6 final cleanup */
.overview-section { padding-top: 0; padding-bottom: 72px; }
.v6-trust-strip .card h4 { margin-bottom: 10px; }
.v6-trust-strip .card p { font-size: 15.5px; line-height: 1.55; }

.nav-links { gap: 12px; font-size: 13px; }
.nav-links .btn { min-height: 44px; padding: 0 16px; font-size: 13px; }
.nav-links a { letter-spacing: .005em; }

.hero-inner { max-width: 790px; }
.hero-lead { max-width: 700px; }
.hero-support { max-width: 700px; }

.compact-note h3 { font-size: 22px; }
.compact-note .clean-list { gap: 11px; }

.steps-four { grid-template-columns: repeat(4, 1fr); }
.workflow-card p { margin-bottom: 0; color: rgba(255,255,255,.80); font-size: 15.5px; line-height: 1.55; }
.navy-surface .workflow-card { background: rgba(255,255,255,.085); }
.navy-surface .workflow-card h4 { margin-bottom: 10px; }

.hours-block { margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); }
.hours-block h4 { color: #ffffff; }

@media (max-width: 1120px) {
  .mobile-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 1001;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }
  .nav-links.active { display: flex; }
  .nav-links .btn { width: 100%; }
}

@media (max-width: 1080px) {
  .steps-four { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .overview-section { padding-bottom: 64px; }
  .steps-four { grid-template-columns: 1fr; }
}
