.eu-btn,
.gform_button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  min-height: 50px;
  padding: 16px 28px;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
  border-style: solid;
  border-width: 1px;
}

.eu-btn-primary,
#gform_submit_button_2 {
  background: var(--theme-palette-color-1);
  color: var(--theme-palette-color-8);
  border-color: var(--theme-palette-color-1);
}

.eu-btn-primary:hover {
  background: var(--theme-palette-color-2);
  border-color: var(--theme-palette-color-2);
  color: var(--theme-palette-color-8);
}

.eu-btn-secondary,
#gform_submit_button_1,
.subscribe-form-wrap.events-subscribe-form #gform_submit_button_2 {
  background: #FBD80B;
  color: var(--theme-palette-color-1);
  /* border-color: var(--theme-palette-color-1); */
}

.eu-btn-secondary:hover {
  background: var(--theme-palette-color-1);
  color: var(--theme-palette-color-8);
}

#gform_submit_button_2,
#gform_submit_button_1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 400;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.eu-btn-outline {
  background: transparent;
  color: var(--theme-palette-color-1);
  border-color: var(--theme-palette-color-1);
}

.eu-btn-outline:hover {
  background: var(--theme-palette-color-1);
  color: var(--theme-palette-color-8);
}

.program-hero {
  background: var(--theme-palette-color-8);
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 60px 5%;
}

@media (min-width: 1024px) {
  .program-hero {
    padding: 60px 0;
  }
}

.program-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}

@media (min-width: 768px) {
  .program-hero__inner {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .program-hero__col--content {
    flex: 0 0 55%;
    max-width: 55%;
  }

  .program-hero__col--media {
    flex: 0 0 45%;
    max-width: 45%;
  }
}

.program-hero__label {
  display: block;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #181D27;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(213, 215, 218, 0.44);
}

.program-hero__title {
  font-size: 80px;
  line-height: 90px;
  font-weight: 400;
  color: var(--theme-palette-color-1);
}

.program-hero__desc {
  font-size: 18px;
  line-height: 1.6;
  color: var(--theme-palette-color-3);
  margin-bottom: 40px;
  max-width: 480px;
}

.program-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.program-listing {
  background: var(--theme-palette-color-7);
  padding: 60px 5%;
}

@media (min-width: 1024px) {
  .program-listing {
    padding: 80px 0;
  }
}

.program-listing__intro {
  margin-bottom: 60px;
}

.program-listing__intro h2 {
  font-size: clamp(32px, 5vw, 80px);
  line-height: 92%;
  color: var(--theme-palette-color-3);
  letter-spacing: 0%;
  font-weight: 400;
}

.program-listing__intro h2 strong {
  font-weight: 700;
}

.program-listing__empty {
  text-align: center;
  color: var(--theme-palette-color-3);
  padding: 60px 0;
}

.program-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  padding: 60px 0;
  border-bottom: 1px solid var(--theme-palette-color-5);
}

.program-card:first-of-type {
  padding-top: 0;
}

.program-card:last-of-type {
  border-bottom: none;
}

@media (min-width: 768px) {
  .program-card {
    flex-direction: row;
    align-items: stretch;
    gap: 60px;
    padding: 60px 0 !important;
    border-bottom: 1px solid var(--theme-palette-color-5) !important;
  }
}

.program-card .program-card__content-col {
  display: flex;
}

.program-card__image-col {
  width: 100%;
}

@media (min-width: 768px) {
  .program-card__image-col {
    width: 425.427734375;
    height: 464;
    max-width: 40%;
  }
}

.program-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.program-card__image-placeholder {
  background: var(--theme-palette-color-1);
  width: 100%;
  aspect-ratio: 4/3;
  display: block;
}

.program-card__count {
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0%;
  color: #717680;
  margin-right: 23px;
}

.program-card__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
}

@media (min-width: 768px) {
  .program-card__content {
    max-width: 485px;
  }
}

.program-card__title {
  font-weight: 400;
  font-size: 46px;
  line-height: 105%;
  letter-spacing: 0%;
  color: #181D27;
}

.program-card__heading {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
}

.program-card__description {
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
  color: #535862;
  margin-bottom: 30px;
}

.program-card__description p {
  margin: 0 0 30px;
}

.program-card__description p:last-child {
  margin-bottom: 0;
}

.program-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/*# sourceMappingURL=main.css.map */

/* ================================================================
   === Single Program ===
   ================================================================ */

/* ---- Container ---- */
.sp-container,
.what-inner,
.stories-inner {
  max-width: 1440px;
  width: var(--theme-container-width);
  margin-inline: auto;
}

/* ---- Typography ---- */
.sp-display {
  font-size: clamp(48px, 6.8vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  font-weight: 300;
}

.sp-h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 300;
  color: var(--theme-palette-color-8);
}

.sp-testimonials-head .sp-h2 {
  color: var(--theme-palette-color-8);
}

.sp-h2 {
  font-size: clamp(28px, 3.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 300;
}

.sp-h2.cta-heading-home {
  font-weight: 400;
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 960px;
  margin: 0px 0px 48px;
}

.sp-h2.programs-archive-cta-heading {
  font-weight: 300;
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 960px;
  margin: 0px 0px 48px;
}

.sp-h2.single-program-cta-heading {
  font-weight: 300;
  font-size: clamp(32px, 4vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--theme-palette-color-4);
  max-width: 960px;
  margin: 0px 0px 48px;
}

.sp-h2.single-program-cta-heading span.sp-fade {
  color: rgba(10, 10, 10, 0.25);
}

.sp-h3 {
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.25;
  letter-spacing: -0.005em;
  font-weight: 400;
}

.sp-body-lg {
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.5;
  font-weight: 400;
}

/* ---- Eyebrow ---- */
.sp-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--theme-palette-color-5);
  margin-bottom: 32px;
  max-width: 280px;
  color: inherit;
}

.sp-eyebrow.on-blue {
  color: var(--theme-palette-color-8);
  border-bottom-color: rgba(255, 255, 255, 0.22);
}

/* ---- Programmes category head — eyebrow + tag filter row ---- */
.programmes-head-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--theme-palette-color-5);
  padding-bottom: 14px;
  margin-bottom: 32px;
}

.programmes-head-top.on-blue {
  border-bottom-color: rgba(255, 255, 255, 0.22);
}

/* Remove the eyebrow's own border/spacing when inside head-top */
.programmes-head-top .sp-eyebrow {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
  max-width: none;
}

/* ---- Programme tag filter ---- */
.programme-tag-filter {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--theme-palette-color-1);
  flex-shrink: 0;
}

.on-blue .programme-tag-filter {
  color: var(--theme-palette-color-8);
}

.programme-tag-filter svg {
  flex-shrink: 0;
  opacity: 0.9;
}

.programme-tag-filter select {
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
  padding: 0 18px 0 0;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  background-size: 10px 6px;
}

.on-blue .programme-tag-filter select {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.programme-tag-filter select:focus {
  outline: 2px solid var(--theme-palette-color-1);
  outline-offset: 3px;
  border-radius: 2px;
}

.on-blue .programme-tag-filter select:focus {
  outline-color: var(--theme-palette-color-8);
}

.programme-tag-filter select:disabled {
  opacity: 0.5;
  cursor: wait;
}

/* Loading state on cards wrapper */
.programmes-category-cards.is-loading {
  opacity: 0.45;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

/* No-results message */
.programme-no-results {
  padding: 40px 0;
  color: rgba(10, 10, 10, 0.5);
  font-size: 15px;
}

.on-blue .programme-no-results {
  color: rgba(255, 255, 255, 0.55);
}

/* ---- Fade span — context-aware colour ---- */
.sp-fade {
  color: rgba(10, 10, 10, 0.25);
  /* --fade-dark */
}

.sp-blue-section .sp-fade,
.sp-testimonials-head .sp-h2 .sp-fade,
.sp-cta-banner .sp-h2 .sp-fade {
  color: rgba(255, 255, 255, 0.35);
  /* --fade-light */
}

/* ---- Buttons ---- */
.eu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 400;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.sp-arr {
  transition: transform 0.2s;
  display: inline-block;
}

.eu-btn:hover .sp-arr {
  transform: translateX(3px);
}

.eu-btn--primary {
  background: var(--theme-palette-color-6);
  color: var(--theme-palette-color-4);
  border-color: var(--theme-palette-color-6);
}

.eu-btn--primary:hover {
  background: #e5c306;
  border-color: #e5c306;
}

.eu-btn--secondary {
  background: var(--theme-palette-color-1);
  color: var(--theme-palette-color-8);
  border-color: var(--theme-palette-color-1);
}

.eu-btn--secondary:hover {
  background: var(--theme-palette-color-2);
  border-color: var(--theme-palette-color-2);
  color: var(--theme-palette-color-8);
}

.eu-btn--ghost {
  background: transparent;
  color: var(--theme-palette-color-4);
  border-color: var(--theme-palette-color-4);
}

.eu-btn--ghost:hover {
  background: var(--theme-palette-color-4);
  color: var(--theme-palette-color-8);
}

.eu-btn--ghost-light {
  background: transparent;
  color: var(--theme-palette-color-8);
  border-color: rgba(255, 255, 255, 0.45);
}

.eu-btn--ghost-light:hover {
  background: var(--theme-palette-color-8);
  color: var(--theme-palette-color-1);
  border-color: var(--theme-palette-color-8);
}

/* ================================================================
   HERO
   ================================================================ */
.sp-hero {
  padding: 96px 0 120px;
  position: relative;
  overflow: hidden;
  background: var(--theme-palette-color-8);
  color: var(--theme-palette-color-4);
}

.sp-hero__text .breadcrumbs {
  display: flex;
  margin-bottom: 32px;
}

.sp-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 96px;
  align-items: center;
}

.sp-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(90, 90, 90, 0.85);
  /* --ink-muted */
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}

