*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0c0c0e;
  --bg-alt: #111114;
  --surface: #16161a;
  --border: #2a2a30;
  --text: #d8d4cc;
  --text-muted: #6b6b72;
  --accent: #c8a96e;
  --accent-dim: #8a6e3e;
  --white: #f0ece4;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
}

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  background: rgba(12, 12, 14, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.15em;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

nav ul a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav ul a:hover,
nav ul a.active {
  color: var(--accent);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 3rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 800px;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 2rem;
}

.hero h1 span {
  color: var(--accent);
}

.tagline {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.8;
}

.hero-line {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

/* ── VENTURES ── */
.ventures {
  display: flex;
  align-items: stretch;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.venture-card {
  flex: 1;
  padding: 5rem 3rem;
  transition: background 0.3s;
}

.venture-card:hover {
  background: var(--surface);
}

.venture-divider {
  width: 1px;
  background: var(--border);
  flex-shrink: 0;
}

.venture-icon {
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.venture-card h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}

.venture-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 380px;
  line-height: 1.9;
}

/* ── PAGE HERO ── */
.page-hero {
  padding: 10rem 3rem 4rem;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

/* ── CONTENT BLOCKS ── */
.content-block {
  padding: 5rem 3rem;
  border-bottom: 1px solid var(--border);
}

.content-block.alt {
  background: var(--bg-alt);
}

.content-text {
  max-width: 660px;
}

.content-text h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.content-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 1rem;
}

.content-text p:last-child {
  margin-bottom: 0;
}

/* ── SUPPORT LIST ── */
.support-list {
  list-style: none;
  margin: 1rem 0 1.5rem;
  padding-left: 1rem;
}

.support-list li {
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 0.35rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.support-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent-dim);
}

/* ── CONTACT BUTTON ── */
.contact-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.75rem;
  border: 1px solid var(--accent-dim);
  color: var(--accent);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  transition: all 0.2s;
}

.contact-btn:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

/* ── LEGAL PAGE ── */
.legal h2 {
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.last-updated {
  font-size: 0.78rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dim) !important;
  margin-bottom: 2rem !important;
}

/* ── FOOTER ── */
footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 3rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

footer p {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

footer ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

footer ul a {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

footer ul a:hover {
  color: var(--accent);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav {
    padding: 1.25rem 1.5rem;
  }

  nav ul {
    gap: 1.5rem;
  }

  .hero {
    padding: 7rem 1.5rem 4rem;
  }

  .ventures {
    flex-direction: column;
  }

  .venture-divider {
    width: auto;
    height: 1px;
  }

  .venture-card {
    padding: 3rem 1.5rem;
  }

  .page-hero {
    padding: 8rem 1.5rem 3rem;
  }

  .content-block {
    padding: 3rem 1.5rem;
  }

  footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 2rem 1.5rem;
  }
}
