:root {
  color-scheme: dark;
  --ink: #181a1b;
  --ink-raised: #202325;
  --ink-recessed: #131516;
  --cream: #e8e6e3;
  --cream-70: rgba(232, 230, 227, 0.7);
  --cream-45: rgba(232, 230, 227, 0.45);
  --cream-12: rgba(232, 230, 227, 0.12);
  --copper: #f97316;
  --copper-hover: #fb923c;
  --copper-press: #ea580c;
  --bronze: #776e62;
  --slate: #2e3233;
  --line: #3a3e40;
  --paper: #fafafa;
  --paper-card: #fff;
  --paper-sunk: #f1efec;
  --paper-line: #e2ded7;
  --near-black: #1a1a1a;
  --paper-body: rgba(26, 26, 26, 0.68);
  --positive: #4f7a5b;
  --critical: #a6483b;
  --font-serif: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1200px, calc(100vw - 64px));
  --measure: 68ch;
  --radius-sm: 3px;
  --radius: 6px;
  --radius-lg: 10px;
  --shadow-paper: 0 18px 48px rgba(24, 26, 27, 0.12), 0 4px 12px rgba(24, 26, 27, 0.06);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--cream-70);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  content: "";
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.72'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
.serif {
  color: var(--cream);
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -0.02em;
}

:focus-visible {
  outline: 3px solid rgba(251, 146, 60, 0.7);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--near-black);
  transform: translateY(-160%);
  transition: transform 160ms var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 76px;
  border-bottom: 1px solid var(--cream-12);
  background: rgba(24, 26, 27, 0.9);
  color: var(--cream);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  width: 124px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  white-space: nowrap;
}

.primary-nav a {
  color: var(--cream-70);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color 120ms ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--cream);
}

.nav-cta {
  padding: 10px 15px;
  border-radius: var(--radius);
  background: var(--copper);
  color: var(--ink) !important;
  font-weight: 600 !important;
  transition: background 120ms ease, transform 120ms ease;
}

[data-header] .nav-cta {
  border: 1px solid var(--cream-12);
  background: rgba(232, 230, 227, 0.04);
  color: var(--cream) !important;
}

.nav-cta:hover {
  background: var(--copper-hover);
}

[data-header] .nav-cta:hover {
  border-color: rgba(232, 230, 227, 0.38);
  background: rgba(232, 230, 227, 0.08);
}

.nav-cta:active,
.button:active {
  transform: translateY(1px);
}

.menu-toggle {
  display: none;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--cream);
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: grayscale(0.82) saturate(0.36) contrast(1.06);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(24, 26, 27, 0.98) 0%, rgba(24, 26, 27, 0.86) 42%, rgba(24, 26, 27, 0.18) 80%),
    linear-gradient(0deg, rgba(24, 26, 27, 0.74), transparent 50%);
}

.hero::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((100vw - var(--shell)) / 2);
  z-index: 2;
  width: 2px;
  background: var(--copper);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: calc(100svh - 76px);
  align-items: center;
}

.hero-copy {
  width: min(690px, 58vw);
  padding: 72px 0 72px 24px;
}

.hero-copy.reveal {
  opacity: 1;
  transform: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--cream-45);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 18px;
  height: 2px;
  flex: 0 0 18px;
  background: var(--copper);
  content: "";
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 5.4vw, 64px);
  line-height: 1.08;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 48ch;
  margin: 24px 0 0;
  color: var(--cream-70);
  font-size: 17px;
  line-height: 1.62;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background 120ms ease, border-color 120ms ease, color 120ms ease, transform 120ms ease;
}

.button-primary {
  background: var(--copper);
  color: var(--ink);
}

.button-primary:hover {
  background: var(--copper-hover);
}

.button-ghost {
  border-color: rgba(232, 230, 227, 0.28);
  background: rgba(24, 26, 27, 0.18);
  color: var(--cream);
}

.button-ghost:hover {
  border-color: rgba(232, 230, 227, 0.62);
  background: rgba(232, 230, 227, 0.06);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 30px;
  color: var(--cream-45);
  font-size: 12px;
}

.hero-proof span + span::before {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 22px 2px 0;
  border-radius: 50%;
  background: var(--bronze);
  content: "";
}

.hero-brand-mark {
  position: absolute;
  right: 42px;
  bottom: 32px;
  z-index: 3;
  width: 84px;
  height: 84px;
  object-fit: contain;
  opacity: 0.72;
}

