/* ─── Variables ─────────────────────────────────────────── */
:root {
  --navy: #0a1628;
  --navy-mid: #162236;
  --gold: #c9a84c;
  --gold-light: #e4c97a;
  --gold-dim: rgba(201,168,76,0.12);
  --cream: #f8f5f0;
  --cream-dark: #ede8df;
  --text: #1a2535;
  --text-muted: #5a6a7a;
  --border: rgba(201,168,76,0.25);
  --white: #ffffff;
}

/* ─── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Nav ───────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,22,40,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-logo strong { color: var(--gold); }
.nav-tag {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-portal-link {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 5px;
  padding: 6px 14px;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  margin-left: auto;
}
.nav-approccio-link {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-approccio-link:hover { color: var(--white); }
.nav-portal-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 160px 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 70%),
    linear-gradient(180deg, rgba(201,168,76,0.04) 0%, transparent 40%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 400;
}
.hero-headline em {
  color: var(--gold);
  font-style: italic;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 460px;
}
.hero-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.metric-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  padding: 20px 22px;
}
.metric-card--accent {
  background: var(--gold-dim);
  border-color: rgba(201,168,76,0.5);
}
.metric-label {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 4px;
}
.metric-card--accent .metric-label { color: var(--gold); }
.metric-note {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.03em;
}
.hero-ticker {
  max-width: 1100px;
  margin: 60px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
  flex-wrap: wrap;
  row-gap: 12px;
}
.hero-ticker span {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}
.ticker-sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.15);
  margin: 0 20px;
  flex-shrink: 0;
}

/* ─── Section Label ─────────────────────────────────────── */
.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ─── Method ─────────────────────────────────────────────── */
.method {
  background: var(--white);
  padding: 100px 40px;
}
.method-inner { max-width: 1100px; margin: 0 auto; }
.method-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 28px;
  font-weight: 400;
}
.method-body {
  max-width: 640px;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 60px;
}
.method-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.pillar-icon {
  color: var(--gold);
  margin-bottom: 20px;
}
.pillar h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 500;
}
.pillar p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Features ──────────────────────────────────────────── */
.features {
  background: var(--cream);
  padding: 100px 40px;
}
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
  font-weight: 400;
}
.features-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 56px;
  line-height: 1.7;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 12px;
  overflow: hidden;
}
.feature-item {
  background: var(--cream);
  padding: 32px 28px;
}
.feature-icon {
  color: var(--gold);
  margin-bottom: 16px;
}
.feature-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 500;
}
.feature-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── Difference ─────────────────────────────────────────── */
.difference {
  background: var(--navy);
  padding: 100px 40px;
}
.difference-inner { max-width: 1100px; margin: 0 auto; }
.difference-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 48px;
  font-weight: 400;
}
.difference-headline em { color: var(--gold); font-style: italic; }
.comparison-table {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
}
.comp-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 16px 24px;
}
.comp-header span {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.comp-col-label--gold { color: var(--gold) !important; }
.comp-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.comp-row:last-child { border-bottom: none; }
.comp-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}
.comp-val {
  font-size: 0.85rem;
  font-weight: 500;
}
.comp-val--old { color: rgba(255,255,255,0.35); }
.comp-val--new { color: var(--gold-light); }

/* ─── Vision ─────────────────────────────────────────────── */
.vision {
  background: var(--cream-dark);
  padding: 100px 40px;
}
.vision-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.vision-quote-block {}
.vision-overline {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.vision-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  color: var(--navy);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 20px;
}
.vision-attribution {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.vision-statement h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 24px;
  font-weight: 400;
}
.vision-statement p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  padding: 60px 40px 30px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  display: block;
  margin-bottom: 12px;
}
.footer-logo strong { color: var(--gold); }
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}
.footer-meta p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  line-height: 1.6;
}

