/* ===========================================================
 * Booking & cart sidebar styles — Karina Sheva Academy
 * =========================================================== */

/* Blog post: enforce square author-picture (Karina's image is portrait so we crop) */
.author-picture {
  width: 7rem !important;
  height: 7rem !important;
  object-fit: cover;
  object-position: center 30%;
}

/* Blog post body: editorial spacing for Karina articles */
.section-blog-post-content h3 {
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.section-blog-post-content h3:first-child {
  margin-top: 1rem;
}
.section-blog-post-content p {
  margin: 0 0 1.5rem;
  line-height: 1.75;
}
.section-blog-post-content p:last-child {
  margin-bottom: 0;
}
.section-blog-post-content figure {
  margin: 2.5rem 0 3rem;
}
.section-blog-post-content figure img {
  display: block;
  width: 100%;
  height: auto;
}

/* Hide Webflow's broken commerce-cart modal — we use our own sidebar */
.w-commerce-commercecartcontainerwrapper,
.cart-wrapper,
.w-commerce-commercecartwrapper > .cart-wrapper {
  display: none !important;
}

/* Cart icon in navbar: hide "Cart" text, show only icon + quantity badge */
.cart-button .cart-text {
  display: none !important;
}
.cart-button {
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  position: relative;
}
.cart-button .cart-icon {
  width: 22px !important;
  height: 22px !important;
}
.cart-button .cart-quantity {
  font-family: 'Satoshi', Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  background: #000;
  color: #fff;
  min-width: 1.1rem;
  height: 1.1rem;
  border-radius: 1rem;
  padding: 0 0.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
body:not(.ks-cart-has-items) .cart-button .cart-quantity {
  background: rgba(0,0,0,0.15);
  color: #000;
}

/* ---------- Cart sidebar ---------- */
.ks-cart {
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none; visibility: hidden;
  transition: visibility 0s linear 0.4s;
}
.ks-cart.is-open { pointer-events: auto; visibility: visible; transition-delay: 0s; }

.ks-cart-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45); opacity: 0;
  transition: opacity 0.4s ease;
}
.ks-cart.is-open .ks-cart-overlay { opacity: 1; }

.ks-cart-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 100%; max-width: 38rem;
  background: #FCF7F6;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.45, 0, 0.15, 1);
  font-family: 'Satoshi', Arial, sans-serif;
  color: #000;
}
.ks-cart.is-open .ks-cart-panel { transform: translateX(0); }

.ks-cart-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 3rem 2.75rem 2rem;
  gap: 1.5rem;
}
.ks-cart-eyebrow {
  display: block; font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase;
  opacity: 0.5; margin-bottom: 0.85rem;
}
.ks-cart-title {
  font-family: 'Beautique Display', Georgia, serif;
  font-weight: 400; font-size: 2.1rem; line-height: 1; margin: 0;
  letter-spacing: -0.01em;
}
.ks-cart-title em { font-style: italic; font-weight: 400; }
.ks-cart-close {
  background: none; border: none; cursor: pointer;
  width: 2.25rem; height: 2.25rem; flex-shrink: 0;
  font-size: 1.6rem; line-height: 1; color: #000; opacity: 0.4;
  transition: opacity 0.2s;
  display: inline-flex; align-items: center; justify-content: center;
}
.ks-cart-close:hover { opacity: 1; }

.ks-cart-items {
  flex: 1 1 auto; overflow-y: auto;
  padding: 0 2.75rem;
  border-top: 1px solid rgba(0,0,0,0.18);
}
.ks-cart-empty {
  text-align: center; padding: 5rem 1rem;
}
.ks-cart-empty p { margin: 0 0 0.4rem; font-weight: 300; }
.ks-cart-empty p.ks-empty-sub { opacity: 0.5; font-size: 0.88rem; }

