/* ══════════════════════════════════════════════════════════════════
   PWIU — Private Wealth Intelligence Unit
   Shared stylesheet for multi-page website

   Typography loaded via Google Fonts in each page's <head>
   No build step required - vanilla CSS
══════════════════════════════════════════════════════════════════ */

:root {
  --ink:       #0D0B09;
  --ink-2:     #181510;
  --ink-3:     #231F18;
  --ink-4:     #2E2920;
  --ink-5:     #3D3830;
  --gold:      #C8912A;
  --gold-lt:   #E4B84A;
  --gold-pale: #F2E0BC;
  --gold-rule: rgba(200,145,42,0.22);
  --gold-rule-strong: rgba(200,145,42,0.45);
  --cream:     #F6F1E8;
  --cream-2:   #EDE6D6;
  --cream-3:   #DDD5C2;
  --muted:     #847B6A;
  --muted-lt:  #A89E8C;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'DM Sans', 'Helvetica Neue', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
  padding-top: 64px; /* account for fixed nav */
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--ink-2); }
::-webkit-scrollbar-thumb { background: var(--gold-rule-strong); }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: var(--ink);
  border-bottom: 0.5px solid var(--gold-rule);
}

.nav-logo {
  display: flex; align-items: center; gap: 14px;
  cursor: pointer; text-decoration: none;
}

/* CoreData Private logo mark: interlocked C·D monogram */
.cdp-mark {
  position: relative; flex-shrink: 0;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
}
.cdp-mark-ring {
  position: absolute; inset: 0;
  border: 0.5px solid var(--gold);
  border-radius: 50%;
}
.cdp-mark-c {
  position: absolute;
  font-family: var(--serif);
  font-size: 22px; font-weight: 500;
  color: var(--gold);
  line-height: 1;
  left: 8px; top: 7px;
  letter-spacing: -2px;
}
.cdp-mark-d {
  position: absolute;
  font-family: var(--serif);
  font-size: 22px; font-weight: 500;
  color: var(--cream);
  line-height: 1;
  left: 15px; top: 7px;
  letter-spacing: -2px;
}
.cdp-mark-rule {
  position: absolute;
  bottom: 7px; left: 9px; right: 9px;
  height: 0.5px; background: var(--gold);
}

.nav-wordmark-block {
  display: flex; flex-direction: column;
  gap: 3px; line-height: 1;
}
.nav-wordmark {
  font-family: var(--sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
}
.nav-wordmark-sub {
  font-family: var(--serif);
  font-size: 16px; font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.3px;
  white-space: nowrap;
  line-height: 1;
}
.nav-wordmark-sub em {
  font-style: italic; font-weight: 400;
  color: var(--muted-lt);
  font-size: 13px;
  margin-right: 3px;
}

@media (max-width: 1100px) {
  .nav-wordmark { font-size: 10px; letter-spacing: 1.5px; }
  .nav-wordmark-sub { font-size: 14px; }
  .nav-wordmark-sub em { font-size: 11px; }
  .cdp-mark { width: 32px; height: 32px; }
  .cdp-mark-c, .cdp-mark-d { font-size: 20px; top: 6px; }
  .cdp-mark-c { left: 7px; }
  .cdp-mark-d { left: 13px; }
}
@media (max-width: 700px) {
  .nav-wordmark { font-size: 9px; letter-spacing: 1px; }
  .nav-wordmark-sub { font-size: 13px; }
  .nav-wordmark-sub em { display: none; }
}

.nav-links { display: flex; align-items: center; gap: 0; }
.nav-link {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); padding: 0 18px; height: 64px;
  display: flex; align-items: center; cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.nav-link:hover, .nav-link.active { color: var(--cream); border-bottom-color: var(--gold); }

.nav-cta {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); border: 0.5px solid var(--gold);
  padding: 9px 20px; cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--gold); color: var(--ink); }

section {
  padding: 80px 48px 80px;
  border-bottom: 0.5px solid var(--gold-rule);
}
section.full-height {
  min-height: calc(100vh - 64px);
  padding-top: 100px;
}
section:last-of-type { border-bottom: none; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 32px; }
.eyebrow-rule { width: 40px; height: 0.5px; background: var(--gold); }
.eyebrow-text { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }

/* ══════════ HERO ══════════ */
#home {
  display: flex; align-items: center;
  min-height: 100vh; padding-top: 64px;
  position: relative; overflow: hidden;
}
.hero-bg-number {
  position: absolute; right: -20px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif); font-size: 320px; font-weight: 600;
  color: rgba(200,145,42,0.04); line-height: 1;
  pointer-events: none; user-select: none; letter-spacing: -10px;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 80px; align-items: center; width: 100%;
}
.hero-headline {
  font-family: var(--serif);
  font-size: 68px; font-weight: 400;
  line-height: 1.08; color: var(--cream);
  margin-bottom: 28px; letter-spacing: -1px;
}
.hero-headline em { color: var(--gold-lt); font-style: italic; }
.hero-sub {
  font-size: 14px; color: var(--muted-lt);
  line-height: 1.75; max-width: 480px;
  margin-bottom: 44px; font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; align-items: center; }
.btn-gold {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
  background: var(--gold); color: var(--ink);
  padding: 14px 28px; cursor: pointer;
  transition: background 0.2s; border: none; font-family: var(--sans);
}
.btn-gold:hover { background: var(--gold-lt); }
.btn-outline {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted-lt); cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  transition: color 0.2s; background: none; border: none;
  font-family: var(--sans);
}
.btn-outline:hover { color: var(--cream); }
.btn-outline-arrow { font-size: 16px; transition: transform 0.2s; }
.btn-outline:hover .btn-outline-arrow { transform: translateX(4px); }
.hero-stats-card {
  background: var(--ink-2);
  border: 0.5px solid var(--gold-rule-strong);
  padding: 32px;
}
.hero-stat { padding: 20px 0; border-bottom: 0.5px solid var(--gold-rule); }
.hero-stat:first-child { padding-top: 0; }
.hero-stat:last-child { border-bottom: none; padding-bottom: 0; }
.hero-stat-num {
  font-family: var(--serif); font-size: 36px; font-weight: 500;
  color: var(--cream); line-height: 1; margin-bottom: 4px;
}
.hero-stat-num span { color: var(--gold); }
.hero-stat-label { font-size: 11px; color: var(--muted); line-height: 1.5; }