/* ─── AMC Table ──────────────────────────────────────────── */
.amc-section {
  background: var(--white);
  padding: 100px 40px;
  border-top: 1px solid var(--cream-dark);
}
.amc-inner { max-width: 1100px; margin: 0 auto; }
.amc-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
  font-weight: 400;
}
.amc-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.amc-table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid var(--cream-dark);
}
.amc-table {
  width: 100%;
  border-collapse: collapse;
}
.amc-table thead {
  background: var(--navy);
}
.amc-table th {
  padding: 14px 24px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-align: left;
  font-weight: 500;
}
.amc-table tbody tr {
  border-bottom: 1px solid var(--cream-dark);
  transition: background 0.15s;
}
.amc-table tbody tr:last-child { border-bottom: none; }
.amc-table tbody tr:hover { background: var(--cream); }
.amc-table td {
  padding: 18px 24px;
  font-size: 0.92rem;
}
.amc-issuer {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  color: var(--navy);
}
.amc-isin {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  font-family: 'Source Sans 3', monospace;
}
.currency-badge {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.currency-badge--usd {
  background: rgba(59,130,246,0.08);
  border-color: rgba(59,130,246,0.25);
  color: #2563eb;
}
.currency-badge--chf {
  background: rgba(220,38,38,0.06);
  border-color: rgba(220,38,38,0.2);
  color: #b91c1c;
}
.amc-min {
  font-size: 0.88rem;
  color: var(--text);
}
.amc-disclaimer {
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ─── Approccio page ─────────────────────────────────────── */
.appr-hero {
  background: var(--navy);
  padding: 160px 40px 100px;
  position: relative;
  overflow: hidden;
}
.appr-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 80% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.appr-hero-inner { max-width: 1100px; margin: 0 auto; }
.appr-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.appr-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  color: var(--white);
  line-height: 1.15;
  font-weight: 400;
}

.appr-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.appr-section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 48px;
  font-weight: 400;
}

/* Method / steps */
.appr-method { background: var(--white); padding: 100px 40px; }
.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 10px;
  overflow: hidden;
}
.step-card {
  background: var(--cream);
  padding: 32px 24px;
  position: relative;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: rgba(201,168,76,0.25);
  margin-bottom: 16px;
  font-weight: 400;
}
.step-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 500;
  line-height: 1.4;
}
.step-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* HNW editorial */
.appr-hnw { background: var(--cream-dark); padding: 100px 40px; }
.hnw-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
}
.hnw-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  color: rgba(201,168,76,0.2);
  line-height: 0.8;
  padding-top: 8px;
  user-select: none;
}
.hnw-headline { margin-bottom: 28px; }
.hnw-text p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.hnw-closing {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--navy) !important;
  font-style: italic;
  margin-bottom: 0 !important;
}

/* Roots */
.appr-roots { background: var(--white); padding: 100px 40px; }
.roots-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.root-pill {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.pill-icon {
  color: var(--gold);
  flex-shrink: 0;
  padding-top: 2px;
}
.root-pill p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}

/* Independence banner */
.appr-indep { background: var(--navy); padding: 80px 40px; }
.indep-banner {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  max-width: 900px;
}
.indep-icon { color: var(--gold); flex-shrink: 0; padding-top: 4px; }
.indep-headline {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 400;
}
.indep-banner p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

/* CTA */
.appr-cta { background: var(--cream); padding: 100px 40px; }
.appr-cta-inner { text-align: center; }
.appr-cta-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 40px;
  font-weight: 400;
}
.cta-btn {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 14px 32px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all 0.25s;
}
.cta-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.appr-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-secondary {
  display: inline-block;
  color: rgba(201,168,76,0.7);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 6px;
  padding: 14px 28px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all 0.25s;
}
.cta-secondary:hover {
  color: var(--gold);
  border-color: rgba(201,168,76,0.6);
}

/* ─── Timeline Section ──────────────────────────────────── */
.timeline-section {
  position: relative;
  background: var(--navy);
  padding: 100px 40px;
  overflow: hidden;
}
.timeline-bg-img {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
}
.timeline-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.timeline-content {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.timeline-header {
  margin-bottom: 60px;
}
.timeline-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  font-weight: 400;
  line-height: 1.2;
}

