/* ─── Base Reset & Tokens ─── */
:root {
  --bg:         #0F0E11;
  --surface:    #161419;
  --surface2:   #1e1b22;
  --border:     rgba(192,154,91,0.12);
  --border-md:  rgba(192,154,91,0.22);
  --gold:       #C09A5B;
  --gold-light: #e8c88a;
  --gold-dim:   rgba(192,154,91,0.35);
  --text:       #F5F0E8;
  --text-muted: rgba(245,240,232,0.55);
  --text-dim:   rgba(245,240,232,0.28);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: linear-gradient(to bottom, rgba(15,14,17,0.95) 0%, rgba(15,14,17,0) 100%);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--gold);
}
.nav-tagline {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 75% 40%, rgba(192,154,91,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(192,154,91,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-md), transparent);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 520px;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.crystal-orb {
  width: 340px;
  height: 340px;
  animation: orbRotate 30s linear infinite;
}
@keyframes orbRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.hero-stats {
  max-width: 1200px;
  margin: 4rem auto 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.hero-stat {
  flex: 1;
  text-align: center;
}
.hero-stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.hero-stat-label {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border-md);
  flex-shrink: 0;
}

/* ─── Manifesto ─── */
.manifesto {
  padding: 7rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-quote blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: var(--text);
  letter-spacing: 0.01em;
}
.manifesto-quote cite {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}
.manifesto-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-md), transparent);
}
.divider-gem {
  color: var(--gold);
  font-size: 0.6rem;
  opacity: 0.7;
}

/* ─── Pillars ─── */
.pillars {
  padding: 8rem 2rem;
}
.pillars-header {
  max-width: 760px;
  margin: 0 auto 5rem;
  text-align: center;
}
.pillars-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.pillars-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}
.pillars-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}
.pillar-card {
  background: var(--surface);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.pillar-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.pillar-card:hover::after { opacity: 1; }
.pillar-number {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 700;
  color: var(--text-dim);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.pillar-name {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.pillar-tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.pillar-desc {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}
.pillar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.pillar-list li {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
}
.pillar-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  border: 1px solid var(--gold);
  transform: translateY(-50%) rotate(45deg);
}
.pillars-pricing-note {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
}
.pillars-pricing-note strong { color: var(--gold); font-weight: 500; }

/* ─── Outcomes ─── */
.outcomes {
  padding: 8rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.outcomes-header {
  max-width: 760px;
  margin: 0 auto 5rem;
  text-align: center;
}
.outcomes-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.outcomes-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}
.outcomes-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 5rem;
}
.outcome-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.outcome-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border: 1px solid var(--border-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.outcome-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.outcome-desc {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ─── Closing ─── */
.closing-section {
  padding: 10rem 2rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing-inner {
  max-width: 760px;
  margin: 0 auto;
}
.closing-ornament {
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
}
.closing-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 2rem;
}
.closing-sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 3rem;
}
.closing-values {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.closing-value {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}
.closing-sep {
  color: var(--text-dim);
  font-size: 0.6rem;
}

/* ─── Footer ─── */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.footer-logo {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.35rem;
}
.footer-tagline {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.footer-address {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.footer-copy {
  font-size: 0.72rem;
  color: var(--text-dim);
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual { display: none; }
  .hero-stats {
    flex-direction: column;
    gap: 2rem;
  }
  .hero-stat-divider { display: none; }
  .pillars-grid {
    grid-template-columns: 1fr;
    background: none;
    border: none;
    gap: 1.5rem;
  }
  .pillar-card { border: 1px solid var(--border); }
  .outcomes-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 600px) {
  .hero { padding-top: 6rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .closing-values { flex-direction: column; gap: 0.75rem; }
  .closing-sep { display: none; }
}