:root {
  --card-h: 440px;
  --gap: 14px;
}

/* ── FILTER BAR ── */
.filter-bar {
  background: var(--orange);
  padding: 14px 48px;
  position: sticky;
  top: 69px;
  z-index: 190;
}
.filter-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-label {
  font-family: "Jost", sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aubergine);
  opacity: 0.65;
  margin-right: 4px;
  font-weight: 500;
}
.f-btn {
  padding: 10px 16px;
  border: 1px solid rgba(59, 19, 46, 0.22);
  background: transparent;
  border-radius: 2px;
  cursor: pointer;
  font-family: "Jost", sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aubergine);
  font-weight: 500;
  transition: all 0.18s;
  min-height: 38px;
}
.f-btn:hover {
  border-color: var(--aubergine);
}
.f-btn.active {
  background: var(--pink);
  border-color: var(--pink);
  color: white;
}
.f-sep {
  width: 1px;
  height: 18px;
  background: rgba(59, 19, 46, 0.18);
  margin: 0 2px;
}
.filter-count {
  margin-left: auto;
  font-family: "Jost", sans-serif;
  font-size: 10.5px;
  color: var(--aubergine);
  opacity: 0.6;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.filter-count strong {
  color: var(--aubergine);
  font-weight: 600;
  opacity: 1;
}

/* ── SECTION LABEL ── */
.section-label {
  max-width: 1240px;
  margin: 68px auto 24px;
  padding: 0 48px;
}
.section-label h2 {
  font-family: "Exquise", serif;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 400;
  color: var(--aubergine);
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.15;
  display: block;
}
.section-label h2 em {
  font-style: italic;
  color: var(--pink);
}

/* ── GRID ── */
.grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

/* ── CARD BASE ── */
.card {
  height: var(--card-h);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 52px rgba(59, 19, 46, 0.16);
}
.card.hidden {
  display: none !important;
}
.card.filler {
  display: flex !important;
}

/* ══ IMAGE CARD ══ */
.card-img .bg {
  position: absolute;
  inset: 0;
  background: var(--aubergine);
}
.card-img .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.9) contrast(0.9);
  transition:
    opacity 0.5s ease,
    transform 0.65s ease;
  color: transparent;
  font-size: 0;
}
.card-img:hover .bg img {
  opacity: 0;
  transform: scale(1.04);
}
.card-img .tint {
  position: absolute;
  inset: 0;
  background: var(--tint, rgba(59, 19, 46, 1));
  opacity: 0.55;
  transition: opacity 0.45s ease;
}
.card-img:hover .tint {
  opacity: 1;
}
.card-img .fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0) 55%
  );
  transition: opacity 0.4s ease;
}
.card-img:hover .fade {
  opacity: 0;
}
.card-img .content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 26px 28px 22px;
}
.card-img .img-top {
  display: flex;
  flex-direction: column;
}
.card-img .img-bottom {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

.card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 11px;
}

.card-img .img-title {
  font-family: "Exquise", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  color: white;
  margin-bottom: 6px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}
.card-img .img-teacher {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
.card-img .img-desc {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0);
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    color 0.38s ease 0.06s,
    margin 0.4s ease;
  margin-top: 0;
}
.card-img:hover .img-desc {
  color: rgba(255, 255, 255, 0.9);
  max-height: 180px;
  margin-top: 10px;
}
.card-img .img-foot {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 13px;
  margin-top: 6px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.card-img .foot-date {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}
.card-img .foot-date strong {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}
.card-img .foot-price {
  font-family: "Exquise", serif;
  font-size: 21px;
  color: white;
  text-align: right;
  line-height: 1;
}
.card-img .img-cta {
  display: inline-block;
  margin-top: 10px;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  color: rgba(255, 255, 255, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  padding-bottom: 2px;
  transition:
    color 0.35s ease 0.1s,
    border-color 0.35s ease 0.1s;
}
.card-img:hover .img-cta {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.45);
}
.card-img:hover .img-cta:hover {
  border-bottom-color: white;
}

/* ══ TYPOGRAPHIC CARD ══ */
.card-typo {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.3s ease,
    filter 0.3s ease;
}
.card-typo:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 52px rgba(59, 19, 46, 0.18);
}

/* colour variants */
.c-pink {
  background: var(--pink);
}
.c-aubergine {
  background: var(--aubergine);
}
.c-charcoal {
  background: var(--charcoal-plum);
}
.c-blush {
  background: var(--dusty-blush);
}
.c-plinen {
  background: var(--pinked-linen);
}
.c-linen {
  background: var(--linen);
}
.c-greige {
  background: var(--greige);
}

