/* ============================================================================
   ENLIGHTENED EROS — enlightenederos.com
   Palette and typography taken directly from "Enlightened Eros Style Guide.pdf".

   Deliberately inverted from the sister brand's light aged-linen treatment: this
   one is Navy Pearl dark with Josefin Sans / EB Garamond and an orchid-bloom
   aurora — per the guide's note on Navy Pearl: "Dim the lights & make it sexy."

   COMPLIANCE: Enlightened Eros LLC is a standalone coaching business. No honorific,
   no credential, no clinical claims, and no outbound link to the sister brand
   anywhere in this file or the markup. Keep it that way.
   ========================================================================== */

:root {
  /* Brand palette — exact values from the style guide */
  --white-sand:   #E2E2E2;
  --coriander:    #C5D0B2;
  --evening-sea:  #024645;
  --siren:        #7F043B;
  --navy-pearl:   #07182A;

  /* Dazzling Gold family */
  --gold:         #E2BE6F;
  --gold-pale:    #FEF2B5;
  --gold-mute:    #D4D0B1;
  --gold-deep:    #AF8643;

  /* Derived tones */
  --navy-lift:    #0C2137;
  --navy-deep:    #040E1A;
  --ink-on-light: #262626;          /* 85% black, per the guide's body-text rule */

  --font-head: 'Josefin Sans', 'Futura', sans-serif;
  --font-body: 'EB Garamond', Georgia, serif;

  --measure: 66ch;
  --rule: 1px solid rgba(226, 190, 111, 0.28);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--navy-pearl);
  color: var(--white-sand);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ── Aurora bloom — this brand's signature backdrop motif ── */
.aurora {
  position: fixed; inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 18% 12%,  rgba(127, 4, 59, 0.30) 0%, transparent 62%),
    radial-gradient(ellipse 60% 45% at 86% 26%,  rgba(2, 70, 69, 0.42) 0%, transparent 60%),
    radial-gradient(ellipse 80% 55% at 50% 96%,  rgba(175, 134, 67, 0.20) 0%, transparent 64%);
  filter: blur(10px);
  animation: drift 26s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(0, -22px, 0) scale(1.05); }
}
.grain {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.35;
  background-image: radial-gradient(rgba(226,226,226,0.05) 1px, transparent 1px);
  background-size: 3px 3px;
}

/* ── Shell ────────────────────────────────────────────────────────────────── */
.wrap { position: relative; z-index: 1; }
.inner { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.narrow { max-width: 820px; }

/* ── Nav ──────────────────────────────────────────────────────────────────── */
nav.top {
  position: sticky; top: 0; z-index: 40;
  background: rgba(7, 24, 42, 0.82);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid rgba(226, 190, 111, 0.18);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-mark img { display: block; height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-family: var(--font-head);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--white-sand);
  text-decoration: none;
  opacity: 0.82;
  transition: opacity 0.25s, color 0.25s;
}
.nav-links a:hover { opacity: 1; color: var(--gold); }
.nav-cta {
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 10px 22px;
  color: var(--gold) !important;
  opacity: 1 !important;
  transition: background 0.3s, color 0.3s;
}
.nav-cta:hover { background: var(--siren); border-color: var(--siren); color: var(--white-sand) !important; }

/* ── Type ─────────────────────────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 300;              /* guide: "Stick to the light weight in most applications" */
  letter-spacing: 0.06em;
  line-height: 1.14;
  margin: 0;
  color: var(--white-sand);
}
h1 { font-size: clamp(40px, 6.4vw, 82px); text-transform: uppercase; }
h2 { font-size: clamp(28px, 3.8vw, 46px); text-transform: uppercase; }
h3 { font-size: clamp(19px, 2vw, 24px); letter-spacing: 0.1em; text-transform: uppercase; }
p  { margin: 0 0 20px; max-width: var(--measure); }
a  { color: var(--gold); }

.eyebrow {
  display: block;
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.lede { font-size: 21px; line-height: 1.7; color: rgba(226, 226, 226, 0.9); }
.muted { color: rgba(226, 226, 226, 0.68); }

/* Decorative script — guide allows these ONLY for graphical elements / quote blocks */
.script {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--gold);
}

section { padding: 110px 0; position: relative; }

