:root {
  --black: #0a0a0a;
  --white: #f5f0e8;
  --gold: #c9a84c;
  --gold-light: #e8d08a;
  --gold-dim: rgba(201,168,76,0.15);
  --dark: #111111;
  --card: #161616;
  --border: #2a2a2a;
  --text-muted: rgba(245,240,232,0.45);
  --text-body: rgba(245,240,232,0.7);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

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

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

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

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  font-weight: 500;
  animation: fadeUp 0.8s 0.2s both;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7.5vw, 6.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  animation: fadeUp 0.9s 0.4s both;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  max-width: 540px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--text-body);
  font-weight: 300;
  line-height: 1.7;
  animation: fadeUp 0.9s 0.6s both;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  animation: fadeUp 0.9s 1s both;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

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

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

.manifesto-label,
.section-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.manifesto h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
  max-width: 780px;
}

.manifesto h2 em {
  font-style: italic;
  color: var(--gold);
}

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

.manifesto-point {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.point-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
  display: block;
  margin-bottom: 1rem;
}

.manifesto-point p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ===== PILLARS ===== */
.pillars {
  padding: 8rem 2rem;
  background: var(--black);
}

.pillars-header {
  max-width: 1000px;
  margin: 0 auto 4rem;
}

.pillars-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pillar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.3);
}

.pillar-featured {
  border-color: var(--gold);
}

.pillar-badge {
  position: absolute;
  top: -10px;
  left: 2rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.8rem;
  border-radius: 2px;
}

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

.pillar-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.pillar-card p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.pillar-detail {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* ===== CONTRAST ===== */
.contrast {
  padding: 8rem 2rem;
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.contrast-columns {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}

.contrast-col h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contrast-them h3 {
  color: var(--text-muted);
}

.contrast-us h3 {
  color: var(--gold);
}

.contrast-col ul {
  list-style: none;
}

.contrast-col li {
  font-size: 0.88rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.contrast-them li {
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: rgba(245,240,232,0.15);
}

.contrast-us li {
  color: var(--text-body);
}

.contrast-us li::before {
  content: '\2726 ';
  color: var(--gold);
  font-size: 0.7rem;
}

.contrast-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3rem;
}

.contrast-vs {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-muted);
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.closing::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.closing-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.closing-sub {
  font-size: 1.05rem;
  color: var(--text-body);
  font-weight: 300;
  line-height: 1.7;
}

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

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

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--gold);
}

.footer-tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.footer-meta p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

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

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contrast-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contrast-divider {
    padding-top: 0;
    justify-content: flex-start;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

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

  .manifesto,
  .pillars,
  .contrast,
  .closing {
    padding: 5rem 1.5rem;
  }
}
/* ===== SITE NAV ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(42,42,42,0.6);
}

.site-nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.site-nav-cta {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.site-nav-cta:hover { color: var(--gold); border-color: var(--gold); }

/* ===== HERO CTA BUTTONS ===== */
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.8s both;
}

.btn-hero-primary {
  display: inline-block;
  padding: 0.85rem 2.25rem;
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s;
}
.btn-hero-primary:hover { background: var(--gold-light); }

.btn-hero-secondary {
  display: inline-block;
  padding: 0.85rem 2.25rem;
  background: transparent;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-hero-secondary:hover { color: var(--white); border-color: rgba(245,240,232,0.3); }
