/* =========================================================
   GODDESS SKOTIA ACADEMY — Cinema-Noir Design System
   Modeled 1:1 after Lovable goddessskotias build
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Outfit:wght@300;400;500;600;700&family=Jost:wght@300;400;500;600;700&display=swap');

/* ---------- Tokens ---------- */
:root {
  --bg: #08060a;
  --bg-soft: #0d0a10;
  --card: #100c14;
  --card-soft: #14101a;
  --ink: #f4ead7;
  --ink-soft: rgba(244, 234, 215, 0.7);
  --ink-mute: rgba(244, 234, 215, 0.5);
  --ink-faint: rgba(244, 234, 215, 0.3);
  --gold: #c9a96a;
  --gold-bright: #d4b87a;
  --gold-soft: rgba(201, 169, 106, 0.12);
  --gold-line: rgba(201, 169, 106, 0.2);
  --gold-glow: rgba(201, 169, 106, 0.06);
  --danger: #c14a4a;

  --font-display: 'Cinzel', serif;
  --font-modern: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
  --font-grotesk: 'Jost', sans-serif;

  --container: 1240px;
  --container-narrow: 880px;
  --radius: 16px;
  --radius-lg: 24px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */
.font-modern { font-family: var(--font-modern); }
.font-display { font-family: var(--font-display); letter-spacing: 0.15em; }
.font-outfit { font-family: var(--font-body); }
.font-grotesk { font-family: var(--font-grotesk); }

h1, h2, h3, h4 { font-family: var(--font-modern); font-weight: 600; margin: 0; letter-spacing: -0.01em; }

.eyebrow {
  font-family: var(--font-grotesk);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px 0;
  background: rgba(8, 6, 10, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 169, 106, 0.08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.nav-brand {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.35em;
  color: var(--ink);
  text-transform: uppercase;
}
.nav-brand span { color: var(--gold); }
.nav-links { display: flex; gap: 32px; align-items: center; font-family: var(--font-grotesk); font-size: 13px; text-transform: uppercase; letter-spacing: 0.2em; }
.nav-links a { color: var(--ink-soft); transition: color 0.2s; padding: 8px 0; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  padding: 10px 22px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-grotesk);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  transition: all 0.3s;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--gold); color: var(--bg); }
@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px; border-radius: 999px; border: none;
  font-family: var(--font-grotesk); font-size: 14px; font-weight: 500;
  letter-spacing: 0.05em; transition: all 0.3s; cursor: pointer;
  text-decoration: none;
}
.btn-gold {
  background: var(--gold); color: var(--bg);
  box-shadow: 0 8px 24px rgba(201, 169, 106, 0.25);
}
.btn-gold:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201, 169, 106, 0.35); }
.btn-ghost {
  background: transparent; color: var(--gold); border: 1px solid var(--gold);
}
.btn-ghost:hover { background: var(--gold); color: var(--bg); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 32px; font-size: 16px; }

/* ---------- Course Hero ---------- */
.course-hero {
  position: relative; min-height: 70vh; display: flex; align-items: flex-end;
  overflow: hidden; padding-top: 100px;
}
.course-hero-video {
  position: absolute; inset: 0; z-index: 0;
}
.course-hero-video video, .course-hero-video img {
  width: 100%; height: 100%; object-fit: cover; transform: scale(1.05);
  filter: brightness(0.5) saturate(0.85);
}
.course-hero-video::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--bg) 0%, rgba(8,6,10,0.7) 50%, rgba(8,6,10,0.3) 100%),
    linear-gradient(to right, rgba(8,6,10,0.9) 0%, rgba(8,6,10,0.5) 50%, transparent 100%);
}
.course-hero-glow {
  position: absolute; top: 80px; right: 60px; width: 320px; height: 320px;
  background: var(--gold); opacity: 0.1; filter: blur(120px); border-radius: 50%;
  z-index: 1;
}
.course-hero-inner {
  position: relative; z-index: 2; padding: 0 0 80px 0;
}
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink-soft); font-family: var(--font-grotesk);
  font-size: 13px; letter-spacing: 0.04em;
  margin-bottom: 40px; transition: color 0.2s;
}
.back-link:hover { color: var(--gold); }
.back-link svg { width: 16px; height: 16px; transition: transform 0.2s; }
.back-link:hover svg { transform: translateX(-4px); }

