/* ============================================
   JOYOUS LIVING — Redesign
   Palette: warm ivory, deep forest, soft gold
   ============================================ */

:root {
  --ivory:        #f7f2ea;
  --ivory-deep:   #efe7d8;
  --cream:        #fbf8f2;
  --forest:       #1f3d34;
  --forest-deep:  #14271f;
  --gold:         #c9a35a;
  --gold-soft:    #e0c08a;
  --sage:         #8aa896;
  --rose:         #d9a89a;
  --ink:          #1c1c1c;
  --ink-soft:     #4a4a4a;
  --ink-mute:     #7a7770;
  --line:         rgba(31,61,52,0.12);
  --shadow:       0 20px 60px -20px rgba(31,61,52,0.25);
  --radius:       18px;
  --maxw:         1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease; }
a:hover { opacity: .8; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ============================================
   Typography
   ============================================ */
.h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--forest-deep);
  margin-bottom: 1.2rem;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1rem;
  display: inline-block;
}

.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

p { color: var(--ink-soft); }
p + p { margin-top: 1rem; }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn--primary {
  background: var(--forest);
  color: var(--ivory);
  box-shadow: 0 12px 30px -10px rgba(31,61,52,0.5);
}
.btn--primary:hover { background: var(--forest-deep); opacity: 1; transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--forest);
  border-color: var(--line);
}
.btn--ghost:hover { background: var(--ivory); opacity: 1; }
.btn--block { width: 100%; justify-content: center; }

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(251,248,242,0.78);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.scrolled { border-color: var(--line); background: rgba(251,248,242,0.92); }

.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold-soft);
  display: grid; place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
.nav__name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--forest-deep);
  letter-spacing: 0.01em;
}

.nav__links { display: flex; align-items: center; gap: 2.1rem; }
.nav__links a {
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 500;
  position: relative;
}
.nav__links a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__links a:not(.nav__cta):hover { opacity: 1; color: var(--forest); }

.nav__cta {
  background: var(--forest);
  color: var(--ivory) !important;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  transition: background 0.25s ease;
}
.nav__cta:hover { background: var(--forest-deep); opacity: 1; }

.nav__burger {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 32px; height: 24px;
  flex-direction: column; justify-content: space-between;
}
.nav__burger span {
  height: 2px; width: 100%;
  background: var(--forest);
  transition: transform .3s ease, opacity .3s ease;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 28px 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(201,163,90,0.18), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(138,168,150,0.22), transparent 55%),
    linear-gradient(180deg, var(--ivory) 0%, var(--ivory-deep) 100%);
  z-index: -1;
}
.hero__bg::before,
.hero__bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
}
.hero__bg::before {
  width: 480px; height: 480px;
  background: var(--gold-soft);
  top: 10%; right: -120px;
  animation: float 14s ease-in-out infinite;
}
.hero__bg::after {
  width: 380px; height: 380px;
  background: var(--sage);
  bottom: 8%; left: -100px;
  animation: float 18s ease-in-out infinite reverse;
}
@keyframes float {
  0%,100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-30px) translateX(20px); }
}

.hero__inner { max-width: 920px; margin: 0 auto; text-align: center; }
.hero__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--forest-deep);
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: italic;
  color: var(--forest);
  font-weight: 400;
}
.hero__sub {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto 2.4rem;
  line-height: 1.7;
}
.hero__actions {
  display: flex; gap: 1rem; justify-content: center;
  flex-wrap: wrap; margin-bottom: 4rem;
}
.hero__meta {
  display: flex; justify-content: center; gap: 3.5rem;
  flex-wrap: wrap;
}
.hero__meta > div {
  text-align: center;
}
.hero__meta strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 2.2rem;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hero__meta span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
}

.hero__scroll {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, var(--forest));
}
.hero__scroll span {
  position: absolute; left: -3px; top: 0;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  animation: scrollDot 2.4s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { top: 0; opacity: 1; }
  100% { top: 45px; opacity: 0; }
}

/* ============================================
   Sections
   ============================================ */