/* ── Orchid divider ───────────────────────────────────────────────────────── */
.divider { display: flex; align-items: center; gap: 18px; margin: 0 auto; max-width: 260px; opacity: 0.8; }
.divider::before, .divider::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, rgba(226,190,111,0.55), transparent);
}
.divider span { color: var(--gold); font-size: 15px; letter-spacing: 0.3em; }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero { padding: 132px 0 96px; text-align: center; }
.hero .orchid-mark { width: 108px; margin: 0 auto 34px; display: block; opacity: 0.9; }
.hero h1 .line { display: block; }
.hero h1 .gold { color: var(--gold); }
.hero .sub {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(19px, 2.2vw, 26px);
  color: var(--coriander);
  margin: 26px auto 0;
  max-width: 30ch;
}
.hero .lede { margin: 30px auto 0; max-width: 62ch; }
.hero-ctas { margin-top: 42px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 34px;
  border-radius: 999px;
  transition: transform 0.25s, background 0.3s, color 0.3s, border-color 0.3s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--siren); color: var(--white-sand); border: 1px solid var(--siren); }
.btn-primary:hover { background: #980847; border-color: #980847; }
.btn-ghost { background: transparent; color: var(--gold); border: 1px solid rgba(226,190,111,0.55); }
.btn-ghost:hover { background: var(--gold); color: var(--navy-pearl); border-color: var(--gold); }

/* ── Light band (White Sand / Coriander) ──────────────────────────────────── */
.band-light { background: var(--white-sand); color: var(--ink-on-light); }
.band-light h2, .band-light h3 { color: var(--navy-pearl); }
.band-light .eyebrow { color: var(--siren); }
.band-light .muted { color: rgba(38, 38, 38, 0.72); }
.band-light a { color: var(--siren); font-weight: 600; }
/* .lede carries its own light colour for the dark sections, so it must be re-darkened
   inside the light bands — otherwise it renders White Sand on White Sand. */
.band-light .lede { color: rgba(38, 38, 38, 0.88); }

.band-coriander { background: var(--coriander); color: var(--ink-on-light); }
/* h3 must be listed too — the base h1/h2/h3 rule paints White Sand, which on Coriander
   measures 1.22:1. Only h2 was overridden here originally. */
.band-coriander h2, .band-coriander h3 { color: var(--evening-sea); }
.band-coriander .eyebrow { color: var(--evening-sea); }
.band-coriander .lede { color: rgba(38, 38, 38, 0.88); }
.band-coriander .muted { color: rgba(38, 38, 38, 0.72); }

/* ── Evening Sea band ─────────────────────────────────────────────────────── */
.band-sea { background: var(--evening-sea); color: var(--white-sand); }
.band-sea h2 { color: var(--white-sand); }
.band-sea .eyebrow { color: var(--coriander); }

/* ── Pillars ──────────────────────────────────────────────────────────────── */
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 56px; }
.pillar {
  border: 1px solid rgba(2, 70, 69, 0.22);
  background: rgba(255, 255, 255, 0.45);
  border-radius: 3px;
  padding: 30px 28px;
  display: flex; flex-direction: column;
}
.pillar .num {
  font-family: var(--font-head); font-weight: 300;
  font-size: 12px; letter-spacing: 0.3em; color: var(--siren); margin-bottom: 12px;
}
.pillar h3 { margin-bottom: 12px; }
.pillar p { font-size: 17px; margin: 0; max-width: none; }

/* ── Physiology obstacles (dark section, numbered rows) ───────────────────── */
.obstacles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 44px; margin-top: 52px; }
.obstacle { display: flex; gap: 20px; align-items: flex-start; }
.obstacle .onum {
  font-family: var(--font-head); font-weight: 300;
  font-size: 13px; letter-spacing: 0.24em; color: var(--gold);
  padding-top: 6px; flex: 0 0 auto; min-width: 2.4em;
  border-top: 1px solid rgba(226, 190, 111, 0.5);
}
.obstacle h3 { margin: 0 0 10px; font-size: clamp(17px, 1.6vw, 20px); color: var(--white-sand); }
.obstacle p { margin: 0; font-size: 17px; color: rgba(226, 226, 226, 0.78); max-width: none; }

