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

:root {
  --bg: #0d0d0d;
  --fg: #f2ede5;
  --fg-muted: #9a938a;
  --accent: #c41e3a;
  --accent-dim: rgba(196, 30, 58, 0.12);
  --nav-height: 64px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 100;
  border-bottom: 1px solid rgba(242, 237, 229, 0.06);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  color: var(--fg);
}

.nav-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 48px calc64px;
  position: relative;
  background: var(--bg);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 40%, rgba(196, 30, 58, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(242, 237, 229, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
  max-width: 700px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

.hero-accent {
  position: absolute;
  right: 10%;
  top: 20%;
  width: 1px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  opacity: 0.4;
}

/* Manifesto */
.manifesto {
  padding: 120px 48px;
  border-top: 1px solid rgba(242, 237, 229, 0.06);
  border-bottom: 1px solid rgba(242, 237, 229, 0.06);
}

.manifesto-inner {
  max-width: 680px;
}

.manifesto-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.manifesto-text {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--fg);
}

/* Categories */
.categories {
  padding: 120px 48px;
}

.categories-header {
  margin-bottom: 72px;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--fg);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(242, 237, 229, 0.08);
}

.cat-card {
  padding: 56px 48px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.cat-card:hover::before {
  transform: scaleX(1);
}

.cat-card:hover {
  background: #111;
}

.cat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: rgba(242, 237, 229, 0.08);
  line-height: 1;
  margin-bottom: 24px;
}

.cat-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--fg);
  margin-bottom: 12px;
}

.cat-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Philosophy */
.philosophy {
  padding: 120px 48px;
  background: #0a0a0a;
  border-top: 1px solid rgba(242, 237, 229, 0.06);
}

.philosophy-inner {
  max-width: 900px;
}

.philosophy-quote {
  margin-bottom: 80px;
  padding-left: 32px;
  border-left: 2px solid var(--accent);
}

.philosophy-quote blockquote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--fg);
}

.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.pillar-title {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.pillar-body {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Closing */
.closing {
  padding: 160px 48px;
  text-align: center;
  background: var(--bg);
  border-top: 1px solid rgba(242, 237, 229, 0.06);
}

.closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 32px;
}

.closing-sub p {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 480px;
  margin: 0 auto;
}

/* Footer */
.footer {
  padding: 48px;
  border-top: 1px solid rgba(242, 237, 229, 0.06);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  color: var(--fg);
}

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

.footer-note {
  font-size: 0.7rem;
  color: rgba(242, 237, 229, 0.25);
  margin-top: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar, .manifesto, .categories, .philosophy, .closing, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero { padding: 0 24px 80px; }

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

  .philosophy-pillars {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-headline {
    font-size: clamp(3rem, 14vw, 6rem);
  }

  .cat-card {
    padding: 40px 24px;
  }
}

@media (max-width: 375px) {
  .navbar { padding: 0 16px; }
  .hero-headline { font-size: 2.8rem; }
}