/* ══════════ MODULES ══════════ */
#modules { min-height: auto; padding-bottom: 100px; }
.modules-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 48px;
}
.modules-headline {
  font-family: var(--serif); font-size: 42px; font-weight: 400;
  color: var(--cream); line-height: 1.1;
}
.modules-intro {
  font-size: 13px; color: var(--muted);
  line-height: 1.7; max-width: 340px; text-align: right;
}
.modules-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 0.5px solid var(--gold-rule);
}
.module-card {
  padding: 28px 24px;
  border-right: 0.5px solid var(--gold-rule);
  border-bottom: 0.5px solid var(--gold-rule);
  cursor: pointer;
  transition: background 0.2s;
  position: relative; overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
}
.module-card:nth-child(4n) { border-right: none; }
.module-card:nth-child(n+5) { border-bottom: none; }
.module-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s;
}
.module-card:hover { background: var(--ink-2); }
.module-card:hover::after { transform: scaleX(1); }
.module-card.featured { background: var(--ink-3); border-top: 2px solid var(--gold); }
.module-card.featured::after { display: none; }
.mc-num { font-size: 9px; letter-spacing: 2px; color: var(--muted); margin-bottom: 14px; }
.mc-title {
  font-family: var(--serif); font-size: 18px; font-weight: 500;
  color: var(--cream); line-height: 1.2; margin-bottom: 10px;
}
.mc-desc { font-size: 11px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.mc-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.mc-tag {
  font-size: 9px; letter-spacing: 0.5px; color: var(--gold);
  border: 0.5px solid rgba(200,145,42,0.3); padding: 3px 7px;
}
.mc-arrow {
  font-size: 18px; color: var(--gold);
  position: absolute; bottom: 24px; right: 24px;
  opacity: 0; transition: opacity 0.2s, transform 0.2s;
}
.module-card:hover .mc-arrow { opacity: 1; transform: translateX(3px); }

/* ══════════ MODULE DETAIL MODAL ══════════ */
.detail-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(13,11,9,0.92);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
  display: flex; align-items: flex-start; justify-content: center;
  padding: 48px 24px;
  overflow-y: auto;
}
.detail-overlay.active { opacity: 1; pointer-events: all; }

.detail-panel {
  background: var(--ink);
  border: 0.5px solid var(--gold-rule-strong);
  max-width: 900px; width: 100%;
  transform: translateY(20px);
  transition: transform 0.4s;
  position: relative;
}
.detail-overlay.active .detail-panel { transform: none; }

