:root {
  --bg-primary: #0f1118;
  --bg-secondary: #161822;
  --bg-card: #1c1f2e;
  --fg-primary: #f0ece4;
  --fg-secondary: #9a9490;
  --fg-muted: #5e5a56;
  --accent: #c9a96e;
  --accent-dim: #8a7444;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--fg-primary);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 2rem;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(201, 169, 110, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(201, 169, 110, 0.04) 0%, transparent 50%),
    var(--bg-primary);
}

.hero-inner { max-width: 700px; }

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 0.4rem 1.2rem;
  margin-bottom: 2.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--fg-primary);
}

.hero-accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}

.hero-rule {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 2rem auto;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--fg-secondary);
  font-weight: 400;
  line-height: 1.7;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

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

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

/* === MANIFESTO === */
.manifesto {
  padding: 8rem 2rem;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

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

.manifesto-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.manifesto h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--fg-primary);
  margin-bottom: 2rem;
}

.manifesto-body {
  color: var(--fg-secondary);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.manifesto-body strong {
  color: var(--accent);
  font-weight: 600;
}

/* === CLOSING === */
.closing {
  padding: 10rem 2rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(201, 169, 110, 0.05) 0%, transparent 60%),
    var(--bg-primary);
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg-primary);
  margin-bottom: 1rem;
}

.closing p {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 500;
}

/* === FOOTER === */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(201, 169, 110, 0.08);
}

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

.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg-primary);
}

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

/* === MOBILE === */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .manifesto {
    padding: 5rem 1.5rem;
  }

  .closing {
    padding: 6rem 1.5rem;
  }

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

@media (max-width: 480px) {
  /* reserved for future mobile overrides */
}
/* === HERO CTA === */
.hero-cta {
  display: inline-block;
  margin-top: 2.5rem;
  background: var(--accent);
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2.5rem;
  transition: background 0.2s;
}
.hero-cta:hover { background: #d4b87a; }

/* === FOOTER LINKS === */
.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-link {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--accent); }