/* dark bg cards */
.c-pink .t-title,
.c-aubergine .t-title,
.c-charcoal .t-title {
  color: #ffffff;
}
.c-pink .t-teacher,
.c-aubergine .t-teacher,
.c-charcoal .t-teacher {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
.c-pink .t-desc,
.c-aubergine .t-desc,
.c-charcoal .t-desc {
  color: rgba(255, 255, 255, 0);
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    color 0.38s ease 0.06s,
    margin 0.4s ease;
  margin-bottom: 0;
}
.c-pink:hover .t-desc,
.c-aubergine:hover .t-desc,
.c-charcoal:hover .t-desc {
  color: rgba(255, 255, 255, 0.92);
  max-height: 170px;
  margin-bottom: 14px;
}
.c-pink .t-foot,
.c-aubergine .t-foot,
.c-charcoal .t-foot {
  border-top-color: rgba(255, 255, 255, 0.18);
}
.c-pink .t-date,
.c-aubergine .t-date,
.c-charcoal .t-date {
  color: rgba(255, 255, 255, 0.6);
}
.c-pink .t-date strong,
.c-aubergine .t-date strong,
.c-charcoal .t-date strong {
  color: #ffffff;
}
.c-pink .t-price,
.c-aubergine .t-price,
.c-charcoal .t-price {
  color: #ffffff;
}
.c-pink .t-cta,
.c-aubergine .t-cta,
.c-charcoal .t-cta {
  color: rgba(255, 255, 255, 0);
  border-bottom-color: rgba(255, 255, 255, 0);
  transition:
    color 0.35s ease 0.1s,
    border-color 0.35s ease 0.1s;
}
.c-pink:hover .t-cta,
.c-aubergine:hover .t-cta,
.c-charcoal:hover .t-cta {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.5);
}
.c-pink:hover .t-cta:hover,
.c-aubergine:hover .t-cta:hover,
.c-charcoal:hover .t-cta:hover {
  border-bottom-color: white;
}

/* light bg cards */
.c-blush .t-title,
.c-plinen .t-title,
.c-linen .t-title,
.c-greige .t-title {
  color: var(--charcoal-plum);
}
.c-blush .t-teacher,
.c-plinen .t-teacher,
.c-linen .t-teacher,
.c-greige .t-teacher {
  color: var(--charcoal-plum);
  font-weight: 500;
  opacity: 0.78;
}
.c-blush .t-desc,
.c-plinen .t-desc,
.c-linen .t-desc,
.c-greige .t-desc {
  color: rgba(75, 58, 67, 0);
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    color 0.38s ease 0.06s,
    margin 0.4s ease;
  margin-bottom: 0;
}
.c-blush:hover .t-desc,
.c-plinen:hover .t-desc,
.c-linen:hover .t-desc,
.c-greige:hover .t-desc {
  color: var(--charcoal-plum);
  max-height: 170px;
  margin-bottom: 14px;
}
.c-blush .t-foot,
.c-plinen .t-foot,
.c-linen .t-foot,
.c-greige .t-foot {
  border-top-color: rgba(75, 58, 67, 0.18);
}
.c-blush .t-date,
.c-plinen .t-date,
.c-linen .t-date,
.c-greige .t-date {
  color: var(--text-mid);
}
.c-blush .t-date strong,
.c-plinen .t-date strong,
.c-linen .t-date strong,
.c-greige .t-date strong {
  color: var(--charcoal-plum);
}
.c-blush .t-price,
.c-plinen .t-price,
.c-linen .t-price,
.c-greige .t-price {
  color: var(--charcoal-plum);
}
.c-blush .t-cta,
.c-plinen .t-cta,
.c-linen .t-cta,
.c-greige .t-cta {
  color: rgba(75, 58, 67, 0);
  border-bottom-color: rgba(75, 58, 67, 0);
  transition:
    color 0.35s ease 0.1s,
    border-color 0.35s ease 0.1s;
}
.c-blush:hover .t-cta,
.c-plinen:hover .t-cta,
.c-linen:hover .t-cta,
.c-greige:hover .t-cta {
  color: var(--charcoal-plum);
  border-bottom-color: rgba(75, 58, 67, 0.4);
}
.c-blush:hover,
.c-plinen:hover,
.c-linen:hover,
.c-greige:hover {
  filter: brightness(0.97);
}