.course-hero-content { max-width: 720px; }
.level-badge {
  display: inline-block; padding: 8px 18px;
  background: var(--gold); color: var(--bg);
  font-family: var(--font-grotesk); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.25em;
  border-radius: 999px; margin-bottom: 24px;
}
.course-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700; line-height: 0.95; letter-spacing: -0.02em;
  margin-bottom: 20px; color: var(--ink);
}
.course-hero h1 em { font-style: italic; color: var(--gold); font-weight: 500; }
.course-subtitle {
  font-family: var(--font-modern); font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--gold); font-style: italic; margin-bottom: 28px;
  font-weight: 400;
}
.course-longdesc {
  font-family: var(--font-body); font-size: 17px; line-height: 1.7;
  color: var(--ink-soft); max-width: 620px; margin-bottom: 44px;
}
.course-meta {
  display: flex; flex-wrap: wrap; gap: 36px; color: var(--ink-soft);
}
.course-meta-item { display: flex; align-items: center; gap: 14px; }
.course-meta-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-soft); border: 1px solid var(--gold-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.course-meta-icon svg { width: 18px; height: 18px; }
.course-meta-label {
  font-family: var(--font-grotesk); font-size: 12px; color: var(--ink-mute);
  display: block; letter-spacing: 0.05em;
}
.course-meta-value {
  font-family: var(--font-body); font-size: 16px; color: var(--ink);
}

/* ---------- Floating CTA Card ---------- */
.floating-cta-wrap {
  position: relative; z-index: 5; margin-top: 30px;
}
@media (min-width: 1100px) { .floating-cta-wrap { margin-top: -80px; } }
.floating-cta {
  max-width: 360px;
  margin: 0 auto;
  background: rgba(20, 16, 26, 0.92);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
}
@media (min-width: 1100px) {
  .floating-cta { margin-left: auto; margin-right: 0; }
}
.floating-cta h3 {
  font-family: var(--font-modern); font-size: 22px; font-weight: 600;
  margin-bottom: 22px; color: var(--ink);
}
.floating-cta ul { list-style: none; padding: 0; margin: 0 0 26px 0; }
.floating-cta li {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 0; font-family: var(--font-body); font-size: 15px;
  color: var(--ink-soft);
}
.floating-cta li svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.floating-cta-note { font-family: var(--font-grotesk); font-size: 12px; color: var(--ink-mute); text-align: center; margin-top: 14px; }

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.section-charcoal { background: var(--bg-soft); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .eyebrow { display: block; margin-bottom: 16px; }
.section-header h2 {
  font-size: clamp(2.25rem, 4vw, 3.5rem); font-weight: 600; color: var(--ink);
  letter-spacing: -0.01em;
}
.section-header-flex {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
  margin-bottom: 48px; flex-wrap: wrap;
}
.section-header-flex .eyebrow { display: block; margin-bottom: 14px; }
.section-header-flex h2 {
  font-size: clamp(2.25rem, 4vw, 3.5rem); font-weight: 600; color: var(--ink);
  letter-spacing: -0.01em;
}
.section-header-meta { color: var(--ink-mute); font-family: var(--font-grotesk); font-size: 14px; }

/* ---------- Learning Cards Grid ---------- */
.learnings-grid {
  display: grid; gap: 20px; max-width: 1000px; margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.learning-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 26px; background: var(--card); border: 1px solid var(--gold-line);
  border-radius: var(--radius); transition: border-color 0.4s;
}
.learning-card:hover { border-color: rgba(201, 169, 106, 0.35); }
.learning-card-icon {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 10px;
  background: var(--gold-soft); display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.learning-card-icon svg { width: 18px; height: 18px; }
.learning-card-text { font-family: var(--font-body); font-size: 15px; line-height: 1.55; color: var(--ink-soft); }

/* ---------- Modules / Curriculum ---------- */
.curriculum { max-width: 920px; margin: 0 auto; display: flex; flex-direction: column; gap: 22px; }
.module-card {
  background: var(--card); border: 1px solid rgba(201, 169, 106, 0.08);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color 0.4s;
}
.module-card:hover { border-color: var(--gold-line); }
.module-header {
  padding: 30px 36px; border-bottom: 1px solid rgba(201, 169, 106, 0.08);
  display: flex; align-items: flex-start; justify-content: space-between; gap: 20px;
}
.module-header-text h3 {
  font-family: var(--font-modern); font-size: 24px; font-weight: 600;
  color: var(--ink); margin-bottom: 8px;
}
.module-header-text p {
  font-family: var(--font-body); font-size: 15px; color: var(--ink-mute);
  margin: 0;
}
.module-lesson-count {
  flex-shrink: 0; padding: 6px 16px; border-radius: 999px;
  background: var(--gold-soft); color: var(--gold);
  font-family: var(--font-grotesk); font-size: 13px; font-weight: 500;
  white-space: nowrap;
}
.lesson-list { padding: 4px 0; }
.lesson-row {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 36px;
  transition: background 0.2s;
  border-bottom: 1px solid rgba(201, 169, 106, 0.04);
}
.lesson-row:last-child { border-bottom: none; }
.lesson-row:hover { background: rgba(201, 169, 106, 0.04); }
.lesson-row.is-link { cursor: pointer; }
.lesson-icon {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 10px;
  background: var(--gold-glow); display: flex; align-items: center; justify-content: center;
  color: var(--ink-faint); transition: all 0.2s;
}
.lesson-row.has-preview .lesson-icon { background: var(--gold-soft); color: var(--gold); }
.lesson-row:hover .lesson-icon { background: var(--gold-soft); color: var(--gold); }
.lesson-icon svg { width: 16px; height: 16px; }
.lesson-title {
  flex: 1; font-family: var(--font-body); font-size: 15px;
  color: var(--ink-soft); transition: color 0.2s;
}
.lesson-row:hover .lesson-title { color: var(--gold); }
.lesson-row.has-preview .lesson-title { color: var(--ink); }
.preview-tag {
  margin-left: 10px; font-family: var(--font-grotesk); font-size: 11px;
  color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em;
}
.lesson-duration {
  font-family: var(--font-grotesk); font-size: 13px; color: var(--ink-mute);
  flex-shrink: 0;
}
.lesson-lock { color: var(--ink-faint); flex-shrink: 0; }
.lesson-lock svg { width: 14px; height: 14px; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(180deg, transparent 0%, var(--bg-soft) 30%, var(--bg-soft) 70%, transparent 100%);
  padding: 100px 0;
  text-align: center;
}
.cta-banner-medal {
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--gold-soft); border: 1px solid var(--gold-line);
  color: var(--gold); margin-bottom: 22px;
}
.cta-banner-medal svg { width: 26px; height: 26px; }
.cta-banner h2 {
  font-family: var(--font-modern); font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600; line-height: 1.1; color: var(--ink); margin-bottom: 8px;
}
.cta-banner h2 em { font-style: italic; color: var(--gold); }
.cta-banner p {
  font-family: var(--font-body); font-size: 17px; color: var(--ink-soft);
  max-width: 540px; margin: 16px auto 36px;
}

/* ---------- Lesson Page Layout ---------- */
.lesson-hero {
  position: relative; min-height: 56vh; display: flex; align-items: flex-end;
  overflow: hidden; padding-top: 100px;
}
.lesson-hero-bg { position: absolute; inset: 0; z-index: 0; }
.lesson-hero-bg video, .lesson-hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.5) saturate(0.8);
}
.lesson-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, rgba(8,6,10,0.6) 50%, rgba(8,6,10,0.3) 100%);
}
.lesson-hero-inner { position: relative; z-index: 2; padding: 0 0 60px; }
.lesson-meta-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-bottom: 24px; }
.lesson-modul-badge {
  padding: 6px 16px; border-radius: 999px;
  background: var(--gold-soft); border: 1px solid var(--gold-line);
  color: var(--gold); font-family: var(--font-grotesk); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.25em;
}
.lesson-duration-pill {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink-soft); font-family: var(--font-body); font-size: 14px;
}
.lesson-duration-pill svg { width: 16px; height: 16px; }
.lesson-hero h1 {
  font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 700;
  line-height: 1.05; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 18px;
  max-width: 880px;
}
.lesson-hero-sub {
  font-family: var(--font-body); font-size: 18px; color: var(--ink-soft);
  max-width: 680px; line-height: 1.6;
}