.sp-hero__back:hover {
  color: var(--theme-palette-color-1);
  gap: 14px;
}

.sp-hero__headline {
  margin-bottom: 32px;
}

.sp-hero__lede {
  color: rgba(90, 90, 90, 0.85);
  /* --ink-muted */
  max-width: 460px;
  margin-bottom: 36px;
}

.sp-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero visual assembly */
.sp-hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}

.sp-hero__plate {
  position: absolute;
  top: 28px;
  left: 28px;
  right: -28px;
  bottom: -28px;
  background: var(--theme-palette-color-1);
  z-index: 0;
}

.sp-hero__frame {
  position: absolute;
  inset: 0;
  background: var(--theme-palette-color-2);
  overflow: hidden;
  z-index: 1;
}

.sp-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sp-hero__img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  color: var(--theme-palette-color-6);
  padding: 40px;
  text-align: center;
  z-index: 0;
}

.sp-hero__img-placeholder svg {
  width: 72px;
  height: 72px;
  opacity: 0.85;
}

.sp-hero__img-placeholder span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.sp-hero__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 50%;
  background: var(--theme-palette-color-6);
  z-index: 2;
}

.sp-hero__wedge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 32%;
  background: var(--theme-palette-color-6);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: 2;
  pointer-events: none;
}

.sp-hero__stamp {
  position: absolute;
  top: -36px;
  left: -36px;
  width: 132px;
  height: 132px;
  background: var(--theme-palette-color-8);
  border-radius: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 0 rgba(13, 43, 130, 0.06);
}

.sp-hero__stamp svg {
  width: 100%;
  height: 100%;
}

.sp-hero__stamp text {
  font-size: 9.6px;
  font-weight: 400;
  letter-spacing: 0.16em;
  fill: var(--theme-palette-color-1);
}

.sp-hero__stamp-ring {
  animation: sp-spin 32s linear infinite;
  transform-origin: 50% 50%;
}

@keyframes sp-spin {
  to {
    transform: rotate(360deg);
  }
}

.sp-hero__stamp-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--theme-palette-color-1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sp-hero__caption {
  position: absolute;
  bottom: -80px;
  left: 4px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(90, 90, 90, 0.85);
  /* --ink-muted */
  z-index: 4;
}

.sp-hero__caption::before {
  content: '';
  width: 32px;
  height: 1px;
  background: rgba(90, 90, 90, 0.85);
  flex-shrink: 0;
}

/* ================================================================
   BLUE SECTION
   ================================================================ */
.sp-blue-section {
  background: var(--theme-palette-color-1);
  color: var(--theme-palette-color-8);
  padding: 128px 0;
  position: relative;
  overflow: hidden;
}

.sp-blue-section .sp-eyebrow {
  color: var(--theme-palette-color-8);
  border-bottom-color: rgba(255, 255, 255, 0.22);
}

/* ---- Stat band ---- */
.sp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  margin-bottom: 96px;
}

.sp-stat {
  padding: 32px 24px 32px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.sp-stat:not(:first-child) {
  padding-left: 24px;
}

.sp-stat:last-child {
  border-right: none;
  padding-right: 0;
}

.sp-stat__num {
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--theme-palette-color-8);
}

.sp-stat__suffix {
  color: var(--theme-palette-color-6);
  margin-left: 4px;
}

.sp-stat__label {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
}

/* ---- Content blocks ---- */
.sp-content-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 96px;
}

.sp-block-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--theme-palette-color-6);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.sp-content-block .sp-h3 {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 300;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
  color: var(--theme-palette-color-8);
  line-height: 1.2;
}

.sp-content-block p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 16px;
  max-width: 460px;
  font-size: 16px;
  line-height: 1.8;
}

.sp-content-block p strong {
  color: var(--theme-palette-color-8);
  font-weight: 400;
}

.sp-editorial-list {
  list-style: none;
  margin-top: 16px;
  padding: 0;
}

.sp-editorial-list li {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 16px;
  align-items: start;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.45;
}

.sp-editorial-list li::before {
  content: '→';
  color: var(--theme-palette-color-6);
  font-size: 16px;
  line-height: 1.45;
}

.sp-editorial-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.sp-cohort-note {
  margin-top: 24px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 460px;
}

.sp-cohort-note strong {
  color: var(--theme-palette-color-6);
  font-weight: 400;
}

/* ---- Testimonials ---- */
.sp-testimonials-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
}

.sp-testimonials-head p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 380px;
  padding-bottom: 6px;
}

.sp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 96px;
}

.sp-testimonial {
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: background 0.2s ease;
}

.sp-testimonial:hover {
  background: rgba(255, 255, 255, 0.04);
}

.sp-testimonial__quote {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--theme-palette-color-8);
  flex-grow: 1;
}

.sp-testimonial__quote::before {
  content: '\201C';
  display: block;
  font-size: 56px;
  line-height: 0.5;
  color: var(--theme-palette-color-6);
  margin-bottom: 24px;
  font-family: serif;
}

.sp-testimonial__attrib {
  font-size: 13px;
  color: var(--theme-palette-color-6);
  letter-spacing: 0.04em;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

/* ---- CTA banner ---- */
.sp-cta-banner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.sp-cta-banner__action {
  text-align: right;
}

/* ================================================================
   EXPLORE SECTION
   ================================================================ */
.sp-explore {
  background: var(--theme-palette-color-7);
  color: var(--theme-palette-color-4);
  padding: 128px 0;
}

.sp-explore__inner {
  max-width: 960px;
}

.sp-explore .sp-fade {
  color: rgba(10, 10, 10, 0.25);
  /* --fade-dark */
}

.sp-explore__actions {
  display: flex;
  gap: 12px;
  margin-top: 48px;
  flex-wrap: wrap;
}

/* ================================================================
   RESPONSIVE — 1100px breakpoint
   ================================================================ */
@media (max-width: 1100px) {
  .sp-hero {
    padding: 64px 0 96px;
  }

  .sp-hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sp-hero__visual {
    margin: 0 auto;
    max-width: 460px;
  }

  .sp-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .sp-stat:nth-child(2) {
    border-right: none;
    padding-right: 0;
  }

  .sp-stat:nth-child(3),
  .sp-stat:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .sp-content-blocks,
  .sp-testimonials-head,
  .sp-cta-banner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sp-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .sp-cta-banner__action {
    text-align: left;
  }

  .sp-blue-section,
  .sp-explore {
    padding: 80px 0;
  }
}

/* ================================================================
   RESPONSIVE — 700px breakpoint
   ================================================================ */
@media (max-width: 700px) {
  .sp-stats {
    grid-template-columns: 1fr;
  }

  .sp-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 20px 0 !important;
  }

  .sp-stat:last-child {
    border-bottom: none;
  }

  .sp-hero__stamp {
    width: 96px;
    height: 96px;
    top: -24px;
    left: -24px;
  }

  .sp-hero__stamp text {
    font-size: 8.4px;
  }

  .sp-hero__caption {
    bottom: -100px;
    line-height: 2.6;
  }
}

/* ================================================================
   === Events Archive ===
   ================================================================ */

/* ---- Fade light — for use on dark/blue backgrounds ---- */
.sp-fade-light {
  color: rgba(255, 255, 255, 0.35);
}

/* ---- Section structure ---- */
.ev-section {
  padding: 96px 0;
}

.events-section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.events-section-head h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.events-section-head p {
  color: rgba(10, 10, 10, 0.6);
  max-width: 480px;
}

.events-section-head .fade {
  color: rgba(10, 10, 10, 0.3);
}

/* ---- Calendar ---- */
.events-calendar {
  margin-bottom: 64px;
}

.events-calendar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--theme-palette-color-5);
}

.events-calendar-month {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 300;
  letter-spacing: -0.02em;
}

.events-calendar-month .yr {
  font-size: 0.55em;
  color: rgba(10, 10, 10, 0.4);
  margin-left: 10px;
  font-weight: 400;
}

.events-calendar-nav {
  display: flex;
  gap: 8px;
}

.events-calendar-nav a,
.events-calendar-nav button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--theme-palette-color-5);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s, border-color 0.15s;
}

.events-calendar-nav a:hover,
.events-calendar-nav button:hover {
  background: var(--theme-palette-color-6);
  border-color: var(--theme-palette-color-6);
}

.events-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-left: 1px solid var(--theme-palette-color-5);
  border-bottom: 1px solid var(--theme-palette-color-5);
}

.dow {
  padding: 14px 8px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.4);
  text-align: center;
  border-right: 1px solid var(--theme-palette-color-5);
  border-top: 1px solid var(--theme-palette-color-5);
}

.day {
  position: relative;
  padding: 12px 10px 28px;
  min-height: 72px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  border-right: 1px solid var(--theme-palette-color-5);
  border-top: 1px solid var(--theme-palette-color-5);
}

.day.muted {
  color: rgba(10, 10, 10, 0.25);
}

.day.today {
  background: var(--theme-palette-color-1);
  color: var(--theme-palette-color-8);
}

.day.today .chip {
  background: var(--theme-palette-color-6);
  color: var(--theme-palette-color-4);
}

.chip {
  position: absolute;
  bottom: 6px;
  left: 6px;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--theme-palette-color-6);
  color: var(--theme-palette-color-4);
  padding: 2px 6px;
  border-radius: 999px;
  white-space: nowrap;
  max-width: calc(100% - 12px);
  overflow: hidden;
  text-overflow: ellipsis;
}

