/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0c0b0a;
  --bg-raised: #141310;
  --surface: #1c1a17;
  --fg: #e8e2d6;
  --fg-muted: #9a9086;
  --fg-dim: #5c5650;
  --accent: #8b2e2e;
  --accent-warm: #c4894a;
  --gold: #b8924e;
  --border: #2a2620;
  --cream: #f0ebe0;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--cream); }

/* === TYPOGRAPHY === */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; }

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(12, 11, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.03em;
}

.nav-pillars {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.nav-dot {
  width: 3px; height: 3px;
  background: var(--fg-dim);
  border-radius: 50%;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8rem 2rem 6rem;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(139, 46, 46, 0.12) 0%, transparent 70%);
}

.hero-cross {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 320px; height: 320px;
  border: 1px solid rgba(184, 146, 78, 0.07);
  border-radius: 50%;
}

.hero-cross::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1px; height: 320px;
  background: linear-gradient(to bottom, transparent, rgba(184, 146, 78, 0.08), transparent);
}

.hero-cross::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 320px; height: 1px;
  background: linear-gradient(to right, transparent, rgba(184, 146, 78, 0.08), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero-title-line {
  display: block;
}

.hero-title-accent {
  color: var(--accent-warm);
  font-style: italic;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 500px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.7;
}

/* === PILLARS === */
.pillars {
  padding: 7rem 2rem;
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pillars-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pillars-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--cream);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pillars-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
}

.pillar {
  background: var(--surface);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.3s ease;
}

.pillar::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--border);
  transition: background 0.3s ease;
}

.pillar:hover { background: #201e1a; }

.pillar-accent::after { background: var(--accent-warm); }

.pillar-icon {
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0.8;
}

.pillar-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

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

/* === CALLING === */
.calling {
  padding: 7rem 2rem;
  background: var(--bg);
}

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

.calling-title {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  color: var(--cream);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.calling-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.calling-divider {
  width: 48px; height: 2px;
  background: var(--gold);
  margin: 3rem auto 0;
}

/* === MANIFESTO === */
.manifesto {
  padding: 6rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.manifesto-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0;
}

.manifesto-col {
  padding: 0 2.5rem;
}

.manifesto-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.manifesto-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.manifesto-list li {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
  padding-left: 1rem;
  position: relative;
}

.manifesto-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.65em;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

/* === CLOSING === */
.closing {
  padding: 10rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.closing-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.closing-cross {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  border: 1px solid rgba(184, 146, 78, 0.05);
  border-radius: 50%;
}

.closing-cross::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1px; height: 500px;
  background: linear-gradient(to bottom, transparent, rgba(184, 146, 78, 0.06), transparent);
}

.closing-cross::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 1px;
  background: linear-gradient(to right, transparent, rgba(184, 146, 78, 0.06), transparent);
}

.closing-content {
  position: relative;
  z-index: 2;
}

.closing-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 0.75rem;
  line-height: 1.6;
}

.closing-attr {
  font-size: 0.8rem;
  color: var(--fg-dim);
  letter-spacing: 0.1em;
  margin-bottom: 4rem;
}

.closing-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--cream);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.closing-sub {
  font-size: 1.1rem;
  color: var(--gold);
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

/* === FOOTER === */
.footer {
  padding: 4rem 2rem 3rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-inner { max-width: 600px; margin: 0 auto; }

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--cream);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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

.footer-note {
  font-size: 0.8rem;
  color: var(--fg-dim);
}

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

  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .manifesto-col {
    padding: 0 1rem;
  }

  .manifesto-grid > * + * {
    border-top: 1px solid var(--border);
    padding-top: 2.5rem;
  }

  .nav-pillars { display: none; }
}

@media (max-width: 480px) {
  .hero { padding: 7rem 1.5rem 5rem; }
  .pillars, .calling, .manifesto, .closing, .footer { padding-left: 1.5rem; padding-right: 1.5rem; }
}