/* card content structure */
.t-tags {
  margin-bottom: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.t-title {
  font-family: "Exquise", serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 6px;
}
.t-teacher {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0;
}
.t-desc {
  font-family: "Cormorant Garamond", serif;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.65;
  margin-top: 10px;
}
.t-foot {
  padding-top: 14px;
  border-top: 1px solid;
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.t-date {
  font-size: 11px;
  line-height: 1.4;
}
.t-date strong {
  display: block;
  font-size: 12px;
  font-weight: 500;
}
.t-price {
  font-family: "Exquise", serif;
  font-size: 21px;
  text-align: right;
  line-height: 1;
}
.t-cta {
  display: inline-block;
  margin-top: 12px;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid;
  padding-bottom: 2px;
}

/* Full card link */
.card-full-link {
  position: absolute;
  inset: 0;
  z-index: 10;
  text-decoration: none;
}

/* ══ PILL SYSTEM ══ */
.pill-studio,
.pill-live,
.pill-hybrid {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 1px;
  font-family: "Jost", sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pill-studio {
  background: var(--pinked-linen);
  color: var(--pink);
}
.pill-live {
  background: var(--pinked-linen);
  color: var(--pink);
}
.pill-hybrid {
  background: var(--pinked-linen);
  color: var(--pink);
  padding: 3px 9px;
}
.pill-hybrid .ph-l,
.pill-hybrid .ph-r {
  display: inline-block;
  padding: 0;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.13em;
  color: var(--pink);
}
.pill-hybrid .ph-l::after {
  content: " · ";
  opacity: 0.5;
}

/* pills on dark cards */
.c-pink .pill-studio,
.c-pink .pill-live,
.c-aubergine .pill-studio,
.c-aubergine .pill-live,
.c-charcoal .pill-studio,
.c-charcoal .pill-live {
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.95);
}
.c-pink .pill-hybrid,
.c-aubergine .pill-hybrid,
.c-charcoal .pill-hybrid {
  background: rgba(255, 255, 255, 0.18);
}
.c-pink .pill-hybrid .ph-l,
.c-pink .pill-hybrid .ph-r,
.c-aubergine .pill-hybrid .ph-l,
.c-aubergine .pill-hybrid .ph-r,
.c-charcoal .pill-hybrid .ph-l,
.c-charcoal .pill-hybrid .ph-r {
  color: rgba(255, 255, 255, 0.95);
}

/* pills on image cards */
.card-img .pill-studio,
.card-img .pill-live {
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.95);
}
.card-img .pill-hybrid {
  background: rgba(255, 255, 255, 0.18);
}
.card-img .pill-hybrid .ph-l,
.card-img .pill-hybrid .ph-r {
  color: rgba(255, 255, 255, 0.95);
}

/* ══ CTA CARD ══ */
.card-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 38px 32px;
}
.card-cta .cta-title {
  font-family: "Exquise", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 12px;
}
.card-cta .cta-body {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 28px;
  flex: 1;
}
.card-cta .cta-btn {
  display: inline-block;
  padding: 11px 24px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid;
  font-weight: 600;
  transition: all 0.22s;
}
.c-linen .cta-title {
  color: var(--charcoal-plum);
}
.c-linen .cta-body {
  color: var(--text-mid);
}
.c-linen .cta-btn {
  color: var(--pink);
  border-color: var(--pink);
}
.c-linen .cta-btn:hover {
  background: var(--pink);
  color: white;
  border-color: var(--pink);
}

/* ══ FLAGSHIP BANNERS ══ */
.flagship-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}
.flagship-card {
  position: relative;
  height: var(--card-h);
  border-radius: 2px;
  overflow: hidden;
  padding: 28px 30px 26px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition:
    transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.3s ease;
}
.flagship-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 52px rgba(59, 19, 46, 0.22);
}
.fc-200 {
  background: var(--pink);
}
.fc-300 {
  background: var(--aubergine);
}

.fc-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--aubergine);
}
.fc-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.85) contrast(0.9);
  color: transparent;
  font-size: 0;
}
.fc-tint {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--fc-tint-color);
  opacity: 0.65;
}
.fc-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    var(--fc-tint-color) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  opacity: 0.45;
}
.flagship-card > .fc-tags,
.flagship-card > .fc-title,
.flagship-card > .fc-teacher,
.flagship-card > .fc-desc,
.flagship-card > .fc-foot {
  position: relative;
  z-index: 2;
}
.flagship-card > .fc-watermark {
  z-index: 2;
}