.chip--stacked {
  bottom: 18px;
}

/* ---- Calendar day tooltip ---- */
.day.has-event {
  cursor: default;
}

.cal-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  z-index: 200;
  min-width: 180px;
  max-width: 260px;
  background: var(--theme-palette-color-4);
  color: var(--theme-palette-color-8);
  border-radius: 6px;
  padding: 10px 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.cal-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 14px;
  border: 6px solid transparent;
  border-top-color: var(--theme-palette-color-4);
}

.cal-tooltip a {
  display: block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--theme-palette-color-8);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  line-height: 1.35;
}

.cal-tooltip a:hover {
  color: var(--theme-palette-color-6);
}

.cal-tooltip a:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cal-tooltip a:hover {
  text-decoration: underline;
}

.day.has-event:hover .cal-tooltip,
.day.has-event:focus-within .cal-tooltip {
  display: block;
  pointer-events: auto;
}

/* Flip tooltip to the right on last two columns to avoid overflow */
.events-calendar-grid .day:nth-child(7n+6).has-event .cal-tooltip,
.events-calendar-grid .day:nth-child(7n).has-event .cal-tooltip {
  left: auto;
  right: 0;
}

.events-calendar-grid .day:nth-child(7n+6).has-event .cal-tooltip::after,
.events-calendar-grid .day:nth-child(7n).has-event .cal-tooltip::after {
  left: auto;
  right: 14px;
}

/* ---- Upcoming rail ---- */
.upcoming-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--theme-palette-color-5);
  margin-bottom: 16px;
}

.upcoming-rail .card {
  padding: 28px 24px;
  border-right: 1px solid var(--theme-palette-color-5);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.upcoming-rail .card:last-child {
  border-right: none;
}

.upcoming-rail .card .when {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
}

.upcoming-rail .card .month {
  font-size: 13px;
  color: rgba(10, 10, 10, 0.5);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.upcoming-rail .card h3 {
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.3;
  flex-grow: 1;
}

.upcoming-rail .card .place {
  font-size: 13px;
  color: rgba(10, 10, 10, 0.55);
  margin-top: 4px;
}

.upcoming-rail .card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.upcoming-rail .card .tags span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid var(--theme-palette-color-5);
  color: rgba(10, 10, 10, 0.7);
}

.upcoming-rail .card .tags span.flagship,
.upcoming-rail .card .tags span.women {
  background: var(--theme-palette-color-1);
  color: var(--theme-palette-color-8);
  border-color: var(--theme-palette-color-1);
}

.upcoming-rail .card .tags span.yellow,
.upcoming-rail .card .tags span.youth {
  background: var(--theme-palette-color-6);
  color: var(--theme-palette-color-4);
  border-color: var(--theme-palette-color-6);
}

.upcoming-rail .card .tags span.export,
.upcoming-rail .card .tags span.blue-fill {
  background: var(--theme-palette-color-4);
  color: var(--theme-palette-color-8);
  border-color: var(--theme-palette-color-4);
}

.upcoming-rail-foot {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.4);
  text-align: right;
  padding-top: 10px;
}

/* ---- Recent / month groups ---- */
.events-month {
  border-top: 1px solid var(--theme-palette-color-5);
}

.events-month-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.events-month-head .label {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 300;
  letter-spacing: -0.02em;
}

.events-month-head .label .yr {
  font-size: 0.6em;
  color: rgba(10, 10, 10, 0.4);
  margin-left: 10px;
  font-weight: 400;
  vertical-align: middle;
}

.events-month-head .label .count {
  font-size: 13px;
  color: rgba(10, 10, 10, 0.45);
  margin-left: 16px;
  font-weight: 400;
  letter-spacing: 0;
  vertical-align: middle;
}

.events-month-head .toggle {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0;
  color: rgba(10, 10, 10, 0.5);
  transition: color 0.2s;
}

.events-month-head .toggle:hover {
  color: var(--theme-palette-color-1);
}

/* ---- Event rows ---- */
.event-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 48px;
  padding: 40px 0;
  border-top: 1px solid var(--theme-palette-color-5);
}

.event-meta-col {
  display: flex;
  flex-direction: column;
}

.event-meta-monthyear {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
}

.event-meta-date {
  font-size: 13px;
  color: rgba(10, 10, 10, 0.5);
  letter-spacing: 0.04em;
  margin-top: 6px;
}

.event-meta-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid var(--theme-palette-color-5);
  color: rgba(10, 10, 10, 0.7);
}

.event-meta-tag.yellow {
  background: var(--theme-palette-color-6);
  color: var(--theme-palette-color-4);
  border-color: var(--theme-palette-color-6);
}

.event-meta-tag.blue-fill {
  background: var(--theme-palette-color-1);
  color: var(--theme-palette-color-8);
  border-color: var(--theme-palette-color-1);
}

.event-body ul,
.event-body h3 {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(10, 10, 10, 0.75);
  margin-bottom: 12px;
}

.event-body h3:first-child {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.event-body h3 a {
  color: inherit;
  text-decoration: none;
}

.event-body h3 a:hover {
  color: var(--theme-palette-color-1);
}

.event-body p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(10, 10, 10, 0.75);
  margin-bottom: 12px;
}

.event-body strong {
  color: var(--theme-palette-color-4);
  font-weight: 400;
}

.event-outcomes-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.45);
  margin: 16px 0 10px;
}

.event-outcomes {
  list-style: none;
  margin: 0;
  padding: 0;
}

.event-outcomes li {
  padding: 10px 0;
  border-top: 1px solid var(--theme-palette-color-5);
  font-size: 15px;
  color: rgba(10, 10, 10, 0.8);
  line-height: 1.5;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
}

.event-outcomes li::before {
  content: '→';
  color: var(--theme-palette-color-1);
}

.event-outcomes li:last-child {
  border-bottom: 1px solid var(--theme-palette-color-5);
}

.event-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.event-link {
  font-size: 14px;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: var(--theme-palette-color-1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s, color 0.2s;
}

.event-link:hover {
  gap: 10px;
}

.event-link span {
  transition: transform 0.2s;
  display: inline-block;
}

.event-link:hover span {
  transform: translateX(3px);
}

.event-link.alt {
  color: rgba(10, 10, 10, 0.55);
}

.event-link.alt:hover {
  color: var(--theme-palette-color-1);
}

/* ---- Subscribe section ---- */
.subscribe-cta {
  background: var(--theme-palette-color-1);
  color: var(--theme-palette-color-8);
  padding: 96px 0;
}

.subscribe-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.subscribe-cta .gform_wrapper,
.subscribe-cta .subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.subscribe-cta .gform_wrapper .gfield_label,
.subscribe-cta .subscribe-form-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.subscribe-cta .gform_wrapper input[type="email"],
.subscribe-cta .subscribe-form input[type="email"] {
  display: block;
  width: 100%;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: var(--white);
  font-family: inherit;
  font-size: 18px;
  margin-bottom: 24px;
  outline: none;
  border-radius: 0;
}

.subscribe-cta .gform_wrapper input[type="email"]::placeholder,
.subscribe-cta .subscribe-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.subscribe-cta .gform_wrapper input[type="email"]:focus,
.subscribe-cta .subscribe-form input[type="email"]:focus {
  border-color: var(--theme-palette-color-6);
}

.subscribe-cta .gform_wrapper .gform_footer,
.subscribe-cta .gform_wrapper .gform_button {
  margin: 0;
  padding: 0;
}

.subscribe-cta .gform_wrapper .gform_button,
.subscribe-cta .subscribe-form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  background: var(--theme-palette-color-6);
  color: var(--theme-palette-color-4);
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  transition: background 0.2s;
  width: fit-content;
}

.subscribe-cta .gform_wrapper .gform_button:hover,
.subscribe-cta .subscribe-form button[type="submit"]:hover {
  background: var(--theme-palette-color-2);
  color: var(--theme-palette-color-8);
}

.subscribe-cta .gform_wrapper .gform_confirmation_message,
.subscribe-cta .subscribe-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.subscribe-cta .gform_wrapper .validation_error {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 0, 0, 0.1);
  color: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  padding: 12px 16px;
}

/* ================================================================
   Events Archive — Responsive (max-width: 1100px)
   ================================================================ */
@media (max-width: 1100px) {
  .ev-section {
    padding: 64px 0;
  }

  .events-section-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .upcoming-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .upcoming-rail .card:nth-child(2) {
    border-right: none;
  }

  .upcoming-rail .card:nth-child(3),
  .upcoming-rail .card:nth-child(4) {
    border-top: 1px solid var(--theme-palette-color-5);
  }

  .subscribe-cta {
    padding: 64px 0;
  }

  .subscribe-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ================================================================
   Events Archive — Responsive (max-width: 700px)
   ================================================================ */
@media (max-width: 700px) {
  .upcoming-rail {
    grid-template-columns: 1fr;
  }

  .upcoming-rail .card {
    border-right: none;
    border-top: 1px solid var(--theme-palette-color-5);
  }

  .upcoming-rail .card:first-child {
    border-top: none;
  }

  .event-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ================================================================
   === Single Event ===
   ================================================================ */

/* === Single Event — Breadcrumbs === */
.se-breadcrumbs {
  padding: 20px 0;
  border-bottom: 1px solid var(--theme-palette-color-5);
}

.se-breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.se-breadcrumbs__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(10, 10, 10, 0.45);
}

.se-breadcrumbs__list li::after {
  content: '·';
}

.se-breadcrumbs__list li:last-child::after {
  content: '';
}

.se-breadcrumbs__list li[aria-current="page"] {
  color: var(--theme-palette-color-4);
}

.se-breadcrumbs__list a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.se-breadcrumbs__list a:hover {
  color: var(--theme-palette-color-1);
}

/* === Single Event / Hero — Pill === */
.se-pill,
.pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 12px;
  border-radius: 999px;
  background: var(--theme-palette-color-1);
  color: var(--theme-palette-color-8);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 150%;
}