.lesson-content { padding: 80px 0; }
.lesson-grid { display: grid; gap: 56px; grid-template-columns: 1fr; }
@media (min-width: 1024px) {
  .lesson-grid { grid-template-columns: 2fr 1fr; }
}
.lesson-main > * + * { margin-top: 40px; }

.lesson-media {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gold-line);
  background: var(--card);
}
.lesson-media video, .lesson-media audio { width: 100%; display: block; }
.lesson-media-pad { padding: 24px; }

.audio-player {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; background: var(--card); border: 1px solid var(--gold-line);
  border-radius: var(--radius);
}
.audio-player-icon { color: var(--gold); flex-shrink: 0; }
.audio-player-meta { flex: 1; font-family: var(--font-grotesk); font-size: 13px; color: var(--ink-soft); }
.audio-player audio { flex: 1; max-width: 100%; height: 36px; }

.prose h2 {
  font-family: var(--font-modern); font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600; color: var(--ink); margin: 48px 0 18px; line-height: 1.2;
}
.prose h3 {
  font-family: var(--font-modern); font-size: 1.4rem; font-weight: 600;
  color: var(--ink); margin: 32px 0 12px;
}
.prose p {
  font-family: var(--font-body); font-size: 17px; line-height: 1.75;
  color: var(--ink-soft); margin: 0 0 16px;
}
.prose ul { padding-left: 0; list-style: none; margin: 16px 0; }
.prose ul li {
  padding: 8px 0 8px 32px; position: relative;
  font-family: var(--font-body); font-size: 16px; color: var(--ink-soft); line-height: 1.6;
}
.prose ul li::before {
  content: ''; position: absolute; left: 0; top: 18px;
  width: 14px; height: 1px; background: var(--gold);
}