.brand-statement {
  border-block: 1px solid var(--cream-12);
  background: var(--ink-recessed);
}

.brand-statement-grid {
  display: grid;
  min-height: 132px;
  grid-template-columns: 1fr 1.8fr;
  align-items: center;
}

.brand-statement-title {
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand-statement-title img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.brand-statement-title p {
  margin: 0;
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 700;
}

.brand-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--cream-12);
}

.brand-principles span {
  display: flex;
  min-height: 80px;
  flex-direction: column;
  justify-content: center;
  padding: 18px 26px;
  border-right: 1px solid var(--cream-12);
  color: var(--cream-45);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-principles b {
  margin-bottom: 3px;
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 19px;
  letter-spacing: 0;
  text-transform: none;
}

.section {
  padding: 96px 0;
}

.section-intro {
  max-width: 64ch;
  margin-bottom: 44px;
}

.section-intro h2,
.wealth-copy h2,
.sector-nav-wrap h2,
.approach-heading h2,
.faq-heading h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(29px, 3.6vw, 40px);
  line-height: 1.16;
}

.section-intro > p:not(.eyebrow),
.approach-heading > p:not(.eyebrow) {
  max-width: 52ch;
  margin: 16px 0 0;
  color: var(--cream-70);
  font-size: 16px;
}

.wealth-section {
  overflow: hidden;
  background: var(--ink);
}

.wealth-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
}

.wealth-copy .lead {
  margin: 24px 0 16px;
  color: var(--cream);
  font-size: 18px;
  line-height: 1.55;
}

.wealth-copy p:not(.lead, .eyebrow) {
  max-width: 58ch;
  color: var(--cream-70);
}

.text-link {
  display: inline-block;
  margin-top: 22px;
  border-bottom: 1px solid var(--bronze);
  color: var(--cream);
  font-weight: 600;
  text-decoration: none;
}

.text-link:hover {
  border-color: var(--cream);
}

.wealth-figure {
  position: relative;
  margin: 0;
}

.wealth-figure::after {
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 42%;
  height: 36%;
  border-right: 1px solid var(--bronze);
  border-bottom: 1px solid var(--bronze);
  content: "";
}

.wealth-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  filter: grayscale(0.9) saturate(0.32) contrast(1.05);
}

.wealth-note {
  grid-column: 2;
  max-width: 470px;
  margin: -36px 0 0 -78px;
  padding: 25px 28px;
  border-top: 2px solid var(--copper);
  border-radius: var(--radius);
  background: var(--slate);
  color: var(--cream-70);
  box-shadow: inset 0 0 0 1px var(--cream-12);
}

.wealth-note strong {
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wealth-note p {
  margin: 8px 0 0;
}

.solutions-section,
.approach-section {
  border-block: 1px solid var(--cream-12);
  background: var(--ink-recessed);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.solution {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--cream-12);
  border-radius: var(--radius);
  background: var(--slate);
  box-shadow: inset 0 0 0 1px rgba(232, 230, 227, 0.02);
}

.solution-featured {
  border-top: 2px solid var(--copper);
}

.solution-label {
  color: var(--cream-45);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.solution h3 {
  margin: 22px 0 0;
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 23px;
  line-height: 1.25;
}

.solution p {
  margin: 14px 0 0;
  color: var(--cream-70);
}

.solution ul {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--cream-12);
  color: var(--cream-70);
  list-style: none;
}

.solution li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
}

.solution li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 1px;
  background: var(--bronze);
  content: "";
}

.finance-menu {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 32px;
  border-block: 1px solid var(--cream-12);
}

.finance-menu > * {
  padding: 17px 14px;
  border-right: 1px solid var(--cream-12);
  color: var(--cream-45);
  font-size: 12px;
  text-decoration: none;
  text-align: center;
}

.finance-menu > *:last-child {
  border-right: 0;
}

.finance-menu a:hover {
  color: var(--cream);
}

.sectors-section {
  background: var(--ink);
}

.sectors-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(56px, 9vw, 128px);
  align-items: start;
}

.sector-tabs {
  display: grid;
  margin-top: 36px;
  border-top: 1px solid var(--cream-12);
}

.sector-tab {
  position: relative;
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid var(--cream-12);
  background: transparent;
  color: var(--cream-45);
  text-align: left;
  cursor: pointer;
  transition: color 120ms ease, padding 120ms ease;
}

.sector-tab:hover,
.sector-tab.is-active {
  padding-left: 16px;
  color: var(--cream);
}