/* === Single Event — Hero extensions === */
.page-hero-date-badge {
  position: absolute;
  top: -28px;
  left: -28px;
  width: 132px;
  height: 132px;
  background: var(--theme-palette-color-6);
  border-radius: 50%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
}

.page-hero-date-badge .top {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.page-hero-date-badge .range {
  font-size: clamp(28px, 3vw, 32px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
}

.page-hero-date-badge .bottom {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* Eyebrow row with pill */
.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--theme-palette-color-5);
}

.eyebrow-row .label {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(10, 10, 10, 0.5);
  text-transform: uppercase;
}

/* Hero footnote */
.page-hero-footnote {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(10, 10, 10, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-hero-footnote::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--theme-palette-color-6);
  flex-shrink: 0;
}

/* === Single Event — Meta Band === */
.block-meta-band {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--theme-palette-color-5);
  border-bottom: 1px solid var(--theme-palette-color-5);
  padding: 32px 0;
  margin: 48px 0;
}

.block-meta-band>div {
  padding: 0 24px;
  border-right: 1px solid var(--theme-palette-color-5);
}

.block-meta-band>div:first-child {
  padding-left: 0;
}

.block-meta-band>div:last-child {
  border-right: none;
  padding-right: 0;
}

.block-meta-band .label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.4);
  margin-bottom: 8px;
}

.block-meta-band .value {
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--theme-palette-color-4);
}

.block-meta-band .value-suffix {
  color: rgba(10, 10, 10, 0.45);
  font-size: 14px;
  margin-left: 4px;
}

/* === Single Event — About section === */
.se-section {
  padding: 80px 0;
}

.se-about__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 96px;
  align-items: start;
}

.se-about__right p {
  margin-bottom: 16px;
}

.se-about__right p+p {
  color: rgba(10, 10, 10, 0.65);
}

.se-about__right p:last-child {
  margin-bottom: 0;
}

/* === Single Event — Itinerary === */
.block-how-it-works {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 96px;
  align-items: start;
}

.block-itinerary {
  border-top: 1px solid var(--theme-palette-color-5);
}

.day-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--theme-palette-color-5);
}

.day-tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--theme-palette-color-1);
  padding-top: 3px;
}

.day-title {
  font-weight: 300;
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 8px;
}

.day-body {
  font-size: 15px;
  color: rgba(10, 10, 10, 0.65);
  line-height: 1.55;
}

/* === Single Event — Facilitators === */
.coloured-panel.on-muted {
  background: var(--theme-palette-color-7);
  padding: 96px 0;
}

.block-facilitators {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.person {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.person-photo {
  aspect-ratio: 1 / 1;
  width: 100%;
  background: var(--theme-palette-color-1);
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
}

.person-photo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.person-photo__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.person-role {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--theme-palette-color-2);
  font-weight: 400;
}

.person-name {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--theme-palette-color-4);
  line-height: 1.25;
}

.person-bio {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(10, 10, 10, 0.7);
  margin-top: 4px;
}

.person-bio strong {
  color: var(--theme-palette-color-4);
  font-weight: 400;
}

/* === Components — CTA Banner (block-cta-primary) === */
.block-cta-primary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 96px;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .block-cta-primary {
    display: flex;
    flex-direction: column;
  }
}

.block-cta-primary--stacked {
  grid-template-columns: 1fr;
  gap: 40px;
}

.block-cta-primary .sp-eyebrow.on-blue,
.block-cta-primary .eyebrow.on-blue {
  border-bottom-color: rgba(255, 255, 255, 0.22);
  color: var(--theme-palette-color-8);
}

.block-cta-primary .sp-h2 {
  margin-bottom: 0;
}

.block-cta-primary .sp-h2 .sp-fade {
  color: rgba(255, 255, 255, 0.35);
}

.block-cta-primary p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
}

.block-cta-primary .actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.se-cta-endnote {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

/* === CTA Banner — Page variants === */

.se-cta-section {
  padding: 120px 0;
}

/* Home: yellow background, dark text */
.se-cta-section--home {
  background: var(--theme-palette-color-6);
}

.se-cta-section--home .sp-h2 {
  color: var(--theme-palette-color-4);
}

.se-cta-section--home .se-cta-endnote {
  color: rgba(10, 10, 10, 0.5);
}

.se-cta-section--home .eu-btn--secondary {
  background: var(--theme-palette-color-1);
  color: var(--theme-palette-color-8);
  border-color: var(--theme-palette-color-1);
}

.se-cta-section--home .eu-btn--secondary:hover {
  background: var(--theme-palette-color-2);
  border-color: var(--theme-palette-color-2);
}

/* About: blue background, white text */
.se-cta-section--about {
  background: var(--theme-palette-color-1);
  padding: 120px 0;
}

.se-cta-section--about .block-cta-primary--stacked {
  max-width: 1100px;
}

.se-cta-section--about .sp-h2 {
  color: var(--theme-palette-color-8);
  font-weight: 300;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.se-cta-section--about .block-cta-primary .actions,
.se-cta-section--archive-program .block-cta-primary .actions,
.se-cta-section--single-program .block-cta-primary .actions {
  flex-direction: row;
}

/* Archive Program: white background, dark text */
.se-cta-section--archive-program {
  background: var(--theme-palette-color-8);
}

.se-cta-section--archive-program .sp-eyebrow {
  color: #0a0a0a;
  border-bottom-color: rgba(10, 10, 10, 0.2);
}

.se-cta-section--archive-program .sp-h2 {
  color: #0a0a0a;
}

.se-cta-section--archive-program .sp-h2 .sp-fade {
  color: rgba(10, 10, 10, 0.25);
}

.se-cta-section--archive-program .block-cta-primary p {
  color: rgba(10, 10, 10, 0.7);
}

/* Single Event: blue background, white text */
.se-cta-section--single-event {
  background: var(--theme-palette-color-1);
}

.se-cta-section--single-event .sp-h2 {
  color: var(--theme-palette-color-8);
}

section.se-cta-section.se-cta-section--single-program {
  background: var(--theme-palette-color-6);
}

/* === Components — Section Head === */
.section-head--two-col {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 48px;
}

.section-head--two-col p {
  color: inherit;
  opacity: 0.78;
  max-width: 380px;
  font-weight: 400;
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.5;
}

.section-head--single {
  margin-bottom: 32px;
}

.section-head--single p {
  color: rgba(10, 10, 10, 0.65);
  font-size: 16px;
  line-height: 1.6;
  max-width: 380px;
}

/* ================================================================
   RESPONSIVE — Single Event
   ================================================================ */
@media (max-width: 1100px) {
  .se-section {
    padding: 56px 0;
  }

  .se-about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .block-how-it-works {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .se-facilitators__head.head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .block-facilitators {
    grid-template-columns: 1fr 1fr;
  }

  .block-cta-primary {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 40px;
  }

  .block-cta-primary .actions {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .section-head--two-col {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .coloured-panel.on-muted {
    padding: 64px 0;
  }
}

@media (max-width: 900px) {
  .block-meta-band {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .block-meta-band>div {
    padding: 16px 0;
    border-right: none;
    border-bottom: 1px solid var(--theme-palette-color-5);
  }

  .block-meta-band>div:nth-child(3n+1),
  .block-meta-band>div:nth-child(3n+2) {
    border-right: 1px solid var(--theme-palette-color-5);
  }
}

@media (max-width: 700px) {
  .block-meta-band {
    grid-template-columns: 1fr 1fr !important;
  }

  .block-meta-band>div:nth-child(odd) {
    border-right: 1px solid var(--theme-palette-color-5);
  }

  .block-meta-band>div:nth-child(3n+1),
  .block-meta-band>div:nth-child(3n+2) {
    border-right: none;
  }

  .page-hero-date-badge {
    width: 96px;
    top: -24px;
    left: -24px;
  }

  .page-hero-date-badge .range {
    font-size: clamp(22px, 5vw, 30px);
  }

  .block-facilitators {
    grid-template-columns: 1fr;
  }

  .day-row {
    grid-template-columns: 64px 1fr;
    gap: 20px;
  }

  .block-cta-primary {
    padding: 48px 24px;
  }
}

/* ================================================================
   === Programme Archive — Redesign ===
   ================================================================ */

/* === Programme Archive — Layout === */
.programmes-category {
  padding: 80px 0;
}

@media (max-width: 1100px) {
  .programmes-category {
    padding: 56px 0;
  }
}

.programmes-category.section-muted {
  background: var(--theme-palette-color-7);
}

.programmes-category.on-blue {
  background: var(--theme-palette-color-1);
  color: var(--theme-palette-color-8);
}

.programmes-category.on-blue h2,
.programmes-category.on-blue h3 {
  color: var(--theme-palette-color-8);
}

.programmes-category.on-blue p {
  color: rgba(255, 255, 255, 0.78);
}

.programmes-category.on-blue .fade {
  color: rgba(255, 255, 255, 0.35);
}

.programmes-category-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
}

@media (max-width: 1100px) {
  .programmes-category-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.programmes-category-head h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.programmes-category-head .fade {
  color: rgba(10, 10, 10, 0.3);
}

.programmes-category.on-blue .programmes-category-head .fade {
  color: rgba(255, 255, 255, 0.35);
}

.programmes-category-head p {
  color: rgba(10, 10, 10, 0.6);
  max-width: 440px;
}

.programmes-category.on-blue .programmes-category-head p {
  color: rgba(255, 255, 255, 0.78);
}

/* === Programme rows (Layout A — Training) === */
.programme-row {
  display: grid;
  grid-template-columns: 140px 1fr 120px;
  gap: 48px;
  align-items: start;
  padding: 40px 0;
  border-top: 1px solid var(--theme-palette-color-5);
}

.programme-row:last-child {
  border-bottom: 1px solid var(--theme-palette-color-5);
}

@media (max-width: 900px) {
  .programme-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.programme-row .num {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.4);
  padding-top: 4px;
  white-space: nowrap;
}

.programme-row .body-col h3 {
  font-weight: 300;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.programme-row .body-col p {
  color: #5a5a5a;
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 20px;
  max-width: 620px;
}


.programme-row .actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .programme-badge {
    display: none;
  }
}

/* === Advisory card (Layout B) === */
.programme-card-advisory {
  display: grid;
  grid-template-columns: 140px 1fr 80px;
  gap: 48px;
  align-items: center;
  padding: 36px 32px;
  border: 1px solid var(--theme-palette-color-5);
}

@media (max-width: 900px) {
  .programme-card-advisory {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }
}

.programme-card-advisory .num {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.4);
}

.programme-card-advisory h3 {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1, 15;
  margin-bottom: 12px;
}

.programme-card-advisory h3 a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

.programme-card-advisory h3 a:hover {
  color: var(--theme-palette-color-1);
}

.programme-card-advisory p {
  color: rgba(10, 10, 10, 0.65);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 20px;
  max-width: 620px;
}

.programme-card-advisory .actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.row-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--theme-palette-color-1);
  color: var(--theme-palette-color-8);
  margin-bottom: 12px;
  line-height: 150%;
}

.badge-square {
  background: var(--theme-palette-color-6);
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-palette-color-1);
}

.badge-square svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 900px) {
  .badge-square {
    display: none;
  }
}

/* === Initiative cards (Layout C — 2-col grid on blue) === */
.programme-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

@media (max-width: 900px) {
  .programme-grid-2 {
    grid-template-columns: 1fr;
  }
}

.programme-card-initiative {
  padding: 40px 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s;
}

.programme-card-initiative:hover {
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 700px) {
  .programme-card-initiative {
    padding: 28px 20px;
  }
}

.programme-card-initiative .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.programme-card-initiative .num {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.programme-card-initiative .icon-pill {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-palette-color-2);
  background: #fbd80b;
}

.programme-card-initiative .icon-pill svg {
  width: 18px;
  height: 18px;
}

.programme-card-initiative h3 {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 300;
  letter-spacing: -0.015em;
  color: var(--theme-palette-color-8);
  line-height: 1.2;
}

.programme-card-initiative h3 a {
  text-decoration: none;
  color: var(--theme-palette-color-8);
}

.programme-card-initiative h3 a:hover {
  opacity: 0.75;
}

.programme-card-initiative p {
  font-size: 15px;
  color: var(--theme-palette-color-8);
  line-height: 1.6;
  flex-grow: 1;
}

.programme-card-initiative .actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  margin-top: 4px;
}

