/* Stela — Dark editorial, gold accents, prestige */
:root {
  --bg: #0a0a0c;
  --bg-2: #111114;
  --surface: #18181d;
  --border: #252530;
  --gold: #c9a227;
  --gold-dim: #8a6d17;
  --cream: #f0ece0;
  --cream-dim: #a09070;
  --text: #e8e4d9;
  --text-dim: #706c60;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 8% 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201,162,39,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-kicker {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 420px;
  line-height: 1.7;
}

/* TOMBSTONE CSS ART */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tombstone-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tombstone-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(201,162,39,0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.tombstone {
  position: relative;
  width: 220px;
  background: linear-gradient(145deg, #1e1e28 0%, #14141a 100%);
  border: 1px solid #2a2a38;
  padding: 24px 20px 20px;
  z-index: 1;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,162,39,0.08);
}

.tombstone::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.tombstone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.tombstone-logo-placeholder {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-letter {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #0a0a0c;
}

.tombstone-deets {
  text-align: right;
}

.deet-company {
  display: block;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.08em;
  font-family: var(--font-body);
}

.deet-amount {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--cream);
  font-weight: 500;
}

.tombstone-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dim) 100%);
  margin-bottom: 14px;
}

.tombstone-body {
  text-align: center;
}

.tombstone-round {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-family: var(--font-body);
  margin-bottom: 6px;
}

.tombstone-company {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 4px;
}

.tombstone-date {
  font-size: 11px;
  color: var(--text-dim);
  font-family: var(--font-body);
}

.tombstone-footer {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  text-align: right;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gold-dim);
  font-family: var(--font-body);
}

.tombstone-base {
  width: 180px;
  height: 8px;
  background: linear-gradient(90deg, #1a1a22, #2a2a38, #1a1a22);
  margin-top: 2px;
  border-radius: 0 0 2px 2px;
}

/* HERO STATS */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1200px;
  margin: 60px auto 0;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.stat {
  flex: 1;
  text-align: center;
  padding: 0 40px;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 4px;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
  font-family: var(--font-body);
  letter-spacing: 0.04em;
}

.stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* MECHANIC */
.mechanic {
  background: var(--bg-2);
  padding: 120px 8%;
  border-top: 1px solid var(--border);
}

.mechanic-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.mechanic-label span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
}

.mechanic-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 400;
  color: var(--cream);
  margin: 20px 0 28px;
  line-height: 1.15;
}

.mechanic-body {
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* PROCESS */
.process {
  padding: 100px 8%;
  border-top: 1px solid var(--border);
}

.process-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  padding: 0 32px;
}

.step-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 12px;
}

.step-content p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
}

.step-connector {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin-top: 28px;
  flex-shrink: 0;
}

/* DESIGN */
.design {
  background: var(--surface);
  padding: 120px 8%;
  border-top: 1px solid var(--border);
}

.design-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.design-visual {
  display: flex;
  justify-content: center;
}

.design-tombstone {
  width: 240px;
  background: linear-gradient(145deg, #1a1a22 0%, #0f0f14 100%);
  border: 1px solid #2e2e3e;
  padding: 26px 22px 22px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,162,39,0.05);
  position: relative;
}

.design-tombstone::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.dt-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.dt-logo {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: #0a0a0c;
}

.dt-meta {
  text-align: right;
}

.dt-meta span {
  display: block;
  font-family: var(--font-body);
}

.dt-meta span:first-child {
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dt-meta span:last-child {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--cream);
  font-weight: 500;
}

.dt-rule {
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dim));
  margin-bottom: 14px;
}

.dt-body {
  text-align: center;
}

.dt-label {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-family: var(--font-body);
  margin-bottom: 8px;
}

.dt-company {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 6px;
  line-height: 1.1;
}

.dt-year {
  font-size: 12px;
  color: var(--text-dim);
  font-family: var(--font-body);
}

.dt-footer {
  margin-top: 20px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  text-align: right;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gold-dim);
  font-family: var(--font-body);
}

.design-text {
  padding-left: 20px;
}

.design-kicker {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  display: block;
  margin-bottom: 20px;
}

.design-text h2 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.1;
}

.design-text > p {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 36px;
}

.design-specs {
  display: grid;
  gap: 16px;
}

.spec {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.spec-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-family: var(--font-body);
}

.spec-val {
  font-size: 14px;
  color: var(--cream);
  font-family: var(--font-body);
}

/* CLOSING */
.closing {
  padding: 120px 8%;
  border-top: 1px solid var(--border);
}

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

.closing-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.ornament-line {
  width: 60px;
  height: 1px;
  background: var(--border);
}

.ornament-diamond {
  color: var(--gold-dim);
  font-size: 10px;
}

.closing-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 28px;
  line-height: 1.15;
}

.closing-inner > p {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.8;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 8%;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-dim);
  font-family: var(--font-body);
}

.footer-note {
  font-size: 13px;
  color: var(--text-dim);
  font-family: var(--font-body);
  max-width: 380px;
  text-align: right;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .stat-sep {
    width: 60px;
    height: 1px;
  }

  .process-inner {
    flex-direction: column;
    gap: 48px;
  }

  .step-connector {
    width: 40px;
    height: 1px;
    margin: 0;
  }

  .design-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-note {
    text-align: center;
  }

  .spec {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 6% 48px;
  }

  .mechanic, .process, .design, .closing {
    padding: 80px 6%;
  }

  .tombstone {
    width: 180px;
    padding: 18px 16px 16px;
  }

  .tombstone-company {
    font-size: 18px;
  }
}