/* ══ ANNOUNCEMENT BAR — see snippet-announcement.html ══ */
/* ══ NAV — see snippet-nav.html ══ */
/* ══ HEADER — aubergine with faded spiral ══ */
/* .hdr {
  background: var(--light-plum);
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: stretch;
  flex-direction: row;
}
.hdr-spiral-wrap {
  position: relative;
  flex-shrink: 0;
  width: 38%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.hdr-spiral-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
  filter: sepia(80%) saturate(120%) hue-rotate(295deg) brightness(0.82);
}
.hdr-spiral-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(136, 116, 121, 0) 40%,
    var(--light-plum) 100%
  );
  z-index: 2;
  pointer-events: none;
}
.hdr-content {
  position: relative;
  z-index: 3;
  padding: 52px 60px 52px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.hdr-title {
   font-family: "Exquise", serif;
  font-weight: 400;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  color: #fff;
  margin-bottom: 16px;
}
.hdr-title em {
  font-style: italic;
  color: var(--orange);
}
.hdr-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  color: var(--aubergine);
  line-height: 1.55;
  max-width: 520px;
} */

/* ══ JUMP NAV ══ */
.page-jumpnav-wrap {
  background: var(--aubergine);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.page-jumpnav {
  display: flex;
  align-items: stretch;
  max-width: 1240px;
  margin: 0 auto;
}
.page-jumpnav a {
  font-family: "Jost", sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 13px 16px;
  flex: 1;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    color 0.2s,
    background 0.2s;
  white-space: nowrap;
}
.page-jumpnav a:last-child {
  border-right: none;
}
.page-jumpnav a:hover {
  color: var(--orange);
  background: rgba(255, 255, 255, 0.05);
}

/* ══ PAGE UTILS ══ */
.page-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 52px;
}
.section-divider {
  height: 1px;
  background: var(--greige);
  margin: 0;
}
.section-band {
  padding: 64px 0;
}
.section-band.bg-chalk {
  background: var(--chalk);
}
.section-band.bg-linen {
  background: var(--linen);
}

/* ══ SECTION HEADINGS ══ */
.section-eyebrow {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 14px;
}
.section-h2 {
  font-family: "Exquise", serif;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 8px;
}
.section-h2 em {
  font-style: italic;
  color: var(--pink);
}
.section-intro {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  line-height: 1.8;
  color: var(--charcoal-plum);
  margin-bottom: 36px;
}
.section-pink-rule {
  display: none;
}

/* ══ ACCORDION ══ */
.accordion {
  border-top: 1px solid var(--greige);
  margin-top: 8px;
}
.acc-item {
  border-bottom: 1px solid var(--greige);
}
.acc-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.acc-trigger-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--aubergine);
  letter-spacing: 0.01em;
  line-height: 1.35;
}
.acc-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.acc-icon svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: white;
  stroke-width: 2;
  transition: transform 0.25s;
}
.acc-item.open .acc-icon {
  background: var(--aubergine);
}
.acc-item.open .acc-icon svg {
  transform: rotate(45deg);
}
.acc-body p {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  line-height: 1.9;
  color: var(--charcoal-plum);
  margin-bottom: 10px;
}
.acc-body p:last-child {
  margin-bottom: 0;
}
.acc-body ul {
  padding-left: 20px;
  margin-bottom: 12px;
}
.acc-body ul li {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  line-height: 1.85;
  color: var(--charcoal-plum);
  margin-bottom: 6px;
}
.acc-body a {
  color: var(--pink);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 0, 98, 0.25);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.acc-body a:hover {
  border-color: var(--pink);
}
.acc-body strong {
  font-weight: 600;
  color: var(--text-dark);
}
.acc-body h4 {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aubergine);
  font-weight: 600;
  margin: 18px 0 8px;
}
.acc-body h4:first-child {
  margin-top: 0;
}

.acc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.acc-item.open .acc-body {
  grid-template-rows: 1fr;
}

.acc-body > * {
  overflow: hidden;
}
/* ══ CTA BAND ══ */
.cta-band {
  background: var(--pink);
  padding: 72px 0;
  text-align: center;
}
.cta-h2 {
  font-family: "Exquise", serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.15;
}
.cta-h2 em {
  font-style: italic;
  color: var(--orange);
}
.cta-sub {
  font-family: "Jost", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #fff;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 28px;
}
.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-white {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 13px 32px;
  background: #fff;
  color: var(--pink);
  text-decoration: none;
  transition: all 0.2s;
}
.btn-white:hover {
  background: var(--chalk);
}
.btn-ghost-w {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 13px 32px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.2s;
}
.btn-ghost-w:hover {
  border-color: #fff;
}

/* ══ RESPONSIVE ══ */

@media (max-width: 900px) {
  .page-wrap {
    padding: 0 32px;
  }
  .page-jumpnav {
    flex-wrap: wrap;
  }
  .page-jumpnav a {
    flex: 0 0 50%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .page-jumpnav a:nth-child(2n) {
    border-right: none;
  }
  .section-band {
    padding: 48px 0;
  }
}
@media (max-width: 600px) {
  footer {
    padding: 48px 20px 28px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 36px;
  }
  .footer-brand,
  .footer-courses-col {
    grid-column: span 1;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-wrap {
    padding: 0 22px;
  }
  .page-jumpnav a {
    flex: 0 0 100%;
    border-right: none;
    font-size: 10px;
    padding: 14px 12px;
  }
  .acc-trigger {
    padding: 18px 0;
  }
  .acc-trigger-title {
    font-size: 17px;
  }
  .cta-band {
    padding: 56px 0;
  }
}