.detail-close {
  position: absolute; top: 20px; right: 20px; z-index: 5;
  width: 36px; height: 36px;
  background: var(--ink-2);
  border: 0.5px solid var(--gold-rule);
  color: var(--cream);
  font-size: 20px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.detail-close:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

.detail-header {
  padding: 56px 56px 40px;
  border-bottom: 0.5px solid var(--gold-rule);
  background: var(--ink-3);
}
.detail-module-num {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.detail-module-num-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }
.detail-title {
  font-family: var(--serif); font-size: 44px; font-weight: 400;
  color: var(--cream); line-height: 1.1; margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.detail-title em { color: var(--gold-lt); font-style: italic; }
.detail-lede {
  font-size: 15px; color: var(--muted-lt); line-height: 1.7;
  max-width: 620px; font-weight: 300;
}

.detail-body { padding: 48px 56px; }

.detail-section { margin-bottom: 48px; }
.detail-section:last-child { margin-bottom: 0; }
.detail-section-label {
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.detail-section-headline {
  font-family: var(--serif); font-size: 24px; font-weight: 400;
  color: var(--cream); margin-bottom: 24px; line-height: 1.2;
}

.theme-item {
  display: flex; gap: 20px;
  padding: 20px 0;
  border-bottom: 0.5px solid var(--gold-rule);
}
.theme-item:first-of-type { border-top: 0.5px solid var(--gold-rule); }
.theme-n {
  font-family: var(--serif); font-size: 24px; font-weight: 400;
  color: rgba(200,145,42,0.4); line-height: 1;
  min-width: 32px; padding-top: 2px;
}
.theme-content { flex: 1; }
.theme-title { font-size: 14px; font-weight: 500; color: var(--cream); margin-bottom: 6px; }
.theme-desc { font-size: 12px; color: var(--muted); line-height: 1.65; }

.stat-row {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--gold-rule);
  margin-bottom: 0;
}
.stat-cell-detail {
  background: var(--ink-2); padding: 24px 24px;
}
.stat-cell-num {
  font-family: var(--serif); font-size: 32px; font-weight: 400;
  color: var(--cream); margin-bottom: 4px;
}
.stat-cell-num span { color: var(--gold); }
.stat-cell-label { font-size: 11px; color: var(--muted); line-height: 1.55; }

.deliverables-list { }
.deliverable-row {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 18px 0;
  border-bottom: 0.5px solid var(--gold-rule);
}
.deliverable-row:first-child { border-top: 0.5px solid var(--gold-rule); }
.del-marker {
  width: 28px; height: 28px;
  background: var(--ink-3);
  border: 0.5px solid var(--gold-rule);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 13px; color: var(--gold);
  flex-shrink: 0;
}
.del-content { flex: 1; }
.del-title { font-size: 13px; font-weight: 500; color: var(--cream); margin-bottom: 4px; }
.del-desc { font-size: 11px; color: var(--muted); line-height: 1.65; }

.pitch-block {
  background: var(--ink-2);
  border-left: 2px solid var(--gold);
  padding: 24px 28px;
  margin-top: 12px;
}
.pitch-block p {
  font-family: var(--serif); font-size: 17px; font-style: italic;
  color: var(--cream-2); line-height: 1.6;
  margin-bottom: 12px;
}
.pitch-block p:last-child { margin-bottom: 0; }
.pitch-block strong { color: var(--gold-lt); font-weight: 500; font-style: normal; }

/* Application section - how wealth providers apply this */
.application-section {
  background: var(--ink-2);
  border-left: 2px solid var(--gold);
  margin-left: -56px; margin-right: -56px;
  padding: 40px 56px !important;
  border-top: 0.5px solid var(--gold-rule);
  border-bottom: 0.5px solid var(--gold-rule);
}
.application-intro {
  font-size: 13px; color: var(--muted-lt); line-height: 1.7;
  margin-bottom: 28px; max-width: 580px;
  font-style: italic; font-family: var(--serif);
  font-size: 15px;
}
.application-list { display: flex; flex-direction: column; gap: 0; }
.application-item {
  display: flex; gap: 22px; align-items: flex-start;
  padding: 22px 0;
  border-top: 0.5px solid var(--gold-rule);
}
.application-item:last-child { border-bottom: 0.5px solid var(--gold-rule); }
.app-marker {
  width: 40px; height: 40px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.app-marker-inner {
  font-family: var(--serif); font-size: 15px; font-weight: 500;
  color: var(--ink);
}
.app-content { flex: 1; padding-top: 4px; }
.app-title {
  font-size: 14px; font-weight: 500; color: var(--cream);
  margin-bottom: 6px; line-height: 1.4;
}
.app-desc {
  font-size: 12px; color: var(--muted-lt); line-height: 1.7;
}

/* ══════════ THE CIRCLE ══════════ */
#circle {
  min-height: auto;
  padding: 120px 48px 120px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 50%, var(--ink) 100%);
}
.circle-bg-mark {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 640px; height: 640px;
  border-radius: 50%;
  border: 0.5px solid var(--gold-rule);
  pointer-events: none;
}
.circle-bg-mark::before {
  content: ''; position: absolute; inset: 60px;
  border-radius: 50%;
  border: 0.5px solid rgba(200,145,42,0.12);
}
.circle-bg-mark::after {
  content: ''; position: absolute; inset: 140px;
  border-radius: 50%;
  border: 0.5px solid rgba(200,145,42,0.07);
}
.circle-inner { position: relative; z-index: 2; }

.circle-intro {
  text-align: center;
  max-width: 720px; margin: 0 auto 72px;
}
.circle-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 36px;
}
.circle-eyebrow .eyebrow-rule { width: 32px; }
.circle-headline {
  font-family: var(--serif);
  font-size: 54px; font-weight: 400;
  color: var(--cream); line-height: 1.1;
  margin-bottom: 28px; letter-spacing: -0.5px;
}
.circle-headline em { color: var(--gold-lt); font-style: italic; }
.circle-lede {
  font-size: 16px; color: var(--muted-lt);
  line-height: 1.8; font-weight: 300;
  max-width: 640px; margin: 0 auto;
}

.circle-pull {
  max-width: 720px; margin: 0 auto 72px;
  padding: 32px 40px;
  border-top: 0.5px solid var(--gold);
  border-bottom: 0.5px solid var(--gold);
  text-align: center;
}
.circle-pull p {
  font-family: var(--serif);
  font-size: 24px; font-weight: 400; font-style: italic;
  color: var(--cream-2); line-height: 1.5;
  letter-spacing: -0.2px;
}

.circle-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--gold-rule);
  margin-bottom: 72px;
  border: 0.5px solid var(--gold-rule);
}
.circle-pillar {
  background: var(--ink);
  padding: 36px 32px;
}
.pillar-marker {
  width: 36px; height: 36px;
  border: 0.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 14px; color: var(--gold);
  margin-bottom: 24px;
}
.pillar-title {
  font-family: var(--serif);
  font-size: 20px; font-weight: 500;
  color: var(--cream); line-height: 1.25;
  margin-bottom: 14px;
}
.pillar-body {
  font-size: 13px; color: var(--muted-lt);
  line-height: 1.75;
}

.circle-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--gold-rule);
  border: 0.5px solid var(--gold-rule-strong);
  margin-bottom: 72px;
}
.circle-stat {
  background: var(--ink-3);
  padding: 32px 24px;
  text-align: center;
}
.circle-stat-num {
  font-family: var(--serif);
  font-size: 44px; font-weight: 400;
  color: var(--gold); line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -1px;
}
.circle-stat-label {
  font-size: 11px; color: var(--muted-lt);
  line-height: 1.55; letter-spacing: 0.3px;
}

.circle-methods-title {
  text-align: center;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 36px;
}
.circle-methods {
  max-width: 860px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.method-row {
  padding: 22px 28px;
  border-bottom: 0.5px solid var(--gold-rule);
  display: flex; gap: 18px; align-items: flex-start;
}
.method-row:nth-child(odd) { border-right: 0.5px solid var(--gold-rule); }
.method-row:nth-last-child(-n+2) { border-bottom: none; }
.method-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0; margin-top: 7px;
}
.method-content { flex: 1; }
.method-title {
  font-size: 13px; font-weight: 500;
  color: var(--cream); margin-bottom: 4px;
}
.method-desc {
  font-size: 11px; color: var(--muted); line-height: 1.6;
}