/* ── Offer cards ──────────────────────────────────────────────────────────── */
.offers { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; margin-top: 60px; align-items: stretch; }
.offer {
  display: flex; flex-direction: column;
  border: 1px solid rgba(226, 190, 111, 0.3);
  background: linear-gradient(160deg, rgba(12,33,55,0.9) 0%, rgba(7,24,42,0.9) 100%);
  border-radius: 4px;
  padding: 38px 34px;
  transition: border-color 0.3s, transform 0.3s;
}
.offer:hover { border-color: rgba(226,190,111,0.65); transform: translateY(-3px); }
.offer .tier {
  font-family: var(--font-head); font-weight: 300;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; min-height: 2.6em;
}
.offer h3 { min-height: 2.4em; display: flex; align-items: flex-end; margin-bottom: 16px; }
.offer .focus { font-style: italic; color: var(--coriander); margin: 0 0 20px; min-height: 3.4em; max-width: none; }
.offer ul { list-style: none; padding: 0; margin: 0; flex: 1 1 auto; }
.offer li {
  padding: 11px 0;
  border-top: 1px solid rgba(226, 190, 111, 0.16);
  font-size: 16.5px; line-height: 1.55;
  color: rgba(226, 226, 226, 0.82);
}
.offer .price {
  font-family: var(--font-head); font-weight: 300;
  font-size: 30px; letter-spacing: 0.04em; color: var(--gold);
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid rgba(226, 190, 111, 0.3);
}
.offer .price-note {
  display: block;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14.5px;
  letter-spacing: 0;
  line-height: 1.45;
  color: rgba(226, 226, 226, 0.6);
  margin-top: 8px;
}
.offer li strong { color: var(--coriander); font-weight: 600; }
.offer .btn { margin-top: 18px; justify-content: space-between; width: 100%; min-height: 66px; text-align: left; }
.offer .btn .stack { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.3; }
.offer .btn .l1 { font-size: 0.9em; letter-spacing: 0.22em; opacity: 0.82; }

.offers-foot { margin: 34px auto 0; text-align: center; font-style: italic; font-size: 16px; color: rgba(226,226,226,0.62); max-width: 70ch; }

/* ── Quote block ──────────────────────────────────────────────────────────── */
.quote-block { text-align: center; }
.quote-block blockquote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.35;
  color: var(--white-sand);
  margin: 0 auto;
  max-width: 22ch;
}
.quote-block .attr {
  font-family: var(--font-head); font-weight: 300;
  font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-top: 28px;
}