.section { padding: 120px 0; position: relative; }
.section__head { text-align: center; max-width: 740px; margin: 0 auto 4rem; }
.section__head .h2 { margin-bottom: 1rem; }
.section__sub { font-size: 1.08rem; color: var(--ink-soft); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.grid-2--about { gap: 5rem; align-items: center; }

/* MISSION */
.mission { background: var(--ivory); }
.pullquote {
  margin-top: 2rem;
  padding: 1.5rem 0 1.5rem 1.6rem;
  border-left: 2px solid var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--forest);
}

/* EXPERIENCE */
.experience { background: var(--cream); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.card {
  background: var(--ivory);
  padding: 2.5rem 2rem 2.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform .35s ease, box-shadow .35s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  opacity: 0; transition: opacity .35s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.card:hover::before { opacity: 1; }
.card__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}
.card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.55rem;
  color: var(--forest-deep);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

/* ABOUT */
.about { background: var(--ivory); }
.portrait {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 30% 25%, rgba(255,255,255,0.5), transparent 50%),
    linear-gradient(160deg, var(--forest) 0%, var(--forest-deep) 100%);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.portrait::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 80%, rgba(201,163,90,0.35), transparent 50%);
}
.portrait__initials {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11rem;
  font-weight: 400;
  color: var(--gold-soft);
  letter-spacing: -0.04em;
  opacity: 0.85;
}
.portrait__caption {
  position: absolute;
  bottom: 1.8rem; left: 1.8rem; right: 1.8rem;
  color: var(--ivory);
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
}
.portrait__caption span {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.3rem;
}
.portrait__caption strong {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.02em;
}

.reasons {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding-top: 4rem;
  border-top: 1px solid var(--line);
}
.reason h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--forest);
  margin-bottom: 0.6rem;
}

/* SEMINARS */
.seminars { background: var(--cream); }
.timeline {
  list-style: none;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 42px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 8%, var(--gold) 92%, transparent);
}
.timeline__item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.8rem 0;
  position: relative;
}
.timeline__num {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--forest);
  position: relative;
  z-index: 2;
  transition: all .3s ease;
}
.timeline__item:hover .timeline__num {
  background: var(--forest);
  color: var(--gold-soft);
  transform: scale(1.05);
}
.timeline__body {
  padding-top: 0.8rem;
}
.timeline__body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--forest-deep);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

/* MANTRA */
.mantra {
  padding: 120px 28px;
  background: var(--forest);
  color: var(--ivory);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mantra::before,
.mantra::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.mantra::before {
  width: 400px; height: 400px;
  background: var(--gold);
  opacity: 0.15;
  top: -200px; left: -100px;
}
.mantra::after {
  width: 400px; height: 400px;
  background: var(--sage);
  opacity: 0.2;
  bottom: -200px; right: -100px;
}
.mantra .container { position: relative; z-index: 1; max-width: 820px; }
.mantra__sanskrit {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.05em;
  color: var(--gold-soft);
  margin-bottom: 0.6rem;
}
.mantra__translation {
  font-size: 0.85rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(247,242,234,0.65);
  margin-bottom: 2.5rem;
}
.mantra__body {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.45rem;
  line-height: 1.5;
  color: var(--ivory);
}

/* REGISTER */
.register { background: var(--ivory); }
.checklist {
  list-style: none;
  margin-top: 1.5rem;
}
.checklist li {
  padding: 0.7rem 0 0.7rem 2rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  color: var(--ink-soft);
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.form {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.form__row { margin-bottom: 1.2rem; }
.form label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.form input,
.form textarea {
  width: 100%;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font: inherit;
  color: var(--ink);
  font-size: 0.98rem;
  transition: border-color .25s ease, box-shadow .25s ease;
  margin-top: 0.4rem;
}
.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,163,90,0.15);
}
.form textarea { resize: vertical; }
.form__note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--forest);
  min-height: 1.2em;
  text-align: center;
}

/* Q&A */
.qa { background: var(--cream); }
.qa__grid { gap: 4rem; align-items: start; }
.qa__h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--forest-deep);
  margin-bottom: 1.5rem;
}
.qa__form { padding: 2rem; }
.label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}
.label-hint {
  font-size: 0.72rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-mute);
  font-weight: 400;
  font-style: italic;
}
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: -0.3rem 0 1.2rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  cursor: pointer;
}
.checkbox input {
  width: auto;
  margin: 0.25rem 0 0;
  accent-color: var(--forest);
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.qa__loading {
  font-size: 0.95rem;
  color: var(--ink-mute);
  font-style: italic;
  padding: 1rem 0;
}
.qa-item {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.qa-item[open] {
  border-color: var(--gold);
  box-shadow: 0 12px 30px -18px rgba(31,61,52,0.25);
}
.qa-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--forest-deep);
  line-height: 1.3;
  transition: color .2s ease;
}
.qa-item summary::-webkit-details-marker { display: none; }
.qa-item summary:hover { color: var(--forest); }