.ks-cart-item {
  padding: 2rem 0 1.65rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.ks-cart-item:last-child { border-bottom: none; }
.ks-item-top {
  display: grid; grid-template-columns: 2rem 1fr auto;
  gap: 1rem; align-items: baseline;
  margin-bottom: 0.6rem;
}
.ks-item-num {
  font-family: 'Beautique Display', Georgia, serif; font-style: italic;
  font-size: 1rem; opacity: 0.4;
}
.ks-item-name {
  font-family: 'Beautique Display', Georgia, serif; font-weight: 400;
  font-size: 1.25rem; margin: 0; line-height: 1.15;
}
.ks-item-price {
  font-family: 'Beautique Display', Georgia, serif; font-style: italic;
  font-size: 1.2rem;
  white-space: nowrap;
}
.ks-item-body {
  display: flex; flex-direction: column; gap: 0.35rem;
  padding-left: 3rem;
  margin-bottom: 0.85rem;
}
.ks-item-meta {
  font-size: 0.72rem; letter-spacing: 0.06em; opacity: 0.55;
  text-transform: uppercase;
}
.ks-item-date {
  font-family: 'Beautique Display', Georgia, serif; font-style: italic;
  font-size: 1rem; opacity: 0.82;
  line-height: 1.4;
}
.ks-item-remove {
  background: none; border: none; cursor: pointer;
  margin-left: 3rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Satoshi', Arial, sans-serif;
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: #000; opacity: 0.4;
  padding: 0; transition: opacity 0.25s;
}
.ks-item-remove:hover { opacity: 1; }
.ks-remove-x {
  width: 9px; height: 9px; position: relative; display: inline-block;
}
.ks-remove-x::before, .ks-remove-x::after {
  content: ''; position: absolute; left: 0; right: 0; top: 50%;
  height: 1px; background: currentColor;
}
.ks-remove-x::before { transform: translateY(-0.5px) rotate(45deg); }
.ks-remove-x::after { transform: translateY(-0.5px) rotate(-45deg); }

.ks-cart-footer {
  padding: 2rem 2.75rem 2.25rem;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.18);
}
.ks-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.55rem 0; font-size: 0.92rem;
}
.ks-row-emph {
  font-family: 'Beautique Display', Georgia, serif; font-size: 1.15rem;
  border-top: 1px solid rgba(0,0,0,0.18); border-bottom: 1px solid rgba(0,0,0,0.18);
  margin: 0.5rem 0; padding: 0.95rem 0;
}
.ks-row-rest { font-size: 0.82rem; opacity: 0.5; }
.ks-row-val { font-family: 'Beautique Display', Georgia, serif; font-style: italic; }
.ks-row-emph .ks-row-val { font-size: 1.5rem; font-style: italic; }