.sector-tab.is-active::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 2px;
  background: var(--copper);
  content: "";
}

.sector-panel {
  position: sticky;
  top: 112px;
  min-height: 500px;
  padding: clamp(36px, 5vw, 62px);
  border: 1px solid var(--cream-12);
  border-radius: var(--radius);
  background: var(--slate);
  box-shadow: inset 0 0 0 1px rgba(232, 230, 227, 0.02);
}

.sector-panel::before {
  display: block;
  width: 56px;
  height: 56px;
  margin-left: auto;
  background: url('/assets/blackridge-icon-emblem-cream.png') center / contain no-repeat;
  content: "";
  opacity: 0.58;
}

.sector-panel h3 {
  max-width: 12ch;
  margin: 92px 0 0;
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: clamp(29px, 3.5vw, 40px);
  line-height: 1.14;
}

.sector-panel > p {
  max-width: 54ch;
  margin: 20px 0 28px;
  color: var(--cream-70);
}

.sector-panel ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--cream-12);
  color: var(--cream-70);
  list-style: none;
}

.sector-panel li {
  font-size: 12px;
  line-height: 1.4;
}

.approach-heading {
  max-width: 64ch;
  margin-bottom: 48px;
}

.approach-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.approach-list::before {
  position: absolute;
  top: 34px;
  right: 4%;
  left: 4%;
  height: 1px;
  background: var(--cream-12);
  content: "";
}

.approach-list li {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: start;
}

.process-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid var(--cream-12);
  border-radius: 50%;
  background: var(--ink-recessed);
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 38px;
  line-height: 1;
}

.process-duration {
  display: block;
  margin: 8px 0 7px;
  color: var(--cream-45);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.approach-list h3 {
  margin: 0;
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 22px;
}

.approach-list p {
  margin: 10px 0 0;
  color: var(--cream-70);
  font-size: 14px;
}

.insights-section {
  background: var(--ink);
}

.insights-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
}

.insight-feature,
.insight-row {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--cream-12);
  border-radius: var(--radius);
  background: var(--slate);
  color: var(--cream);
  text-decoration: none;
  transition: border-color 160ms ease, transform 200ms var(--ease-out);
}

.insight-feature:hover,
.insight-row:hover {
  border-color: rgba(232, 230, 227, 0.3);
  transform: translateY(-3px);
}

.insight-feature {
  min-height: 480px;
  justify-content: flex-end;
  padding: clamp(32px, 5vw, 58px);
  border-top: 2px solid var(--bronze);
}

.insight-feature > span,
.insight-row > span {
  margin-bottom: auto;
  color: var(--cream-45);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insight-feature h3 {
  max-width: 13ch;
  margin: 112px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(29px, 4vw, 42px);
  line-height: 1.15;
}

.insight-feature p {
  max-width: 52ch;
  margin: 18px 0;
  color: var(--cream-70);
}

.insight-feature b {
  font-size: 13px;
}

.insight-stack {
  display: grid;
  gap: 24px;
}

.insight-row {
  min-height: 228px;
  justify-content: flex-end;
  padding: 30px;
}

.insight-row h3 {
  margin: 60px 0 8px;
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.25;
}

.insight-row p {
  margin: 0;
  color: var(--cream-70);
}

.faq-section,
.contact-section {
  color-scheme: light;
  background: var(--paper);
  color: var(--paper-body);
}

.faq-section {
  border-top: 1px solid var(--paper-line);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(56px, 9vw, 128px);
}

.faq-heading {
  position: sticky;
  top: 112px;
  align-self: start;
}

.faq-section .eyebrow,
.contact-section .eyebrow {
  color: rgba(26, 26, 26, 0.45);
}

.faq-heading h2,
.contact-copy h2 {
  color: var(--near-black);
}

.faq-list details {
  border-bottom: 1px solid var(--paper-line);
}

.faq-list details:first-child {
  border-top: 1px solid var(--paper-line);
}

.faq-list summary {
  position: relative;
  padding: 23px 44px 23px 0;
  color: var(--near-black);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 34px;
  right: 4px;
  width: 16px;
  height: 2px;
  background: var(--copper);
  content: "";
  transition: transform 180ms var(--ease-out);
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 64ch;
  margin: -2px 0 24px;
  color: var(--paper-body);
}

.contact-section {
  border-top: 1px solid var(--paper-line);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(56px, 9vw, 120px);
  align-items: start;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 44ch;
  margin: 18px 0 0;
  font-size: 16px;
}

.booking-card {
  display: grid;
  justify-items: start;
  gap: 10px;
  margin-top: 34px;
  padding: 26px 0 28px 24px;
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
  border-left: 3px solid var(--copper);
}

.booking-label {
  color: var(--copper-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-card h3,
.form-intro h3 {
  margin: 0;
  color: var(--near-black);
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 29px);
  line-height: 1.16;
}

.booking-card p {
  max-width: 36ch;
  margin: 0 0 6px;
  color: var(--paper-body);
  font-size: 13px;
}

.booking-card small {
  color: rgba(26, 26, 26, 0.5);
  font-size: 11px;
}

.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  color: var(--paper-body);
  font-size: 13px;
}

.contact-points span {
  position: relative;
  padding-left: 18px;
}

.contact-points span::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 1px;
  background: var(--bronze);
  content: "";
}