.qa-item__icon {
  position: relative;
  width: 16px; height: 16px;
  flex: 0 0 16px;
}
.qa-item__icon::before,
.qa-item__icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: transform .25s ease;
}
.qa-item__icon::before {
  top: 50%; left: 0;
  width: 100%; height: 1.5px;
  transform: translateY(-50%);
}
.qa-item__icon::after {
  top: 0; left: 50%;
  width: 1.5px; height: 100%;
  transform: translateX(-50%);
}
.qa-item[open] .qa-item__icon::after { transform: translateX(-50%) scaleY(0); }

.qa-item__a {
  padding: 0 1.3rem 1.3rem;
  animation: qaFade .35s ease;
}
.qa-item__a p {
  font-size: 0.98rem;
  line-height: 1.7;
}
.qa-item__by {
  display: block;
  margin-top: 0.9rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1rem;
}
@keyframes qaFade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* FOOTER */
.footer {
  background: var(--forest-deep);
  color: var(--ivory);
  padding: 80px 0 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(247,242,234,0.1);
}
.footer__logo {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--ivory);
  margin-bottom: 1rem;
}
.footer__logo .nav__mark {
  background: var(--gold);
  color: var(--forest-deep);
}
.footer__tag {
  color: rgba(247,242,234,0.65);
  font-size: 0.98rem;
  max-width: 340px;
}
.footer h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--gold-soft);
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}
.footer p, .footer a, .footer li {
  color: rgba(247,242,234,0.78);
  font-size: 0.95rem;
  line-height: 1.9;
}
.footer a:hover { color: var(--gold-soft); opacity: 1; }
.social { list-style: none; }
.footer__base {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px 28px 0;
  display: flex; justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(247,242,234,0.45);
  letter-spacing: 0.05em;
}

/* ============================================
   Reveal Animation
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 880px) {
  .nav__links {
    position: fixed;
    inset: 64px 0 auto 0;
    flex-direction: column;
    background: var(--cream);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform .35s ease;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__burger { display: flex; }

  .grid-2,
  .grid-2--about { grid-template-columns: 1fr; gap: 3rem; }
  .cards { grid-template-columns: 1fr; }
  .reasons { grid-template-columns: 1fr; gap: 2rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__base { flex-direction: column; gap: 0.5rem; text-align: center; }

  .section { padding: 80px 0; }
  .hero { padding: 100px 24px 60px; }
  .hero__meta { gap: 2rem; }

  .timeline::before { left: 30px; }
  .timeline__item { grid-template-columns: 60px 1fr; gap: 1rem; }
  .timeline__num { width: 60px; height: 60px; font-size: 1.2rem; }

  .form { padding: 1.8rem; }
}

@media (max-width: 480px) {
  .nav__name { display: none; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}

/* ============================================
   Q&A — submitted-question status (demo)
   ============================================ */