/* ── About ────────────────────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.about-portrait { border: 1px solid rgba(226,190,111,0.32); border-radius: 3px; overflow: hidden; }
.about-portrait img { display: block; width: 100%; height: auto; }

/* ── Opt-in ───────────────────────────────────────────────────────────────── */
.optin { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.optin input {
  flex: 1 1 260px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(226,190,111,0.35);
  border-radius: 999px;
  padding: 15px 22px;
  color: var(--white-sand);
  font-family: var(--font-body);
  font-size: 17px;
}
.optin input::placeholder { color: rgba(226,226,226,0.45); }
.optin input:focus { outline: none; border-color: var(--gold); }
.optin-note { font-size: 15px; margin-top: 14px; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
footer { background: var(--navy-deep); border-top: 1px solid rgba(226,190,111,0.22); padding: 74px 0 34px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 44px; }
.foot-logo img { height: 40px; width: auto; margin-bottom: 18px; }
footer h4 {
  font-family: var(--font-head); font-weight: 400;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 16px;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 10px; }
footer a { color: rgba(226,226,226,0.8); text-decoration: none; font-size: 16.5px; }
footer a:hover { color: var(--gold); }
.foot-base {
  margin-top: 52px; padding-top: 22px;
  border-top: 1px solid rgba(226,190,111,0.16);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 14px; color: rgba(226,226,226,0.5);
}

/* ── Reveal ───────────────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .offers, .pillars, .obstacles { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .foot-grid { grid-template-columns: 1fr; gap: 34px; }
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
  section { padding: 80px 0; }
  .inner { padding: 0 22px; }
}

/* ══════════════════════════════════════════════════════════════════════════
   Copy revision — 2026-08-04
   ══════════════════════════════════════════════════════════════════════════ */

/* Hero wordmark: BOTH over /AND. The slash rides with the gold second line.
   Period dropped per Amy — restore by appending it in the markup if wanted. */
.hero h1.wordmark .line { display: block; }

/* Sub-headline must sit on ONE line on desktop. The old 30ch cap forced a
   three-line wrap; this fits the full phrase and only wraps on small screens. */
.hero .sub { max-width: 54ch; }
@media (max-width: 620px) { .hero .sub { max-width: 30ch; } }

/* ── Two-sides (higher/lower desire partner) ──────────────────────────────── */
.two-sides { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: 34px; }
.side {
  border-left: 2px solid var(--siren);
  padding: 4px 0 4px 22px;
}
.side h3 { font-size: 15px; letter-spacing: 0.16em; margin-bottom: 10px; color: var(--siren); }
.side p { margin: 0; font-size: 17px; max-width: none; }

/* ── Polarity pairs ───────────────────────────────────────────────────────── */
.polarity-pairs {
  list-style: none; padding: 0;
  margin: 38px auto;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 18px;
  max-width: 900px;
}
.polarity-pairs li {
  display: inline-flex; align-items: baseline; gap: 10px;
  border: 1px solid rgba(2, 70, 69, 0.28);
  border-radius: 999px;
  padding: 9px 20px;
  background: rgba(255,255,255,0.4);
  font-family: var(--font-head);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--evening-sea);
}
.polarity-pairs i { font-style: normal; color: var(--siren); }

/* ── About: pull quote, story subheads, credentials ───────────────────────── */
.story-quote {
  margin: 26px 0 0;
  padding-left: 24px;
  border-left: 2px solid var(--siren);
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.5;
  color: rgba(38, 38, 38, 0.9);
}
.story-head {
  margin: 40px 0 14px;
  font-size: clamp(17px, 1.7vw, 21px);
  letter-spacing: 0.12em;
  color: var(--evening-sea);
}
.creds {
  margin-top: 52px;
  border: 1px solid rgba(2, 70, 69, 0.3);
  border-radius: 3px;
  background: rgba(197, 208, 178, 0.4);
  padding: 30px 32px;
}
.creds h4 {
  font-family: var(--font-head); font-weight: 400;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--siren); margin: 0 0 16px;
}
.creds ul { list-style: none; padding: 0; margin: 0; }
.creds li {
  padding: 9px 0 9px 24px;
  position: relative;
  border-top: 1px solid rgba(2, 70, 69, 0.16);
  font-size: 17px;
  color: var(--ink-on-light);
}
.creds li:first-child { border-top: none; }
.creds li::before {
  content: "\2726"; position: absolute; left: 0; top: 9px;
  color: var(--siren); font-size: 12px;
}
.cred-note { font-style: italic; color: rgba(38,38,38,0.62); font-size: 0.9em; }

/* ── §7 Focused pathways (Evening Sea band) ───────────────────────────────── */
.pathways { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 48px; }
.pathway {
  border: 1px solid rgba(226, 190, 111, 0.34);
  border-radius: 4px;
  padding: 32px 30px;
  display: flex; flex-direction: column;
  background: rgba(4, 14, 26, 0.28);
}
.pathway h3 { color: var(--white-sand); margin-bottom: 14px; }
.pathway p { color: rgba(226, 226, 226, 0.84); flex: 1 1 auto; max-width: none; font-size: 17px; }
.pathway .btn { align-self: flex-start; margin-top: 18px; }

@media (max-width: 900px) {
  .two-sides, .pathways { grid-template-columns: 1fr; }
}

/* ── Sub-page hero + detail lists (/mind-clearing, /health-coaching) ──────── */
.subpage-hero { padding: 96px 0 72px; text-align: left; }
.subpage-hero .sub { margin: 22px 0 0; max-width: 48ch; }
.subpage-h1 { font-size: clamp(32px, 4.8vw, 58px); }
.source-note { font-size: 15px; font-style: italic; margin-top: 18px; }

.detail-list { margin: 32px 0 0; }
.detail-list > div {
  display: grid; grid-template-columns: 190px 1fr; gap: 20px;
  padding: 16px 0;
  border-top: 1px solid rgba(2, 70, 69, 0.22);
}
.detail-list dt {
  font-family: var(--font-head); font-weight: 400;
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--evening-sea); padding-top: 4px;
}
.detail-list dd { margin: 0; font-size: 17px; color: var(--ink-on-light); }
@media (max-width: 700px) {
  .detail-list > div { grid-template-columns: 1fr; gap: 6px; }
}