.detail-footer {
  padding: 32px 56px;
  background: var(--ink-2);
  border-top: 0.5px solid var(--gold-rule);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.detail-footer-text { font-size: 12px; color: var(--muted); line-height: 1.5; flex: 1; min-width: 200px; }
.detail-footer-actions { display: flex; gap: 12px; }

/* ══════════ FEATURED REPORT ══════════ */
#intelligence { min-height: auto; padding-bottom: 100px; }
.report-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 0.5px solid var(--gold-rule-strong);
}
.report-cover {
  background: var(--ink-3); padding: 56px 48px;
  display: flex; flex-direction: column;
  border-right: 0.5px solid var(--gold-rule);
}
.report-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 40px;
}
.report-badge-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }
.report-cover-title {
  font-family: var(--serif); font-size: 34px; font-weight: 400; font-style: italic;
  color: var(--cream); line-height: 1.2; margin-bottom: 24px; flex: 1;
}
.report-cover-body {
  font-size: 13px; color: var(--muted-lt); line-height: 1.75; margin-bottom: 32px;
}
.report-meta-row {
  display: flex; gap: 24px; padding-top: 24px;
  border-top: 0.5px solid var(--gold-rule);
}
.report-meta-label { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.report-meta-value { font-size: 12px; color: var(--cream-3); }
.report-findings { padding: 40px 40px; }
.findings-title { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 28px; }
.finding-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 18px 0; border-bottom: 0.5px solid var(--gold-rule);
}
.finding-item:first-of-type { padding-top: 0; }
.finding-item:last-child { border-bottom: none; }
.finding-n {
  font-family: var(--serif); font-size: 28px; font-weight: 400;
  color: rgba(200,145,42,0.3); line-height: 1;
  min-width: 32px; margin-top: -4px;
}
.finding-headline { font-size: 13px; color: var(--cream); line-height: 1.5; margin-bottom: 4px; }
.finding-sub { font-size: 11px; color: var(--muted); line-height: 1.5; }

