:root {
  --bg: #0E0E0E;
  --surface: #161616;
  --amber: #FFB800;
  --amber-dim: #B88200;
  --offwhite: #F5F0E8;
  --muted: #7A7A7A;
  --charcoal: #1E1E1E;
  --dark: #0A0A0A;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  border-bottom: 1px solid #222;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.nav-tag {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 80px 48px;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  font-weight: 600;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--offwhite);
  margin-bottom: 32px;
}
.hero-sub {
  font-size: 17px;
  color: #B0AA9E;
  max-width: 440px;
  line-height: 1.7;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-block {
  border-radius: 4px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-block.amber { background: var(--amber); height: 120px; }
.hero-block.charcoal { background: var(--charcoal); height: 240px; }
.hero-block.dark { background: var(--dark); height: 80px; }
.hero-block-text {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.6;
}

/* MANIFESTO */
.manifesto {
  background: var(--surface);
  padding: 80px 48px;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-style: italic;
  color: var(--offwhite);
  line-height: 1.5;
  margin-bottom: 20px;
}
.manifesto-attribution {
  font-size: 14px;
  color: var(--muted);
}

/* SECTION SHARED */
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 48px;
}

/* SERVICES */
.services {
  padding: 100px 48px;
}
.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--surface);
  padding: 40px 32px;
  border: 1px solid #222;
}
.service-icon {
  color: var(--amber);
  font-size: 18px;
  margin-bottom: 16px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-card p {
  color: #8A8A8A;
  font-size: 14px;
  line-height: 1.6;
}

/* PRICING */
.pricing {
  padding: 100px 48px;
  background: var(--dark);
}
.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid #2A2A2A;
  padding: 40px 32px;
}
.pricing-card.featured {
  border-color: var(--amber);
  background: #1C1A12;
}
.pricing-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  font-weight: 600;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 4px;
}
.pricing-per {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
}
.pricing-list {
  list-style: none;
}
.pricing-list li {
  font-size: 14px;
  color: #B0AA9E;
  padding: 8px 0;
  border-bottom: 1px solid #222;
}
.pricing-list li:last-child { border-bottom: none; }

/* VOICE */
.voice-section {
  padding: 100px 48px;
}
.voice-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.voice-text p {
  color: #B0AA9E;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.voice-stats {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* CLOSING */
.closing {
  background: var(--amber);
  padding: 100px 48px;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  color: #0E0E0E;
  line-height: 1.3;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 18px;
  color: #3A3000;
}

/* FOOTER */
.footer {
  background: var(--dark);
  padding: 48px;
  border-top: 1px solid #222;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 8px;
}
.footer-loc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer-copy {
  font-size: 12px;
  color: #444;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 60px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .voice-inner { grid-template-columns: 1fr; gap: 48px; }
  .manifesto { padding: 60px 24px; }
  .services { padding: 60px 24px; }
  .pricing { padding: 60px 24px; }
  .voice-section { padding: 60px 24px; }
  .closing { padding: 60px 24px; }
}