:root {
  --navy: #081827;
  --navy-2: #10283d;
  --ink: #102033;
  --muted: #647181;
  --line: #d8dee6;
  --paper: #f6f2ea;
  --white: #ffffff;
  --gold: #b99a59;
  --gold-soft: #e8d8ad;
  --slate: #33485f;
  --shadow: 0 24px 70px rgba(8, 24, 39, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  background: rgba(8, 24, 39, 0.78);
  backdrop-filter: blur(16px);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.logo { display: flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: .02em; }
.logo-mark {
  width: 42px; height: 42px; border: 1px solid rgba(232,216,173,.8); border-radius: 50%;
  display: grid; place-items: center; color: var(--gold-soft); font-family: 'Playfair Display', serif; font-size: 15px;
}
.logo-text { font-size: 17px; }
.nav { display: flex; align-items: center; gap: 28px; font-size: 14px; color: rgba(255,255,255,.82); }
.nav a:hover { color: var(--gold-soft); }
.nav-cta { border: 1px solid rgba(232,216,173,.7); padding: 9px 14px; border-radius: 999px; }

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: center;
  padding: 130px 6vw 70px;
  background:
    linear-gradient(120deg, rgba(8,24,39,.96), rgba(8,24,39,.72) 48%, rgba(8,24,39,.28)),
    radial-gradient(circle at 80% 20%, rgba(185,154,89,.5), transparent 22%),
    url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80') center/cover;
  color: var(--white);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 430px;
  gap: 48px;
  align-items: end;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}
.eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 800; color: var(--gold); margin: 0 0 14px; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(56px, 8vw, 108px); line-height: .92; margin: 0 0 24px; letter-spacing: -.04em; }
.hero-subtitle { font-size: clamp(18px, 2vw, 24px); max-width: 720px; color: rgba(255,255,255,.84); margin: 0 0 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; padding: 14px 20px; border-radius: 999px; font-weight: 700; font-size: 14px; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.primary { background: var(--gold); color: #061421; }
.secondary { border: 1px solid rgba(255,255,255,.28); color: var(--white); }
.hero-card {
  padding: 34px;
  background: rgba(246, 242, 234, .92);
  color: var(--ink);
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.4);
}
.card-label { color: var(--gold); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 800; margin: 0 0 18px; }
.hero-card h2 { font-family: 'Playfair Display', serif; font-size: 30px; line-height: 1.1; margin: 0 0 16px; }
.hero-card p:last-child { color: var(--muted); margin-bottom: 0; }

.section-pad { padding: 96px 6vw; }
.section-heading { max-width: 760px; }
.section-heading.centered { margin: 0 auto 44px; text-align: center; }
h2 { font-family: 'Playfair Display', serif; font-size: clamp(36px, 5vw, 62px); line-height: 1; margin: 0 0 22px; letter-spacing: -.03em; }
.intro { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: start; }
.intro-text { font-size: 22px; color: var(--slate); margin: 10px 0 0; }

.dark-panel { background: var(--navy); color: var(--white); }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.copy-stack { max-width: 720px; font-size: 22px; color: rgba(255,255,255,.78); }
.copy-stack p { margin-top: 0; }
.vision { background: linear-gradient(180deg, var(--paper), #fff); }
.quote-card { max-width: 1000px; margin: 0 auto; padding: 60px; background: #fff; border-radius: 30px; box-shadow: 0 20px 70px rgba(16,32,51,.09); border: 1px solid var(--line); }
blockquote { margin: 0; font-family: 'Playfair Display', serif; font-size: clamp(32px, 4.5vw, 58px); line-height: 1.08; letter-spacing: -.03em; }
.strategy { background: #fff; }
.strategy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1180px; margin: 0 auto; }
.strategy-card { padding: 34px; border: 1px solid var(--line); border-radius: 24px; background: var(--paper); min-height: 315px; }
.strategy-card.featured { background: var(--navy-2); color: var(--white); border-color: var(--navy-2); transform: translateY(-14px); box-shadow: var(--shadow); }
.number { color: var(--gold); font-weight: 800; letter-spacing: .12em; }
.strategy-card h3, .principle h3 { font-family: 'Playfair Display', serif; font-size: 28px; line-height: 1.08; margin: 22px 0 14px; }
.strategy-card p { color: var(--muted); margin: 0; }
.strategy-card.featured p { color: rgba(255,255,255,.76); }
.principles { background: var(--paper); }
.principles-list { max-width: 1180px; margin: 42px auto 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.principle { background: var(--paper); padding: 28px; min-height: 250px; }
.principle h3 { font-size: 24px; margin-top: 0; }
.principle p { color: var(--muted); }
.market-themes { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; max-width: 1180px; margin: 0 auto; }
.theme-copy p:last-child { font-size: 19px; color: var(--slate); }
.theme-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.theme-tags span { padding: 12px 16px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-weight: 700; color: var(--navy-2); }
.contact { background: var(--navy); color: var(--white); }
.contact-box { max-width: 880px; margin: 0 auto; text-align: center; }
.contact-box p { color: rgba(255,255,255,.78); font-size: 19px; }
.footer { padding: 36px 6vw; background: #061421; color: rgba(255,255,255,.65); display: grid; grid-template-columns: .45fr 1fr; gap: 40px; font-size: 13px; }
.disclaimer { max-width: 900px; margin: 0; }

@media (max-width: 950px) {
  .nav { display: none; }
  .hero-grid, .intro, .split, .market-themes, .footer { grid-template-columns: 1fr; }
  .hero-card { max-width: 520px; }
  .strategy-grid { grid-template-columns: 1fr; }
  .strategy-card.featured { transform: none; }
  .principles-list { grid-template-columns: 1fr; }
  .quote-card { padding: 34px; }
}

@media (max-width: 560px) {
  .site-header { padding: 16px 5vw; }
  .hero { padding-left: 5vw; padding-right: 5vw; }
  .section-pad { padding: 72px 5vw; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-card { padding: 26px; }
}
