/* Charlotte Private Equity™ — Institutional lender design system
   Palette: Deep Navy / Brass / Cream / Paper White
   Type: Playfair Display (headlines) + Inter (body) */

:root {
  --navy: #0A1628;
  --navy-2: #13233d;
  --navy-3: #1c304f;
  --brass: #C9A86A;
  --brass-2: #b8965a;
  --brass-dim: #8c7545;
  --cream: #F5F0E6;
  --cream-2: #ede6d6;
  --paper: #FAFAF7;
  --ink: #0A1628;
  --ink-2: #2a3749;
  --ink-3: #5a6575;
  --line: rgba(10,22,40,.12);
  --line-inv: rgba(245,240,230,.16);
  --shadow-lg: 0 24px 48px -12px rgba(10,22,40,.18);
  --shadow-md: 0 8px 24px -6px rgba(10,22,40,.12);
  --maxw: 1200px;
  --maxw-copy: 780px;
  --serif: "Playfair Display", "Times New Roman", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--brass); }

h1,h2,h3,h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.015em;
  margin: 0 0 .5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.3rem, 5.2vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.75rem); }
h4 { font-size: 1.15rem; }
p { margin: 0 0 1.1em; max-width: 72ch; }
small, .small { font-size: .88rem; color: var(--ink-3); }

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

/* ── Header / Navigation ─────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding-top: env(safe-area-inset-top);
  background: rgba(10,22,40,.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,168,106,.18);
  transition: background .3s;
}
.site-header.solid { background: rgba(10,22,40,.96); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: var(--maxw); margin: 0 auto; padding: 0 28px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--brass);
  font-family: var(--serif);
  font-size: 1.15rem; font-weight: 600; letter-spacing: .01em;
}
.brand svg { height: 28px; width: auto; color: var(--brass); }
.brand:hover { color: var(--brass-2); }
.brand small { color: var(--cream); opacity: .7; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; font-family: var(--sans); display: block; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: var(--cream);
  font-size: .92rem;
  letter-spacing: .02em;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--brass); transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.nav-links a:hover { color: var(--brass); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--brass); }

.lang-toggle {
  display: inline-flex; gap: 6px; padding: 4px; border: 1px solid rgba(201,168,106,.35); border-radius: 999px;
}
.lang-toggle a {
  padding: 4px 10px; border-radius: 999px; font-size: .78rem; letter-spacing: .06em;
  color: var(--cream); opacity: .65;
}
.lang-toggle a.active, .lang-toggle a:hover { background: var(--brass); color: var(--navy); opacity: 1; }

.nav-toggle { display: none; background: none; border: 0; color: var(--cream); cursor: pointer; padding: 6px; }
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 900px) {
  .nav-links { position: fixed; inset: 72px 0 auto 0; background: var(--navy); flex-direction: column; gap: 4px; padding: 20px; border-bottom: 1px solid var(--line-inv); transform: translateY(-110%); transition: transform .35s; z-index: 99; align-items: stretch; }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 8px; border-bottom: 1px solid var(--line-inv); }
  .nav-toggle { display: block; }
  .brand small { display: none; }
}

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px;
  font-family: var(--sans); font-size: .92rem; font-weight: 500;
  letter-spacing: .04em; text-transform: uppercase;
  border: 1px solid var(--brass); border-radius: 2px;
  background: var(--brass); color: var(--navy);
  cursor: pointer; transition: all .25s;
  position: relative; overflow: hidden;
}
.btn:hover { background: var(--brass-2); border-color: var(--brass-2); color: var(--navy); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn-outline { background: transparent; color: var(--brass); }
.btn-outline:hover { background: var(--brass); color: var(--navy); }
.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(245,240,230,.4); }
.btn-ghost:hover { background: rgba(245,240,230,.08); color: var(--brass); border-color: var(--brass); }
.btn-lg { padding: 18px 34px; font-size: 1rem; }
.btn .arrow { transition: transform .25s; display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

/* ── Hero ─────────────────────────────────────── */
.hero {
  position: relative; min-height: 92vh; min-height: 92svh;
  display: flex; align-items: center;
  color: var(--cream);
  overflow: hidden;
  padding-top: calc(92px + env(safe-area-inset-top));
}
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
  background: var(--navy);
}
.hero-video-wrap video, .hero-video-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-video-wrap::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,.72) 0%, rgba(10,22,40,.55) 40%, rgba(10,22,40,.88) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 0 auto; padding: 0 28px;
  width: 100%;
}
.hero h1 { color: var(--cream); max-width: 18ch; }
.hero .eyebrow {
  display: inline-block;
  color: var(--brass); font-family: var(--sans); font-size: .82rem; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 14px; border-bottom: 1px solid rgba(201,168,106,.5);
}
.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 1.9vw, 1.5rem);
  color: var(--cream); opacity: .92;
  max-width: 44ch; line-height: 1.45;
  margin-top: 8px;
}
.hero-intro {
  color: var(--cream); opacity: .82;
  max-width: 58ch; margin-top: 28px;
  font-size: 1.05rem;
}
.hero-ctas { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 16px; }

