/* ===== Yogala — public landing page ===== */

.lpage { background: var(--bg); overflow-x: hidden; }
.lwrap { max-width: 1180px; margin: 0 auto; padding: 0 40px; }

/* ---- scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---- nav ---- */
.lnav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 84%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
  transition: background .25s, box-shadow .25s, border-color .25s;
}
.lnav.scrolled {
  background: color-mix(in srgb, var(--bg) 96%, transparent);
  box-shadow: 0 2px 16px rgba(72,58,42,.1);
  border-bottom-color: var(--line);
}
.lnav-in { display: flex; align-items: center; gap: 28px; height: 76px; }
.lnav-links { display: flex; gap: 26px; margin-left: 18px; }
.lnav-links a { color: var(--ink-soft); text-decoration: none; font-weight: 600; font-size: 15px; transition: color .15s; }
.lnav-links a:hover { color: var(--clay-deep); }
.lnav-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }

/* ---- hero ---- */
.lhero { position: relative; padding: 70px 0 84px; }
.lhero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.lhero h1 { font-size: 66px; line-height: 1.04; letter-spacing: -0.02em; }
.lhero h1 em { font-style: italic; color: var(--clay-deep); }
.lhero p { font-size: 19px; color: var(--ink-soft); margin-top: 22px; max-width: 46ch; line-height: 1.6; }
.lhero-cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.lhero-stats { display: flex; gap: 40px; margin-top: 46px; }
.lhero-stats > div { flex: none; }
.lhero-stats .s-num { font-family: var(--serif); font-size: 32px; line-height: 1; white-space: nowrap; }
.lhero-stats .s-lbl { font-size: 13px; color: var(--ink-faint); font-weight: 600; margin-top: 6px; max-width: 14ch; }

.lhero-art { position: relative; }
.lhero-img { aspect-ratio: 4/5; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); }
.lhero-float {
  position: absolute; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--sh-md); padding: 14px 18px;
  display: flex; align-items: center; gap: 12px; white-space: nowrap;
}
.lhero-float.tl { top: 28px; left: -28px; }
.lhero-float.br { bottom: 30px; right: -26px; }
.lhero-blob { position: absolute; border-radius: 50%; filter: blur(40px); opacity: .5; z-index: -1; }

/* ---- generic section ---- */
.lsection { padding: 80px 0; }
.lsection.tint { background: var(--surface-warm); border-block: 1px solid var(--line-soft); }
.lhead { max-width: 640px; margin-bottom: 46px; }
.lhead.center { margin-inline: auto; text-align: center; }
.lkicker { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--clay); font-weight: 700; }
.lhead h2 { font-size: 44px; margin-top: 14px; line-height: 1.1; }
.lhead p { font-size: 17px; color: var(--ink-soft); margin-top: 16px; line-height: 1.6; }

/* ---- about ---- */
.labout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.labout-img { aspect-ratio: 5/4; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-md); }
.labout p { font-size: 17px; color: var(--ink-soft); line-height: 1.7; margin: 0 0 16px; }
.labout .lead { font-family: var(--serif); font-size: 23px; color: var(--ink); line-height: 1.4; margin-bottom: 22px; }

/* ---- values ---- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 32px 28px; box-shadow: var(--sh-sm);
}
.value-ico { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 20px; }
.value h3 { font-size: 23px; margin-bottom: 10px; }
.value p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.6; margin: 0; }

/* ---- free lessons band ---- */
.free-note {
  display: inline-flex; align-items: center; gap: 9px; background: var(--sage-soft);
  color: var(--sage-deep); padding: 8px 16px; border-radius: var(--r-pill);
  font-weight: 700; font-size: 14px; margin-bottom: 18px;
}

/* ---- news ---- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--sh-sm); display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s; cursor: pointer;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.news-thumb { aspect-ratio: 16/9; position: relative; }
.news-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.news-meta { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ink-faint); font-weight: 600; }
.news-card h3 { font-size: 21px; line-height: 1.25; }
.news-card p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; margin: 0; }
.news-more { color: var(--clay-deep); font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; margin-top: auto; }

/* ---- teachers ---- */
.teachers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.teacher-card { text-align: center; }
.teacher-img { aspect-ratio: 1; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-sm); margin-bottom: 16px; }
.teacher-card h3 { font-size: 20px; }
.teacher-card .role { font-size: 14px; color: var(--ink-faint); font-weight: 600; margin-top: 4px; }

/* ---- cta band ---- */
.lcta { background: linear-gradient(120deg, var(--clay-soft), var(--sage-soft)); border-radius: var(--r-xl); padding: 60px; text-align: center; position: relative; overflow: hidden; }
.lcta h2 { font-size: 46px; line-height: 1.1; }
.lcta p { font-size: 18px; color: var(--ink-soft); margin: 16px auto 30px; max-width: 48ch; }
.lcta-blob { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .45; }

