/* ========================================
   EWA MARIA MICHALSKA — DESIGN SYSTEM
   Refined organic editorial
   ======================================== */

:root {
  --cream: #f5efe6;
  --cream-deep: #ebe2d3;
  --cream-light: #faf6f0;
  --sand: #d8c5a6;
  --terracotta: #c97b5e;
  --terracotta-deep: #a85d44;
  --rust: #8a4a35;
  --moss: #6b7c5c;
  --moss-deep: #4a5640;
  --gold: #b8895a;
  --bark: #3d2f25;
  --bark-deep: #2a201a;
  --ink: #1f1814;

  --font-display: 'Marcellus', 'Cormorant Garamond', Georgia, serif;
  --font-script: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(201, 123, 94, 0.06), transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(107, 124, 92, 0.05), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

.display { font-family: var(--font-display); font-weight: 400; letter-spacing: 0; }
.script { font-family: var(--font-script); font-style: italic; font-weight: 400; }
.italic { font-style: italic; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  font-weight: 500;
}

.eyebrow.with-dashes::before, .eyebrow.with-dashes::after {
  content: '——';
  margin: 0 16px;
  color: var(--gold);
  opacity: 0.5;
}

.container { max-width: 720px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.container-wide { max-width: 1140px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.container-narrow { max-width: 620px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

/* === NAVIGATION === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 0;
  background: rgba(245, 239, 230, 0);
  backdrop-filter: blur(0); -webkit-backdrop-filter: blur(0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}

.nav.is-scrolled {
  background: rgba(245, 239, 230, 0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(168, 93, 68, 0.08);
  padding: 10px 0;
}

.nav.is-hidden { transform: translateY(-100%); }

.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.3s, text-shadow 0.3s;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.nav.is-scrolled .nav-logo {
  color: var(--bark);
  text-shadow: none;
}

.nav-logo:hover { color: var(--terracotta) !important; }
.nav-logo .accent { font-style: italic; color: var(--terracotta); }
.nav.is-scrolled .nav-logo .accent { color: var(--terracotta-deep); }

.nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}

.nav-links a, .nav-dropdown-trigger {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s, text-shadow 0.3s;
  position: relative;
  padding: 4px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.nav.is-scrolled .nav-links a,
.nav.is-scrolled .nav-dropdown-trigger {
  color: var(--bark);
  text-shadow: none;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover::after, .nav-links a.is-current::after { transform: scaleX(1); }
.nav-links a:hover, .nav-dropdown-trigger:hover { color: var(--terracotta) !important; }
.nav-links a.is-current { color: var(--terracotta) !important; }

.nav-dropdown { position: relative; }

.nav-dropdown-trigger {
  display: inline-flex; align-items: center; gap: 6px;
}

.nav-dropdown-trigger::after {
  content: '';
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.3s;
}

.nav-dropdown.is-open .nav-dropdown-trigger::after,
.nav-dropdown:hover .nav-dropdown-trigger::after {
  transform: rotate(-135deg) translateY(2px);
}

.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown.is-open .nav-dropdown-trigger { color: var(--terracotta-deep); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--cream-light);
  border: 1px solid rgba(168, 93, 68, 0.15);
  padding: 14px 0;
  min-width: 240px;
  opacity: 0; pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 40px rgba(61, 47, 37, 0.12);
  border-radius: 2px;
}

/* Niewidzialny bridge między triggerem a menu, żeby mysz nie traciła hover'a */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
  background: transparent;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--bark);
  text-decoration: none;
  letter-spacing: 0.01em;
  text-transform: none;
  font-weight: 400;
  transition: all 0.2s;
  border-left: 2px solid transparent;
}

.nav-dropdown-menu a:hover {
  background: rgba(201, 123, 94, 0.07);
  color: var(--terracotta-deep);
  border-left-color: var(--terracotta);
  padding-left: 26px;
}

.nav-dropdown-menu a::after { display: none; }

.nav-dropdown-menu a .dropdown-meta {
  display: block;
  font-size: 11px;
  color: var(--bark);
  opacity: 0.55;
  margin-top: 2px;
  letter-spacing: 0.04em;
}

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 6px;
  width: 34px; height: 34px;
  position: relative;
}

.nav-toggle span {
  position: absolute; left: 8px; right: 8px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.nav.is-scrolled .nav-toggle span {
  background: var(--bark);
  box-shadow: none;
}

.nav-toggle span:nth-child(1) { top: 11px; }
.nav-toggle span:nth-child(2) { top: 16px; }
.nav-toggle span:nth-child(3) { top: 21px; }

.nav-toggle.is-open span:nth-child(1) { top: 16px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { top: 16px; transform: rotate(-45deg); }

/* === BUTTONS === */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--terracotta-deep);
  color: var(--cream);
  padding: 20px 44px;
  font-size: 16px;
  line-height: 1;
  box-shadow: 0 4px 20px rgba(168, 93, 68, 0.15);
}

.btn-primary:hover {
  background: var(--rust);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(168, 93, 68, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--bark);
  /* Dopasowane do btn-primary (padding 20px 44px, font-size 16px) — border 1px zmniejsza padding o 1px każdą stronę */
  padding: 19px 43px;
  font-size: 16px;
  border: 1px solid var(--bark);
  line-height: 1;
}

.btn-ghost:hover {
  background: var(--bark);
  color: var(--cream);
}

.btn-on-dark {
  background: var(--terracotta);
  color: var(--bark);
  font-weight: 600;
}

.btn-on-dark:hover { background: var(--cream); }

.cta-meta {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  color: var(--bark);
  opacity: 0.6;
  letter-spacing: 0.02em;
}

.knot-divider {
  text-align: center;
  margin: 60px 0;
  color: var(--gold);
  font-size: 24px;
  letter-spacing: 1em;
  opacity: 0.5;
  user-select: none;
}

.thin-divider {
  width: 60px; height: 1px;
  background: var(--terracotta);
  margin: 32px auto;
  opacity: 0.6;
}

/* === FOOTER === */
footer.site-footer {
  background: var(--bark-deep);
  color: var(--cream);
  padding: 80px 0 40px;
  margin-top: 80px;
  position: relative;
  z-index: 5;
}

footer.site-footer .footer-grid {
  max-width: 1140px; margin: 0 auto;
  padding: 0 28px;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 60px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  color: var(--terracotta);
}

.footer-col p {
  font-size: 14px; line-height: 1.7;
  opacity: 0.85; margin-bottom: 8px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }

.footer-col a {
  font-size: 14px;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.85;
  transition: all 0.2s;
  border-bottom: 1px solid transparent;
  display: inline-block;
  padding-bottom: 1px;
}

.footer-col a:hover {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta);
  opacity: 1;
}