.fc-watermark {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 86px;
  height: 86px;
  opacity: 0.85;
}
.fc-watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.fc-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.fc-tag {
  font-family: "Jost", sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 3px 9px;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.95);
  border-radius: 1px;
}
.fc-title {
  font-family: "Exquise", serif;
  font-size: 28px;
  font-weight: 400;
  color: white;
  line-height: 1.1;
  margin-bottom: 6px;
  padding-right: 100px;
}
.fc-teacher {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  margin-bottom: 14px;
  padding-right: 100px;
}
.fc-desc {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  flex: 1;
}
.fc-foot {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 14px;
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.fc-date {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}
.fc-date strong {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: white;
}
.fc-right {
  text-align: right;
}
.fc-price {
  font-family: "Exquise", serif;
  font-size: 26px;
  color: white;
  line-height: 1;
}
.fc-cta {
  display: inline-block;
  margin-top: 8px;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
  transition: border-color 0.25s ease;
}
.fc-cta:hover {
  border-bottom-color: white;
}

/* ══ ON DEMAND ══ */
.od-section {
  background: var(--chalk);
  margin-top: 0;
  padding: 60px 48px;
  border-top: 1px solid var(--linen);
}
.od-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.od-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.od-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  height: var(--card-h);
  cursor: pointer;
  transition:
    transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.3s ease;
}
.od-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.35);
}
.od-card .od-bg {
  position: absolute;
  inset: 0;
  background: var(--aubergine);
}
.od-card .od-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.85) contrast(0.9);
  transition: opacity 0.5s ease;
  color: transparent;
  font-size: 0;
}
.od-card:hover .od-bg img {
  opacity: 0;
}
.od-card .od-tint {
  position: absolute;
  inset: 0;
  background: var(--tint, rgba(59, 19, 46, 1));
  opacity: 0.55;
  transition: opacity 0.45s ease;
}
.od-card:hover .od-tint {
  opacity: 1;
}
.od-card .od-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0) 55%
  );
  transition: opacity 0.4s ease;
}
.od-card:hover .od-fade {
  opacity: 0;
}
.od-card .od-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 26px 28px 22px;
}
.od-tag-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 11px;
}
.od-tag {
  font-family: "Jost", sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 3px 9px;
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.95);
  border-radius: 1px;
}
.od-card-title {
  font-family: "Exquise", serif;
  font-size: 20px;
  font-weight: 400;
  color: white;
  margin-bottom: 6px;
  line-height: 1.2;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}
.od-card-teacher {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
.od-card-desc {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  color: rgba(255, 255, 255, 0);
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    color 0.38s ease 0.06s,
    margin 0.4s ease;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.6;
}
.od-card:hover .od-card-desc {
  color: rgba(255, 255, 255, 0.9);
  max-height: 140px;
  margin-top: 10px;
  margin-bottom: 14px;
}
.od-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 13px;
  margin-top: auto;
}
.od-price {
  font-family: "Exquise", serif;
  font-size: 21px;
  color: white;
  line-height: 1;
}
.od-enrol {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  padding-bottom: 2px;
  transition:
    color 0.35s ease 0.1s,
    border-color 0.35s ease 0.1s;
}
.od-card:hover .od-enrol {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.45);
}
.od-card:hover .od-enrol:hover {
  border-bottom-color: white;
}