/* ══════════ ABOUT ══════════ */
#about { min-height: auto; padding-bottom: 100px; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.about-headline {
  font-family: var(--serif); font-size: 46px; font-weight: 400;
  color: var(--cream); line-height: 1.1; margin-bottom: 28px;
}
.about-headline em { color: var(--gold-lt); font-style: italic; }
.about-body { font-size: 14px; color: var(--muted-lt); line-height: 1.8; margin-bottom: 20px; }
.about-pull {
  margin: 36px 0; padding: 24px 28px;
  border-left: 2px solid var(--gold); background: var(--ink-2);
}
.about-pull p {
  font-family: var(--serif); font-size: 20px; font-style: italic; font-weight: 400;
  color: var(--cream-2); line-height: 1.55;
}
.about-pull cite {
  display: block; margin-top: 12px;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); font-style: normal;
}
.value-prop { padding: 24px 0; border-bottom: 0.5px solid var(--gold-rule); }
.value-prop:first-child { padding-top: 0; }
.value-prop:last-child { border-bottom: none; }
.vp-header { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.vp-num { font-family: var(--serif); font-size: 13px; color: var(--gold); min-width: 20px; }
.vp-title { font-size: 14px; font-weight: 500; color: var(--cream); }
.vp-body { font-size: 12px; color: var(--muted); line-height: 1.65; padding-left: 34px; }

/* ══════════ PRICING ══════════ */
#pricing { min-height: auto; padding-bottom: 100px; }
.pricing-header { text-align: center; margin-bottom: 60px; }
.pricing-headline {
  font-family: var(--serif); font-size: 46px; font-weight: 400;
  color: var(--cream); margin-bottom: 16px;
}
.pricing-sub { font-size: 14px; color: var(--muted); max-width: 480px; margin: 0 auto; line-height: 1.7; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border: 0.5px solid var(--gold-rule);
}
.tier-col { padding: 40px 32px; border-right: 0.5px solid var(--gold-rule); }
.tier-col:last-child { border-right: none; }
.tier-col.featured { background: var(--ink-2); border-top: 2px solid var(--gold); margin-top: -1px; }
.tier-badge {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; height: 16px;
  display: flex; align-items: center;
}
.tier-name-large {
  font-family: var(--serif); font-size: 28px; font-weight: 400;
  color: var(--cream); margin-bottom: 6px;
}
.tier-price-block {
  display: flex; align-items: baseline; gap: 6px;
  padding: 18px 0 20px;
  border-bottom: 0.5px solid var(--gold-rule);
  margin-bottom: 24px;
}
.tier-price-currency { font-size: 13px; color: var(--muted); font-weight: 400; }
.tier-price-amount {
  font-family: var(--serif); font-size: 40px; font-weight: 500;
  color: var(--gold); line-height: 1;
}
.tier-price-cadence { font-size: 11px; color: var(--muted); letter-spacing: 1px; margin-left: 4px; }
.tier-scope {
  font-size: 12px; color: var(--muted); margin-bottom: 28px;
  line-height: 1.6;
}
.tier-feature-list { margin-bottom: 36px; }
.tier-feature {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 8px 0; font-size: 12px; color: var(--muted-lt); line-height: 1.45;
}
.tf-check { color: var(--gold); flex-shrink: 0; font-size: 12px; }
.tier-cta {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  padding: 12px 0; text-align: center; cursor: pointer;
  border: 0.5px solid rgba(200,145,42,0.4);
  color: var(--muted-lt); width: 100%;
  transition: all 0.2s; background: none; font-family: var(--sans);
  display: block; text-decoration: none; box-sizing: border-box;
}
.tier-cta:hover { border-color: var(--gold); color: var(--gold); }
.tier-cta.featured-cta { background: var(--gold); color: var(--ink); border-color: var(--gold); font-weight: 500; }
.tier-cta.featured-cta:hover { background: var(--gold-lt); }

/* ══════════ ASIA ══════════ */
#asia { min-height: auto; padding-bottom: 100px; }
.asia-layout {
  display: grid; grid-template-columns: 480px 1fr;
  gap: 80px; align-items: start;
}
.asia-headline {
  font-family: var(--serif); font-size: 46px; font-weight: 400;
  color: var(--cream); line-height: 1.1; margin-bottom: 24px;
}
.asia-body { font-size: 13px; color: var(--muted-lt); line-height: 1.8; margin-bottom: 16px; }
.asia-markets { margin-top: 36px; }
.asia-market {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0; border-bottom: 0.5px solid var(--gold-rule);
}
.asia-market:first-child { border-top: 0.5px solid var(--gold-rule); }
.am-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.am-name { font-size: 13px; font-weight: 500; color: var(--cream); flex: 1; }
.am-desc { font-size: 11px; color: var(--muted); text-align: right; }
.asia-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--gold-rule); }
.asia-stat-cell { background: var(--ink-2); padding: 28px 24px; }
.asc-num { font-family: var(--serif); font-size: 36px; font-weight: 400; color: var(--cream); margin-bottom: 6px; }
.asc-num span { color: var(--gold); }
.asc-label { font-size: 11px; color: var(--muted); line-height: 1.55; }
.asia-insight {
  margin-top: 1px; background: var(--ink-3); padding: 28px 24px;
  border: 0.5px solid var(--gold-rule-strong);
}
.ai-label { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.ai-text {
  font-family: var(--serif); font-size: 17px; font-style: italic;
  color: var(--cream-2); line-height: 1.55;
}

/* ══════════ CONTACT ══════════ */
#contact { min-height: auto; padding-bottom: 80px; border-bottom: none; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-headline {
  font-family: var(--serif); font-size: 46px; font-weight: 400;
  color: var(--cream); line-height: 1.1; margin-bottom: 20px;
}
.contact-body { font-size: 14px; color: var(--muted); line-height: 1.75; }
.contact-details { margin-top: 40px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 18px 0; border-bottom: 0.5px solid var(--gold-rule);
}
.contact-item:first-child { border-top: 0.5px solid var(--gold-rule); }
.ci-label { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); min-width: 80px; padding-top: 1px; }
.ci-value { font-size: 13px; color: var(--cream-2); line-height: 1.5; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-label { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.form-input, .form-select, .form-textarea {
  background: var(--ink-2);
  border: 0.5px solid rgba(200,145,42,0.25);
  color: var(--cream);
  font-family: var(--sans); font-size: 13px; font-weight: 300;
  padding: 12px 16px;
  transition: border-color 0.2s; outline: none; width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--ink-5); }
.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-submit {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
  background: var(--gold); color: var(--ink);
  padding: 15px 0; cursor: pointer;
  border: none; font-family: var(--sans);
  transition: background 0.2s; width: 100%;
}
.form-submit:hover { background: var(--gold-lt); }

footer {
  padding: 28px 48px;
  border-top: 0.5px solid var(--gold-rule);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--ink);
}
.footer-left { display: flex; align-items: center; gap: 12px; }
.footer-wordmark { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); }
.footer-sep { width: 0.5px; height: 14px; background: var(--gold-rule-strong); }
.footer-copy { font-size: 10px; color: var(--muted); }
.footer-links { display: flex; gap: 20px; }
.footer-link { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); cursor: pointer; transition: color 0.2s; text-decoration: none; }
.footer-link:hover { color: var(--gold); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

body.detail-open { overflow: hidden; }


/* ══════════════════════════════════════════════════════════════════
   MODULE DETAIL PAGE (standalone, not modal)
══════════════════════════════════════════════════════════════════ */
.module-page {
  padding: 80px 48px 100px;
  border-bottom: 0.5px solid var(--gold-rule);
}
.module-page-inner {
  max-width: 900px;
  margin: 0 auto;
}
.module-breadcrumb {
  margin-bottom: 28px;
}
.module-breadcrumb a {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.module-breadcrumb a:hover {
  color: var(--gold);
}
.detail-panel-page {
  transform: none !important;
  opacity: 1 !important;
}

/* Bottom prev/next module navigation */
.module-nav-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 48px;
  border: 0.5px solid var(--gold-rule);
}
.module-nav-prev, .module-nav-next {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  transition: background 0.2s;
  background: var(--ink);
}
.module-nav-prev {
  border-right: 0.5px solid var(--gold-rule);
}
.module-nav-next {
  text-align: right;
  align-items: flex-end;
}
.module-nav-prev:hover, .module-nav-next:hover {
  background: var(--ink-2);
}
.module-nav-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
.module-nav-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--cream);
}
.module-nav-prev:hover .module-nav-title,
.module-nav-next:hover .module-nav-title {
  color: var(--gold-lt);
}