.ks-checkout-btn {
  display: flex; justify-content: center; align-items: center; gap: 0.75rem;
  text-align: center;
  background: #000; color: #fff !important;
  padding: 1.25rem 1.5rem; margin-top: 1.5rem;
  font-family: 'Beautique Display', Georgia, serif; font-style: italic;
  font-size: 1.2rem;
  text-decoration: none;
  transition: background 0.25s;
}
.ks-checkout-btn:hover { background: #1a1a1a; }
body:not(.ks-cart-has-items) .ks-checkout-btn {
  pointer-events: none; opacity: 0.35;
}

.ks-cart-note {
  font-size: 0.72rem; line-height: 1.55; margin: 1.1rem 0 0;
  opacity: 0.5; text-align: center; max-width: 26rem;
  margin-left: auto; margin-right: auto;
}

@media (max-width: 600px) {
  .ks-cart-panel { max-width: 100%; }
  .ks-cart-header, .ks-cart-items, .ks-cart-footer { padding-left: 1.5rem; padding-right: 1.5rem; }
  .ks-cart-header { padding-top: 2rem; }
  .ks-item-body, .ks-item-remove { padding-left: 0; margin-left: 0; }
  .ks-item-top { grid-template-columns: 1.5rem 1fr auto; }
}

/* ---------- Course-page booking section ---------- */
.section-booking {
  padding: 7rem 0;
  background: var(--pink, #E1BDB5);
}
.booking-block { max-width: 50rem; margin: 0 auto; text-align: center; }
.booking-eyebrow {
  display: block; font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0.6; margin-bottom: 1.5rem;
}
.booking-title {
  font-family: 'Beautique Display', Georgia, serif; font-weight: 500;
  font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1; margin: 0 0 1.5rem;
}
.booking-title em { font-style: italic; font-weight: 400; }
.booking-tag {
  font-size: 1.05rem; line-height: 1.7; font-weight: 300;
  margin: 0 auto 2.5rem; max-width: 36rem;
}

.book-btn {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: #000; color: #fff;
  border: none; cursor: pointer;
  font-family: 'Beautique Display', Georgia, serif; font-style: italic;
  font-size: 1.4rem; padding: 1rem 2.5rem;
  transition: background 0.3s, padding 0.3s;
}
.book-btn:hover { background: #1a1a1a; padding-right: 3rem; }
.book-btn .arrow { transition: transform 0.3s; }
.book-btn.is-active .arrow { transform: rotate(90deg); }

.date-picker {
  margin-top: 2.5rem;
  max-height: 0; overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease, margin-top 0.4s ease;
}
[data-ks-booking].is-open .date-picker {
  max-height: 80rem; opacity: 1;
}
.date-picker-title {
  display: block; font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0.6; margin-bottom: 1.25rem;
}

.date-list {
  list-style: none; padding: 0; margin: 0 auto 2rem;
  max-width: 38rem;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.date-option {
  display: grid; grid-template-columns: 1fr auto 2rem;
  align-items: center; gap: 1.5rem;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(0,0,0,0.15);
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, padding 0.25s;
  text-align: left;
  width: 100%;
  font-family: 'Satoshi', Arial, sans-serif;
  color: #000;
}
.date-option:hover { background: #fff; border-color: #000; }
.date-option.is-selected {
  background: #000; color: #fff; border-color: #000;
}
.date-option-when {
  font-family: 'Beautique Display', Georgia, serif; font-style: italic; font-size: 1.2rem;
}
.date-option-detail { font-size: 0.85rem; opacity: 0.7; }
.date-option-mark {
  font-family: 'Beautique Display', Georgia, serif; font-size: 1.4rem;
  opacity: 0; transition: opacity 0.3s;
}
.date-option.is-selected .date-option-mark { opacity: 1; }
.date-option.is-selected .date-option-detail { opacity: 0.85; }

.book-confirm {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: #000; color: #fff;
  border: none; cursor: pointer;
  font-family: 'Beautique Display', Georgia, serif; font-style: italic;
  font-size: 1.3rem; padding: 1rem 2.25rem;
  transition: opacity 0.3s, background 0.25s;
}
.book-confirm:disabled { opacity: 0.35; cursor: not-allowed; }
.book-confirm:not(:disabled):hover { background: #1a1a1a; }
.book-confirm-note {
  display: block; margin-top: 1rem; font-size: 0.75rem; opacity: 0.6;
}

/* Privé training: no fixed dates → "vraag info aan" */
.booking-prive {
  text-align: center;
}
.booking-prive p { margin: 0 0 1.5rem; line-height: 1.7; }
.booking-prive .book-btn { background: #000; }

/* ---------- Checkout hero (compact functional) ---------- */
.checkout-hero {
  padding: 4.5rem 0 3rem;
  background: var(--primary-color, #FCF7F6);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.checkout-hero-eyebrow {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 2.5rem; font-family: 'Satoshi', Arial, sans-serif;
}
.checkout-hero-eyebrow .rule { flex: 0 0 4rem; height: 1px; background: #000; }
.checkout-hero-eyebrow .num { font-family: 'Beautique Display', Georgia, serif; font-style: italic; font-size: 1rem; }
.checkout-hero-eyebrow .breadcrumb { opacity: 0.6; }
.checkout-hero-eyebrow .breadcrumb a { color: inherit; opacity: 1; border-bottom: 1px solid currentColor; text-decoration: none; }
.checkout-hero-grid {
  display: grid; grid-template-columns: 6fr 6fr;
  gap: 4rem; align-items: end;
}
.checkout-hero-title {
  font-family: 'Beautique Display', Georgia, serif; font-weight: 500;
  font-size: clamp(2.75rem, 6vw, 5rem); line-height: 1;
  margin: 0; color: #000; letter-spacing: -0.01em;
}
.checkout-hero-title em { font-style: italic; font-weight: 400; }
.checkout-hero-tag {
  font-family: 'Satoshi', Arial, sans-serif;
  font-size: 1.05rem; line-height: 1.7; font-weight: 300;
  margin: 0; color: #000; max-width: 30rem;
}
@media (max-width: 991px) {
  .checkout-hero { padding: 3rem 0 2rem; }
  .checkout-hero-grid { grid-template-columns: 1fr; gap: 1.5rem; align-items: start; }
}

/* ---------- Course hero v2 (clean 2-col + meta bar) ---------- */
.course-hero-v2 {
  padding: 5rem 0 4rem;
  background: var(--primary-color, #FCF7F6);
}
.course-hero-eyebrow {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 3rem; font-family: 'Satoshi', Arial, sans-serif;
}
.course-hero-eyebrow .rule { flex: 0 0 4rem; height: 1px; background: #000; }
.course-hero-eyebrow .num { font-family: 'Beautique Display', Georgia, serif; font-style: italic; font-size: 1rem; }
.course-hero-eyebrow .breadcrumb { opacity: 0.6; }
.course-hero-eyebrow .breadcrumb a { color: inherit; opacity: 1; border-bottom: 1px solid currentColor; text-decoration: none; }

.course-hero-v2-grid {
  display: grid; grid-template-columns: 7fr 5fr;
  gap: 5rem; align-items: center;
  margin-bottom: 4rem;
}
.course-hero-v2-text { font-family: 'Satoshi', Arial, sans-serif; }
.course-hero-v2-title {
  font-family: 'Beautique Display', Georgia, serif; font-weight: 500;
  font-size: clamp(3.5rem, 9vw, 7rem); line-height: 0.95;
  margin: 0 0 1.5rem; letter-spacing: -0.01em; color: #000;
}
.course-hero-v2-title em { font-style: italic; font-weight: 400; }
.course-hero-v2-tag {
  font-size: 1.1rem; line-height: 1.7; font-weight: 300;
  max-width: 32rem; margin: 0 0 2.5rem; color: #000;
}
.course-hero-v2-actions {
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.course-hero-cta {
  display: inline-flex; align-items: center; gap: 0.85rem;
  background: #000; color: #fff;
  padding: 1.1rem 2.25rem;
  font-family: 'Beautique Display', Georgia, serif; font-style: italic;
  font-size: 1.2rem;
  text-decoration: none;
  transition: background 0.3s, padding 0.3s;
}
.course-hero-cta:hover { background: #1a1a1a; padding-right: 2.75rem; }
.course-hero-cta .cta-arrow { font-style: normal; transition: transform 0.3s; }
.course-hero-cta:hover .cta-arrow { transform: translateX(0.25rem); }

.course-hero-link {
  font-family: 'Beautique Display', Georgia, serif; font-style: italic;
  font-size: 1.1rem; color: #000;
  border-bottom: 1px solid #000; padding-bottom: 0.25rem;
  text-decoration: none;
  transition: opacity 0.3s;
}
.course-hero-link:hover { opacity: 0.6; }

.course-hero-v2-image {
  position: relative;
}
.course-hero-v2-image img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; display: block;
}

.course-hero-meta {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem; padding: 2.25rem 0;
  border-top: 1px solid #000; border-bottom: 1px solid #000;
  font-family: 'Satoshi', Arial, sans-serif;
}
.course-hero-meta > div { display: flex; flex-direction: column; gap: 0.5rem; }
.course-hero-meta .cm-label {
  font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.6;
}
.course-hero-meta .cm-value {
  font-family: 'Beautique Display', Georgia, serif; font-style: italic;
  font-size: 1.6rem; line-height: 1.05; color: #000;
}
.course-hero-meta .cm-sub {
  display: block; font-style: normal; font-family: 'Satoshi', Arial, sans-serif;
  font-size: 0.7rem; letter-spacing: 0.04em;
  opacity: 0.55; margin-top: 0.3rem;
}
@media (max-width: 991px) {
  .course-hero-v2 { padding: 3rem 0 2.5rem; }
  .course-hero-v2-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .course-hero-meta { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; padding: 1.75rem 0; }
}
@media (max-width: 600px) {
  .course-hero-meta { grid-template-columns: 1fr 1fr; }
  .course-hero-v2-actions { gap: 1.25rem; }
}

/* ---------- FAQ — refined editorial accordion ---------- */
.section-faq {
  padding: 6rem 0;
  background: var(--primary-color);
}
.section-faq .faq-wrap {
  max-width: 56rem; margin: 0 auto;
}
.section-faq .faq-eyebrow {
  display: block;
  font-family: 'Satoshi', Arial, sans-serif;
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0.55;
  text-align: center;
  margin-bottom: 1.25rem;
}
.section-faq .faq-heading {
  font-family: 'Beautique Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  text-align: center;
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
  color: #000;
}
.section-faq .faq-heading em { font-style: italic; }
.section-faq .faq-tag {
  font-family: 'Satoshi', Arial, sans-serif;
  text-align: center;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  opacity: 0.65;
  max-width: 30rem;
  margin: 0 auto 4rem;
  color: #000;
}
.section-faq .faq-list {
  border-top: 1px solid rgba(0,0,0,0.18);
}
.section-faq .faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.18);
}
.section-faq .faq-question {
  width: 100%;
  background: transparent; border: none; cursor: pointer;
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.65rem 0.5rem 1.65rem 0.5rem;
  text-align: left;
  font-family: inherit; color: #000;
  transition: padding 0.35s ease;
}
.section-faq .faq-question:hover { padding-left: 1.25rem; padding-right: 1rem; }
.section-faq .faq-question:focus-visible { outline: 1px solid #000; outline-offset: 4px; }
.section-faq .faq-num {
  font-family: 'Beautique Display', Georgia, serif;
  font-style: italic; font-weight: 400;
  font-size: 1.1rem;
  opacity: 0.4;
  transition: opacity 0.35s;
}
.section-faq .faq-item.is-open .faq-num,
.section-faq .faq-question:hover .faq-num { opacity: 1; }
.section-faq .faq-text {
  font-family: 'Beautique Display', Georgia, serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.3;
  color: #000;
}
.section-faq .faq-icon {
  width: 14px; height: 14px;
  position: relative; flex-shrink: 0;
  margin-right: 0.5rem;
  display: inline-block;
}
.section-faq .faq-icon::before,
.section-faq .faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.section-faq .faq-icon::before {
  left: 0; right: 0; top: 50%;
  height: 1px;
  transform: translateY(-0.5px);
}
.section-faq .faq-icon::after {
  top: 0; bottom: 0; left: 50%;
  width: 1px;
  transform: translateX(-0.5px);
}
.section-faq .faq-item.is-open .faq-icon::after {
  transform: translateX(-0.5px) rotate(90deg);
}
.section-faq .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.section-faq .faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}
.section-faq .faq-answer-inner {
  overflow: hidden;
  min-height: 0;
}
.section-faq .faq-answer p {
  font-family: 'Satoshi', Arial, sans-serif;
  font-size: 0.98rem;
  line-height: 1.75;
  font-weight: 300;
  margin: 0 0 1.85rem;
  padding-left: 4.5rem;
  padding-right: 2rem;
  max-width: 46rem;
  opacity: 0.78;
  color: #000;
}
@media (max-width: 700px) {
  .section-faq .faq-question { grid-template-columns: 2.25rem 1fr 1.5rem; gap: 1rem; padding: 1.35rem 0.5rem; }
  .section-faq .faq-text { font-size: 1.1rem; line-height: 1.35; }
  .section-faq .faq-answer p { padding-left: 3.25rem; padding-right: 0; font-size: 0.92rem; }
}

/* ---------- Course detail page chrome ---------- */
.course-page { font-family: 'Satoshi', Arial, sans-serif; }

.course-hero {
  padding: 6rem 0 4rem;
  background: var(--primary-color, #FCF7F6);
}
.course-hero-eyebrow {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.course-hero-eyebrow .rule { flex: 0 0 4rem; height: 1px; background: #000; }
.course-hero-eyebrow .num { font-family: 'Beautique Display', Georgia, serif; font-style: italic; font-size: 1rem; }
.course-hero-eyebrow .breadcrumb { opacity: 0.55; }
.course-hero-eyebrow .breadcrumb a { color: inherit; opacity: 1; border-bottom: 1px solid currentColor; }

.course-hero-grid {
  display: grid; grid-template-columns: 7fr 5fr;
  gap: 5rem; align-items: end;
}
.course-hero-text h1 {
  font-family: 'Beautique Display', Georgia, serif; font-weight: 500;
  font-size: clamp(3.5rem, 9vw, 7rem); line-height: 0.95;
  margin: 0 0 1.5rem; letter-spacing: -0.01em;
}
.course-hero-text h1 em { font-style: italic; font-weight: 400; }
.course-hero-text > p {
  font-size: 1.1rem; line-height: 1.7; font-weight: 300;
  max-width: 32rem; margin: 0;
}
.course-hero-image img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block;
}

.course-meta-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  padding: 2rem 0; border-top: 1px solid #000; border-bottom: 1px solid #000;
  margin-top: 4rem;
}
.course-meta-bar > div {
  display: flex; flex-direction: column; gap: 0.4rem;
}
.course-meta-bar .label {
  font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.55;
}
.course-meta-bar .value {
  font-family: 'Beautique Display', Georgia, serif; font-style: italic; font-size: 1.6rem;
  line-height: 1;
}

/* ---------- Course content sections ---------- */
.course-section { padding: 6rem 0; }
.course-section.dark { background: #000; color: #fff; }
.course-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem;
  align-items: start;
}
.course-section-eyebrow {
  display: block; font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0.6; margin-bottom: 1rem;
}
.course-section-title {
  font-family: 'Beautique Display', Georgia, serif; font-weight: 500;
  font-size: clamp(2.25rem, 5vw, 3.5rem); line-height: 1; margin: 0;
}
.course-section-title em { font-style: italic; font-weight: 400; }
.course-section-text > p, .course-section-text > ul li {
  font-size: 1.05rem; line-height: 1.75; font-weight: 300; margin: 0 0 1.25rem;
  max-width: 36rem;
}

.course-list {
  list-style: none; padding: 0; margin: 0;
}
.course-list li {
  padding: 1.1rem 0 1.1rem 2.25rem; border-top: 1px solid rgba(0,0,0,0.1);
  position: relative; font-size: 1rem; line-height: 1.55; font-weight: 300;
}
.course-list li:last-child { border-bottom: 1px solid rgba(0,0,0,0.1); }
.course-section.dark .course-list li { border-color: rgba(255,255,255,0.18); }
.course-section.dark .course-list li:last-child { border-bottom-color: rgba(255,255,255,0.18); }
.course-list li::before {
  content: counter(li-counter, decimal-leading-zero) '.';
  position: absolute; left: 0; top: 1.1rem;
  counter-increment: li-counter;
  font-family: 'Beautique Display', Georgia, serif; font-style: italic; opacity: 0.5;
  font-size: 1rem;
}
.course-list { counter-reset: li-counter; }

/* ---------- Practical info ---------- */
.practical-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.practical-card {
  padding: 2.25rem 0 0; border-top: 1px solid #000;
}
.practical-card .pc-num {
  font-family: 'Beautique Display', Georgia, serif; font-style: italic;
  font-size: 1.3rem; opacity: 0.5; display: block; margin-bottom: 0.75rem;
}
.practical-card h4 {
  font-family: 'Beautique Display', Georgia, serif; font-weight: 500;
  font-size: 1.4rem; margin: 0 0 0.75rem;
}
.practical-card p {
  font-size: 0.95rem; line-height: 1.7; opacity: 0.75; font-weight: 300; margin: 0;
}

/* ---------- Other courses footer ---------- */
.other-courses-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.other-course-card {
  padding: 2rem 1.5rem; border: 1px solid rgba(0,0,0,0.15);
  text-decoration: none; color: #000;
  transition: background 0.3s, border-color 0.3s;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.other-course-card:hover { background: var(--pink, #E1BDB5); border-color: #000; }
.other-course-card .num {
  font-family: 'Beautique Display', Georgia, serif; font-style: italic; font-size: 1.2rem; opacity: 0.5;
}
.other-course-card .name {
  font-family: 'Beautique Display', Georgia, serif; font-weight: 500; font-size: 1.4rem;
}
.other-course-card .meta {
  font-size: 0.85rem; opacity: 0.6; margin-top: auto;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .course-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .course-meta-bar { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .course-grid { grid-template-columns: 1fr; gap: 2rem; }
  .practical-grid { grid-template-columns: 1fr; }
  .other-courses-grid { grid-template-columns: 1fr; }
  .section-booking { padding: 5rem 0; }
}
