.page-hero {
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 160px 60px 80px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 79px,
      rgba(184,150,74,0.04) 79px,
      rgba(184,150,74,0.04) 80px
    );
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
}

.page-breadcrumb {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.2s;
}

.page-breadcrumb a {
  color: rgba(184,150,74,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.page-breadcrumb a:hover { color: var(--gold); }
.page-breadcrumb span { margin: 0 10px; opacity: 0.4; }

.page-hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--paper);
  max-width: 820px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.35s;
}

.page-hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.page-hero-sub {
  font-size: 18px;
  color: rgba(244,241,235,0.6);
  max-width: 580px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.5s;
}

/* ─── OWNERSHIP NOTICE ─── */
.ownership-notice {
  background: var(--paper-dim);
  padding: 32px 60px;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 20px;
}

.ownership-notice-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.ownership-notice-text {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  line-height: 1.7;
}

.ownership-notice-text strong {
  color: var(--text-primary);
  font-weight: 400;
}

/* ─── OVERVIEW ─── */
.overview {
  background: var(--paper);
}

.overview-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.overview-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 32px;
}

.overview-headline em {
  font-style: italic;
  color: var(--gold);
}

.overview-body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 20px;
}

.overview-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
}

.stat-box {
  background: var(--paper-dim);
  padding: 28px 24px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}

.stat-box:hover { border-color: var(--gold); }

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.timeline {
  position: relative;
  padding-left: 28px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(184,150,74,0.1));
}

.timeline-item {
  position: relative;
  margin-bottom: 36px;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -33px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--gold);
}

.timeline-dot.filled {
  background: var(--gold);
}

.timeline-year {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 6px;
}

.timeline-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.timeline-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─── SCOPE SUMMARY ─── */
.scope-summary {
  margin-top: 36px;
  padding: 28px 32px;
  background: var(--paper-dim);
  border-left: 3px solid var(--gold);
}

.scope-summary-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.scope-summary-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.scope-summary-item {
  font-size: 17px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}

.scope-summary-item::before {
  content: '—';
  color: var(--gold);
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  flex-shrink: 0;
}

/* ─── CLAIMS FLOW DIAGRAM ─── */
.claims-flow {
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--rule);
}

.claims-flow-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 20px;
}

.claims-flow-diagram {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  max-width: 340px;
}

.claims-flow-box {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--rule);
  background: var(--paper);
  transition: border-color 0.2s;
}

.claims-flow-box:hover { border-color: var(--gold); }

.claims-flow-box-top {
  border-color: rgba(184,150,74,0.4);
}

.claims-flow-box-bottom {
  background: var(--ink);
  border-color: var(--gold);
}

.claims-flow-box-bottom .claims-flow-box-title {
  color: var(--gold);
}

.claims-flow-box-bottom .claims-flow-box-sub {
  color: rgba(244,241,235,0.5);
}

.claims-flow-box-title {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.claims-flow-box-sub {
  font-size: 11px;
  color: var(--text-tertiary);
  line-height: 1.5;
}

.claims-flow-arrow {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 28px;
}

.claims-flow-arrow-line {
  width: 1px;
  height: 20px;
  background: linear-gradient(to bottom, var(--gold), rgba(184,150,74,0.5));
}

.claims-flow-arrow-head {
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid rgba(184,150,74,0.6);
  margin-left: -4px;
}

/* ─── PORTFOLIO SCOPE ─── */
.portfolio-scope {
  background: var(--ink);
  color: var(--paper);
}

.portfolio-scope .section-label { color: var(--gold-light); }

.scope-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 300;
  color: var(--paper);
  max-width: 700px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.scope-sub {
  font-size: 17px;
  color: rgba(244,241,235,0.6);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 72px;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(184,150,74,0.12);
  border: 1px solid rgba(184,150,74,0.12);
  margin-bottom: 64px;
}

.scope-item {
  background: var(--ink);
  padding: 44px 40px;
  transition: background 0.2s;
  border-left: 3px solid transparent;
}

.scope-item:hover {
  background: #131520;
  border-color: var(--gold);
}

.scope-item-index {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 16px;
}

.scope-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--paper);
  margin-bottom: 14px;
  line-height: 1.25;
}

.scope-item-body {
  font-size: 17px;
  color: rgba(244,241,235,0.55);
  line-height: 1.75;
}

.scope-note {
  padding: 36px 40px;
  border: 1px solid rgba(184,150,74,0.2);
  max-width: 760px;
}

.scope-note-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.scope-note-text {
  font-size: 18px;
  color: rgba(244,241,235,0.6);
  line-height: 1.8;
}

/* ─── STRATEGIC POSITION ─── */
.strategic {
  background: var(--paper-dim);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.strategic-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.strategic-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 28px;
}

.strategic-headline em {
  font-style: italic;
  color: var(--gold);
}

.strategic-body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 20px;
}

.strategic-pull {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.5;
  padding: 36px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-top: 40px;
}

.differentiators {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.diff-item {
  background: var(--paper);
  padding: 28px 32px;
  border-left: 3px solid transparent;
  transition: border-color 0.2s;
}

.diff-item:hover { border-color: var(--gold); }

.diff-title {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.diff-body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── POSTURE ─── */
.posture {
  background: var(--paper);
}

.posture-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  margin-top: 60px;
}

.posture-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  line-height: 1.15;
  max-width: 640px;
  margin-bottom: 16px;
}

.posture-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.8;
}

.posture-card {
  background: var(--paper-dim);
  padding: 44px 36px;
  border-top: 3px solid transparent;
  transition: border-color 0.2s;
}

.posture-card:hover { border-color: var(--gold); }

.posture-card-index {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 16px;
}

.posture-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.2;
}

.posture-card-body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--ink);
  padding: 120px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: 'VEREPHIED';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 260px;
  font-weight: 300;
  color: rgba(184,150,74,0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.02em;
}

.cta-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 300;
  color: var(--paper);
  line-height: 1.1;
  margin-bottom: 24px;
  position: relative;
}

.cta-sub {
  font-size: 17px;
  color: rgba(244,241,235,0.6);
  max-width: 520px;
  margin: 0 auto 52px;
  line-height: 1.8;
  position: relative;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.btn-gold {
  display: inline-block;
  padding: 15px 44px;
  background: var(--gold);
  color: var(--ink);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gold);
  transition: all 0.25s;
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-ghost {
  display: inline-block;
  padding: 15px 44px;
  background: transparent;
  color: rgba(244,241,235,0.7);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(244,241,235,0.2);
  transition: all 0.25s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── FOOTER ─── */
footer {
  background: #080a0e;
  padding: 48px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(184,150,74,0.15);
}

.footer-brand {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(244,241,235,0.3);
}

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-links a {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244,241,235,0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  .nav-links { display: none; }
  section { padding: 80px 24px; }
  .page-hero { padding: 120px 24px 60px; }
  .ownership-notice { padding: 24px; flex-direction: column; gap: 12px; }
  .overview-layout { grid-template-columns: 1fr; gap: 48px; }
  .overview-stats { grid-template-columns: 1fr 1fr; }
  .scope-grid { grid-template-columns: 1fr; }
  .strategic-layout { grid-template-columns: 1fr; gap: 48px; }
  .posture-layout { grid-template-columns: 1fr; }
  .cta-band { padding: 80px 24px; }
  footer { flex-direction: column; gap: 24px; text-align: center; }
}
