/* =============================================
   ASCENDWELL — CUSTOM STYLES
   ============================================= */

/* --- TOKENS --- */
:root {
  --amber:      #C8883A;
  --amber-warm: #E5A96A;
  --charcoal:   #1E1B18;
  --stone:      #6B5F54;
  --cream:      #F9F5F0;
  --cream-deep: #EDE5D8;
  --white:      #FFFFFF;
}

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

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, .hero-headline, .closing-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.1;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

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

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.glow-orb-1 {
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(200, 136, 58, 0.18) 0%, transparent 70%);
  top: -10%;
  left: -10%;
}

.glow-orb-2 {
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(229, 169, 106, 0.08) 0%, transparent 70%);
  bottom: 5%;
  right: 10%;
}

.noise-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 7rem 2rem 5rem;
  max-width: 900px;
  margin-left: clamp(1.5rem, 8vw, 12rem);
}

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-warm);
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-headline {
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--cream);
  margin-bottom: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero-headline em {
  font-style: italic;
  color: var(--amber);
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(249, 245, 240, 0.65);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-weight: 300;
}

.hero-sub-2 {
  color: rgba(249, 245, 240, 0.5);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
}

/* =============================================
   MANIFESTO
   ============================================= */
.manifesto {
  background: var(--cream-deep);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 8vw, 12rem);
  display: flex;
  justify-content: center;
}

.manifesto-inner {
  max-width: 720px;
  width: 100%;
  text-align: center;
}

.manifesto-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  margin: 0 auto;
  max-width: 280px;
}

.manifesto-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: var(--charcoal);
  line-height: 1.55;
  font-style: italic;
  padding: 2.5rem 0;
  font-weight: 400;
}

.manifesto-attr {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 1.5rem;
  font-weight: 500;
}

/* =============================================
   PILLARS
   ============================================= */
.pillars {
  background: var(--cream);
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 4rem);
}

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

.pillars-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.pillars-sub {
  color: var(--stone);
  font-size: 1rem;
  font-weight: 300;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.pillar {
  background: var(--white);
  border: 1px solid var(--cream-deep);
  padding: 2.5rem;
  border-radius: 2px;
  position: relative;
  transition: box-shadow 0.3s ease;
}

.pillar:hover {
  box-shadow: 0 4px 40px rgba(30, 27, 24, 0.06);
}

.pillar-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 1.25rem;
}

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

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

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

/* =============================================
   JOURNEY
   ============================================= */
.journey {
  background: var(--charcoal);
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 8vw, 12rem);
}

.journey-inner {
  max-width: 860px;
  margin: 0 auto;
}

.journey-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-warm);
  font-weight: 500;
  margin-bottom: 1.75rem;
}

.journey-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--cream);
  margin-bottom: 3.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.journey-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.journey-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(249, 245, 240, 0.08);
}

.journey-item:last-child {
  border-bottom: none;
}

.journey-dash {
  color: var(--amber);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.journey-item p {
  font-size: 1rem;
  color: rgba(249, 245, 240, 0.75);
  line-height: 1.6;
  font-weight: 300;
}

/* =============================================
   CLOSING
   ============================================= */
.closing {
  background: var(--cream-deep);
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 8vw, 12rem);
  text-align: center;
}

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

.closing-mark {
  color: var(--amber);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  letter-spacing: 0.5em;
}

.closing-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--charcoal);
  margin-bottom: 2rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.closing-body {
  font-size: 1rem;
  color: var(--stone);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1rem;
}

.closing-rule {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  margin: 3rem auto 0;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--charcoal);
  padding: 3rem clamp(1.5rem, 8vw, 12rem);
}

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

.footer-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(249, 245, 240, 0.45);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.footer-divider {
  height: 1px;
  background: rgba(249, 245, 240, 0.08);
  margin-bottom: 1.5rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(249, 245, 240, 0.3);
  letter-spacing: 0.05em;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 600px) {
  .hero-content {
    padding: 6rem 1.5rem 4rem;
    margin-left: 0;
  }

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

  .manifesto {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .journey {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .closing {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 3px; }