.card-grid {
  display: grid; gap: 18px; margin: 24px 0;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.content-card {
  padding: 28px; background: rgba(20, 16, 26, 0.6);
  border: 1px solid rgba(201, 169, 106, 0.1);
  border-radius: var(--radius);
  transition: border-color 0.3s;
}
.content-card:hover { border-color: var(--gold-line); }
.content-card-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-soft); border: 1px solid var(--gold-line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 16px;
}
.content-card-icon svg { width: 20px; height: 20px; }
.content-card h3 {
  font-family: var(--font-modern); font-size: 20px; font-weight: 600;
  color: var(--ink); margin-bottom: 8px;
}
.content-card p {
  font-family: var(--font-body); font-size: 14px; color: var(--ink-mute);
  margin: 0; line-height: 1.6;
}

.alert-box {
  padding: 32px; border-radius: var(--radius);
  background: rgba(193, 74, 74, 0.05); border: 1px solid rgba(193, 74, 74, 0.2);
}
.alert-box h3 {
  font-family: var(--font-modern); font-size: 22px; font-weight: 600;
  color: var(--ink); margin-bottom: 16px;
}
.alert-box h3 em { color: var(--danger); font-style: normal; }
.alert-box ul li::before { background: var(--danger); }

blockquote.lesson-quote {
  border-left: 2px solid var(--gold);
  padding: 22px 0 22px 32px; margin: 40px 0;
}
blockquote.lesson-quote p {
  font-family: var(--font-modern); font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-style: italic; line-height: 1.45; color: var(--ink);
  margin: 0 0 12px;
}
blockquote.lesson-quote cite, blockquote.lesson-quote footer {
  font-family: var(--font-grotesk); font-size: 13px; color: var(--gold);
  font-style: normal; letter-spacing: 0.05em;
}