.footer-social { display: flex; gap: 14px; margin-top: 8px; }

.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(245, 239, 230, 0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
  padding: 0;
  border-bottom: 1px solid rgba(245, 239, 230, 0.25);
}

.footer-social a:hover {
  border-color: var(--terracotta);
  background: var(--terracotta);
}

.footer-social a:hover svg { fill: var(--bark); }
.footer-social svg { width: 16px; height: 16px; fill: var(--cream); transition: fill 0.3s; }

.footer-bottom {
  max-width: 1140px; margin: 0 auto;
  padding: 24px 28px 0;
  border-top: 1px solid rgba(245, 239, 230, 0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; opacity: 0.8;
  flex-wrap: wrap; gap: 12px;
}

.footer-bottom a {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.footer-bottom a:hover { border-bottom-color: var(--terracotta); }

.footer-bottom .signature {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 17px;
  color: var(--terracotta);
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ========================================
   PHILOSOPHY QUOTE (cytat, używany na wielu stronach)
   ======================================== */

.philosophy {
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.philosophy-quote {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 28px;
}

.philosophy-quote .mark {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 100px;
  color: var(--terracotta);
  line-height: 0;
  margin-bottom: 32px;
  margin-top: 40px;
  display: block;
  opacity: 0.45;
}

.philosophy-quote h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 42px);
  line-height: 1.35;
  color: var(--bark);
  margin-bottom: 24px;
  letter-spacing: -0.005em;
  font-weight: 400;
}

.philosophy-quote h2 em {
  font-family: var(--font-script);
  font-style: italic;
  color: var(--terracotta-deep);
}

.philosophy-quote .attribution {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 17px;
  color: var(--bark);
  opacity: 0.6;
}

@media (max-width: 720px) {
  .philosophy { padding: 80px 0; }
  .philosophy-quote .mark { font-size: 72px; }
}

/* ========================================
   COURSE PAGE COMPONENTS
   ======================================== */

/* Course hero — split with image + content */
.course-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 70px;
  position: relative;
}

.course-hero-image {
  position: relative;
  overflow: hidden;
}

.course-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.course-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  position: relative;
  z-index: 2;
}

