:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --crimson: #c0392b;
  --crimson-glow: rgba(192, 57, 43, 0.15);
  --gold: #c9a84c;
  --gold-dim: rgba(201, 168, 76, 0.6);
  --text-primary: #f0ece4;
  --text-secondary: #8a8580;
  --text-muted: #5a5550;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -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.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 2rem;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  border: 1.5px solid var(--gold-dim);
  padding: 0.2rem 0.5rem;
  line-height: 1;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8rem 2rem 6rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(192, 57, 43, 0.08), transparent),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(201, 168, 76, 0.04), transparent),
    var(--bg-primary);
  overflow: hidden;
}

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

.hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--crimson);
}

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

.hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  z-index: 1;
}

/* === MANIFESTO === */
.manifesto {
  padding: 6rem 2rem;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(201, 168, 76, 0.06);
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
}

.manifesto-label {
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 2rem;
}

.manifesto-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  line-height: 1.6;
  color: var(--text-primary);
}

.manifesto-divider {
  width: 60px;
  height: 1px;
  background: var(--gold-dim);
  margin: 2.5rem 0;
}

.manifesto-answer {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold);
  line-height: 1.6;
}

/* === SERVICES === */
.services {
  padding: 7rem 2rem;
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 4rem;
}

.services-eyebrow {
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.services-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--text-primary);
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.08);
  padding: 2.5rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: 0 0 40px var(--crimson-glow);
}

.service-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--crimson);
  opacity: 0.6;
  margin-bottom: 1rem;
  line-height: 1;
}

.service-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* === NUMBERS === */
.numbers {
  padding: 5rem 2rem;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(201, 168, 76, 0.06);
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
}

.numbers-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.number-item {
  text-align: center;
  flex: 1;
}

.number-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.number-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.number-divider {
  width: 1px;
  height: 60px;
  background: rgba(201, 168, 76, 0.15);
}

/* === CLOSING === */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% 60%, rgba(192, 57, 43, 0.06), transparent),
    var(--bg-primary);
}

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

.closing-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.closing-text {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* === FOOTER === */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.06);
}

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

.footer .logo-mark {
  font-size: 0.9rem;
  padding: 0.15rem 0.4rem;
}

.footer .logo-text {
  font-size: 0.85rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

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

.footer-line {
  width: 40px;
  height: 1px;
  background: rgba(201, 168, 76, 0.15);
  margin: 1.5rem auto;
}

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

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .numbers-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .number-divider {
    width: 40px;
    height: 1px;
  }

  .hero {
    padding: 7rem 1.5rem 5rem;
  }

  .manifesto { padding: 4rem 1.5rem; }
  .services { padding: 5rem 1.5rem; }
  .numbers { padding: 3.5rem 1.5rem; }
  .closing { padding: 5rem 1.5rem; }
}

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

  .service-card {
    padding: 1.75rem;
  }

  .nav {
    padding: 1rem 1.25rem;
  }
}