.hero-compact { min-height: 62vh; min-height: 62svh; }

/* ── Sections ─────────────────────────────────────── */
section { padding: clamp(80px, 11vh, 130px) 0; position: relative; }
.section-dark { background: var(--navy); color: var(--cream); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark p { color: rgba(245,240,230,.82); }
.section-cream { background: var(--cream); }
.section-paper { background: var(--paper); }

.section-head { text-align: center; max-width: 740px; margin: 0 auto 64px; }
.section-head .eyebrow {
  color: var(--brass-dim); font-size: .78rem; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  display: inline-block; margin-bottom: 18px;
  padding-bottom: 12px; border-bottom: 1px solid rgba(201,168,106,.4);
}
.section-dark .section-head .eyebrow { color: var(--brass); border-bottom-color: rgba(201,168,106,.4); }
.section-head h2 { margin-bottom: 16px; }
.section-head p { margin: 0 auto; color: var(--ink-2); font-size: 1.08rem; }
.section-dark .section-head p { color: rgba(245,240,230,.75); }

/* ── Trust row ─────────────────────────────────────── */
.trust-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  margin-top: 64px; padding-top: 40px;
  border-top: 1px solid rgba(201,168,106,.22);
}
.trust-item { text-align: center; color: var(--cream); opacity: .88; }
.trust-item svg { width: 28px; height: 28px; color: var(--brass); margin: 0 auto 12px; display: block; }
.trust-item span { font-size: .85rem; letter-spacing: .06em; }
@media (max-width: 700px) { .trust-row { grid-template-columns: repeat(2, 1fr); gap: 24px; } }

/* ── Three-column value prop ─────────────────────────────────────── */
.three-col {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  margin-top: 56px;
}
.three-col .col {
  padding: 40px 28px 36px;
  border-top: 2px solid var(--brass);
  background: var(--paper);
  box-shadow: var(--shadow-md);
}
.section-dark .three-col .col { background: var(--navy-2); border-top-color: var(--brass); }
.col h3 { margin-bottom: 16px; }
.col .idx {
  font-family: var(--serif); font-style: italic;
  color: var(--brass); font-size: 1.2rem; margin-bottom: 8px;
  letter-spacing: .06em;
}
@media (max-width: 900px) { .three-col { grid-template-columns: 1fr; gap: 24px; } }

/* Simple value prop list on homepage */
.valueprop-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  margin: 64px 0 0;
}
.valueprop-row .vp {
  padding: 32px 24px; background: rgba(245,240,230,.04);
  border: 1px solid rgba(201,168,106,.2);
  font-family: var(--serif); font-style: italic; font-size: 1.15rem;
  line-height: 1.4; color: var(--cream);
}
@media (max-width: 900px) { .valueprop-row { grid-template-columns: 1fr; gap: 18px; } }

/* ── Stat grid / counters ─────────────────────────────────────── */
.stat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  background: rgba(201,168,106,.18);
  margin-top: 56px;
  border: 1px solid rgba(201,168,106,.3);
}
.stat-grid .stat {
  background: var(--navy-2);
  padding: 44px 28px; text-align: center;
}
.stat .n {
  font-family: var(--serif); font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: var(--brass); font-weight: 600; line-height: 1; letter-spacing: -.02em;
  display: block; margin-bottom: 10px;
}
.stat .l {
  font-size: .8rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(245,240,230,.72);
}
@media (max-width: 800px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stat-grid { grid-template-columns: 1fr; } }

/* ── Tables ─────────────────────────────────────── */
.terms-table {
  width: 100%; margin-top: 40px; border-collapse: collapse;
  font-size: 1rem;
  background: var(--paper);
  box-shadow: var(--shadow-md);
}
.terms-table caption {
  font-family: var(--serif); font-style: italic; text-align: left;
  padding: 0 0 18px; color: var(--ink-3);
}
.terms-table th, .terms-table td {
  padding: 16px 22px; text-align: left; border-bottom: 1px solid var(--line);
}
.terms-table th {
  background: var(--cream);
  font-family: var(--serif); font-weight: 600; color: var(--ink);
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
}
.terms-table td.num { text-align: right; font-variant-numeric: tabular-nums; color: var(--brass-dim); font-weight: 600; }
.terms-table tr:last-child td { border-bottom: 0; }
@media (max-width: 640px) {
  .terms-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .terms-table th, .terms-table td { padding: 12px 14px; font-size: .92rem; }
}

