:root {
  --ink: #18211f;
  --muted: #5d6762;
  --paper: #f7f5ef;
  --white: #ffffff;
  --line: #d8ded8;
  --green: #0b5d45;
  --teal: #0a7890;
  --gold: #b7832f;
  --red: #a83a2d;
  --blue: #233e74;
  --shadow: 0 22px 70px rgba(24, 33, 31, .12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(24, 33, 31, .12);
  background: rgba(247, 245, 239, .94);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 184px;
  height: 78px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
}

.brand span {
  max-width: 190px;
  line-height: 1.05;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .93rem;
  color: #26322e;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--teal);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
  border-color: rgba(24, 33, 31, .22);
}

.hero .btn.secondary,
.page-hero .btn.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, .38);
}

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

.btn.red {
  background: var(--red);
  color: var(--white);
}

.btn.red:hover {
  background: #8f2f25;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(24, 33, 31, .95) 0%, rgba(24, 33, 31, .88) 46%, rgba(24, 33, 31, .48) 100%),
    url("assets/paul-flowers-headshot.jpg") center right 12% / min(54vw, 720px) auto no-repeat,
    #1a2623;
  color: var(--white);
}

.hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 74px 0 46px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #f2c56d;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.1rem, 7vw, 6.9rem);
  line-height: .89;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.hero-proof {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  transform: translateY(1px);
}

.proof-item {
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  padding: 20px;
  min-height: 116px;
}

.proof-item strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1.05;
}

.proof-item span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: .92rem;
}

main section {
  padding: 82px 0;
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .55fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 36px;
}

h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4vw, 4.3rem);
  line-height: .96;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.24rem;
  line-height: 1.16;
}

p {
  margin: 0 0 16px;
}

.muted {
  color: var(--muted);
}

.band-dark {
  background: #18211f;
  color: var(--white);
}

.band-dark .muted {
  color: rgba(255, 255, 255, .7);
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 8px 30px rgba(24, 33, 31, .05);
}

.band-dark .card {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .15);
}

.number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(10, 120, 144, .12);
  color: var(--teal);
  font-weight: 900;
  margin-bottom: 18px;
}

.proof-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.proof-table th,
.proof-table td {
  padding: 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.proof-table th {
  background: #e9f0ec;
  color: #1d2b27;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.proof-table td strong {
  color: var(--green);
}

.authority-strip {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 26px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.authority-strip img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  background: var(--white);
  padding: 8px;
  border-radius: 8px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.trust-mark {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, .06);
}

.trust-mark strong {
  display: block;
  color: #f2c56d;
  font-size: 1.38rem;
  line-height: 1.1;
  margin-bottom: 8px;
}

.trustpilot-proof {
  background: #f7f5ef;
}

.trustpilot-layout {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 28px;
  align-items: center;
}

.trustpilot-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
  box-shadow: 0 16px 36px rgba(24, 33, 31, .08);
}

.trustpilot-card p {
  margin: 18px 0 8px;
}

.trustpilot-card strong,
.trustpilot-card span {
  display: block;
}

.trustpilot-card strong {
  color: var(--green);
  font-size: 1.7rem;
  line-height: 1.1;
}

.trustpilot-card a {
  color: var(--teal);
  font-weight: 900;
}

.video-stage {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items: stretch;
}

.video-frame {
  min-height: 390px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .18);
  background:
    linear-gradient(135deg, rgba(10, 120, 144, .22), rgba(183, 131, 47, .22)),
    #121a18;
  display: grid;
  place-items: center;
  padding: 28px;
  text-align: center;
}

.video-frame iframe,
.video-poster {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 310px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, .28);
}

.video-poster {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: #000;
}

.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .86;
  transition: transform .2s ease, opacity .2s ease;
}

.video-poster .play-icon {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  background: rgba(168, 58, 45, .94);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .34);
}

.video-poster:hover img,
.video-poster:focus-visible img {
  opacity: 1;
  transform: scale(1.02);
}

.play-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .75);
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
}

.play-icon::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid var(--white);
  margin-left: 6px;
}

.validation-link {
  color: var(--white);
  font-weight: 900;
}

.map-panel {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: stretch;
}

