/* ========================
   STREETDOMINION — THEME
   Luxury Noir × Street Smart
   ======================== */

:root {
  --obsidian: #0A0A0A;
  --coal: #111111;
  --charcoal: #1C1C1C;
  --graphite: #2A2A2A;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --cream: #F5F0E8;
  --cream-dim: rgba(245, 240, 232, 0.6);
  --white: #FAFAF7;
  --muted: #6E6E6E;
}

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

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

body {
  background: var(--obsidian);
  color: var(--cream);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ====== NAVBAR ====== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--graphite);
  position: sticky;
  top: 0;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0;
  line-height: 1;
}

.brand-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--cream);
}

.navbar-tagline {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ====== HERO ====== */
.hero {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 0;
  min-height: calc(100vh - 65px);
  border-bottom: 1px solid var(--graphite);
}

.hero-left {
  padding: 80px 64px 80px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border-right: 1px solid var(--graphite);
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 500;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 600;
  line-height: 1.0;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

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

.hero-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--cream-dim);
  max-width: 520px;
  line-height: 1.7;
}

.hero-vertical-text {
  position: absolute;
  left: -4px;
  bottom: 40px;
  writing-mode: vertical-rl;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--graphite);
  text-transform: uppercase;
  font-weight: 500;
}

.hero-right {
  padding: 80px 40px;
  display: flex;
  align-items: center;
  background: var(--coal);
}

.hero-stats-panel {
  width: 100%;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}

.stat-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--cream);
  padding: 8px 0;
  border-bottom: 1px solid var(--graphite);
  letter-spacing: 0.01em;
}

.stat-divider {
  height: 1px;
  background: var(--gold-dim);
  margin: 20px 0;
}

.stat-bottom {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.6;
}

/* ====== PROOF ====== */
.proof {
  padding: 100px 48px;
  border-bottom: 1px solid var(--graphite);
}

.proof-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
}

.proof-label {
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}

.proof-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--cream);
}

.proof-headline .gold { color: var(--gold); }

.proof-cards {
  display: flex;
  align-items: stretch;
  gap: 24px;
}

.proof-card {
  flex: 1;
  background: var(--charcoal);
  border: 1px solid var(--graphite);
  padding: 32px 28px;
}

.proof-card-gold {
  border-color: var(--gold-dim);
  background: rgba(201, 168, 76, 0.05);
}

.proof-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.proof-card-icon {
  font-size: 18px;
  color: var(--muted);
}

.proof-card-gold .proof-card-icon {
  color: var(--gold);
}

.proof-card-type {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.proof-card-gold .proof-card-type {
  color: var(--gold);
}

.proof-card-text {
  font-size: 15px;
  color: var(--cream-dim);
  line-height: 1.6;
}

.proof-card-arrow {
  display: flex;
  align-items: center;
  padding-top: 24px;
}

/* ====== SERVICES ====== */
.services {
  padding: 100px 48px;
  border-bottom: 1px solid var(--graphite);
}

.services-inner {
  max-width: 1200px;
}

.section-label {
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}

.services-header {
  margin-bottom: 64px;
}

.services-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 600;
  line-height: 1.05;
  color: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border: 1px solid var(--graphite);
}

.service-card {
  padding: 48px 40px;
  background: var(--coal);
  border: 1px solid var(--graphite);
  transition: background 0.2s;
}

.service-card:hover {
  background: var(--charcoal);
}

.service-number {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-desc {
  font-size: 14px;
  color: var(--cream-dim);
  line-height: 1.7;
  font-weight: 300;
}

/* ====== VIRAL ====== */
.viral {
  padding: 100px 48px;
  border-bottom: 1px solid var(--graphite);
  background: var(--coal);
}

.viral-inner {
  max-width: 1200px;
}

.viral-top {
  margin-bottom: 64px;
}

.viral-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--cream);
  margin-top: 16px;
}

.viral-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
  border: 1px solid var(--graphite);
}

.viral-stat {
  flex: 1;
  padding: 40px 36px;
  border-right: 1px solid var(--graphite);
}

.viral-stat:last-child {
  border-right: none;
}

.viral-stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}

.viral-stat-label {
  font-size: 13px;
  color: var(--cream-dim);
  line-height: 1.5;
  font-weight: 300;
}

.viral-stat-divider {
  width: 1px;
  height: 80px;
  background: var(--graphite);
}

.viral-body {
  font-size: 17px;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.8;
  max-width: 760px;
}

/* ====== PROCESS ====== */
.process {
  padding: 100px 48px;
  border-bottom: 1px solid var(--graphite);
}

.process-inner {
  max-width: 1200px;
}

.process-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 600;
  color: var(--cream);
  margin-top: 16px;
  margin-bottom: 72px;
  line-height: 1.05;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid var(--graphite);
  align-items: start;
}

.process-step:last-child {
  border-bottom: 1px solid var(--graphite);
}

.process-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--graphite);
  line-height: 1;
  padding-top: 4px;
}

.process-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}

.process-step-desc {
  font-size: 15px;
  color: var(--cream-dim);
  line-height: 1.7;
  font-weight: 300;
  max-width: 560px;
}

/* ====== CLOSING ====== */
.closing {
  padding: 120px 48px 100px;
  border-bottom: 1px solid var(--graphite);
}

.closing-inner {
  max-width: 1200px;
}

.closing-eyebrow {
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 500;
}

.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 36px;
}

.closing-body {
  font-size: 18px;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 64px;
}

.closing-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-dim), transparent);
}

/* ====== FOOTER ====== */
.footer {
  padding: 48px;
  background: var(--coal);
}

.footer-inner {
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
}

.footer-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--cream);
}

.footer-tagline {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--graphite);
}

.footer-legal {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.1em;
  font-weight: 500;
}

.footer-meta {
  font-size: 12px;
  color: var(--muted);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
  .navbar { padding: 16px 24px; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left { padding: 60px 24px; border-right: none; border-bottom: 1px solid var(--graphite); }
  .hero-right { padding: 40px 24px; }
  .hero-vertical-text { display: none; }

  .proof-inner { grid-template-columns: 1fr; gap: 40px; }
  .proof { padding: 72px 24px; }
  .proof-cards { flex-direction: column; }

  .services { padding: 72px 24px; }
  .services-grid { grid-template-columns: 1fr; }

  .viral { padding: 72px 24px; }
  .viral-stats { flex-direction: column; }
  .viral-stat { border-right: none; border-bottom: 1px solid var(--graphite); }
  .viral-stat:last-child { border-bottom: none; }

  .process { padding: 72px 24px; }
  .process-step { grid-template-columns: 48px 1fr; gap: 24px; }

  .closing { padding: 80px 24px 60px; }
  .footer { padding: 40px 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .navbar-tagline { display: none; }
  .hero-headline { font-size: 44px; }
  .services-title, .process-title, .proof-headline { font-size: 36px; }
  .viral-headline { font-size: 30px; }
  .closing-headline { font-size: 36px; }
  .viral-stat-value { font-size: 44px; }
  .service-name { font-size: 22px; }
}