.funding-form {
  position: relative;
  padding: clamp(28px, 4.5vw, 50px);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  background: var(--paper-card);
  color: var(--near-black);
  box-shadow: var(--shadow-paper);
}

.form-intro {
  display: grid;
  gap: 10px;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--paper-line);
}

.form-intro p {
  max-width: 48ch;
  margin: 0;
  color: var(--paper-body);
  font-size: 13px;
}

.honeypot-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 20px;
}

.field label {
  font-size: 13px;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #cfc9c0;
  border-radius: var(--radius);
  background: var(--paper-sunk);
  color: var(--near-black);
}

.field input,
.field select {
  min-height: 48px;
  padding: 0 13px;
}

.field textarea {
  min-height: 116px;
  padding: 12px 13px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--copper);
  outline: 3px solid rgba(249, 115, 22, 0.18);
  outline-offset: 1px;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--critical);
}

.field small {
  color: rgba(26, 26, 26, 0.48);
  font-size: 11px;
}

.field-error {
  color: var(--critical);
  font-size: 12px;
  font-weight: 600;
}

.check-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--paper-body);
  font-size: 12px;
}

.check-field input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--copper);
}

.check-field a {
  color: var(--near-black);
  font-weight: 600;
  text-decoration-color: var(--copper);
  text-underline-offset: 3px;
}

.consent-error {
  display: block;
  margin: 4px 0 0 27px;
}

.form-submit {
  margin-top: 24px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.66;
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: rgba(26, 26, 26, 0.56);
  font-size: 12px;
}

.form-status.is-error {
  color: var(--critical);
}

.form-status.is-success {
  color: var(--positive);
  font-weight: 600;
}

.site-footer {
  padding: 56px 0 26px;
  border-top: 1px solid var(--cream-12);
  background: var(--ink-recessed);
  color: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 0.7fr);
  gap: 42px;
}

.brand-footer {
  margin-bottom: 18px;
}

.footer-grid > div:first-child p {
  max-width: 39ch;
  color: var(--cream-45);
  font-size: 13px;
}

.footer-grid > div:not(:first-child) {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-grid strong {
  margin-bottom: 5px;
  color: var(--cream-45);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid a:not(.brand) {
  color: var(--cream-70);
  font-size: 12px;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--cream);
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid var(--cream-12);
  color: var(--cream-45);
  font-size: 11px;
}

.footer-legal p {
  margin: 0;
}

.footer-legal p:first-child {
  max-width: 90ch;
}

.footer-grid-compact {
  grid-template-columns: 1.6fr 0.8fr;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms var(--ease-out), transform 520ms var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Article and privacy pages */
.article-page main {
  background: var(--paper);
  color: var(--paper-body);
}

.article-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 86px;
  border-bottom: 2px solid var(--copper);
  background: var(--ink);
  color: var(--cream);
}

.article-hero::after {
  position: absolute;
  top: 50%;
  right: 5vw;
  width: clamp(180px, 25vw, 360px);
  aspect-ratio: 1;
  background: url('/assets/blackridge-icon-emblem-cream.png') center / contain no-repeat;
  content: "";
  opacity: 0.05;
  transform: translateY(-50%);
}

.article-hero > .shell {
  position: relative;
  z-index: 1;
}

.article-hero h1 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.12;
}

.article-dek {
  max-width: 62ch;
  margin: 22px 0 0;
  color: var(--cream-70);
  font-size: 17px;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(170px, 0.3fr) minmax(0, 0.7fr);
  gap: clamp(48px, 8vw, 110px);
  padding-top: 82px;
  padding-bottom: 110px;
}