.meta-grid>div {
  padding-right: 16px;
}

.meta-grid .label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

.meta-grid .value {
  font-size: 15px;
  font-weight: 300;
  color: var(--theme-palette-color-8);
}

/* ============================================
   Contact Page Template
   ============================================ */

/* --- Back link (shared with other page heroes) --- */
.page-hero-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(10, 10, 10, 0.5);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.2s;
}

.page-hero-back:hover {
  color: var(--theme-palette-color-4);
}

/* --- Contact Hero --- */
.contact-hero {
  padding: 64px 0 48px;
}

.contact-eyebrow {
  max-width: 220px;
  margin-bottom: 24px;
}

.contact-hero-headline {
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 24px;
  color: var(--theme-palette-color-4);
}

.contact-hero-lede {
  max-width: 520px;
  color: rgba(10, 10, 10, 0.65);
}

/* --- Contact Cards Grid --- */
.contact-grid-section {
  padding: 48px 0 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--theme-palette-color-5);
}

@media (max-width: 1100px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  padding: 32px 28px;
  border-right: 1px solid var(--theme-palette-color-5);
  border-bottom: 1px solid var(--theme-palette-color-5);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-grid .contact-card:nth-child(3n) {
  border-right: none;
}

@media (max-width: 1100px) {
  .contact-grid .contact-card:nth-child(3n) {
    border-right: 1px solid var(--theme-palette-color-5);
  }

  .contact-grid .contact-card:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 600px) {
  .contact-grid .contact-card {
    border-right: none;
  }
}

.contact-grid .contact-card:nth-last-child(-n+3) {
  border-bottom: none;
}

@media (max-width: 1100px) {
  .contact-grid .contact-card:nth-last-child(-n+3) {
    border-bottom: 1px solid var(--theme-palette-color-5);
  }

  .contact-grid .contact-card:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media (max-width: 600px) {
  .contact-grid .contact-card:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--theme-palette-color-5);
  }

  .contact-grid .contact-card:last-child {
    border-bottom: none;
  }
}

.contact-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-palette-color-1);
  background: transparent;
  margin-bottom: 6px;
  transition: background 0.25s ease, color 0.25s ease;
}

.contact-card-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--theme-palette-color-1);
  font-weight: 400;
}

.contact-card-body {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(10, 10, 10, 0.75);
}

.contact-card-body strong {
  color: var(--theme-palette-color-4);
  font-weight: 400;
}

.contact-card-faded {
  color: rgba(10, 10, 10, 0.45);
  font-size: 14px;
}

.contact-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-card-list a {
  font-size: 15px;
  color: var(--theme-palette-color-4);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-card-list a:hover {
  color: var(--theme-palette-color-1);
}

.contact-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 400;
  color: var(--theme-palette-color-1);
  text-decoration: none;
  transition: gap 0.2s;
}

.contact-card-link:hover {
  gap: 10px;
}

.contact-card-link .arr {
  transition: transform 0.2s;
}

.contact-card-link:hover .arr {
  transform: translateX(3px);
}

/* Social icons */
.contact-socials {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--theme-palette-color-5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-palette-color-4);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.contact-socials a:hover {
  background: var(--theme-palette-color-1);
  border-color: var(--theme-palette-color-1);
  color: var(--theme-palette-color-8);
}

/* --- Inquiry / Form section --- */
.inquiry-section {
  padding: 80px 0;
  background: var(--theme-palette-color-7);
}

@media (max-width: 1100px) {
  .inquiry-section {
    padding: 56px 0;
  }
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 96px;
  align-items: start;
}

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

.inquiry-headline {
  margin: 20px 0 20px;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.inquiry-headline .line {
  display: block;
}

.inquiry-headline .faded {
  color: rgba(10, 10, 10, 0.3);
}

.inquiry-note {
  font-size: 14px;
  color: rgba(10, 10, 10, 0.55);
  line-height: 1.6;
  max-width: 360px;
}

/* --- Gravity Forms override — scoped to .inquiry-form-wrap only --- */
.inquiry-form-wrap {
  background: var(--theme-palette-color-8);
  padding: 40px 36px;
  border: 1px solid var(--theme-palette-color-5);
}

@media (max-width: 600px) {
  .inquiry-form-wrap {
    padding: 28px 20px;
  }
}

.inquiry-form-wrap .gform_wrapper {
  margin: 0;
}

.inquiry-form-wrap .gform_body {
  margin: 0;
}

.inquiry-form-wrap .gform_fields {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}

@media (max-width: 700px) {
  .inquiry-form-wrap .gform_fields {
    grid-template-columns: 1fr;
  }
}

.inquiry-form-wrap .gfield--type-textarea,
.inquiry-form-wrap .gfield--type-consent,
.inquiry-form-wrap .gform_footer,
.inquiry-form-wrap .gform_page_footer {
  grid-column: 1 / -1;
}

.inquiry-form-wrap .gfield_label {
  font-size: 12.5px !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: #5a5a5a;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.inquiry-form-wrap .gfield_required {
  color: var(--theme-palette-color-6);
}

.inquiry-form-wrap .gfield_description {
  font-size: 13px;
  color: rgba(10, 10, 10, 0.45);
}

.inquiry-form-wrap input[type="text"],
.inquiry-form-wrap input[type="email"],
.inquiry-form-wrap input[type="tel"],
.inquiry-form-wrap input[type="number"],
.inquiry-form-wrap input[type="url"],
.inquiry-form-wrap select,
.inquiry-form-wrap textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid var(--theme-palette-color-5);
  border-radius: 0;
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  color: var(--theme-palette-color-4);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.inquiry-form-wrap input::placeholder,
.inquiry-form-wrap textarea::placeholder {
  color: rgba(10, 10, 10, 0.3);
}

.inquiry-form-wrap input:focus,
.inquiry-form-wrap select:focus,
.inquiry-form-wrap textarea:focus {
  border-bottom-color: var(--theme-palette-color-1);
}

.inquiry-form-wrap select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23000' stroke-width='1.4' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
  cursor: pointer;
}

.inquiry-form-wrap textarea {
  min-height: 140px;
  resize: vertical;
}

.inquiry-form-wrap .gform_footer,
.inquiry-form-wrap .gform_page_footer {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 12px;
}