/* ---- footer ---- */
.lfooter { background: var(--ink); color: var(--bg-soft); padding: 60px 0 34px; }
.lfooter a { color: color-mix(in srgb, var(--bg-soft) 78%, transparent); text-decoration: none; font-size: 15px; }
.lfooter a:hover { color: var(--bg-soft); }
.lfoot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.lfoot-col h4 { font-family: var(--sans); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: color-mix(in srgb, var(--bg-soft) 55%, transparent); margin-bottom: 16px; font-weight: 700; }
.lfoot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.lfoot-brand .brand-name { color: var(--bg-soft); }
.lfoot-brand p { color: color-mix(in srgb, var(--bg-soft) 65%, transparent); font-size: 15px; line-height: 1.6; margin-top: 16px; max-width: 30ch; }
.lfoot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: 13.5px; color: color-mix(in srgb, var(--bg-soft) 55%, transparent); }

/* ---- mobile hamburger menu ---- */
.lnav-menu-btn {
  display: none;
  width: 42px; height: 42px; flex: none;
  border: 1px solid var(--line); background: var(--surface);
  border-radius: var(--r-sm);
  align-items: center; justify-content: center;
  color: var(--ink-soft); cursor: pointer;
}
.lnav-mobile-menu {
  border-top: 1px solid var(--line-soft);
  padding: 16px 0 20px;
}
.lnav-mobile-menu a {
  display: block; color: var(--ink-soft); text-decoration: none;
  font-weight: 600; font-size: 16px;
  padding: 13px 20px; border-bottom: 1px solid var(--line-soft);
  transition: color .15s;
}
.lnav-mobile-menu a:last-of-type { border-bottom: none; }
.lnav-mobile-menu a:hover { color: var(--clay-deep); }
.lnav-mobile-btns { display: flex; gap: 12px; padding: 16px 20px 0; }
.lnav-mobile-btns .btn { flex: 1; justify-content: center; }

/* ---- lesson modal (free preview player) ---- */
.lm-scrim { position: fixed; inset: 0; background: rgba(36,28,20,.55); backdrop-filter: blur(4px); display: grid; place-items: center; z-index: 90; padding: 24px; animation: fade .2s; }
.lm { background: var(--surface); border-radius: var(--r-xl); width: 100%; max-width: 760px; box-shadow: var(--sh-lg); overflow: hidden; animation: pop .22s; }
.lm-player { aspect-ratio: 16/9; background: #2a2521; position: relative; }
.lm-player .ph { --ph-a:#3a342d; --ph-b:#332e28; }
.lm-close { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border-radius: 50%; border: none; background: rgba(255,255,255,.92); color: var(--ink); display: grid; place-items: center; z-index: 2; box-shadow: var(--sh-sm); }
.lm-body { padding: 24px 28px 28px; }
.lm-cta { background: var(--surface-warm); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 22px; }

@media (max-width: 980px) {
  .lhero-grid, .labout { grid-template-columns: 1fr; gap: 40px; }
  .lhero h1 { font-size: 50px; }
  .values, .news-grid { grid-template-columns: 1fr; }
  .teachers { grid-template-columns: repeat(2, 1fr); }
  .lnav-links { display: none; }
  .lnav-menu-btn { display: flex; }
  .lnav-signin { display: none; }
  .lnav-cta { display: none; }
  .lfoot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .lwrap { padding: 0 16px; }
  .lhero { padding: 48px 0 60px; }
  .lhero h1 { font-size: 38px; }
  .lhero p { font-size: 16px; }
  .lhero-float { display: none; }
  .lhero-stats { gap: 20px; flex-wrap: wrap; }
  .lhero-cta { flex-direction: column; }
  .lhero-cta .btn { width: 100%; justify-content: center; }
  .lhead h2 { font-size: 32px; }
  .labout h2 { font-size: 28px !important; }
  .lsection { padding: 52px 0; }
  .lcta { padding: 36px 20px; }
  .lcta h2 { font-size: 30px; }
  .lcta p { font-size: 15px; }
  .lfoot-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .lm-scrim { padding: 0; align-items: flex-end; }
  .lm { border-radius: var(--r-xl) var(--r-xl) 0 0; max-height: 90vh; overflow-y: auto; }
}
@media (max-width: 420px) {
  .lfoot-grid { grid-template-columns: 1fr; }
  .teachers { grid-template-columns: 1fr; }
  .lnav-in { height: 64px; }
}