/* Ensure btn-gold and btn-outline work as anchor tags */
a.btn-gold, a.btn-outline {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

/* Medium viewports: tighten nav-link spacing to fit longer wordmark + 8 links */
@media (max-width: 1280px) and (min-width: 861px) {
  nav {
    padding: 0 28px;
  }
  .nav-link {
    padding: 0 12px;
    letter-spacing: 1.5px;
  }
}

/* Responsive tweaks for narrower viewports */
@media (max-width: 860px) {
  nav {
    padding: 0 20px;
  }
  .nav-links {
    display: none;
  }
  section, .module-page {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero-grid, .about-grid, .asia-layout, .contact-layout {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .modules-grid, .pricing-grid, .circle-grid {
    grid-template-columns: 1fr !important;
  }
  .hero-stats-card {
    padding: 24px;
  }
  .modules-header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start !important;
  }
  .modules-intro {
    text-align: left !important;
  }
  .report-layout {
    grid-template-columns: 1fr !important;
  }
  .report-cover {
    border-right: none !important;
    border-bottom: 0.5px solid var(--gold-rule);
  }
  .circle-stats {
    grid-template-columns: 1fr 1fr !important;
  }
  .circle-methods {
    grid-template-columns: 1fr !important;
  }
  .method-row:nth-child(odd) {
    border-right: none !important;
  }
  .hero-headline {
    font-size: 44px !important;
  }
  .about-headline, .asia-headline, .contact-headline, .circle-headline {
    font-size: 34px !important;
  }
  .detail-header {
    padding: 40px 28px 32px !important;
  }
  .detail-body {
    padding: 32px 28px !important;
  }
  .detail-title {
    font-size: 32px !important;
  }
  .detail-footer {
    padding: 24px 28px !important;
  }
  .application-section {
    margin-left: -28px !important;
    margin-right: -28px !important;
    padding: 32px 28px !important;
  }
  .module-nav-bar {
    grid-template-columns: 1fr !important;
  }
  .module-nav-prev {
    border-right: none !important;
    border-bottom: 0.5px solid var(--gold-rule);
  }
}

/* ══════════════════════════════════════════════════════════════════
   BESPOKE SERVICES SECTION (Services and Pricing page)
══════════════════════════════════════════════════════════════════ */
.services-divider {
  display: flex; align-items: center; gap: 20px;
  margin: 80px 0 48px;
}
.services-divider-rule {
  flex: 1; height: 0.5px; background: var(--gold-rule);
}
.services-divider-label {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); white-space: nowrap;
}

.services-intro {
  text-align: center;
  max-width: 660px; margin: 0 auto 48px;
}
.services-headline {
  font-family: var(--serif); font-size: 38px; font-weight: 400;
  color: var(--cream); line-height: 1.15;
  margin-bottom: 20px;
}
.services-sub {
  font-size: 14px; color: var(--muted-lt); line-height: 1.75;
}

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--gold-rule);
  border: 0.5px solid var(--gold-rule);
  margin-bottom: 60px;
}
.service-card {
  background: var(--ink); padding: 28px 24px;
  transition: background 0.2s;
}
.service-card:hover { background: var(--ink-2); }
.service-num {
  font-family: var(--serif); font-size: 22px;
  color: var(--gold); margin-bottom: 16px;
  line-height: 1;
}
.service-title {
  font-size: 14px; font-weight: 500;
  color: var(--cream); margin-bottom: 10px;
  line-height: 1.35;
}
.service-body {
  font-size: 12px; color: var(--muted-lt);
  line-height: 1.7;
}

.services-footer {
  background: var(--ink-2);
  border: 0.5px solid var(--gold-rule-strong);
  padding: 36px 40px;
}
.services-footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.services-footer-text { flex: 1; min-width: 280px; }
.services-footer-headline {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--cream); margin-bottom: 8px; line-height: 1.3;
}
.services-footer-text p {
  font-size: 13px; color: var(--muted-lt); line-height: 1.7;
}
.services-footer-cta { flex-shrink: 0; }

@media (max-width: 860px) {
  .services-grid { grid-template-columns: 1fr !important; }
  .services-headline { font-size: 30px !important; }
  .services-footer { padding: 28px 24px !important; }
  .services-footer-inner { flex-direction: column; align-items: flex-start !important; }
}

/* ══════════════════════════════════════════════════════════════════
   HOMEPAGE TICKER - recent articles
══════════════════════════════════════════════════════════════════ */
.ticker-wrap {
  position: relative;
  margin: 0 0 40px;
  border-top: 0.5px solid var(--gold-rule);
  border-bottom: 0.5px solid var(--gold-rule);
  background: var(--ink-2);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ticker-label {
  flex-shrink: 0;
  padding: 14px 20px;
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
  background: var(--ink-3);
  border-right: 0.5px solid var(--gold-rule);
  display: flex; align-items: center; gap: 10px;
  position: relative; z-index: 2;
  text-decoration: none;
  transition: background 0.2s;
}
.ticker-label:hover { background: var(--ink-4); }
.ticker-dot {
  width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
  animation: ticker-pulse 2s ease-in-out infinite;
}
@keyframes ticker-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.ticker-track {
  overflow: hidden;
  flex: 1;
  position: relative;
}
.ticker-track::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 60px;
  background: linear-gradient(to right, transparent, var(--ink-2));
  pointer-events: none; z-index: 1;
}
.ticker-inner {
  display: flex; gap: 48px;
  animation: ticker-scroll 70s linear infinite;
  white-space: nowrap;
  padding: 14px 0;
  width: max-content;
}
.ticker-wrap:hover .ticker-inner {
  animation-play-state: paused;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  font-size: 13px; color: var(--cream-2);
  text-decoration: none;
  display: flex; align-items: center; gap: 12px;
  padding: 0 4px;
  transition: color 0.2s;
}
.ticker-item:hover { color: var(--gold-lt); }
.ticker-sep {
  width: 3px; height: 3px; background: var(--gold); border-radius: 50%;
  opacity: 0.6;
}
.ticker-arrow { color: var(--gold); font-size: 11px; }

/* ══════════════════════════════════════════════════════════════════
   ARTICLE PAGE LAYOUT
══════════════════════════════════════════════════════════════════ */
.article-page {
  padding: 60px 48px 80px;
  max-width: 820px; margin: 0 auto;
}
.article-breadcrumb {
  margin-bottom: 32px;
}
.article-breadcrumb a {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s;
}
.article-breadcrumb a:hover { color: var(--gold); }