.inquiry-form-wrap .gform_button,
.inquiry-form-wrap input[type="submit"] {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  background: var(--theme-palette-color-6);
  color: var(--theme-palette-color-4);
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.inquiry-form-wrap .gform_button:hover,
.inquiry-form-wrap input[type="submit"]:hover {
  background: var(--theme-palette-color-2);
  color: var(--theme-palette-color-8);
}

.inquiry-form-wrap .gform_button::after {
  content: '→';
}

.inquiry-form-wrap .gfield_error input,
.inquiry-form-wrap .gfield_error select,
.inquiry-form-wrap .gfield_error textarea {
  border-bottom-color: #c0392b;
}

.inquiry-form-wrap .validation_message {
  font-size: 12px;
  color: #c0392b;
  margin-top: 4px;
  display: block;
}

.inquiry-form-wrap .gform_validation_errors {
  border: 1px solid rgba(192, 57, 43, 0.25);
  background: rgba(192, 57, 43, 0.05);
  border-radius: 6px;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 13px;
  color: #c0392b;
  grid-column: 1 / -1;
}

.inquiry-form-wrap .gform_confirmation_message {
  padding: 24px 0;
  font-size: 16px;
  color: var(--theme-palette-color-1);
  line-height: 1.6;
}

/* --- Intro FX animations --- */
[data-fx="rise"] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-fx="slide-l"] {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-fx="slide-r"] {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-fx].fx-done {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-fx] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* --- Contact Card — hover state --- */
.contact-card {
  transition: background 0.25s ease, border-left-color 0.25s ease;
  border-left: 3px solid transparent;
}

.contact-card:hover {
  border-left-color: var(--theme-palette-color-1);
}

.contact-card:hover .contact-card-icon {
  background: var(--theme-palette-color-1);
  color: var(--theme-palette-color-8);
}

.contact-card:hover .contact-card-body,
.contact-card:hover .contact-card-body strong,
.contact-card:hover .contact-card-faded,
.contact-card:hover .contact-card-list a,
.contact-card:hover .contact-card-link,
.contact-card:hover .contact-socials a {
  color: var(--theme-palette-color-1);
  transition: color 0.25s ease;
}

.contact-card:hover .contact-socials a {
  border-color: var(--theme-palette-color-1);
  background: transparent;
}

/* ============ About Page Template ============ */

/* --- Our Story --- */
.about-story {
  padding: 80px 0;
}

@media (max-width: 1100px) {
  .about-story {
    padding: 56px 0;
  }
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 96px;
  align-items: start;
}

@media (max-width: 1100px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-story-headline {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-top: 20px;
}

.about-story-headline .line {
  display: block;
}

.about-story-headline .faded {
  color: rgba(10, 10, 10, 0.28);
}

.about-story-right .lead {
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 400;
  line-height: 1.55;
  color: var(--theme-palette-color-4);
  margin-bottom: 20px;
}

.about-story-right p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(10, 10, 10, 0.65);
  margin-bottom: 16px;
}

.partners-list {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--theme-palette-color-5);
}

.partners-list-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.4);
  margin-bottom: 14px;
}

.partners-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.partners-list li {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(10, 10, 10, 0.7);
  padding: 10px 0;
  border-bottom: 1px solid var(--theme-palette-color-5);
}

.partners-list li strong {
  color: var(--theme-palette-color-4);
  font-weight: 400;
}

/* --- Vision & Mission --- */
.vision-mission {
  padding: 64px 0;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid var(--theme-palette-color-5);
}

@media (max-width: 800px) {
  .vm-grid {
    grid-template-columns: 1fr;
  }
}

.vm-card {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vm-card:first-child {
  border-right: 1px solid var(--theme-palette-color-5);
}

@media (max-width: 800px) {
  .vm-card:first-child {
    border-right: none;
    border-bottom: 1px solid var(--theme-palette-color-5);
  }
}

.vm-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--theme-palette-color-1);
}

.vm-heading {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.4;
  color: var(--theme-palette-color-4);
}

/* --- Catalyst / Our Mandate --- */
.catalyst.catalyst-v2 {
  padding: 80px 0 64px;
  background: var(--theme-palette-color-7);
}

@media (max-width: 1100px) {
  .catalyst.catalyst-v2 {
    padding: 56px 0;
  }
}

.catalyst-head {
  max-width: 680px;
  margin-bottom: 56px;
}

.catalyst-headline {
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 16px 0 20px;
}

.catalyst-headline .line {
  display: block;
}

.catalyst-headline .emphasis {
  color: var(--theme-palette-color-1);
  font-weight: 400;
  font-style: italic;
}

.catalyst-lede {
  font-size: 15px;
  color: rgba(10, 10, 10, 0.6);
  line-height: 1.65;
  max-width: 560px;
}

.catalyst-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--theme-palette-color-5);
  border-left: 1px solid var(--theme-palette-color-5);
}

@media (max-width: 900px) {
  .catalyst-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .catalyst-grid-v2 {
    grid-template-columns: 1fr 1fr;
  }
}