.course-hero-content .breadcrumb {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bark);
  opacity: 0.55;
  margin-bottom: 32px;
}

.course-hero-content .breadcrumb a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.course-hero-content .breadcrumb a:hover { border-bottom-color: var(--terracotta); }

.course-hero-content .breadcrumb .sep { margin: 0 10px; opacity: 0.4; }

.course-hero-content .eyebrow { margin-bottom: 20px; }

.course-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.05;
  color: var(--bark);
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}

.course-hero-content h1 .italic {
  color: var(--terracotta-deep);
}

.course-hero-content .subtitle {
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--bark);
  opacity: 0.75;
  margin-bottom: 32px;
  line-height: 1.4;
}

.course-hero-content .description {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  opacity: 0.85;
  margin-bottom: 36px;
  max-width: 480px;
}

.course-hero-content .hero-meta {
  display: flex;
  gap: 28px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-meta-item .label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bark);
  opacity: 0.55;
}

.hero-meta-item .value {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--bark);
}

.course-hero-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.course-hero-cta .price {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--bark);
}

.course-hero-cta .price small {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 14px;
  opacity: 0.6;
  margin-left: 4px;
}

/* === SECTION HEADER === */
.section-head {
  text-align: center;
  margin-bottom: 64px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 50px);
  line-height: 1.1;
  color: var(--bark);
  margin: 14px 0 18px;
  letter-spacing: -0.01em;
}

.section-head h2 .italic {
  color: var(--terracotta-deep);
}

.section-head p {
  font-size: 17px;
  color: var(--bark);
  opacity: 0.75;
  line-height: 1.6;
}

/* === MODULES (Co dostajesz) === */
.modules-section {
  padding: 100px 0;
  background: var(--cream-deep);
}

.modules-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.module-card {
  background: var(--cream-light);
  padding: 36px 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  border: 1px solid rgba(168, 93, 68, 0.1);
  transition: all 0.3s;
  position: relative;
}

.module-card:hover {
  border-color: var(--terracotta);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(61, 47, 37, 0.06);
}

.module-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 123, 94, 0.1);
  border-radius: 50%;
  color: var(--terracotta-deep);
}

.module-icon svg {
  width: 22px;
  height: 22px;
}

.module-content h4 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--bark);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}

.module-content p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink);
  opacity: 0.8;
}

/* === EFFECT/RESULT SECTION === */
.effect-section {
  padding: 120px 0;
  position: relative;
}

.effect-grid {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.effect-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.effect-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.effect-image::before {
  content: '';
  position: absolute;
  top: 24px;
  left: -24px;
  bottom: -24px;
  right: 24px;
  border: 1px solid var(--terracotta);
  opacity: 0.4;
  z-index: -1;
}

.effect-text .eyebrow { margin-bottom: 16px; }

.effect-text h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.1;
  color: var(--bark);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.effect-text h2 .italic { color: var(--terracotta-deep); }

.effect-text p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  opacity: 0.85;
  margin-bottom: 18px;
}

.effect-text p:first-of-type {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 24px;
  opacity: 1;
  color: var(--bark);
}

/* === FOR WHOM (Dla kogo) === */
.foryou-section {
  padding: 100px 0;
  background: var(--cream-deep);
}