.article-aside {
  position: sticky;
  top: 112px;
  align-self: start;
}

.article-aside strong {
  display: block;
  margin-bottom: 14px;
  color: var(--near-black);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-aside a {
  display: block;
  padding: 6px 0;
  color: rgba(26, 26, 26, 0.52);
  font-size: 12px;
  text-decoration: none;
}

.article-aside a:hover {
  color: var(--near-black);
  text-decoration: underline;
}

.article-content {
  max-width: 760px;
}

.article-content h2 {
  margin: 64px 0 18px;
  color: var(--near-black);
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 36px);
  line-height: 1.2;
  scroll-margin-top: 110px;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content h3 {
  margin: 34px 0 9px;
  color: var(--near-black);
  font-size: 17px;
  font-weight: 600;
}

.article-content p,
.article-content li {
  color: var(--paper-body);
  font-size: 15px;
  line-height: 1.72;
}

.article-content li + li {
  margin-top: 8px;
}

.article-callout {
  margin: 42px 0;
  padding: 26px;
  border-left: 3px solid var(--copper);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--paper-sunk);
}

.article-callout strong {
  display: block;
  margin-bottom: 5px;
  color: var(--near-black);
  font-family: var(--font-serif);
  font-size: 18px;
}

.article-callout p {
  margin: 0;
}

.article-cta {
  margin-top: 66px;
  padding: clamp(28px, 5vw, 48px);
  border-radius: var(--radius);
  background: var(--slate);
  color: var(--cream-70);
}

.article-cta h2 {
  margin: 0 0 14px;
  color: var(--cream);
}

.article-cta p {
  color: var(--cream-70);
}

.article-cta .button {
  margin-top: 10px;
  background: var(--copper);
  color: var(--ink);
}

.privacy-content {
  max-width: 780px;
  padding: 90px 0 110px;
}

.privacy-content h1 {
  margin: 0 0 28px;
  color: var(--near-black);
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.1;
}

.privacy-content h2 {
  margin-top: 38px;
  color: var(--near-black);
  font-family: var(--font-serif);
}

.privacy-content p {
  color: var(--paper-body);
}