.article-hero-image {
  width: 100%; height: 360px;
  background: var(--ink-3);
  border: 0.5px solid var(--gold-rule);
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.article-hero-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.article-hero-placeholder {
  text-align: center; color: var(--muted);
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
}
.article-hero-placeholder strong {
  display: block; color: var(--gold); font-family: var(--serif);
  font-size: 18px; font-weight: 400; letter-spacing: 0.5px;
  text-transform: none; margin-bottom: 6px;
}

.article-meta {
  display: flex; align-items: center; gap: 16px;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.article-meta-dot {
  width: 3px; height: 3px; background: var(--gold); border-radius: 50%;
}
.article-meta-tag { color: var(--gold); }

.article-title {
  font-family: var(--serif); font-size: 46px; font-weight: 400;
  color: var(--cream); line-height: 1.15;
  margin-bottom: 20px; letter-spacing: -0.5px;
}
.article-standfirst {
  font-family: var(--serif); font-size: 20px; font-style: italic;
  color: var(--cream-2); line-height: 1.55;
  margin-bottom: 40px;
}
.article-byline {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 0;
  border-top: 0.5px solid var(--gold-rule);
  border-bottom: 0.5px solid var(--gold-rule);
  margin-bottom: 40px;
}
.article-byline-avatar {
  width: 44px; height: 44px;
  background: var(--ink-3); border: 0.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 15px; color: var(--gold);
}
.article-byline-name {
  font-size: 13px; font-weight: 500; color: var(--cream);
  margin-bottom: 2px;
}
.article-byline-role {
  font-size: 11px; color: var(--muted);
}

.article-body {
  font-size: 16px; color: var(--cream-2); line-height: 1.85;
}
.article-body p { margin-bottom: 1.4em; }
.article-body p:first-child::first-letter {
  font-family: var(--serif); float: left;
  font-size: 56px; line-height: 0.95;
  padding: 6px 10px 0 0; color: var(--gold);
  font-weight: 500;
}
.article-body h2 {
  font-family: var(--serif); font-size: 26px; font-weight: 500;
  color: var(--cream); line-height: 1.25;
  margin: 2em 0 0.8em; letter-spacing: -0.3px;
}
.article-body h3 {
  font-size: 16px; font-weight: 500;
  color: var(--gold-lt); letter-spacing: 0.5px;
  margin: 1.8em 0 0.6em;
}
.article-body blockquote {
  margin: 2em 0;
  padding: 20px 28px;
  border-left: 2px solid var(--gold);
  background: var(--ink-2);
  font-family: var(--serif); font-size: 20px; font-style: italic;
  color: var(--cream-2); line-height: 1.55;
}
.article-body a {
  color: var(--gold-lt); text-decoration: underline;
  text-decoration-color: var(--gold-rule);
  text-underline-offset: 3px;
}
.article-body ul, .article-body ol { margin: 0 0 1.4em 1.2em; }
.article-body li { margin-bottom: 0.6em; }

.article-placeholder-note {
  margin-top: 48px; padding: 24px 28px;
  background: var(--ink-2);
  border: 0.5px dashed var(--gold-rule-strong);
  border-radius: 2px;
  font-size: 12px; color: var(--muted); line-height: 1.7;
}
.article-placeholder-note strong {
  display: block; color: var(--gold); margin-bottom: 6px;
  letter-spacing: 1px; text-transform: uppercase; font-size: 10px;
}

.article-nav {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; margin-top: 56px;
  border: 0.5px solid var(--gold-rule);
}
.article-nav-prev, .article-nav-next {
  padding: 24px 28px;
  text-decoration: none;
  display: flex; flex-direction: column; gap: 6px;
  transition: background 0.2s;
  background: var(--ink);
}
.article-nav-prev { border-right: 0.5px solid var(--gold-rule); }
.article-nav-next { text-align: right; align-items: flex-end; }
.article-nav-prev:hover, .article-nav-next:hover { background: var(--ink-2); }
.article-nav-label {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted);
}
.article-nav-title {
  font-family: var(--serif); font-size: 16px; font-weight: 500;
  color: var(--cream); line-height: 1.35;
}

.text-gold,
.article-nav-prev:hover .article-nav-title,
.article-nav-next:hover .article-nav-title { color: var(--gold-lt); }

@media (max-width: 860px) {
  .article-page { padding: 40px 24px 60px; }
  .article-title { font-size: 32px !important; }
  .article-standfirst { font-size: 17px !important; }
  .article-body { font-size: 15px !important; }
  .article-nav { grid-template-columns: 1fr !important; }
  .article-nav-prev { border-right: none !important; border-bottom: 0.5px solid var(--gold-rule); }
  .ticker-label {
    padding: 12px 14px !important;
    font-size: 8px !important;
  }
}

/* ══════════════════════════════════════════════════════════════════
   ARTICLES LISTING PAGE
══════════════════════════════════════════════════════════════════ */
#articles-index { padding: 80px 48px 100px; }
.articles-header {
  max-width: 760px; margin: 0 auto 56px; text-align: center;
}
.articles-headline {
  font-family: var(--serif); font-size: 46px; font-weight: 400;
  color: var(--cream); line-height: 1.15;
  margin-bottom: 24px; letter-spacing: -0.5px;
}
.articles-sub {
  font-size: 15px; color: var(--muted-lt); line-height: 1.75;
  max-width: 620px; margin: 0 auto;
}

.articles-list {
  max-width: 860px; margin: 0 auto;
  border-top: 0.5px solid var(--gold-rule);
}
.article-listing {
  display: block;
  padding: 32px 0;
  border-bottom: 0.5px solid var(--gold-rule);
  text-decoration: none;
  transition: padding 0.2s;
}
.article-listing:hover {
  padding-left: 12px;
}
.article-listing-meta {
  display: flex; align-items: center; gap: 14px;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.article-listing-title {
  font-family: var(--serif); font-size: 30px; font-weight: 500;
  color: var(--cream); line-height: 1.2;
  margin-bottom: 10px; letter-spacing: -0.3px;
  transition: color 0.2s;
}
.article-listing:hover .article-listing-title {
  color: var(--gold-lt);
}
.article-listing-standfirst {
  font-size: 14px; color: var(--muted-lt); line-height: 1.7;
  margin-bottom: 14px; max-width: 680px;
}
.article-listing-cta {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}

@media (max-width: 860px) {
  #articles-index { padding: 60px 24px 80px; }
  .articles-headline { font-size: 32px !important; }
  .article-listing-title { font-size: 24px !important; }
}

/* ══════════════════════════════════════════════════════════════════
   PRIVACY POLICY PAGE
══════════════════════════════════════════════════════════════════ */
.privacy-page {
  padding: 72px 48px 100px;
  border-bottom: 0.5px solid var(--gold-rule);
}
.privacy-inner {
  max-width: 760px;
  margin: 0 auto;
}

.privacy-headline {
  font-family: var(--serif);
  font-size: 44px; font-weight: 400;
  color: var(--cream); line-height: 1.15;
  margin-bottom: 14px; letter-spacing: -0.5px;
}
.privacy-updated {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 48px;
}

.privacy-body {
  font-size: 14px; color: var(--cream-2); line-height: 1.8;
}
.privacy-lead {
  font-family: var(--serif);
  font-size: 18px; font-style: italic; font-weight: 400;
  color: var(--cream-2); line-height: 1.7;
  padding: 24px 28px;
  border-left: 2px solid var(--gold);
  background: var(--ink-2);
  margin-bottom: 48px;
}

.privacy-section {
  margin-bottom: 40px;
}
.privacy-section:last-child { margin-bottom: 0; }
.privacy-section h2 {
  font-family: var(--serif);
  font-size: 22px; font-weight: 500;
  color: var(--cream); line-height: 1.3;
  margin-bottom: 16px; letter-spacing: -0.2px;
}
.privacy-section p {
  margin-bottom: 1.1em;
  font-size: 14px; color: var(--cream-3); line-height: 1.8;
}
.privacy-section p:last-child { margin-bottom: 0; }
.privacy-section ul {
  margin: 0 0 1.2em 1.2em;
  padding: 0;
}
.privacy-section li {
  margin-bottom: 0.5em;
  font-size: 14px; color: var(--cream-3); line-height: 1.7;
  padding-left: 4px;
}
.privacy-section li::marker { color: var(--gold); }

.privacy-contact-block {
  background: var(--ink-2);
  border: 0.5px solid var(--gold-rule-strong);
  padding: 24px 28px;
  margin: 20px 0;
}
.privacy-contact-row {
  display: flex; gap: 20px;
  padding: 8px 0;
  border-bottom: 0.5px solid var(--gold-rule);
}
.privacy-contact-row:first-child { padding-top: 0; }
.privacy-contact-row:last-child { padding-bottom: 0; border-bottom: none; }
.privacy-contact-label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); min-width: 80px; padding-top: 2px;
}
.privacy-contact-value {
  font-size: 13px; color: var(--cream-2);
}

