/* ==========================================
   EONNI — MAIN STYLESHEET
   ========================================== */


/* ── 1. VARIABLES ── */
:root {
  --cream:    #FDF8F3;
  --blush:    #F2E8DF;
  --terra:    #B5614A;
  --terra-dk: #8F4A36;
  --charcoal: #1C1714;
  --warm-mid: #6B5248;
  --warm-lt:  #A0887E;
  --sage:     #A5A68F;
  --white:    #FFFFFF;
  --border:   #EDE3DB;
}


/* ── 2. RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


/* ── 3. BASE ── */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
}


/* ── 4. NAVIGATION ── */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 48px;
  min-height: 100px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10;
  background-color: rgba(253, 248, 243, 0.46);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.nav-cta {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--terra);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--terra);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.nav-cta:hover {
  color: var(--terra-dk);
  border-color: var(--terra-dk);
}


/* ── 5. HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 180px 24px 96px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, #EDD9C8 0%, transparent 70%),
    var(--cream);
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 32px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  max-width: 820px;
  margin-bottom: 36px;
}

.hero h1 em {
  font-style: italic;
  color: var(--terra);
  display: block;
  font-size: clamp(2.6rem, 6.5vw, 5rem);
}

.hero-lead {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 16px;
  max-width: 540px;
}

.hero-sub {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--warm-mid);
  max-width: 520px;
  margin-bottom: 20px;
}

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

.hero-tagline {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--warm-mid);
  margin-bottom: 48px;
  font-style: italic;
}


/* ── 6. FORM ── */
.preorder-form {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 500px;
  flex-wrap: wrap;
  justify-content: center;
}

.preorder-form input[type="email"] {
  flex: 1;
  min-width: 240px;
  padding: 15px 20px;
  border: 1.5px solid #DDD0C8;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.preorder-form input[type="email"]::placeholder {
  color: var(--warm-lt);
}

.preorder-form input[type="email"]:focus {
  border-color: var(--terra);
}

.btn-primary {
  padding: 15px 28px;
  background: var(--terra);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}

.btn-primary:hover  { background: var(--terra-dk); }
.btn-primary:active { transform: scale(0.98); }

.form-note {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--warm-lt);
  letter-spacing: 0.01em;
}

.success-msg {
  display: none;
  margin-top: 20px;
  font-size: 1rem;
  color: var(--terra);
  font-family: 'Playfair Display', serif;
  font-style: italic;
}


/* ── 7. STAT BAND ── */
.stat-band {
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
  padding: 64px 24px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 9vw, 6rem);
  font-weight: 700;
  color: var(--terra);
  line-height: 1;
  margin-bottom: 20px;
}

.stat-copy {
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 300;
  line-height: 1.75;
  color: #C4B4AB;
}

.stat-copy strong {
  display: block;
  color: var(--cream);
  font-weight: 500;
  margin-top: 6px;
}


/* ── 8. PILLARS ── */
.pillars {
  padding: 96px 24px;
  max-width: 1040px;
  margin: 0 auto;
}

.pillars-header {
  text-align: center;
  margin-bottom: 64px;
}

.pillars-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--charcoal);
}

.pillars-header h2 em {
  font-style: italic;
  color: var(--terra);
  display: block;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.pillar {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid var(--border);
}

/* Pillar icons */
.pillar-img {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.pillar h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.pillar-sub {
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 300;
  color: var(--sage);
  margin-bottom: 16px;
}

.pillar p {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--warm-mid);
}


/* ── 9. PERSONA QUOTE ── */
.persona {
  background: var(--blush);
  padding: 96px 24px;
  text-align: center;
}

.persona blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3.2vw, 2rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
  color: var(--charcoal);
  max-width: 720px;
  margin: 0 auto 28px;
}

.persona cite {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  font-style: normal;
}


/* ── 10. BOTTOM CTA ── */
.bottom-cta {
  padding: 100px 24px;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 60% at 50% 100%, #EDD9C8 0%, transparent 70%),
    var(--cream);
}

.bottom-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--charcoal);
  max-width: 680px;
  margin: 0 auto 20px;
}

.bottom-cta h2 em {
  font-style: italic;
  color: var(--terra);
  display: block;
}

.bottom-cta .section-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--warm-mid);
  margin-bottom: 48px;
}

.bottom-cta .preorder-form {
  margin: 0 auto;
}


/* ── 11. FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  min-height: 100px;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  background-color: rgba(253, 248, 243, 0.46);
}

footer .wordmark {
  font-size: 1.1rem;
}

footer p {
  font-size: 0.75rem;
  color: var(--warm-lt);
}


/* ── 12. RESPONSIVE ── */
@media (max-width: 600px) {
  nav {
    padding: 24px;
  }

  .preorder-form {
    flex-direction: column;
  }

  .preorder-form input[type="email"],
  .btn-primary {
    width: 100%;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }
}
