/* ============================================================
   Edifice Spirit Led — Shared Stylesheet
   Mary Horner | Faith-based life guidance & spiritual coaching
   ============================================================ */

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

:root {
  /* Palette */
  --navy:       #0d1b2a;
  --navy-mid:   #162032;
  --navy-lt:    #1e2f45;
  --gold:       #c9a84c;
  --gold-lt:    #e0c070;
  --gold-pale:  #f5e9c8;
  --cream:      #faf6ef;
  --cream-dk:   #f0e8d8;
  --white:      #ffffff;
  --text:       #2c2c2c;
  --text-lt:    #5a5a5a;
  --border:     rgba(201,168,76,0.2);
  --border-lt:  rgba(201,168,76,0.1);

  /* Typography */
  --font-head:  'Cormorant Garamond', 'Georgia', serif;
  --font-body:  'Inter', sans-serif;

  /* Spacing */
  --radius:     14px;
  --radius-sm:  8px;
  --shadow:     0 4px 24px rgba(13,27,42,0.12);
  --shadow-gold:0 0 40px rgba(201,168,76,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; margin-bottom: 1rem; }
h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: .5rem; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { font-size: .96rem; color: var(--text-lt); margin-bottom: .9rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.gold-rule {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1rem 0 1.5rem;
}

.gold-rule.center { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: .85rem 2.2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .04em;
  transition: all .22s;
  border: none;
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--gold-pale);
  transform: translateY(-2px);
}

/* ── Navigation ── */
.esl-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.esl-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.esl-nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.esl-nav-brand .brand-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .04em;
}

.esl-nav-brand .brand-sub {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.6);
}

.esl-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.esl-nav-links a {
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color .2s;
}

.esl-nav-links a:hover,
.esl-nav-links a.active {
  color: var(--gold-lt);
}

.esl-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: .25rem;
}

.esl-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* ── Page Hero ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a2a1a 100%);
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 70%);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Cards ── */
.esl-card {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

/* ── Journey Steps ── */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.journey-grid::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-lt), var(--gold));
  z-index: 0;
}

.journey-step {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
  z-index: 1;
}

.journey-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 0 0 4px var(--cream), 0 0 0 6px var(--gold);
}

.journey-step h4 {
  font-size: .9rem;
  color: var(--navy);
  margin-bottom: .3rem;
}

.journey-step p {
  font-size: .78rem;
  color: var(--text-lt);
  margin: 0;
}

/* ── Footer ── */
.esl-footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 3.5rem 0 2rem;
  color: rgba(255,255,255,0.55);
}

.esl-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.esl-footer h4 {
  font-family: var(--font-head);
  color: var(--gold-lt);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.esl-footer ul li {
  margin-bottom: .5rem;
}

.esl-footer ul li a {
  color: rgba(255,255,255,0.5);
  font-size: .85rem;
  transition: color .2s;
}

.esl-footer ul li a:hover {
  color: var(--gold-lt);
}

.esl-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: .75rem;
}

.esl-footer-bottom a {
  color: rgba(255,255,255,0.4);
  transition: color .2s;
}

.esl-footer-bottom a:hover {
  color: var(--gold-lt);
}

.esl-sms-note {
  font-size: .7rem;
  color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: .5rem 1rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .journey-grid { grid-template-columns: repeat(3, 1fr); }
  .journey-grid::before { display: none; }
  .esl-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .esl-nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    gap: 1.25rem;
    z-index: 99;
  }
  .esl-nav-links.open { display: flex; }
  .esl-nav { position: relative; }
  .esl-nav-toggle { display: flex; }
  .section { padding: 3.5rem 0; }
  .journey-grid { grid-template-columns: 1fr 1fr; }
  .esl-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