.map {
  position: relative;
  min-height: 440px;
  aspect-ratio: 960 / 600;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 16%, rgba(10, 120, 144, .12), transparent 30%),
    #f8faf8;
  overflow: hidden;
}

.usa-map-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  filter: drop-shadow(0 14px 24px rgba(24, 33, 31, .08));
}

[data-partner-pins] {
  position: absolute;
  inset: 20px;
}

.pin {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  padding: 9px 13px;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(168, 58, 45, .35);
  cursor: pointer;
}

.pin.chicago {
  position: absolute;
  top: 34%;
  left: 57%;
}

.partner-pin {
  position: absolute;
  appearance: none;
  width: 13px;
  height: 13px;
  border: 2px solid var(--white);
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(168, 58, 45, .16), 0 8px 18px rgba(24, 33, 31, .18);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform .18s ease, box-shadow .18s ease;
  z-index: 2;
}

.partner-pin::after {
  content: attr(aria-label);
  position: absolute;
  left: 16px;
  top: -12px;
  min-width: max-content;
  padding: 4px 7px;
  border-radius: 5px;
  background: rgba(24, 33, 31, .92);
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: .18s ease;
}

.partner-pin:hover::after,
.partner-pin:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.partner-pin:hover,
.partner-pin:focus-visible {
  transform: translate(-50%, -50%) scale(1.2);
  box-shadow: 0 0 0 7px rgba(168, 58, 45, .2), 0 10px 24px rgba(24, 33, 31, .24);
}

.network-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 18px 0;
}

.network-stats div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #f7f5ef;
}

.network-stats strong {
  display: block;
  color: var(--green);
  font-size: 1.5rem;
  line-height: 1.05;
}

.partner-directory {
  max-height: 270px;
  overflow: auto;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 14px;
}

.partner-directory button {
  width: 100%;
  display: grid;
  gap: 2px;
  text-align: left;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 10px 0;
  color: var(--ink);
  cursor: pointer;
}

.partner-directory button:hover {
  color: var(--teal);
}

.source-note {
  color: var(--muted);
  font-size: .82rem;
}

.partner-list {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
}

.partner-list ul,
.check-list {
  margin: 0;
  padding-left: 20px;
}

.partner-list li,
.check-list li {
  margin-bottom: 11px;
}

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

.citation-list a {
  color: var(--green);
  font-weight: 800;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 0 20px;
}

summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  font-weight: 900;
  cursor: pointer;
}

details p {
  padding-bottom: 18px;
}

.cta-band {
  background: var(--green);
  color: var(--white);
}

.cta-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.cta-band .btn.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, .42);
}

.footer {
  padding: 42px 0;
  background: #111715;
  color: rgba(255, 255, 255, .72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer a {
  color: var(--white);
}

.page-hero {
  padding: 92px 0 58px;
  background: #18211f;
  color: var(--white);
}

.page-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.7rem);
  line-height: .92;
}

.article {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
}

.article h2 {
  margin-top: 42px;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.leadership-hero {
  background:
    linear-gradient(105deg, rgba(24, 33, 31, .96), rgba(24, 33, 31, .84)),
    url("assets/paul-flowers-headshot.jpg") center right 12% / min(42vw, 560px) auto no-repeat,
    #18211f;
}

.individuals-hero {
  background:
    linear-gradient(105deg, rgba(24, 33, 31, .96), rgba(24, 33, 31, .78)),
    url("assets/hidden-wealth-cover.png") center right 10% / min(36vw, 440px) auto no-repeat,
    #18211f;
}

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

.coverage-card,
.insight-panel,
.premium-points div {
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  padding: 22px;
}

.coverage-card strong,
.coverage-card span,
.premium-points strong,
.premium-points span {
  display: block;
}

.coverage-card strong {
  color: #f2c56d;
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.coverage-card span {
  color: rgba(255, 255, 255, .74);
}

.split-feature,
.premium-layout,
.book-feature {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 420px);
  gap: 32px;
  align-items: center;
}

.insight-panel {
  background: var(--white);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.insight-panel strong {
  display: block;
  color: var(--green);
  font-size: 1.45rem;
  line-height: 1.1;
  margin-bottom: 12px;
}

.premium-section {
  background: #e9f0ec;
}

.premium-points {
  display: grid;
  gap: 12px;
}

.premium-points div {
  background: var(--white);
  border-color: var(--line);
}

.premium-points strong {
  color: var(--green);
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.premium-points span {
  color: var(--muted);
}

.book-feature {
  grid-template-columns: minmax(220px, 360px) 1fr;
}

.book-cover {
  border-radius: 8px;
  background: #18211f;
  padding: 12px;
  box-shadow: var(--shadow);
}

.book-cover img {
  width: 100%;
  border-radius: 6px;
}

.leader-feature {
  display: grid;
}

.leader-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.primary-leader {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) 1fr;
}

.leader-photo {
  min-height: 520px;
  background: #e7ece8;
  display: grid;
  place-items: center;
  padding: 18px;
}

.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.leader-copy {
  padding: clamp(28px, 5vw, 56px);
  align-self: center;
}

.leader-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4.4rem);
}