.cat-card {
  aspect-ratio: 1 / 1;
  border-right: 1px solid var(--theme-palette-color-5);
  border-bottom: 1px solid var(--theme-palette-color-5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.cat-letter {
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 300;
  letter-spacing: -0.05em;
  color: var(--theme-palette-color-4);
  line-height: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.cat-reveal {
  position: absolute;
  inset: 0;
  background: var(--theme-palette-color-1);
  color: var(--theme-palette-color-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
}

.cat-reveal h3 {
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 400;
  color: var(--theme-palette-color-6);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.cat-reveal p {
  font-size: clamp(12px, 0.95vw, 14px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 900px) {
    .cat-reveal p {
    font-size: 10px;
  }
}

.cat-card:hover .cat-letter,
.cat-card:focus-within .cat-letter {
  opacity: 0;
  transform: scale(0.85);
}

.cat-card:hover .cat-reveal,
.cat-card:focus-within .cat-reveal {
  opacity: 1;
  transform: translateY(0);
}

.cat-card.is-active .cat-letter {
  opacity: 0;
  transform: scale(0.85);
}

.cat-card.is-active .cat-reveal {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

  .cat-letter,
  .cat-reveal {
    transition: none;
  }
}

/* --- Values --- */
.values {
  padding: 80px 0;
  background: var(--theme-palette-color-1);
  color: var(--theme-palette-color-8);
}

.values-head {
  margin-bottom: 56px;
}

.values-headline {
  display: flex;
  flex-direction: column;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--theme-palette-color-8);
  font-size: clamp(48px, 6.8vw, 88px);
}

.values-headline .line {
  display: block;
}

.values-headline .faded {
  color: rgba(255, 255, 255, 0.3);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 1100px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.value {
  padding: 32px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.value-num {
  color: var(--theme-palette-color-6);
  font-size: 12px;
  letter-spacing: 0.14em;
  margin-bottom: 36px;
}

.value h3 {
  color: var(--theme-palette-color-8);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.005em;

  margin: 0 0 12px;
}

.value p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* --- Leadership --- */
.about-leadership {
  padding: 80px 0;
}

@media (max-width: 1100px) {
  .about-leadership {
    padding: 56px 0;
  }
}

.leadership-head {
  margin-bottom: 56px;
}

.leadership-headline {
  display: flex;
  flex-direction: column;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0;
  font-size: clamp(44px, 5vw, 64px);
  color: var(--theme-palette-color-4);
}

.leadership-headline .line {
  display: block;
}

.leadership-headline .faded {
  color: rgba(10, 10, 10, 0.28);
}

/* 5-col override scoped to about-leadership so .block-facilitators 3-col is unchanged */
.about-leadership .leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 40px;
}

@media (max-width: 1100px) {
  .about-leadership .leadership-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .about-leadership .leadership-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* person-photo, person-role, person-name already defined — no re-declaration */

/* ============ Home Page Template ============ */

/* ── shared section-head (events / insights) ──────────────────── */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 80px;
  margin-bottom: 72px;
}

@media (max-width: 900px) {
  .section-head {
    flex-direction: column;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .section-head-left {
    align-self: self-start;
  }
}

.section-headline {
  display: flex;
  flex-direction: column;
  font-weight: 400;
  font-size: clamp(44px, 5.4vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.section-headline .line {
  display: block;
}

.section-headline .faded {
  color: rgba(10, 10, 10, 0.28);
}

.section-head-right {
  max-width: 380px;
  font-size: 19px;
  line-height: 1.5;
  color: #5a5a5a;
  padding-bottom: 6px;
  flex-shrink: 0;
  flex-basis: 380px;
}

/* ── eyebrow base ─────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  padding-bottom: 14px;
  border-bottom: 1px solid currentColor;
  color: var(--theme-palette-color-4);
  margin-bottom: 36px;
}

.eyebrow.on-blue {
  color: var(--theme-palette-color-8);
  border-bottom-color: rgba(255, 255, 255, 0.35);
}

.eyebrow.on-yellow {
  color: var(--theme-palette-color-4);
  border-bottom-color: rgba(10, 10, 10, 0.25);
}

/* ── WHAT WE DO (blue section) ────────────────────────────────── */
.what {
  position: relative;
  color: var(--theme-palette-color-8);
  padding: 96px 0 72px;
  overflow: hidden;
  background: url("../images/pattern.svg") no-repeat;
  background-color: var(--theme-palette-color-1);
}

.what-pattern {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  max-width: 680px;
  opacity: 0.06;
  pointer-events: none;
}

.what-inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.what-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 100px;
  position: relative;
  margin-bottom: 72px;
}

@media screen and (max-width: 900px) {
  .what-stack {
    gap: 60px;
    margin-bottom: 36px;
  }
}

@media screen and (max-width: 600px) {
  .what-stack {
    gap: 0px;
  }
}

.what-headline {
  margin-top: 20px;
  display: block;
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.what-headline .line {
  display: block;
  color: rgba(255, 255, 255, 0.35);
}

.what-headline .reveal-char {
  color: inherit;
  transition: color 0.08s linear;
}

.what-body {
  max-width: 560px;
}

.what-lead {
  font-size: 19px;
  line-height: 1.45;
  color: var(--theme-palette-color-8);
  margin: 0 0 18px;
}

.what-detail {
  font-size: 16px;
  line-height: 1.6;
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

/* Rotating mark */
.what-mark {
  position: absolute;
  right: 0;
  top: 100px;
  width: clamp(120px, 12vw, 160px);
  height: clamp(120px, 12vw, 160px);
  animation: what-mark-spin 20s linear infinite;
}

@keyframes what-mark-spin {
  to {
    transform: rotate(360deg);
  }
}

.what-mark svg {
  width: 100%;
  height: 100%;
}

.what-mark text {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  fill: var(--theme-palette-color-6);
}

.what-mark-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--theme-palette-color-6);
}

@media (max-width: 768px) {
  .what-mark {
    position: relative;
    margin: 0 auto;
    top: 30px;
  }
}

/* Pills */
.what-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  font-size: 14px;
  color: var(--theme-palette-color-8);
  white-space: nowrap;
}

.pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--theme-palette-color-6);
  flex-shrink: 0;
}

/* ── IMPACT ───────────────────────────────────────────────────── */
.impact {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
}

.impact-bleed {
  position: absolute;
  right: -5%;
  top: -280px;
  width: 728px;
  opacity: 0.9;
  pointer-events: none;
}

.impact-inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.impact-intro {
  max-width: 560px;
  margin-bottom: 56px;
}

.impact-headline {
  font-weight: 400;
  font-size: clamp(44px, 5.4vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--blue);
  margin: 0;
  color: var(--theme-palette-color-1);
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-top: 1px solid var(--theme-palette-color-5);
}

@media (max-width: 700px) {
  .impact-stats {
    grid-template-columns: 1fr;
  }
}

.stat {
  padding: 40px 0;
}

.stat:not(:last-child) {
  border-right: 1px solid var(--theme-palette-color-5);
  padding-right: 32px;
}

.stat:not(:first-child) {
  padding-left: 32px;
}

@media (max-width: 700px) {
  .stat:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--theme-palette-color-5);
    padding-right: 0;
  }

  .stat:not(:first-child) {
    padding-left: 0;
  }
}

.stat .label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #757575;
  margin-bottom: 24px;
}

.stat .num {
  display: flex;
  align-items: baseline;
  margin-bottom: 24px;
}

.stat .big {
  font-weight: 400;
  font-size: clamp(64px, 7.5vw, 100px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--theme-palette-color-1);
}

.stat .plus {
  font-weight: 300;
  font-size: clamp(36px, 4vw, 55px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--theme-palette-color-6);
  margin-left: 6px;
}

.stat .footnote {
  font-size: 15px;
  line-height: 1.5;
  color: #757575;
  max-width: 240px;
}

/* data-fx="scale" */
[data-fx="scale"] {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-fx="scale"].fx-done {
  opacity: 1;
  transform: none;
}

/* data-fx="fade" */
[data-fx="fade"] {
  opacity: 0;
  transition: opacity 0.6s ease;
}

[data-fx="fade"].fx-done {
  opacity: 1;
}

/* ── STORIES ──────────────────────────────────────────────────── */
.stories {
  padding: 80px 0;
  background: var(--theme-palette-color-7);
}

.stories-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 72px;
  gap: 80px;
}

@media (max-width: 900px) {
  .stories-head {
    flex-direction: column;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
}

.stories-headline {
  display: flex;
  flex-direction: column;
  font-weight: 400;
  font-size: clamp(44px, 5.4vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--theme-palette-color-4);
  margin: 0px;
}

.stories-headline .line {
  display: block;
}

.stories-headline .faded {
  color: rgba(10, 10, 10, 0.28);
}

.stories-head-right {
  max-width: 420px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(10, 10, 10, 0.6);
  padding-bottom: 6px;
  flex: 1 1 0px;
}

.stories-list {
  border-top: 1px solid var(--theme-palette-color-4);
}

.story-row {
  display: grid;
  grid-template-columns: 80px 1fr auto 60px;
  align-items: center;
  gap: 16px;
  padding: 36px 0;
  border-bottom: 1px solid var(--theme-palette-color-5);
  cursor: pointer;
  transition: padding-left 0.25s ease;
}

@media (max-width: 700px) {
  .story-row {
    grid-template-columns: 36px 1fr auto 24px;
    gap: 10px;
    padding: 18px 0;
  }
}

.story-row:hover,
.story-row.active {
  padding-left: 12px;
}

.story-row:hover .name {
  color: var(--theme-palette-color-1);
}

.story-row .idx {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(10, 10, 10, 0.35);
}

.story-row .name {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--theme-palette-color-4);
}

@media (max-width: 700px) {
  .story-row .name {
    font-size: 16px;
    line-height: 1.8;
  }
}

.story-row .tag {
  color: rgba(10, 10, 10, 0.5);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: right;
}

@media (max-width: 500px) {
  .story-row .tag {
    display: none;
  }
}

.story-row .arr {
  font-size: 18px;
  color: var(--theme-palette-color-1);
  transition: transform 0.2s;
}

.story-row:hover .arr {
  transform: translateX(4px);
}

/* ── PROGRAMS (stairs) ────────────────────────────────────────── */
.programs {
  background: var(--theme-palette-color-1);
  color: var(--theme-palette-color-8);
  padding: 96px 0;
  overflow: hidden;
}

.programs-inner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

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

.programs-headline {
  display: flex;
  flex-direction: column;
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--theme-palette-color-8);
  margin: 0;
  width: 481px;
  max-width: 100%;
}

@media (max-width: 900px) {
  .programs-headline {
    width: unset;
  }
}

.programs-headline .line {
  display: block;
  color: var(--theme-palette-color-8);
}

.programs-headline .faded {
  color: rgba(255, 255, 255, 0.35);
}

.programs-body {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 460px;
  margin: 28px 0 0;
}

.programs-actions {
  margin-top: 28px;
}

/* Stairs graphic */
.programs-stairs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stair {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 137px;
  padding: 0 36px;
  overflow: hidden;
  border-bottom: 1px solid var(--theme-palette-color-6);
  background: var(--theme-palette-color-6);
}

.stair-1 {
  width: 55%;
}

.stair-2 {
  width: 75%;
}

.stair-3 {
  width: 100%;
  border-bottom: 0;
}

@media (max-width: 900px) {
  .stair-1 {
    width: 65%;
  }

  .stair-2 {
    width: 82%;
  }

  .stair-3 {
    width: 100%;
  }
}

.stair-label {
  font-weight: 300;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: #0a0a0a;
}

.stair-num {
  font-family: 'Aeonik', Inter, sans-serif;
  font-weight: 700;
  font-size: clamp(80px, 9vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--theme-palette-color-1);
  position: absolute;
  right: 36px;
  bottom: -18px;
}


/* ── EVENTS PREVIEW ───────────────────────────────────────────── */
.events {
  padding: 80px 0;
  background: #F6F6F6;
}

.events-inner {
  margin: 0 auto;
}

.event-cards {
  display: flex;
  gap: 24px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .event-cards {
    grid-template-columns: 1fr;
  }
}

.event-card {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--theme-palette-color-8);
  padding: 36px 32px;
  min-height: 320px;
  text-decoration: none;
  color: #5a5a5a;
  transition: transform 0.2s ease;
}

.event-card:last-child {
  border-right: none;
}

@media (max-width: 900px) {
  .event-card {
    border-right: none;
    border-bottom: 1px solid var(--theme-palette-color-5);
  }

  .event-card:last-child {
    border-bottom: none;
  }
}

.event-card h3 {
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--theme-palette-color-4);
}

.event-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(10, 10, 10, 0.6);
  flex: 1;
}

.event-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5a5a5a;
}

.event-meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.3);
}

.event-card.fx-done span.event-link {
  padding-top: 16px;
  border-top: 1px solid var(--theme-palette-color-5);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--theme-palette-color-1);
}

.events-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── INSIGHTS ─────────────────────────────────────────────────── */
.insights {
  padding: 80px 0;
  background: var(--theme-palette-color-8);
}

.insights-inner {
  margin: 0 auto;
}

.insights-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
  align-items: start;
}

@media (max-width: 900px) {
  .insights-grid {
    grid-template-columns: 1fr;
  }
}

.insight-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.insight-card .thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--theme-palette-color-1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: rgba(0, 0, 0, 0.5);
}

.insight-card .thumb .insight-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight-card.feat .thumb {
  aspect-ratio: 5 / 4;
}

.insight-card .cat {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--theme-palette-color-1);
}

.insight-card h3 {
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--theme-palette-color-4);
  margin: 0;
}

.insight-card.feat h3 {
  font-size: clamp(24px, 2.4vw, 32px);
}

.insight-card p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(10, 10, 10, 0.6);
  margin: 0 0 8px;
}

.insight-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--theme-palette-color-5);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(10, 10, 10, 0.45);
}

.insight-card .meta .arr {
  color: var(--theme-palette-color-1);
  font-size: 16px;
  transition: transform 0.2s;
}

.insight-card:hover .meta .arr {
  transform: translateX(4px);
}

.insights-foot {
  display: flex;
  padding-top: 24px;
  border-top: 1px solid var(--theme-palette-color-5);
}

/* ── PARTNERS ─────────────────────────────────────────────────── */
.partners {
  padding: 80px 0;
}