.lesson-nav {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 36px; margin-top: 48px;
  border-top: 1px solid var(--gold-line); gap: 16px; flex-wrap: wrap;
}
.lesson-nav-link {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--ink-soft); transition: color 0.2s;
}
.lesson-nav-link:hover { color: var(--gold); }
.lesson-nav-link svg { width: 18px; height: 18px; transition: transform 0.2s; }
.lesson-nav-link:hover svg.arrow-left { transform: translateX(-4px); }
.lesson-nav-link:hover svg.arrow-right { transform: translateX(4px); }
.lesson-nav-link-text { display: flex; flex-direction: column; gap: 2px; }
.lesson-nav-link-text small {
  font-family: var(--font-grotesk); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.2em; color: var(--ink-mute);
}
.lesson-nav-link-text span { font-family: var(--font-body); font-size: 15px; }
.lesson-nav-link.next { text-align: right; }

/* Sidebar */
.lesson-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card {
  background: var(--card); border: 1px solid var(--gold-line);
  border-radius: var(--radius); padding: 26px;
}
.sidebar-card h3 {
  font-family: var(--font-modern); font-size: 19px; font-weight: 600;
  color: var(--ink); margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.sidebar-card h3 svg { width: 18px; height: 18px; color: var(--gold); }
.sidebar-card ul { list-style: none; padding: 0; margin: 0; }
.sidebar-card li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 9px 0; font-family: var(--font-body); font-size: 14px;
  color: var(--ink-soft); line-height: 1.5;
}
.sidebar-card li svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.sidebar-card-num {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
  border: 1px solid var(--gold-line); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-grotesk); font-size: 11px; margin-top: 1px;
}
.sidebar-card.featured {
  background: linear-gradient(140deg, rgba(201, 169, 106, 0.15) 0%, rgba(201, 169, 106, 0.04) 100%);
  border-color: rgba(201, 169, 106, 0.3);
  text-align: center;
}
.sidebar-card.featured h3 { justify-content: center; }
.sidebar-card.featured p {
  font-family: var(--font-body); font-size: 14px; color: var(--ink-soft);
  margin-bottom: 18px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-soft); border-top: 1px solid var(--gold-line);
  padding: 60px 0 32px; text-align: center;
}
.footer-brand {
  font-family: var(--font-display); font-size: 24px; letter-spacing: 0.3em;
  color: var(--ink); margin-bottom: 8px;
}
.footer-brand span { color: var(--gold); }
.footer-tagline {
  font-family: var(--font-modern); font-size: 14px; font-style: italic;
  color: var(--ink-mute); letter-spacing: 0.4em; text-transform: uppercase;
  margin-bottom: 32px;
}
.footer-links {
  display: flex; gap: 28px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 24px; font-family: var(--font-grotesk); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.2em;
}
.footer-links a { color: var(--ink-mute); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-family: var(--font-grotesk); font-size: 12px; color: var(--ink-faint); }