.leader-title {
  color: var(--green);
  font-weight: 900;
  font-size: 1.12rem;
}

.leader-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.leadership-capabilities,
.team-grid {
  display: grid;
  gap: 18px;
}

.leadership-capabilities {
  grid-template-columns: repeat(4, 1fr);
}

.a-team-showcase,
.leadership-brand-panel {
  margin-bottom: 26px;
}

.a-team-showcase img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .22);
}

.leadership-brand-panel {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  padding: 24px;
}

.leadership-brand-panel img {
  width: 190px;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.leadership-brand-panel h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.team-grid {
  grid-template-columns: repeat(3, 1fr);
}

.team-card {
  display: grid;
  grid-template-rows: 300px 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #dfe6e1;
  padding: 14px;
}

.team-copy {
  padding: 22px;
}

.team-role {
  margin-bottom: 10px;
  color: #f2c56d;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.team-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--white);
  font-weight: 900;
}

@media (max-width: 900px) {
  .nav {
    align-items: center;
    padding: 14px 0;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    min-width: 0;
    flex-wrap: wrap;
    gap: 12px 18px;
    overflow: visible;
    padding-bottom: 4px;
  }

  .nav,
  .wrap,
  .hero-inner,
  .hero-proof {
    max-width: calc(100vw - 32px);
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(24, 33, 31, .96), rgba(24, 33, 31, .82)),
      url("assets/paul-flowers-headshot.jpg") center bottom / min(86vw, 520px) auto no-repeat,
      #1a2623;
  }

  .hero-inner {
    padding-bottom: 330px;
  }

  .hero-proof,
  .grid-3,
  .grid-2,
  .section-head,
  .map-panel,
  .primary-leader,
  .leadership-capabilities,
  .team-grid,
  .coverage-grid,
  .split-feature,
  .premium-layout,
  .book-feature,
  .trustpilot-layout,
  .video-stage,
  .cta-layout,
  .footer-grid,
  .trust-row {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .authority-strip {
    grid-template-columns: 1fr;
  }

  .leadership-brand-panel {
    grid-template-columns: 1fr;
  }

  .map {
    min-height: 0;
  }

  .usa-map-image {
    padding: 12px;
  }

  [data-partner-pins] {
    inset: 12px;
  }

  .leadership-hero {
    background:
      linear-gradient(180deg, rgba(24, 33, 31, .96), rgba(24, 33, 31, .88)),
      #18211f;
  }

  .individuals-hero {
    background:
      linear-gradient(180deg, rgba(24, 33, 31, .96), rgba(24, 33, 31, .88)),
      #18211f;
  }

  .leader-photo {
    min-height: 360px;
  }

  .hero h1,
  .page-hero h1,
  .leader-copy h2 {
    max-width: 100%;
    width: 100%;
    overflow-wrap: break-word;
  }

  .hero-actions .btn,
  .leader-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .nav,
  .wrap,
  .hero-inner,
  .hero-proof {
    width: min(358px, calc(100% - 32px));
    max-width: min(358px, calc(100% - 32px));
    margin-left: 16px;
    margin-right: 16px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.38rem;
    line-height: .98;
  }

  main section {
    padding: 58px 0;
  }

  .proof-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
