/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #0A0A0A;
  --dark:    #111111;
  --card:    #161616;
  --border:  #252525;
  --gold:    #C8963E;
  --gold-lt: #D4AB62;
  --gold-dk: #A87830;
  --white:   #F5F2EC;
  --muted:   #888880;
  --text:    #D8D4CC;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;

  --max: 1180px;
  --gap: clamp(1.5rem, 4vw, 3rem);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }

/* ─── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--white);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; }

p { color: var(--text); max-width: 68ch; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ─── Layout ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 5vw, 3rem);
}

section { padding: clamp(4rem, 8vw, 7rem) 0; }

.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem 0 2rem;
}
.divider.center { margin-inline: auto; }

/* ─── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all .22s ease;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-ghost {
  background: transparent;
  color: var(--gold);
  padding-left: 0;
  padding-right: 0;
}
.btn-ghost:hover { color: var(--gold-lt); }
.btn-ghost::after { content: ' →'; }

/* ─── Navigation ───────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
#nav.scrolled { box-shadow: 0 2px 32px rgba(0,0,0,.5); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: inline;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-cta { margin-left: 1rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all .25s;
}

/* mobile nav */
@media (max-width: 820px) {
  .hamburger { display: flex; }
  .nav-cta-desktop { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--dark);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem clamp(1.2rem,5vw,3rem) 2rem;
    gap: 1.2rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: .9rem; color: var(--text); }
}

/* ─── Hero ─────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(200,150,62,.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(200,150,62,.04) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,150,62,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,150,62,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}

.hero-content { position: relative; max-width: 760px; }

.hero-content h1 {
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}

.hero-content h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text);
  margin-bottom: 2.5rem;
  max-width: 58ch;
  line-height: 1.8;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-tagline {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: .85rem;
  color: var(--muted);
  max-width: 62ch;
  line-height: 1.7;
}
.hero-tagline strong { color: var(--white); font-weight: 500; }

/* ─── Stats bar ─────────────────────────────────────────────── */
.stats-bar {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .4rem;
}
.stat-label {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── What I Do ─────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px;
  margin-top: 3rem;
  border: 1.5px solid var(--border);
}

.service-card {
  background: var(--card);
  padding: 2.5rem;
  position: relative;
  transition: background .2s;
}
.service-card:hover { background: #1a1a1a; }

.service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.service-card h3 { margin-bottom: .75rem; }
.service-card p { font-size: .92rem; color: var(--muted); max-width: 100%; }

/* ─── Track Record ──────────────────────────────────────────── */
#track-record { background: var(--dark); }

.picks-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2.5rem;
  font-size: .9rem;
}

.picks-table th {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: left;
  padding: .8rem 1.2rem;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}

.picks-table td {
  padding: 1.1rem 1.2rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.picks-table tr:last-child td { border-bottom: none; }
.picks-table tr:hover td { background: rgba(200,150,62,.04); }

.picks-table .ticker {
  font-family: var(--sans);
  font-weight: 600;
  color: var(--white);
  font-size: .85rem;
}
.picks-table .company { color: var(--muted); font-size: .82rem; }
.picks-table .return {
  font-weight: 700;
  color: #5CB85C;
  font-variant-numeric: tabular-nums;
}

.track-disclaimer {
  margin-top: 1.5rem;
  font-size: .75rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── Reach ─────────────────────────────────────────────────── */
.reach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.reach-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 2px;
  transition: border-color .2s;
}
.reach-card:hover { border-color: var(--gold-dk); }

.reach-card .num {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: .5rem;
}
.reach-card p { font-size: .88rem; color: var(--muted); max-width: 100%; }

/* ─── Coverage (B2B) ────────────────────────────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.package-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  transition: border-color .25s, transform .25s;
}
.package-card:hover { border-color: var(--gold-dk); transform: translateY(-2px); }

.package-card.featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, #1a1510 0%, var(--card) 60%);
}

.package-badge {
  position: absolute;
  top: -12px; left: 2rem;
  background: var(--gold);
  color: var(--black);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 2px;
}

.package-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--white);
}
.package-subtitle {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}

.package-desc { font-size: .88rem; color: var(--muted); max-width: 100%; }

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.package-features li {
  font-size: .88rem;
  color: var(--text);
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}
.package-features li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: .1rem;
}

/* ─── Independence note ─────────────────────────────────────── */
.independence-box {
  background: var(--card);
  border-left: 3px solid var(--gold);
  padding: 2rem 2.5rem;
  margin-top: 3rem;
  border-radius: 0 2px 2px 0;
}
.independence-box h4 { color: var(--gold); margin-bottom: .75rem; }
.independence-box p { font-size: .92rem; max-width: 100%; }

/* ─── Funds page ────────────────────────────────────────────── */
.funds-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 760px) {
  .funds-split { grid-template-columns: 1fr; gap: 2.5rem; }
}

.funds-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}
.funds-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: .95rem;
  color: var(--text);
}
.funds-list li .bullet {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .55rem;
}

/* ─── About ─────────────────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 820px) {
  .about-split { grid-template-columns: 1fr; gap: 3rem; }
}

.about-photo {
  aspect-ratio: 3/4;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-placeholder {
  font-size: .75rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.8;
}

.about-text p + p { margin-top: 1.2rem; }

.methodology-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 560px) { .methodology-grid { grid-template-columns: 1fr; } }

.method-item {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.5rem;
}
.method-item h4 {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.method-item p { font-size: .85rem; color: var(--muted); max-width: 100%; }

/* ─── Contact ───────────────────────────────────────────────── */
#contact-section { background: var(--dark); }

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 820px) {
  .contact-split { grid-template-columns: 1fr; gap: 3rem; }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-group label {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--white);
  padding: .85rem 1rem;
  font-family: var(--sans);
  font-size: .9rem;
  border-radius: 2px;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #444; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { min-height: 130px; resize: vertical; }

.form-group select option { background: var(--card); }

.contact-info { display: flex; flex-direction: column; gap: 2rem; }

.contact-item h4 {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
  font-family: var(--sans);
}
.contact-item a {
  color: var(--text);
  font-size: .95rem;
  transition: color .2s;
}
.contact-item a:hover { color: var(--gold); }

.social-links {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1rem;
}
.social-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--text);
  font-size: .9rem;
  transition: color .2s;
}
.social-link:hover { color: var(--gold); }
.social-link svg { color: var(--gold); flex-shrink: 0; }

/* ─── Page Hero ─────────────────────────────────────────────── */
.page-hero {
  padding: calc(68px + 5rem) 0 5rem;
  background:
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(200,150,62,.06) 0%, transparent 70%);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-bottom: 1.2rem; }
.page-hero p { font-size: 1.1rem; color: var(--muted); max-width: 60ch; }

/* ─── Footer ────────────────────────────────────────────────── */
footer {
  background: #070707;
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--white);
}
.footer-logo span { color: var(--gold); }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
}
.footer-links a {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}
.footer-links a:hover { color: var(--white); }

.footer-legal {
  width: 100%;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  margin-top: 1.5rem;
  font-size: .72rem;
  color: #555;
  line-height: 1.7;
}

/* ─── Misc ──────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3rem; }

.section-header { max-width: 600px; }
.section-header.center { margin-inline: auto; text-align: center; }
.section-header p { margin-top: 1rem; color: var(--muted); }

/* success message */
.form-success {
  display: none;
  background: rgba(92,184,92,.1);
  border: 1px solid rgba(92,184,92,.3);
  color: #5CB85C;
  padding: 1rem 1.5rem;
  border-radius: 2px;
  font-size: .9rem;
}
