/* ============================================
   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; }
}