/* ---------- Academy Index ---------- */
.academy-hero {
  position: relative; min-height: 90vh; display: flex; align-items: center;
  overflow: hidden; padding: 120px 0 80px;
}
.academy-hero-video { position: absolute; inset: 0; z-index: 0; }
.academy-hero-video video {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.4) saturate(0.85);
}
.academy-hero-video::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(8,6,10,0.6) 70%, var(--bg) 100%);
}
.academy-hero-inner { position: relative; z-index: 2; text-align: center; }
.academy-hero h1 {
  font-size: clamp(3rem, 7vw, 6rem); font-weight: 600;
  line-height: 1; letter-spacing: -0.02em;
  color: var(--ink); margin: 32px 0 24px;
}
.academy-hero h1 em { font-family: var(--font-modern); font-style: italic; color: var(--gold); }
.academy-hero-sub {
  font-family: var(--font-modern); font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-style: italic; color: var(--ink-soft); max-width: 700px; margin: 0 auto 44px;
  line-height: 1.5;
}

.courses-grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  max-width: 1200px; margin: 0 auto;
}
.course-card {
  background: var(--card); border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all 0.4s; display: flex; flex-direction: column;
}
.course-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 24px 48px rgba(0,0,0,0.4); }
.course-card-img { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.course-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.course-card:hover .course-card-img img { transform: scale(1.05); }
.course-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(8,6,10,0.6) 100%);
}
.course-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.course-card-tag {
  font-family: var(--font-grotesk); font-size: 11px; color: var(--gold);
  letter-spacing: 0.25em; text-transform: uppercase;
}
.course-card-title {
  font-family: var(--font-modern); font-size: 26px; font-weight: 600;
  color: var(--ink); line-height: 1.15;
}
.course-card-desc {
  font-family: var(--font-body); font-size: 15px; line-height: 1.6;
  color: var(--ink-soft); flex: 1;
}
.course-card-meta {
  display: flex; gap: 16px; padding-top: 14px;
  border-top: 1px solid rgba(201, 169, 106, 0.08);
  font-family: var(--font-grotesk); font-size: 12px; color: var(--ink-mute);
}
.course-card-meta span { display: flex; align-items: center; gap: 6px; }
.course-card-cta {
  display: inline-flex; align-items: center; gap: 8px; padding-top: 10px;
  color: var(--gold); font-family: var(--font-grotesk); font-size: 14px;
  transition: gap 0.2s;
}
.course-card:hover .course-card-cta { gap: 14px; }

/* ---------- Module Overview Page ---------- */
.module-overview-hero { min-height: 50vh; padding-top: 120px; padding-bottom: 70px; position: relative; }
.module-overview-hero .lesson-hero-bg { z-index: 0; }
.module-overview-hero-inner { position: relative; z-index: 2; }

.module-lesson-list {
  display: flex; flex-direction: column; gap: 12px;
  max-width: 900px; margin: 0 auto;
}
.module-lesson-list .lesson-row {
  background: var(--card); border: 1px solid rgba(201, 169, 106, 0.08);
  border-radius: var(--radius); padding: 22px 28px;
}
.module-lesson-list .lesson-row:hover { border-color: var(--gold-line); }

/* Utilities */
.text-center { text-align: center; }
.divider-or {
  display: flex; align-items: center; gap: 16px; margin: 36px 0;
  color: var(--ink-mute); font-family: var(--font-grotesk); font-size: 12px;
  letter-spacing: 0.3em; text-transform: uppercase;
}
.divider-or::before, .divider-or::after {
  content: ''; flex: 1; height: 1px; background: var(--gold-line);
}

/* Print/responsive cleanups */
@media (max-width: 720px) {
  .course-hero-inner, .lesson-hero-inner { padding-bottom: 40px; }
  .module-header { padding: 22px 24px; flex-direction: column; align-items: flex-start; }
  .lesson-row { padding: 14px 24px; }
  .section { padding: 70px 0; }
  .floating-cta { padding: 26px; }
}