/* ── Checklist ─────────────────────────────────────── */
.checklist { list-style: none; padding: 0; margin: 40px 0 0; max-width: 640px; }
.checklist li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--line);
  font-size: 1.02rem;
}
.checklist li::before {
  content: ""; flex-shrink: 0; width: 22px; height: 22px; margin-top: 2px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A86A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
}
.section-dark .checklist li { border-bottom-color: var(--line-inv); }

/* ── Timeline / Steps ─────────────────────────────────────── */
.steps { margin-top: 48px; }
.step {
  display: grid; grid-template-columns: 120px 1fr; gap: 32px; align-items: baseline;
  padding: 26px 0; border-bottom: 1px solid var(--line);
}
.step .idx {
  font-family: var(--serif); color: var(--brass-dim); font-size: 1.2rem;
  letter-spacing: .16em; text-transform: uppercase;
  padding-top: 4px;
}
.step h3 { margin: 0 0 8px; }
.step p { margin: 0; color: var(--ink-2); }
.section-dark .step { border-bottom-color: var(--line-inv); }
.section-dark .step p { color: rgba(245,240,230,.78); }
.section-dark .step .idx { color: var(--brass); }
@media (max-width: 700px) {
  .step { grid-template-columns: 1fr; gap: 6px; }
}

/* ── Forms ─────────────────────────────────────── */
.form-card {
  background: var(--paper);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--brass);
  max-width: 640px;
  margin: 40px auto 0;
}
.section-dark .form-card { background: var(--paper); color: var(--ink); }
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block; margin-bottom: 6px;
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-2); font-weight: 500;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 13px 14px;
  font: inherit; color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: border-color .2s, box-shadow .2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(201,168,106,.18);
}
.form-row.valid input, .form-row.valid select { border-color: #2e7a4d; }
.form-row.invalid input, .form-row.invalid select { border-color: #b23a3a; animation: shake .3s; }
@keyframes shake { 0%,100%{transform:translateX(0)} 25%{transform:translateX(-4px)} 75%{transform:translateX(4px)} }
.form-row .err { color: #b23a3a; font-size: .82rem; margin-top: 4px; display: none; }
.form-row.invalid .err { display: block; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form-grid-2 { grid-template-columns: 1fr; gap: 0; } .form-card { padding: 28px 22px; } }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-microcopy { font-size: .82rem; color: var(--ink-3); margin-top: 18px; line-height: 1.5; }
.form-success {
  display: none;
  padding: 22px; background: rgba(46,122,77,.1);
  border: 1px solid rgba(46,122,77,.3); color: #1f5636;
  font-family: var(--serif); font-style: italic; font-size: 1.1rem;
}
.form-success.show { display: block; }

/* ── FAQ / Accordion ─────────────────────────────────────── */
.faq-list { margin-top: 32px; max-width: 780px; margin-left: auto; margin-right: auto; }
.faq {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  padding: 24px 0; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: var(--serif); font-weight: 600; font-size: 1.15rem; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; color: var(--brass); font-size: 1.6rem; font-weight: 300;
  transition: transform .25s;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 0 24px; color: var(--ink-2); max-width: 64ch; }

/* ── News / Cards ─────────────────────────────────────── */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px; margin-top: 48px;
}
.news-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  text-decoration: none;
  min-height: 220px;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--brass); }
.news-card .tag {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--brass-dim); font-weight: 600; margin-bottom: 14px;
}
.news-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.news-card .dek { color: var(--ink-2); font-size: .96rem; flex-grow: 1; }
.news-card .date { color: var(--ink-3); font-size: .82rem; margin-top: 18px; letter-spacing: .06em; }
.news-card.stub { background: var(--cream); }
.news-card.stub .tag { color: var(--ink-3); }

/* ── Article (press release) ─────────────────────────────────────── */
.article {
  max-width: 760px; margin: 0 auto;
  padding: 140px 28px 100px;
}
.article .dateline {
  color: var(--brass-dim); font-size: .82rem; letter-spacing: .2em; text-transform: uppercase;
  margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.article h1 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin-bottom: 32px; line-height: 1.2;
}
.article p { font-size: 1.1rem; line-height: 1.7; color: var(--ink-2); }
.article ul { color: var(--ink-2); font-size: 1.05rem; line-height: 1.8; padding-left: 22px; }
.article blockquote {
  margin: 32px 0; padding: 8px 0 8px 28px;
  border-left: 3px solid var(--brass);
  font-family: var(--serif); font-style: italic; font-size: 1.28rem;
  color: var(--ink); line-height: 1.5;
}
.article hr.end { border: 0; border-top: 1px solid var(--line); margin: 48px 0; }
.article .boilerplate { color: var(--ink-3); font-size: .95rem; }
.breadcrumbs { margin-bottom: 24px; font-size: .84rem; color: var(--ink-3); }
.breadcrumbs a { color: var(--brass-dim); }

