:root {
  --bg-primary: #0D0D0D;
  --bg-secondary: #141414;
  --bg-card: #1A1A1A;
  --text-primary: #F5F0EB;
  --text-secondary: #A89F94;
  --text-muted: #6B6560;
  --accent-gold: #C8A55C;
  --accent-warm: #D4956A;
  --accent-deep: #8B6F47;
  --accent-media: #C8A55C;
  --accent-publishing: #A67B5B;
  --accent-consults: #7BA6A6;
  --accent-future: #9B8EC4;
  --border-subtle: rgba(200, 165, 92, 0.12);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(200, 165, 92, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(212, 149, 106, 0.04) 0%, transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(200, 165, 92, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 800px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  border: 1px solid var(--border-subtle);
  padding: 0.5rem 1.5rem;
  margin-bottom: 2.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.hero-accent {
  font-style: italic;
  color: var(--accent-gold);
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--accent-gold);
  margin: 0 auto 2rem;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ========== VENTURES ========== */
.ventures {
  padding: 8rem 2rem;
  background: var(--bg-secondary);
}

.ventures-container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.ventures h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 4rem;
}

.ventures-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.venture-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 2.5rem;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.venture-card:hover {
  transform: translateY(-2px);
}

.venture-media:hover { border-color: var(--accent-media); }
.venture-publishing:hover { border-color: var(--accent-publishing); }
.venture-consults:hover { border-color: var(--accent-consults); }
.venture-future:hover { border-color: var(--accent-future); }

.venture-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.venture-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.venture-media h3 { color: var(--accent-media); }
.venture-publishing h3 { color: var(--accent-publishing); }
.venture-consults h3 { color: var(--accent-consults); }
.venture-future h3 { color: var(--accent-future); }

.venture-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.venture-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.venture-tags span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.3rem 0.8rem;
}

/* ========== PHILOSOPHY ========== */
.philosophy {
  padding: 8rem 2rem;
  background: var(--bg-primary);
}

.philosophy-container {
  max-width: 1100px;
  margin: 0 auto;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.philosophy-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.philosophy-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.philosophy-values {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 1rem;
}

.value-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.value-icon {
  color: var(--accent-gold);
  font-size: 0.7rem;
  margin-top: 0.4rem;
  flex-shrink: 0;
}

.value-item h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.value-item p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ========== CLOSING ========== */
.closing {
  padding: 8rem 2rem;
  background: var(--bg-secondary);
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(200, 165, 92, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.closing-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  font-style: italic;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.closing p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ========== FOOTER ========== */
.site-footer {
  padding: 3rem 2rem;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.footer-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.footer-email {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero {
    min-height: 90vh;
    padding: 4rem 1.5rem;
  }

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

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .ventures,
  .philosophy,
  .closing {
    padding: 5rem 1.5rem;
  }

  .footer-container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .venture-card {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }
}