.privacy-parent-note {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 0.5px solid var(--gold-rule);
  font-size: 12px !important;
  color: var(--muted) !important;
  font-style: italic;
  line-height: 1.7;
}

@media (max-width: 860px) {
  .privacy-page { padding: 56px 24px 80px; }
  .privacy-headline { font-size: 32px !important; }
  .privacy-lead { font-size: 16px !important; padding: 20px 22px; }
  .privacy-section h2 { font-size: 19px !important; }
  .privacy-contact-block { padding: 20px; }
  .privacy-contact-row { flex-direction: column; gap: 4px; padding: 10px 0; }
}

/* ══════════════════════════════════════════════════════════════════
   BRAND ALIGNMENT ELEMENTS (three pillars + parent tagline)
══════════════════════════════════════════════════════════════════ */

/* Three-pillar line on About page, sitting between headline and body */
.about-pillars {
  font-family: var(--serif);
  font-size: 16px; font-style: italic; font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.2px;
  margin: 20px 0 28px;
  padding-bottom: 20px;
  border-bottom: 0.5px solid var(--gold-rule);
}

/* Single-pillar label on The Circle page, above the main headline */
.circle-pillar-label {
  font-family: var(--serif);
  font-size: 15px; font-style: italic; font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin: 18px 0 12px;
}

/* Footer parent-brand tagline, sits in middle of footer flex layout */
footer {
  flex-wrap: wrap;
  gap: 16px;
}
.footer-tagline {
  font-family: var(--serif);
  font-size: 13px; font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.3px;
  flex: 1;
  text-align: center;
  white-space: nowrap;
}
.footer-tagline em { font-style: italic; }

@media (max-width: 860px) {
  footer { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer-tagline {
    text-align: left;
    order: 3;
    padding-top: 6px;
    border-top: 0.5px solid var(--gold-rule);
    width: 100%;
  }
  .about-pillars { font-size: 14px !important; }
}

/* ══════════════════════════════════════════════════════════════════
   CONTACT EMAIL CARD (replaces the old contact form)
══════════════════════════════════════════════════════════════════ */
.contact-email-card {
  background: var(--ink-2);
  border: 0.5px solid var(--gold-rule-strong);
  padding: 36px 36px;
  position: relative;
}

.cec-label {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
  margin-bottom: 12px;
}

.cec-email {
  display: block;
  font-family: var(--serif);
  font-size: 28px; font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: -0.3px;
  line-height: 1.1;
  padding: 4px 0 14px;
  transition: color 0.2s;
  word-break: break-word;
}
.cec-email:hover {
  color: var(--gold-lt);
  text-decoration: underline;
  text-decoration-color: var(--gold-rule-strong);
  text-underline-offset: 6px;
}

.cec-divider {
  height: 0.5px;
  background: var(--gold-rule);
  margin: 14px 0 22px;
}

.cec-sublabel {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted-lt);
  margin-bottom: 14px;
}

.cec-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.cec-list li {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--cream-2);
  line-height: 1.55;
  padding: 8px 0 8px 20px;
  border-bottom: 0.5px solid var(--gold-rule);
  position: relative;
}
.cec-list li:last-child { border-bottom: none; }
.cec-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 10px; height: 0.5px;
  background: var(--gold);
}
.cec-list li strong {
  color: var(--cream);
  font-weight: 500;
}

.cec-footer-note {
  font-family: var(--serif);
  font-size: 13px; font-style: italic;
  color: var(--muted-lt);
  line-height: 1.55;
  padding-top: 18px;
  border-top: 0.5px solid var(--gold-rule);
}

@media (max-width: 860px) {
  .contact-email-card { padding: 26px 22px; }
  .cec-email { font-size: 22px; }
  .cec-list li { font-size: 14px; }
}