.foryou-grid {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.foryou-card {
  background: var(--cream-light);
  padding: 40px 36px;
  border-top: 3px solid var(--terracotta);
}

.foryou-card.is-not {
  border-top-color: var(--moss);
}

.foryou-card h4 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--bark);
  margin-bottom: 24px;
  letter-spacing: -0.005em;
}

.foryou-card ul {
  list-style: none;
}

.foryou-card li {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.88;
  margin-bottom: 14px;
  padding-left: 28px;
  position: relative;
}

.foryou-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--terracotta-deep);
  font-weight: 700;
  font-size: 15px;
}

.foryou-card.is-not li::before {
  content: '–';
  color: var(--moss);
}

/* === COURSE STEPS === */
.steps-section {
  padding: 120px 0;
  position: relative;
}

.steps-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  padding: 32px 28px;
  background: var(--cream-light);
  border-left: 3px solid var(--terracotta);
  align-items: flex-start;
  transition: all 0.3s;
}

.step-item:hover {
  border-left-width: 5px;
  background: var(--cream);
}

.step-number {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--terracotta-deep);
  line-height: 1;
  font-style: italic;
}

.step-content h4 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--bark);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}

.step-content p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  opacity: 0.85;
}

/* === COURSE TESTIMONIALS === */
.course-testimonials {
  padding: 100px 0;
  background: var(--cream-deep);
}

.course-testimonials-grid {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ct-card {
  background: var(--cream-light);
  padding: 36px 32px;
  border-bottom: 3px solid var(--terracotta);
}

.ct-stars {
  color: var(--terracotta);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.ct-card .quote {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--bark);
  margin-bottom: 20px;
}

.ct-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(168, 93, 68, 0.15);
}

.ct-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
}

.ct-info .name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--bark);
}

.ct-info .meta {
  font-size: 12px;
  color: var(--bark);
  opacity: 0.6;
}

/* === PRICING BLOCK === */
.pricing-section {
  padding: 120px 0;
  text-align: center;
  background: var(--bark);
  color: var(--cream);
  position: relative;
}

.pricing-inner {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 28px;
}

.pricing-section .eyebrow {
  color: var(--terracotta);
}
.pricing-section .eyebrow::before,
.pricing-section .eyebrow::after {
  color: var(--cream);
  opacity: 0.4;
}

.pricing-section h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.1;
  margin: 16px 0 24px;
  letter-spacing: -0.01em;
}

.pricing-section h2 .italic {
  color: var(--terracotta);
}

.pricing-card {
  background: rgba(245, 239, 230, 0.04);
  border: 1px solid rgba(245, 239, 230, 0.15);
  padding: 56px 48px;
  margin-top: 40px;
  position: relative;
}

.pricing-card .price-big {
  font-family: var(--font-display);
  font-size: 88px;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 8px;
}

.pricing-card .price-big .currency {
  font-size: 36px;
  vertical-align: top;
  margin-right: 6px;
  color: var(--terracotta);
}

.pricing-card .price-meta {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 18px;
  color: var(--cream);
  opacity: 0.75;
  margin-bottom: 32px;
}

.pricing-card .price-includes {
  text-align: left;
  max-width: 360px;
  margin: 0 auto 36px;
  list-style: none;
}

.pricing-card .price-includes li {
  padding: 8px 0 8px 32px;
  font-size: 15px;
  color: var(--cream);
  opacity: 0.92;
  position: relative;
}

.pricing-card .price-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--terracotta);
  font-weight: 700;
}

.pricing-card .btn-primary {
  background: var(--terracotta);
  color: var(--bark);
  padding: 22px 56px;
  font-size: 17px;
  font-weight: 600;
}

.pricing-card .btn-primary:hover {
  background: var(--cream);
}

.pricing-guarantee {
  margin-top: 24px;
  font-size: 13px;
  color: var(--cream);
  opacity: 0.7;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pricing-guarantee svg {
  width: 14px;
  height: 14px;
  fill: var(--terracotta);
}

/* === FAQ === */
.faq-section {
  padding: 100px 0;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

.faq-section .section-head {
  margin-bottom: 48px;
}

.faq-item {
  border-bottom: 1px solid rgba(168, 93, 68, 0.2);
}

.faq-item summary {
  padding: 24px 0;
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--bark);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 40px;
  transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--terracotta-deep);
  font-weight: 300;
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item summary:hover {
  color: var(--terracotta-deep);
}

.faq-item .faq-answer {
  padding: 0 0 24px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink);
  opacity: 0.85;
}

