:root {
  --bg: #0a0b0d;
  --bg-2: #111318;
  --bg-3: #171a21;
  --line: rgba(212, 181, 116, 0.18);
  --gold: #d4b574;
  --gold-2: #f0d9a0;
  --gold-dim: #8c7344;
  --text: #efe8d8;
  --muted: #9a927f;
  --white: #f7f3ea;
  --radius: 18px;
  --max: 1120px;
  --nav-h: 76px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Outfit", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }

.wrap { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }

/* NAV */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(10, 11, 13, 0.55);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s;
}
.nav.scrolled {
  background: rgba(10, 11, 13, 0.88);
  border-bottom-color: var(--line);
}
.nav .wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  letter-spacing: .22em;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
}
.brand img {
  width: 42px; height: 42px; object-fit: cover;
  object-position: center 18%;
  border-radius: 50%;
  border: 1px solid var(--gold);
}
.nav-links { display: flex; gap: 28px; font-size: 14px; color: var(--muted); }
.nav-links a { transition: color .2s; }
.nav-links a:hover { color: var(--gold-2); }
.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .04em;
}
.nav-cta:hover { background: var(--gold); color: var(--bg); }
.burger {
  display: none; background: none; border: 0; color: var(--gold); cursor: pointer;
  width: 40px; height: 40px;
}

/* HERO */
.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 24px) 0 48px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 78% 42%, rgba(212,181,116,.12), transparent 42%),
    linear-gradient(180deg, rgba(10,11,13,.55) 0%, rgba(10,11,13,.82) 55%, rgba(10,11,13,.96) 100%),
    url("../images/hero.jpg") center/cover no-repeat;
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.hero-portrait {
  margin: 0;
  justify-self: end;
  width: min(100%, 420px);
}
.hero-portrait-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow:
    0 30px 80px rgba(0,0,0,.45),
    0 0 0 1px rgba(212,181,116,.16);
}
.hero-portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 62%, rgba(10,11,13,.35) 100%);
}
.hero-portrait-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(212,181,116,.28);
  border-radius: 18px;
  pointer-events: none;
  z-index: 2;
}
.hero-portrait img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center 12%;
  display: block;
}
.hero-portrait figcaption {
  margin-top: 14px;
  color: var(--gold);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 11px;
}
.kicker {
  color: var(--gold);
  letter-spacing: .28em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 18px;
}
h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(52px, 9vw, 104px);
  line-height: .9;
  letter-spacing: -0.03em;
  color: var(--white);
}
.hero p.lead {
  max-width: 560px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
}
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  cursor: pointer;
  transition: .2s;
}
.btn-gold { background: var(--gold); color: #1a150c; }
.btn-gold:hover { background: var(--gold-2); }
.btn-ghost { border-color: var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* SECTIONS */
section { padding: 96px 0; }
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-intro { max-width: 640px; color: var(--muted); margin-bottom: 48px; }
.gold { color: var(--gold); }

/* STATS */
.stats {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat { text-align: left; }
.stat b {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.stat span { display: block; margin-top: 8px; color: var(--muted); font-size: 14px; }

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}
.about-copy p + p { margin-top: 16px; color: var(--muted); }
.about-copy p:first-child { font-size: 20px; }
.portrait {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
}
.portrait img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 10%;
}
.portrait-cap {
  position: absolute; left: 18px; right: 18px; bottom: 18px;
  background: rgba(10,11,13,.72);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13px;
  color: var(--gold);
}

/* TIMELINE */
.timeline { position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  left: 118px; top: 0; bottom: 0;
  width: 1px;
  background: var(--line);
}
.t-item {
  display: grid;
  grid-template-columns: 100px 36px 1fr;
  gap: 18px;
  margin-bottom: 36px;
}
.t-year {
  text-align: right;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: .12em;
  padding-top: 6px;
}
.t-dot {
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--gold);
  margin-top: 8px;
  position: relative;
  left: 13px;
}
.t-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.t-card h3 { font-size: 18px; margin-bottom: 6px; }
.t-card p { color: var(--muted); font-size: 15px; }

/* VENTURES */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card img { height: 210px; width: 100%; object-fit: cover; }
.card-body { padding: 22px; }
.card-body small { color: var(--gold); letter-spacing: .14em; text-transform: uppercase; font-size: 11px; }
.card-body h3 { margin: 8px 0 10px; font-size: 22px; font-family: "Cormorant Garamond", serif; font-weight: 500; }
.card-body p { color: var(--muted); font-size: 15px; }

/* INVEST */
.invest {
  position: relative;
  overflow: hidden;
}
.invest-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,11,13,.92) 0%, rgba(10,11,13,.78) 48%, rgba(10,11,13,.45) 100%),
    url("../images/invest.jpg") right center / cover no-repeat;
}
.invest .wrap { position: relative; }
.invest-box { max-width: 560px; }
.invest ul { margin: 24px 0 0; list-style: none; }
.invest li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.invest li strong { color: var(--text); font-weight: 500; }

/* CONTACT */
.contact-face {
  width: 88px;
  height: 88px;
  object-fit: cover;
  object-position: center 14%;
  border-radius: 50%;
  border: 1px solid var(--gold);
  margin-bottom: 22px;
}
.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 40px;
}
form {
  display: grid; gap: 12px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: var(--radius);
}
label { font-size: 12px; color: var(--muted); letter-spacing: .06em; }
input, textarea, select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 10px;
  outline: none;
}
input:focus, textarea:focus { border-color: var(--gold); }
textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 13px; color: var(--muted); }
.form-note a, .section-intro a, footer a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.ok {
  display: none;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--gold);
}

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 13px;
}
.foot {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    background: rgba(10,11,13,.96);
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--line);
    gap: 16px;
  }
  .burger { display: grid; place-items: center; }
  .stats-grid, .about-grid, .cards, .contact-grid, .hero-content { grid-template-columns: 1fr; }
  .timeline::before { left: 18px; }
  .t-item { grid-template-columns: 70px 24px 1fr; }
  .t-dot { left: -1px; }
  .hero { padding-top: calc(var(--nav-h) + 16px); }
  .hero-portrait { justify-self: start; width: 100%; }
  .hero-portrait img, .portrait img { height: 420px; }
}
