:root {
  --bg: #080808;
  --bg-soft: #121111;
  --panel: rgba(20, 18, 16, 0.92);
  --panel-strong: rgba(28, 24, 19, 0.96);
  --text: #f5efe4;
  --muted: #b8ab98;
  --line: rgba(213, 179, 112, 0.18);
  --line-strong: rgba(213, 179, 112, 0.36);
  --accent: #d5b370;
  --accent-soft: rgba(213, 179, 112, 0.14);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  --max-width: 1140px;
  --header-offset: 104px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(213, 179, 112, 0.18), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(213, 179, 112, 0.08), transparent 24%),
    linear-gradient(180deg, #090909 0%, #050505 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 20%);
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(8, 8, 8, 0.78);
  backdrop-filter: blur(18px);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
}

.wordmark,
.footer-brand {
  margin: 0;
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav,
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-nav a,
.footer-nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible,
.wordmark:hover,
.wordmark:focus-visible {
  color: var(--text);
}

.hero {
  padding: 132px 0 118px;
}

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

.eyebrow,
.section-label,
.card-kicker {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 10ch;
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 7vw, 6.15rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

h2 {
  max-width: 13ch;
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.hero-copy,
.section-copy,
.card p,
.contact-link {
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 34px;
  font-size: 1.14rem;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
}

.section-copy {
  max-width: 640px;
  margin-bottom: 0;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  align-items: center;
}

.primary-button,
.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.primary-button {
  padding: 0 24px;
  color: #16120d;
  font-weight: 800;
  background: linear-gradient(135deg, #c8a86d 0%, #ecd3a2 100%);
  box-shadow: 0 18px 44px rgba(213, 179, 112, 0.28);
}

.primary-button:hover,
.primary-button:focus-visible,
.contact-link:hover,
.contact-link:focus-visible {
  transform: translateY(-2px);
}

.card-grid {
  display: grid;
  gap: 22px;
}

.ventures-grid,
.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  min-height: 100%;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    var(--panel);
  box-shadow: var(--shadow);
}

.venture-card {
  position: relative;
  overflow: hidden;
}

.venture-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(213, 179, 112, 0.18), transparent 70%);
}

.card:hover,
.card:focus-within,
.contact-panel:hover,
.contact-panel:focus-within {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}

.card,
.contact-panel {
  transition: transform 180ms ease, border-color 180ms ease;
}

.section-contrast {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent);
}

.contact-panel {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(213, 179, 112, 0.08), rgba(255, 255, 255, 0.02)),
    var(--panel-strong);
  box-shadow: var(--shadow);
}

.contact-copy {
  margin-bottom: 24px;
}

.contact-link {
  padding: 0 22px;
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 600;
}

.site-footer {
  padding: 0 0 24px;
}

.footer-inner {
  min-height: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

a:focus-visible {
  outline: 2px solid #f0d59d;
  outline-offset: 4px;
}

@media (max-width: 920px) {
  .section {
    padding: 80px 0;
  }

  .hero {
    padding: 108px 0 92px;
  }

  .ventures-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  h2 {
    max-width: 16ch;
  }
}

@media (max-width: 640px) {
  :root {
    --header-offset: 128px;
  }

  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .header-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }

  .site-nav,
  .footer-nav {
    gap: 14px;
  }

  .hero {
    padding: 88px 0 82px;
  }

  .card,
  .contact-panel {
    padding: 24px;
    border-radius: 24px;
  }

  .primary-button,
  .contact-link {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .card,
  .contact-panel,
  .primary-button,
  .contact-link {
    transition: none;
  }
}