/* === FINAL CTA (course-specific) === */
.course-final {
  padding: 140px 0;
  text-align: center;
}

.course-final .container { max-width: 720px; }

.course-final h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.1;
  color: var(--bark);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.course-final h2 .italic {
  color: var(--terracotta-deep);
}

.course-final p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--bark);
  opacity: 0.85;
  margin-bottom: 36px;
}

/* === STICKY MOBILE CTA === */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(31, 24, 20, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201, 123, 94, 0.25);
  padding: 12px 18px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  z-index: 99;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.15);
}

.sticky-cta.is-visible { transform: translateY(0); }

.sticky-cta-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.sticky-cta-label {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.sticky-cta-price {
  font-size: 12px;
  color: var(--cream);
  opacity: 0.75;
  letter-spacing: 0.03em;
}

.sticky-cta-price strong {
  color: var(--terracotta);
  font-weight: 600;
}

.sticky-cta-btn {
  background: var(--terracotta);
  color: var(--bark);
  text-decoration: none;
  padding: 13px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 2px;
  flex-shrink: 0;
  transition: background 0.2s;
  white-space: nowrap;
}

.sticky-cta-btn:active { background: var(--cream); }

@media (max-width: 768px) {
  .sticky-cta { display: flex; }
  footer.site-footer { padding-bottom: 100px; }
}

/* === RESPONSIVE for course pages === */
@media (max-width: 980px) {
  .course-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .course-hero-image {
    aspect-ratio: 4/5;
    max-height: 70vh;
  }
  .course-hero-content { padding: 60px 36px 80px; }
  .modules-grid { grid-template-columns: 1fr; }
  .effect-grid { grid-template-columns: 1fr; gap: 56px; }
  .effect-image { max-width: 480px; margin: 0 auto; width: 100%; }
  .foryou-grid { grid-template-columns: 1fr; gap: 32px; }
  .course-testimonials-grid { grid-template-columns: 1fr; max-width: 580px; }
}

@media (max-width: 720px) {
  .course-hero-content { padding: 48px 24px 72px; }
  .modules-section, .effect-section, .foryou-section, .steps-section,
  .course-testimonials, .pricing-section, .course-final { padding: 70px 0; }
  .modules-grid { padding: 0 20px; gap: 16px; }
  .module-card { padding: 28px 24px; gap: 18px; }
  .step-item { grid-template-columns: 60px 1fr; gap: 16px; padding: 24px 20px; }
  .step-number { font-size: 28px; }
  .pricing-card { padding: 40px 28px; }
  .pricing-card .price-big { font-size: 64px; }
  .pricing-card .price-big .currency { font-size: 26px; }
  .course-hero-cta { flex-direction: column; align-items: stretch; gap: 16px; }
  .course-hero-cta .btn { width: 100%; }
  .hero-meta { gap: 20px; }
}

@media (max-width: 900px) {
  footer.site-footer .footer-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }

  .nav-links.is-mobile-open {
    display: flex;
    position: fixed;
    top: 56px; left: 0; right: 0;
    background: var(--cream-light);
    flex-direction: column;
    gap: 0; padding: 24px 0;
    border-bottom: 1px solid rgba(168, 93, 68, 0.15);
    box-shadow: 0 12px 40px rgba(61, 47, 37, 0.08);
  }

  .nav-links.is-mobile-open li { width: 100%; }

  .nav-links.is-mobile-open a,
  .nav-links.is-mobile-open .nav-dropdown-trigger {
    padding: 16px 28px;
    display: block;
    font-size: 14px;
  }

  .nav-links.is-mobile-open .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    background: rgba(201, 123, 94, 0.05);
    padding: 6px 0;
    min-width: 0;
  }

  .nav-links.is-mobile-open .nav-dropdown:not(.is-open) .nav-dropdown-menu {
    display: none;
  }
}