/* ══ PINK CTA BANNER ══ */
.pink-cta {
  background: var(--pink);
  padding: 72px 48px;
  text-align: center;
}
.pink-cta h3 {
  font-family: "Exquise", serif;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 400;
  font-style: normal;
  color: white;
  margin-bottom: 14px;
  line-height: 1.15;
}
.pink-cta h3 em {
  font-style: italic;
  color: var(--orange);
}
.pink-cta p {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.pink-cta-btns {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.pcb-fill {
  display: inline-block;
  padding: 13px 30px;
  background: white;
  color: var(--pink);
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid white;
  transition: all 0.2s;
}
.pcb-fill:hover {
  background: transparent;
  color: white;
}
.pcb-ghost {
  display: inline-block;
  padding: 13px 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  color: white;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.pcb-ghost:hover {
  background: white;
  color: var(--pink);
  border-color: white;
}

/* ── EMPTY STATE ── */
#empty-state {
  display: none;
  text-align: center;
  padding: 80px 48px;
  max-width: 1240px;
  margin: 0 auto;
}
#empty-state p {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  color: var(--text-light);
}
#empty-state.show {
  display: block;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  :root {
    --card-h: 420px;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .od-grid {
    grid-template-columns: 1fr 1fr;
  }
  .fc-watermark {
    width: 64px;
    height: 64px;
    top: 14px;
    right: 16px;
  }
  .fc-title,
  .fc-teacher {
    padding-right: 80px;
  }
  .fc-title {
    font-size: 24px;
  }
}
@media (max-width: 900px) {
  .flagship-grid {
    grid-template-columns: 1fr;
  }
  .filter-bar {
    padding: 12px 24px;
  }
  .filter-inner {
    gap: 6px;
  }
  .f-sep {
    display: none;
  }
  .filter-count {
    width: 100%;
    margin-left: 0;
    padding-top: 4px;
  }
}
@media (max-width: 600px) {
  .hero,
  .filter-bar,
  .section-label,
  .grid,
  .pink-cta,
  .flagship-grid {
    padding-left: 20px;
    padding-right: 20px;
  }
  .od-section {
    padding: 48px 20px;
  }
  .pink-cta {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .od-grid {
    grid-template-columns: 1fr;
  }
  .section-label {
    margin-top: 48px;
  }
  .card,
  .od-card,
  .flagship-card {
    height: auto;
    min-height: 0;
  }
  .card-img,
  .od-card {
    min-height: 380px;
  }
  .flagship-card {
    padding: 24px 22px 22px;
  }
  .fc-watermark {
    width: 54px;
    height: 54px;
    top: 12px;
    right: 14px;
    opacity: 0.75;
  }
  .fc-title,
  .fc-teacher {
    padding-right: 64px;
  }
  .fc-title {
    font-size: 22px;
  }
  .filter-bar {
    padding: 12px 20px;
  }
  .filter-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .filter-inner::-webkit-scrollbar {
    display: none;
  }
  .filter-label {
    flex-shrink: 0;
  }
  .f-btn {
    flex-shrink: 0;
    white-space: nowrap;
  }
  .filter-count {
    display: none;
  }
}

/* ── MOBILE & TOUCH — no hover, always show content ── */
@media (max-width: 900px), (hover: none) {
  .card-typo {
    height: auto;
    min-height: var(--card-h);
  }

  .card:hover,
  .card-typo:hover,
  .od-card:hover,
  .flagship-card:hover {
    transform: none;
    box-shadow: none;
    filter: none;
  }
  .card-img:hover .bg img {
    opacity: 1;
    transform: none;
  }
  .card-img:hover .tint {
    opacity: 0.55;
  }
  .card-img:hover .fade {
    opacity: 1;
  }
  .od-card:hover .od-bg img {
    opacity: 1;
  }
  .od-card:hover .od-tint {
    opacity: 0.55;
  }
  .od-card:hover .od-fade {
    opacity: 1;
  }

  .card-img .img-desc {
    color: rgba(255, 255, 255, 0.9);
    max-height: 180px;
    margin-top: 10px;
  }
  .od-card .od-card-desc {
    color: rgba(255, 255, 255, 0.9);
    max-height: 140px;
    margin-top: 10px;
    margin-bottom: 14px;
  }
  .c-pink .t-desc,
  .c-aubergine .t-desc,
  .c-charcoal .t-desc {
    color: rgba(255, 255, 255, 0.92);
    max-height: 170px;
    margin-bottom: 14px;
  }
  .c-blush .t-desc,
  .c-plinen .t-desc,
  .c-linen .t-desc,
  .c-greige .t-desc {
    color: var(--charcoal-plum);
    max-height: 170px;
    margin-bottom: 14px;
  }

  .card-img .img-cta {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.45);
  }
  .od-card .od-enrol {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.45);
  }
  .c-pink .t-cta,
  .c-aubergine .t-cta,
  .c-charcoal .t-cta {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }
  .c-blush .t-cta,
  .c-plinen .t-cta,
  .c-linen .t-cta,
  .c-greige .t-cta {
    color: var(--charcoal-plum);
    border-bottom-color: rgba(75, 58, 67, 0.4);
  }
}

@media (prefers-reduced-motion: reduce) {
  .card,
  .card-typo,
  .od-card,
  .flagship-card {
    transition: none;
  }
}