.partners-inner {
  margin: 0 auto;
}

.partners-head {
  margin-bottom: 56px;
}

.partners-headline {
  display: flex;
  flex-direction: column;
  font-weight: 300;
  font-size: clamp(44px, 5.4vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
}

.partners-headline .line {
  display: block;
}

.partners-headline .faded {
  color: rgba(10, 10, 10, 0.28);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.partners-grid .cell:nth-child(6n) {
  border-right: 0;
}

.partners-grid .cell:nth-last-child(-n+6) {
  border-bottom: 0;
}

@media (max-width: 900px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 500px) {
  .partners-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.partners-grid .cell {
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: background 0.2s ease, color 0.2s ease;
}

.partners-grid .cell img {
  height: 50px;
  width: auto;
}

.partners-grid .cell:hover {
  background: var(--theme-palette-color-1);
  color: var(--theme-palette-color-6);
}

/* ── NEWSLETTER / CTA (yellow) ────────────────────────────────── */
.newsletter {
  background: var(--theme-palette-color-6);
  padding: 80px 0;
}

.newsletter-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
  text-align: center;
}

.newsletter-headline {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 24px 0 32px;
  color: var(--theme-palette-color-4);
}

.newsletter-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 200px;
  max-width: 360px;
}

.newsletter-input input {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid var(--theme-palette-color-1);
  border-radius: 9999px;
  font-size: 15px;
  font-family: inherit;
  background: transparent;
  color: var(--theme-palette-color-4);
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-input input::placeholder {
  color: rgba(10, 10, 10, 0.4);
}

.newsletter-input input:focus {
  border-color: var(--theme-palette-color-2);
}

.newsletter-meta {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(10, 10, 10, 0.45);
}

/* Gravity forms */

form#gform_2 {
  display: grid;
  grid-auto-flow: column;
}

form#form_2 .gform-body.gform_body #gform_fields_2 {
  border-bottom: 1px solid var(--ink) !important;
  padding: 14px 0px !important;
}

/* ================================================================
   Content Area Spacing — Blocksy integration
   ================================================================
   Blocksy outputs data-vertical-spacing="top:bottom" on <main>,
   which maps to:
     [data-vertical-spacing*=top]    { padding-top: var(--theme-content-vertical-spacing) }
     [data-vertical-spacing*=bottom] { padding-bottom: var(--theme-content-vertical-spacing) }

   Full-bleed elements (hero, CTA banner, nested <main>) use
   negative margins to eat into that padding so they still sit
   flush against the header/footer.
   ================================================================ */

/* Hero — pull up into the top spacing */
/* main.site-main>.sp-hero:first-child,  */
/* main.site-main>.contact-hero:first-child {
  margin-top: calc(-1 * var(--theme-content-vertical-spacing, 60px));
} */

/* CTA banner — pull down into the bottom spacing */
main.site-main>.se-cta-section:last-child {
  margin-bottom: calc(-1 * var(--theme-content-vertical-spacing, 60px));
}

/* Nested <main> elements inside Blocksy's outer <main>
   (archive-event, archive-program, single-event, single-program).
   Pull both top and bottom to negate the outer padding. */
main.site-main>main {
  margin-top: calc(-1 * var(--theme-content-vertical-spacing, 60px));
  margin-bottom: calc(-1 * var(--theme-content-vertical-spacing, 60px));
}

/* ---- Gravity Forms — newsletter subscribe form (CTA banner) ---- */

.subscribe-form-wrap #gform_2 {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  width: 504px;
  max-width: 100%;
  align-items: end;
}

.subscribe-form-wrap .gform_heading {
  display: none;
}

.subscribe-form-wrap .gform-body {
  grid-column: 1;
}

.subscribe-form-wrap .gform_footer {
  grid-column: 2;
  padding: 0;
  margin: 0;
}

.subscribe-form-wrap .gfield_label {
  display: none;
}

.subscribe-form-wrap .ginput_container_email {
  border-bottom: 1px solid #0a0a0a;
  padding: 14px 0;
}

.subscribe-form-wrap.events-subscribe-form .ginput_container_email {
  border-bottom: 1px solid #ffffff;
  padding: 0;
}

.subscribe-form-wrap .ginput_container_email input[type="email"] {
  width: 100%;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  padding: 0;
  outline: none;
  box-shadow: none;
}

.subscribe-form-wrap .ginput_container_email input[type="email"]::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.subscribe-form-wrap.subscribe-form-wrap.events-subscribe-form .ginput_container_email input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.subscribe-form-wrap .gform_button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.subscribe-form-wrap .gform_button::after {
  content: '→';
}

.subscribe-form-wrap .gform_button:hover {
  background: var(--blue-deep);
}

.subscribe-form-wrap .endnote {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.45);
}

.subscribe-form-wrap .gfield_validation_message,
.subscribe-form-wrap .validation_message {
  font-size: 12px;
  color: var(--ink);
  margin-top: 4px;
}

@media (max-width: 600px) {
  .subscribe-form-wrap #gform_2 {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .subscribe-form-wrap .gform_footer {
    grid-column: 1;
  }
}

/* ---- Gravity Forms — contact inquiry form ---- */

/* Reset GF wrapper chrome */
.inquiry-form-wrap .gform_wrapper,
.inquiry-form-wrap .gform_wrapper.gform-theme {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  max-width: none;
}

.inquiry-form-wrap .gform_heading {
  display: none;
}

/* Form box — matches .inquiry-form */
.inquiry-form-wrap #gform_1 {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: #fff;
}

/* Two-column grid for fields — half-width fields share a row */
.inquiry-form-wrap .gform_body,
.inquiry-form-wrap .gform-body {
  display: contents;
}

.inquiry-form-wrap #gform_fields_1 {
  display: grid;
  gap: 28px 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Full-width fields span both columns */
.inquiry-form-wrap .gfield:not(.gfield--width-half) {
  grid-column: 1 / -1;
}

/* Hide verbose "(Required)" text, replace with a blue asterisk */
.inquiry-form-wrap .gfield_required_text {
  display: none;
}

.inquiry-form-wrap .gfield_required::before {
  content: ' *';
  color: var(--blue);
}

/* Field description (sublabel / placeholder hint) */
.inquiry-form-wrap .gfield_description {
  font-size: 13px;
  color: rgba(10, 10, 10, 0.4);
  margin-bottom: 4px;
}

/* All inputs, select, textarea — bottom-border only, matches .field input */
.inquiry-form-wrap .ginput_container input[type="text"],
.inquiry-form-wrap .ginput_container input[type="email"],
.inquiry-form-wrap .ginput_container input[type="tel"],
.inquiry-form-wrap .ginput_container select,
.inquiry-form-wrap .ginput_container textarea {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(10, 10, 10, 0.18);
  border-radius: 0;
  padding: 10px 0;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s ease;
}

.inquiry-form-wrap .ginput_container input::placeholder,
.inquiry-form-wrap .ginput_container textarea::placeholder {
  color: rgba(10, 10, 10, 0.32);
}

.inquiry-form-wrap .ginput_container input:focus,
.inquiry-form-wrap .ginput_container select:focus,
.inquiry-form-wrap .ginput_container textarea:focus {
  border-bottom-color: var(--blue);
}

/* Select chevron */
.inquiry-form-wrap .ginput_container select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%235a5a5a' stroke-width='1.4'><path d='M1 1.5l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
  cursor: pointer;
  padding: 0px;
}

/* Textarea */
.inquiry-form-wrap .ginput_container textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.5;
}

/* Footer — submit + disclaimer side by side, matches .form-actions */
.inquiry-form-wrap .gform_footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0;
  margin-top: 0;
}

/* Submit button — yellow pill */
.inquiry-form-wrap .gform_button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--ink);
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  padding: 14px 28px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
  order: -1;
}

.inquiry-form-wrap .gform_button::after {
  content: ' →';
}

.inquiry-form-wrap .gform_button:hover {
  background: var(--yellow-soft);
}

/* Disclaimer text injected alongside the footer */
.inquiry-form-wrap .form-meta {
  font-size: 12.5px;
  color: var(--ink-muted);
  max-width: 36ch;
  line-height: 1.5;
}

/* Validation messages */
.inquiry-form-wrap .gfield_validation_message,
.inquiry-form-wrap .validation_message {
  font-size: 12px;
  color: #c0392b;
  margin-top: 4px;
}

@media (max-width: 700px) {
  .inquiry-form-wrap #gform_1 {
    gap: 24px;
  }

  .inquiry-form-wrap #gform_fields_1 {
    grid-template-columns: 1fr;
  }

  .inquiry-form-wrap .gfield:not(.gfield--width-half) {
    grid-column: 1;
  }
}

/* ---- Programme badge ---- */

.programme-badge {
  position: relative;
  aspect-ratio: 1;
  background: var(--theme-palette-color-1);
  color: var(--theme-palette-color-6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  overflow: hidden;
}

/* Yellow corner triangle */
.programme-badge::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 35%;
  background: var(--theme-palette-color-6);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.programme-badge .badge-num {
  font-size: 13px;
  letter-spacing: 0.14em;
  font-weight: 400;
  color: var(--theme-palette-color-8);
  position: relative;
  z-index: 1;
  line-height: 1;
}

.programme-badge .badge-icon {
  align-self: center;
  width: 36px;
  height: 36px;
  position: relative;
  z-index: 1;
  color: var(--theme-palette-color-6);
}

/* blocks.css had color: var(--ink) — unreadable on dark blue */
.programme-badge .badge-tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0a0a0a;
  position: relative;
  z-index: 1;
  line-height: 1;
}