.qa-pending {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.qa-pending__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.qa-pending__list { list-style: none; display: grid; gap: 0.75rem; }
.qa-pending__list li {
  padding: 0.75rem 0.9rem;
  background: rgba(0,0,0,0.03);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.92rem;
  line-height: 1.6;
}
.qa-pending__q { display: inline; }
.qa-pending__a { margin-top: 0.5rem; color: var(--forest-deep); }
.qa-status {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  margin-right: 0.5rem;
  vertical-align: middle;
}
.qa-status--pending   { background: #f3e6c8; color: #7a5b12; }
.qa-status--published { background: #d8ecd9; color: #1f5d2a; }
.qa-status--hidden    { background: #e8e8e8; color: #666; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto !important; }
}

/* ============================================
   Living Awareness Series
   ============================================ */
.living-awareness { background: var(--cream); }
.la-prereq {
  max-width: 640px; margin: 1rem auto 0;
  color: var(--forest-deep);
  font-size: 1.05rem; line-height: 1.7;
}
.la-prereq strong { color: var(--gold); }
.la-intro { margin-top: 2.5rem; align-items: center; }
.la-quote { font-size: 1.25rem; }
.la-quote cite {
  display: block; margin-top: 1rem;
  font-style: normal; font-size: 0.95rem;
  letter-spacing: 0.04em; color: var(--gold);
}
.la-schedule { margin-top: 3rem; align-items: start; }
.la-schedule .btn { margin-top: 1.5rem; }
.la-schedule .timeline__item { margin-bottom: 1.25rem; }
.la-schedule .timeline__body p { margin: 0; color: var(--ink-soft, #5c5c52); }
.la-alt { font-size: 0.85em; opacity: 0.7; }
.la-next {
  margin: 1.25rem 0;
  padding: 0.85rem 1.1rem;
  background: rgba(201,163,90,0.12);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  font-size: 0.95rem;
}

.testimonials {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 12px;
  padding: 1.6rem 1.8rem;
  margin: 0;
}
.testimonial blockquote {
  margin: 0; font-size: 1rem; line-height: 1.75; color: #3a3a32;
}
.testimonial figcaption {
  margin-top: 1rem; font-weight: 600;
  letter-spacing: 0.04em; color: var(--gold);
}
@media (max-width: 880px) {
  .testimonials { grid-template-columns: 1fr; }
}

/* ============================================
   Usability enhancements (UX version)
   ============================================ */

/* Smooth scrolling + offset so headings clear the fixed nav */
html { scroll-behavior: smooth; }
section[id], [id] { scroll-margin-top: 84px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* Skip link (visible on keyboard focus) */
.skip-link {
  position: fixed; top: -60px; left: 12px; z-index: 1000;
  background: var(--forest-deep); color: #fff;
  padding: 10px 16px; border-radius: 8px; font-size: 0.9rem;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: var(--gold); z-index: 999;
  transition: width .1s linear;
}

/* Active nav link (scroll-spy) */
.nav__links a { position: relative; }
.nav__links a.active:not(.nav__cta) { color: var(--gold); }
.nav__links a.active:not(.nav__cta)::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--gold); border-radius: 2px;
}

/* Visible focus styles for keyboard users */
a:focus-visible, button:focus-visible,
input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* "Switch program" helper under Register */
.register__switch {
  margin-top: 1.25rem; padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}
.register__switch a { color: var(--gold); font-weight: 600; }

/* Form note states */
.form__note--error   { color: #b1452f; font-weight: 500; }
.form__note--success { color: #1f5d2a; font-weight: 500; }

/* Back-to-top button */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  width: 46px; height: 46px; border-radius: 50%;
  border: 0; cursor: pointer;
  background: var(--forest-deep); color: var(--gold);
  font-size: 1.2rem; line-height: 1;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: transform .2s ease, opacity .2s ease;
}
.to-top:hover { transform: translateY(-3px); }

/* Sticky mobile CTA (only on small screens) */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 300;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(247,242,234,0.96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(8px);
  transform: translateY(120%);
  transition: transform .3s ease;
  display: none;
}
.mobile-cta .btn { margin: 0; }
@media (max-width: 880px) {
  .mobile-cta { display: block; }
  .mobile-cta.show { transform: translateY(0); }
  .to-top { bottom: 84px; }   /* sit above the sticky CTA */
}

/* ============================================
   BOLDER VISUAL REFRESH (UX version)
   ============================================ */

/* Eyebrow: add a small gold lead-in line for stronger rhythm */
/* (removed the gold dash that appeared before eyebrow labels) */

/* Cards & reasons: lift + accent on hover for depth */
.card, .reason, .testimonial {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover, .reason:hover, .testimonial:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

/* ---- Choose Your Path band ---- */
.paths {
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(138,168,150,0.18), transparent 60%),
    linear-gradient(160deg, var(--forest) 0%, var(--forest-deep) 100%);
  color: var(--ivory);
}
.paths .h2 { color: var(--ivory); }
.paths .eyebrow { color: var(--gold-soft); }
.paths .section__sub { color: rgba(247,242,234,0.78); }

.paths__grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
.path-card {
  position: relative;
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 2.2rem 2rem 2rem;
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform .25s ease;
}
.path-card:hover { transform: translateY(-6px); }
.path-card--advanced { border-top-color: var(--sage); }
.path-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.7rem;
  line-height: 1.15;
  color: var(--forest-deep);
  margin: 0.9rem 0 0.6rem;
}
.path-card p { flex: 1; }
.path-card__tag {
  align-self: flex-start;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--forest-deep);
  background: var(--gold-soft);
  padding: 4px 12px; border-radius: 999px;
}
.path-card__tag--alt { background: var(--sage); color: #fff; }
.path-card__meta {
  list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem 1.1rem;
  margin: 1rem 0 1.5rem; padding: 0;
  font-size: 0.85rem; color: var(--ink-mute);
}
.path-card__meta li { position: relative; padding-left: 1.1rem; }
.path-card__meta li::before {
  content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700;
}
.path-card .btn { width: 100%; justify-content: center; }
.path-card__more {
  margin-top: 0.9rem; text-align: center;
  font-size: 0.9rem; font-weight: 600; color: var(--forest);
}

@media (max-width: 880px) {
  .paths__grid { grid-template-columns: 1fr; }
}

/* ============================================
   SPA views — one page visible at a time
   ============================================ */
#app { min-height: 62vh; }
.view { display: none; }
.view.active {
  display: block;
  animation: viewIn .45s ease both;
}
@keyframes viewIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
/* In SPA mode, content is shown immediately (no scroll-reveal hiding) */
.view .reveal { opacity: 1 !important; transform: none !important; }

/* Compact vertical rhythm so each view reads as a single page,
   not ~1.5 screens of padding. */
.view .section { padding: 64px 0; }
.view .section__head { margin-bottom: 2.4rem; }
/* First section of each view clears the fixed nav with a tidy gap */
.view > .section:first-child { padding-top: 96px; }
/* Trim the big top margins used between stacked blocks inside a view */
.view .section__head[style*="margin-top"] { margin-top: 2rem !important; }
.mantra { padding: 56px 0; }

@media (prefers-reduced-motion: reduce) {
  .view.active { animation: none; }
}

/* Header with 7 links + Register CTA — keep it on one row on desktop */
.nav__links { gap: 1.25rem; }
.nav__links a { font-size: 0.84rem; white-space: nowrap; }
.nav__cta { padding: 0.5rem 1rem; }
@media (min-width: 881px) and (max-width: 1180px) {
  .nav__links { gap: 0.85rem; }
  .nav__links a { font-size: 0.78rem; }
}
/* On the mobile stacked menu, restore comfortable sizing */
@media (max-width: 880px) {
  .nav__links a { font-size: 1rem; white-space: normal; }
  .nav__cta { display: inline-block; text-align: center; }
}

/* Contact view */
.contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; max-width: 880px; margin: 0 auto;
}
.contact-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.8rem; text-align: center;
}
.contact-card h4 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem;
  color: var(--forest-deep); margin-bottom: 0.5rem;
}
.contact-card a { color: var(--gold); font-weight: 600; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }

/* ============================================
   Mission landing — soft visual backdrop (two-column layout)
   ============================================ */
.mission {
  min-height: 100vh;              /* Mission fills a single screen; Choose Your Path is below the fold */
  display: flex;
  align-items: center;
  background:
    radial-gradient(60% 80% at 12% 0%, rgba(201,163,90,0.10), transparent 60%),
    radial-gradient(50% 60% at 92% 20%, rgba(138,168,150,0.12), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--ivory-deep) 100%);
}
.mission > .container { width: 100%; }

/* ============================================
   Choose Your Path — smoother entry + refined cards
   ============================================ */
.paths { position: relative; }   /* clean, crisp edge between Mission and the green band */

.path-card {
  border-radius: 16px;
  padding: 2.3rem 2.1rem;
  box-shadow: 0 14px 44px -20px rgba(20,39,31,0.5);
}
.path-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 56px -22px rgba(20,39,31,0.6);
}
.path-card h3 { font-size: 1.85rem; margin-top: 1rem; }
.path-card__tag {
  letter-spacing: 0.1em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.path-card__more {
  display: inline-block;
  margin-top: 1.1rem;
  font-weight: 600;
  color: var(--forest);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.path-card__more:hover { opacity: 1; border-bottom-color: var(--gold); color: var(--gold); }