/* Horizontal timeline track */
.timeline-track {
  position: relative;
  margin-bottom: 80px;
}
.timeline-line {
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.4) 5%, rgba(201,168,76,0.4) 95%, transparent 100%);
}
.timeline-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
}
.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--navy);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.25);
  margin-bottom: 20px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.timeline-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 500;
  line-height: 1.3;
}
.timeline-body p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* Il Metodo Egonon */
.method-egonon {
  border-top: 1px solid rgba(201,168,76,0.15);
  padding-top: 64px;
}
.method-egonon-quote {
  text-align: center;
  margin-bottom: 56px;
}
.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  color: var(--white);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 16px;
}
.quote-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.method-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.method-pillar {
  padding: 32px 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 8px;
}
.method-pillar .pillar-icon {
  color: var(--gold);
  margin-bottom: 20px;
}
.method-pillar h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 500;
  line-height: 1.4;
}
.method-pillar p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}
@media (max-width: 768px) {
  .hero { padding: 120px 24px 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-metrics { grid-template-columns: 1fr 1fr; }
  .method-pillars { grid-template-columns: 1fr; gap: 28px; }
  .feature-grid { grid-template-columns: 1fr; }
  .vision-inner { grid-template-columns: 1fr; gap: 48px; }
  .comp-header, .comp-row { grid-template-columns: 1fr; gap: 4px; }
  .comp-header span:not(:first-child), .comp-val { display: none; }
  .comp-label::after { content: ' →'; color: var(--gold); }
  .comp-val--old::after { content: attr(class); }
  .footer-inner { flex-direction: column; }
  .appr-hero { padding: 120px 24px 70px; }
  .appr-method { padding: 70px 24px; }
  .appr-hnw { padding: 70px 24px; }
  .appr-roots { padding: 70px 24px; }
  .appr-indep { padding: 60px 24px; }
  .appr-cta { padding: 70px 24px; }
  .method-steps { grid-template-columns: 1fr; }
  .hnw-layout { grid-template-columns: 1fr; }
  .hnw-quote-mark { font-size: 5rem; }
  .roots-pills { grid-template-columns: 1fr; }
  .indep-banner { flex-direction: column; gap: 20px; }
  /* Timeline — vertical on mobile */
  .timeline-section { padding: 70px 24px; }
  .timeline-items { grid-template-columns: 1fr; gap: 0; }
  .timeline-line { display: none; }
  .timeline-item { flex-direction: row; align-items: flex-start; text-align: left; padding: 0 0 40px 0; }
  .timeline-item:last-child { padding-bottom: 0; }
  .timeline-item::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 12px;
    bottom: 0;
    width: 2px;
    background: rgba(201,168,76,0.2);
  }
  .timeline-item:last-child::before { display: none; }
  .timeline-dot { margin-bottom: 0; margin-right: 24px; flex-shrink: 0; }
  .method-egonon-quote { text-align: left; }
  .method-pillars-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-metrics { grid-template-columns: 1fr; }
}

/* ─── Performance & Asset Allocation ──────────────────────── */
.perf-section {
  background: var(--white);
  padding: 100px 40px;
  border-top: 1px solid var(--cream-dark);
}
.perf-inner { max-width: 1100px; margin: 0 auto; }
.perf-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
  font-weight: 400;
}
.perf-headline em { color: var(--gold); font-style: italic; }
.perf-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 56px;
  line-height: 1.7;
}
.perf-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 40px;
}
/* Performance table */
.perf-table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid var(--cream-dark);
}
.perf-table {
  width: 100%;
  border-collapse: collapse;
}
.perf-table thead { background: var(--navy); }
.perf-table th {
  padding: 14px 24px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-align: left;
  font-weight: 500;
}
.perf-table tbody tr {
  border-bottom: 1px solid var(--cream-dark);
}
.perf-table tbody tr:last-child { border-bottom: none; }
.perf-table td {
  padding: 18px 24px;
  font-size: 0.92rem;
  color: var(--text);
}
.perf-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 500;
}
.perf-value--pos { color: #1a6b3c; }
/* Asset allocation bars */
.alloc-wrap {}
.alloc-title {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 500;
}
.alloc-bars { display: flex; flex-direction: column; gap: 18px; }
.alloc-row {
  display: grid;
  grid-template-columns: 150px 1fr 56px;
  align-items: center;
  gap: 16px;
}
.alloc-label {
  font-size: 0.88rem;
  color: var(--text);
}
.alloc-bar-track {
  height: 8px;
  background: var(--cream-dark);
  border-radius: 4px;
  overflow: hidden;
}
.alloc-bar {
  height: 100%;
  border-radius: 4px;
  background: var(--gold);
  transition: width 0.6s ease;
}
.alloc-bar--2 { background: #6b8fbd; }
.alloc-bar--3 { background: #4a7c59; }
.alloc-bar--4 { background: #b87333; }
.alloc-bar--5 { background: rgba(201,168,76,0.4); }
.alloc-pct {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: right;
  font-weight: 500;
}
.perf-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid var(--cream-dark);
  padding-top: 20px;
  max-width: 820px;
}
@media (max-width: 768px) {
  .perf-grid { grid-template-columns: 1fr; gap: 40px; }
  .perf-section { padding: 70px 24px; }
  .alloc-row { grid-template-columns: 120px 1fr 48px; gap: 10px; }
}