/* ── Calendar embed placeholder ─────────────────────────────────────── */
.calendar-embed {
  margin-top: 48px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  min-height: 520px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 18px;
  padding: 40px;
  text-align: center;
}
.calendar-embed .ring {
  width: 72px; height: 72px; border: 2px dashed var(--brass); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--brass); font-family: var(--serif); font-size: 1.4rem;
}
.calendar-embed h3 { margin: 0; }
.calendar-embed p { color: var(--ink-3); max-width: 40ch; }

/* ── Footer ─────────────────────────────────────── */
.site-footer {
  background: var(--navy); color: rgba(245,240,230,.72);
  padding: 72px 0 36px;
  border-top: 1px solid rgba(201,168,106,.2);
}
.site-footer a { color: var(--cream); }
.site-footer a:hover { color: var(--brass); }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 56px;
}
.footer-grid h4 {
  color: var(--brass); font-family: var(--sans); font-size: .8rem;
  letter-spacing: .22em; text-transform: uppercase; margin-bottom: 18px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; font-size: .94rem; }
.footer-bottom {
  border-top: 1px solid rgba(201,168,106,.18);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: .82rem; color: rgba(245,240,230,.5);
}
.footer-brand .brand { color: var(--brass); margin-bottom: 14px; }
.footer-brand p { font-size: .92rem; color: rgba(245,240,230,.65); max-width: 32ch; }
.disclaimer {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid rgba(201,168,106,.15);
  font-size: .78rem; color: rgba(245,240,230,.5); font-style: italic;
  max-width: 100ch;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── AOS-lite (self-hosted fade/slide on scroll) ─────────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .9s cubic-bezier(.2,.6,.2,1), transform .9s cubic-bezier(.2,.6,.2,1); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal="left"] { transform: translateX(-30px); }
[data-reveal="left"].in { transform: none; }
[data-reveal="right"] { transform: translateX(30px); }
[data-reveal="right"].in { transform: none; }
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ── Misc ─────────────────────────────────────── */
.divider {
  display: block; width: 72px; height: 1px; background: var(--brass); margin: 32px auto;
  opacity: .6;
}
.notice-banner {
  background: var(--navy);
  color: var(--cream);
  padding: 14px 0; text-align: center; font-size: .86rem;
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(201,168,106,.2);
}
.notice-banner strong { color: var(--brass); letter-spacing: .1em; font-weight: 600; }

.two-col {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 72px; align-items: start;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }

.parallax {
  background-attachment: fixed;
  background-size: cover; background-position: center;
}
@media (max-width: 900px) { .parallax { background-attachment: scroll; } }

.bg-image {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: .22; mix-blend-mode: luminosity;
}

.inline-cta {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--brass); font-weight: 500; letter-spacing: .04em;
  border-bottom: 1px solid var(--brass);
  padding-bottom: 2px;
  transition: gap .2s;
}
.inline-cta:hover { gap: 14px; color: var(--brass-2); border-color: var(--brass-2); }

.page-header {
  padding: 140px 0 60px;
  background: var(--navy); color: var(--cream);
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(201,168,106,.14), transparent 60%);
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { color: var(--cream); }
.page-header .eyebrow {
  color: var(--brass); font-size: .8rem; letter-spacing: .28em; text-transform: uppercase;
  display: inline-block; margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 1px solid rgba(201,168,106,.4);
}
.page-header .hero-sub { margin-top: 20px; }

/* Legal pages */
.legal-body { padding: 120px 0 80px; }
.legal-body h2 { margin-top: 40px; }
.legal-body p, .legal-body li { color: var(--ink-2); }
.legal-body ul { padding-left: 22px; }

/* 404 */
.e404 {
  min-height: 100vh; min-height: 100svh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 40px 28px;
  background: var(--navy); color: var(--cream);
}
.e404 .n {
  font-family: var(--serif); font-size: clamp(6rem, 18vw, 12rem);
  color: var(--brass); line-height: 1; margin: 0;
}

/* Utility */
.center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mt-40 { margin-top: 40px; }
.mt-64 { margin-top: 64px; }
.mb-0 { margin-bottom: 0 !important; }