@media (max-width: 1040px) {
  .primary-nav {
    gap: 14px;
  }

  .primary-nav a {
    font-size: 12px;
  }

  .solution-grid {
    gap: 16px;
  }

  .solution {
    padding: 26px;
  }

  .approach-list {
    gap: 24px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 40px, 720px);
  }

  html {
    scroll-padding-top: 68px;
  }

  .site-header,
  .nav-wrap {
    min-height: 68px;
  }

  .brand-logo {
    width: 120px;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    min-height: calc(100svh - 68px);
    align-items: stretch;
    align-content: start;
    padding: 18px 20px 24px;
    border-top: 1px solid var(--cream-12);
    background: var(--ink);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav a {
    padding: 9px 0;
    font-size: 14px;
  }

  .primary-nav .nav-cta {
    margin-top: 8px;
    padding: 13px;
    text-align: center;
  }

  [data-header] .nav-cta {
    background: var(--copper);
    color: var(--ink) !important;
  }

  .hero,
  .hero-inner {
    min-height: calc(100svh - 68px);
  }

  .hero-inner {
    align-items: flex-end;
  }

  .hero-copy {
    width: 100%;
    padding: 110px 0 52px;
  }

  .hero-media img {
    object-position: 68% center;
  }

  .hero-scrim {
    background: linear-gradient(0deg, rgba(24, 26, 27, 0.99) 7%, rgba(24, 26, 27, 0.7) 65%, rgba(24, 26, 27, 0.18));
  }

  .hero::after,
  .hero-brand-mark {
    display: none;
  }

  .brand-statement-grid {
    grid-template-columns: 1fr;
    padding-block: 26px;
  }

  .brand-statement-title {
    padding-bottom: 22px;
  }

  .brand-principles {
    border-top: 1px solid var(--cream-12);
    border-left: 0;
  }

  .wealth-grid,
  .sectors-layout,
  .faq-layout,
  .contact-grid,
  .article-shell {
    grid-template-columns: 1fr;
  }

  .wealth-grid {
    gap: 38px;
  }

  .wealth-figure {
    grid-row: 2;
  }

  .wealth-note {
    grid-column: 1;
    margin: -72px 20px 0;
  }

  .solution-grid {
    grid-template-columns: 1fr;
  }

  .solution {
    min-height: 0;
  }

  .solution ul {
    margin-top: 24px;
  }

  .finance-menu {
    grid-template-columns: 1fr 1fr;
  }

  .finance-menu > * {
    border-bottom: 1px solid var(--cream-12);
  }

  .sector-panel,
  .faq-heading,
  .article-aside {
    position: static;
  }

  .sector-panel {
    min-height: 460px;
  }

  .approach-list {
    grid-template-columns: 1fr;
  }

  .approach-list::before {
    top: 18px;
    bottom: 18px;
    left: 33px;
    width: 1px;
    height: auto;
  }

  .approach-list li {
    min-height: 120px;
  }

  .insights-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2;
  }

  .footer-grid-compact {
    grid-template-columns: 1.4fr 1fr;
  }

  .footer-grid-compact > div:last-child {
    grid-column: auto;
  }

  .article-shell {
    gap: 0;
  }

  .article-aside {
    display: none;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .section {
    padding: 76px 0;
  }

  .hero h1 {
    font-size: clamp(40px, 12.5vw, 52px);
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 15px;
  }

  .hero-proof {
    display: grid;
    gap: 4px;
  }

  .hero-proof span + span::before {
    display: none;
  }

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

  .brand-principles span {
    min-height: 64px;
    border-right: 0;
    border-bottom: 1px solid var(--cream-12);
  }

  .wealth-figure::after {
    display: none;
  }

  .wealth-note {
    margin-inline: 12px;
  }

  .finance-menu {
    grid-template-columns: 1fr;
  }

  .finance-menu > * {
    border-right: 0;
    text-align: left;
  }

  .sector-panel {
    min-height: 500px;
    padding: 28px;
  }

  .sector-panel ul {
    grid-template-columns: 1fr;
  }

  .approach-list li {
    grid-template-columns: 62px 1fr;
  }

  .process-number {
    width: 60px;
    height: 60px;
    font-size: 32px;
  }

  .approach-list::before {
    left: 29px;
  }

  .insight-feature {
    min-height: 410px;
    padding: 28px;
  }

  .insight-row {
    padding: 26px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-grid,
  .footer-grid-compact {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:first-child,
  .footer-grid-compact > div:first-child {
    grid-column: span 2;
    margin-bottom: 14px;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }

  .article-hero {
    padding: 70px 0 68px;
  }

  .article-hero h1 {
    font-size: clamp(34px, 10.5vw, 46px);
  }

  .article-shell {
    padding-top: 66px;
    padding-bottom: 84px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .hero-actions,
  .funding-form,
  body::before {
    display: none !important;
  }

  body,
  .article-page main {
    background: #fff;
    color: #111;
  }
}
/* libre-baskerville-latin-400-normal */
@font-face {
  font-family: 'Libre Baskerville';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/assets/libre-baskerville-latin-400-normal-C42RasBZ.woff2) format('woff2'), url(/assets/libre-baskerville-latin-400-normal-B6A5kCEq.woff) format('woff');
}/* libre-baskerville-latin-400-italic */
@font-face {
  font-family: 'Libre Baskerville';
  font-style: italic;
  font-display: swap;
  font-weight: 400;
  src: url(/assets/libre-baskerville-latin-400-italic-Dx5Rrf3o.woff2) format('woff2'), url(/assets/libre-baskerville-latin-400-italic-BDjkfMIE.woff) format('woff');
}/* libre-baskerville-latin-700-normal */
@font-face {
  font-family: 'Libre Baskerville';
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url(/assets/libre-baskerville-latin-700-normal-CLGq6Yj4.woff2) format('woff2'), url(/assets/libre-baskerville-latin-700-normal-DFRs2Bxw.woff) format('woff');
}/* inter-latin-400-normal */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/assets/inter-latin-400-normal-C38fXH4l.woff2) format('woff2'), url(/assets/inter-latin-400-normal-CyCys3Eg.woff) format('woff');
}/* inter-latin-500-normal */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url(/assets/inter-latin-500-normal-Cerq10X2.woff2) format('woff2'), url(/assets/inter-latin-500-normal-BL9OpVg8.woff) format('woff');
}/* inter-latin-600-normal */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url(/assets/inter-latin-600-normal-LgqL8muc.woff2) format('woff2'), url(/assets/inter-latin-600-normal-CiBQ2DWP.woff) format('woff');
}/* inter-latin-700-normal */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url(/assets/inter-latin-700-normal-Yt3aPRUw.woff2) format('woff2'), url(/assets/inter-latin-700-normal-BLAVimhd.woff) format('woff');
}