
:root {
  --schedule-concert: #f2e2c9;
  --schedule-concert-strong: #6e4415;
  --schedule-masterclass: #dfeadf;
  --schedule-masterclass-strong: #0b5a45;
  --schedule-workshop: #e2eee2;
  --schedule-workshop-strong: #0b5a45;
  --schedule-exhibition: #dfeaf1;
  --schedule-exhibition-strong: #174c61;
  --schedule-talk: #ebe5f0;
  --schedule-talk-strong: #59416f;
}

.schedule-hero {
  padding: clamp(58px, 7vw, 92px) 0 42px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 84% 42%, rgba(11,61,46,.08), transparent 28%),
    var(--offwhite);
}

.schedule-hero-inner {
  max-width: 900px;
}

.schedule-hero h1 {
  margin: 0;
  color: var(--green);
  font-family: "Archivo", sans-serif;
  font-size: clamp(3.3rem, 7vw, 6.6rem);
  line-height: .96;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.schedule-hero p:last-child {
  max-width: 700px;
  margin: 22px 0 0;
  font-size: clamp(1.04rem, 1.4vw, 1.25rem);
  color: #294039;
}

.schedule-controls {
  position: sticky;
  top: 76px;
  z-index: 24;
  padding: 18px 0;
  background: rgba(247,244,236,.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.schedule-controls-inner {
  display: grid;
  gap: 14px;
}

.day-tabs,
.category-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.day-tab,
.filter-button {
  min-height: 42px;
  border: 1px solid rgba(11,61,46,.28);
  border-radius: 999px;
  padding: 9px 18px;
  background: transparent;
  color: var(--green);
  font: inherit;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.day-tab:hover,
.day-tab:focus-visible,
.filter-button:hover,
.filter-button:focus-visible,
.day-tab.active,
.filter-button.active {
  background: var(--green);
  color: var(--offwhite);
  border-color: var(--green);
  outline: none;
}

.full-schedule {
  padding: 42px 0 88px;
}

.schedule-day {
  scroll-margin-top: 200px;
  margin-bottom: 38px;
}

.schedule-day:last-child {
  margin-bottom: 0;
}

.schedule-day-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}

.schedule-day-header h2 {
  flex: 0 0 auto;
  margin: 0;
  font-family: "Archivo", sans-serif;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.schedule-day-rule {
  height: 1px;
  background: rgba(11,61,46,.32);
  flex: 1 1 auto;
}

.schedule-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  gap: 14px;
  align-items: start;
}

.schedule-zone {
  display: grid;
  gap: 12px;
}

.schedule-card {
  border-radius: 24px;
  border: 1px solid rgba(11,61,46,.08);
  padding: 24px;
  box-shadow: 0 12px 28px rgba(17,17,17,.055);
  min-width: 0;
}

.schedule-card.concert {
  background: linear-gradient(135deg, #f7ecdc, var(--schedule-concert));
  color: #352718;
  padding: clamp(26px, 3vw, 36px);
}

.schedule-card.masterclass {
  background: linear-gradient(135deg, #edf4ed, var(--schedule-masterclass));
}

.schedule-card.workshop {
  background: linear-gradient(135deg, #eef5ee, var(--schedule-workshop));
}

.schedule-card.exhibition {
  background: linear-gradient(135deg, #edf4f7, var(--schedule-exhibition));
}

.schedule-card.talk {
  background: linear-gradient(135deg, #f3eff6, var(--schedule-talk));
}

.schedule-meta {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 9px;
}

.schedule-type {
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.concert .schedule-type { color: var(--schedule-concert-strong); }
.masterclass .schedule-type { color: var(--schedule-masterclass-strong); }
.workshop .schedule-type { color: var(--schedule-workshop-strong); }
.exhibition .schedule-type { color: var(--schedule-exhibition-strong); }
.talk .schedule-type { color: var(--schedule-talk-strong); }

.schedule-time {
  font-weight: 900;
  color: var(--green);
}

.schedule-card h3 {
  margin: 0;
  color: var(--green);
  font-family: "Archivo", sans-serif;
  text-transform: none;
  letter-spacing: -0.035em;
  line-height: 1.04;
  font-size: clamp(1.5rem, 2.4vw, 2.35rem);
}

.schedule-card.concert h3 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.schedule-subtitle {
  margin: 8px 0 0;
  max-width: 720px;
  color: #31443e;
  font-size: .98rem;
  line-height: 1.45;
}

.masterclass-group {
  padding: 0;
  overflow: hidden;
}

.masterclass-group-head {
  padding: 24px 24px 16px;
}

.masterclass-group-head h3 {
  font-size: 1.55rem;
}

.masterclass-row {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 12px 16px 12px 24px;
  border-top: 1px solid rgba(11,61,46,.13);
}

.masterclass-row-time {
  font-size: .88rem;
  font-weight: 800;
  color: #315247;
}

.masterclass-row-title {
  min-width: 0;
  font-weight: 800;
  color: var(--green);
}

.event-action {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(11,61,46,.26);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green);
  text-decoration: none;
  font-size: 1.18rem;
  font-weight: 900;
  transition: background .16s ease, color .16s ease, transform .16s ease;
}

.event-action:hover,
.event-action:focus-visible {
  background: var(--green);
  color: var(--offwhite);
  transform: translateX(2px);
  outline: none;
}

.event-action.is-pending {
  opacity: .42;
  cursor: default;
  transform: none;
}

.schedule-card-link {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 18px;
  align-items: center;
}

.schedule-card-link .event-action {
  align-self: center;
}

.event-action-label {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.schedule-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: .88rem;
}

.programme-back {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

.site-footer.schedule-footer .footer-inner {
  justify-content: space-between;
}

.site-footer.schedule-footer .footer-links {
  margin-left: auto;
}

@media (max-width: 980px) {
  .schedule-controls {
    top: 70px;
  }

  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .schedule-zone {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .schedule-hero {
    padding: 44px 0 28px;
  }

  .schedule-hero h1 {
    font-size: clamp(2.8rem, 14.5vw, 4.4rem);
    text-align: left;
  }

  .schedule-controls {
    position: static;
    padding: 14px 0;
  }

  .schedule-controls-inner {
    overflow: hidden;
  }

  .day-tabs,
  .category-filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 3px;
    scrollbar-width: none;
  }

  .day-tabs::-webkit-scrollbar,
  .category-filters::-webkit-scrollbar {
    display: none;
  }

  .day-tab,
  .filter-button {
    flex: 0 0 auto;
    min-height: 40px;
    padding-inline: 15px;
    font-size: .71rem;
  }

  .full-schedule {
    padding-top: 32px;
    padding-bottom: 64px;
  }

  .schedule-day {
    scroll-margin-top: 88px;
  }

  .schedule-day-header {
    gap: 12px;
  }

  .schedule-day-header h2 {
    font-size: clamp(1.75rem, 9vw, 2.55rem);
  }

  .schedule-card {
    border-radius: 20px;
    padding: 20px;
  }

  .schedule-card.concert {
    padding: 24px 20px;
  }

  .schedule-card h3,
  .schedule-card.concert h3 {
    font-size: 1.65rem;
  }

  .masterclass-group-head {
    padding: 20px 18px 14px;
  }

  .masterclass-row {
    grid-template-columns: 1fr 38px;
    gap: 10px;
    padding: 14px 14px 14px 18px;
  }

  .masterclass-row-time {
    grid-column: 1;
    font-size: .78rem;
    margin-bottom: -5px;
  }

  .masterclass-row-title {
    grid-column: 1;
  }

  .masterclass-row .event-action {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .schedule-card-link {
    gap: 12px;
  }
}


/* v12.2 — concert ticket actions are explicit text CTAs, not ambiguous arrows */
.schedule-card.concert .event-action.ticket-action {
  width: auto;
  min-width: 108px;
  height: 44px;
  padding: 0 14px;
  border-radius: 10px;
  border-color: #1E5BFF;
  background: #1E5BFF;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: "Inter", sans-serif;
  font-size: .76rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.schedule-card.concert .event-action.ticket-action:hover,
.schedule-card.concert .event-action.ticket-action:focus-visible {
  background: #164de0;
  border-color: #164de0;
  color: #fff;
  transform: translateX(2px);
}
.schedule-card.concert .event-action.ticket-action .event-action-label {
  position: static;
  inline-size: auto;
  block-size: auto;
  overflow: visible;
  clip-path: none;
}
.schedule-card.concert .event-action.ticket-action > span[aria-hidden="true"] {
  order: 2;
  font-size: 1rem;
}
@media (max-width: 620px) {
  .schedule-card.concert .event-action.ticket-action {
    min-width: 96px;
    height: 44px;
    padding-inline: 12px;
    font-size: .72rem;
  }
}

/* ==========================================================
   v12.4 — programme page integration with approved GSF symbol
   ========================================================== */

.schedule-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 7vw, 92px) 0 clamp(44px, 5vw, 66px);
  background: var(--offwhite);
  border-bottom: 1px solid rgba(11, 61, 46, .18);
}

.schedule-hero-inner {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, .46fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
}

.schedule-hero-copy {
  min-width: 0;
}

.schedule-hero-copy > p:not(.section-kicker):not(.schedule-campaign) {
  max-width: 700px;
  margin: 22px 0 0;
  font-size: clamp(1.04rem, 1.4vw, 1.25rem);
  color: #294039;
}

.schedule-campaign {
  margin: 28px 0 0;
  padding-top: 15px;
  border-top: 1px solid rgba(11,61,46,.22);
  max-width: 620px;
  color: var(--green);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .095em;
  text-transform: uppercase;
}

.schedule-hero-brand {
  justify-self: end;
  width: min(340px, 28vw);
}

.schedule-hero-brand img {
  display: block;
  width: 100%;
  height: auto;
}

/* Controls keep their function but no longer read as SaaS pills */
.day-tab,
.filter-button {
  min-height: 44px;
  border-radius: 8px;
  padding: 9px 16px;
  box-shadow: none;
}

/* Functional category palette stays intact, now as flat editorial fields */
.schedule-card {
  border-radius: 12px;
  border: 1px solid rgba(11,61,46,.12);
  box-shadow: none;
}

.schedule-card.concert {
  background: var(--schedule-concert);
}

.schedule-card.masterclass {
  background: var(--schedule-masterclass);
}

.schedule-card.workshop {
  background: var(--schedule-workshop);
}

.schedule-card.exhibition {
  background: var(--schedule-exhibition);
}

.schedule-card.talk {
  background: var(--schedule-talk);
}

.schedule-day-header h2 {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.schedule-day-header h2::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: var(--gold);
}

/* Concert actions are explicit conversion CTAs */
.event-action.ticket-action {
  width: auto;
  min-width: 102px;
  height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  font-size: .72rem;
  letter-spacing: .06em;
}

.event-action.ticket-action:hover,
.event-action.ticket-action:focus-visible {
  background: #164de0;
  border-color: #164de0;
  color: #fff;
  transform: translateY(-1px);
  outline: 3px solid rgba(30, 91, 255, .16);
  outline-offset: 2px;
}

.ticket-action .event-action-label {
  position: static;
  inline-size: auto;
  block-size: auto;
  overflow: visible;
  clip-path: none;
}

.site-footer.schedule-footer .footer-inner {
  justify-content: initial;
}

.site-footer.schedule-footer .footer-links {
  margin-left: 0;
}

@media (max-width: 980px) {
  .schedule-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(190px, .4fr);
    gap: 30px;
  }

  .schedule-hero-brand { width: min(250px, 25vw); }
}

@media (max-width: 620px) {
  .schedule-hero {
    padding: 42px 0 30px;
  }

  .schedule-hero-inner {
    grid-template-columns: minmax(0, 1fr) 94px;
    gap: 16px;
    align-items: end;
  }

  .schedule-hero-brand {
    width: 112px;
    transform: translate(16px, 8px);
  }

  .schedule-campaign {
    margin-top: 20px;
    padding-top: 12px;
    font-size: .62rem;
    letter-spacing: .075em;
  }

  .schedule-day-header {
    gap: 13px;
  }

  .schedule-day-header h2 {
    gap: 9px;
  }

  .schedule-day-header h2::before {
    width: 8px;
    height: 8px;
    flex-basis: 8px;
  }

  .schedule-card {
    border-radius: 10px;
  }

  .event-action.ticket-action {
    min-width: 96px;
    min-height: 44px;
  }
}

@media (max-width: 390px) {
  .schedule-hero-inner {
    grid-template-columns: 1fr 76px;
  }

  .schedule-hero-brand {
    width: 92px;
    transform: translate(12px, 5px);
  }
}


/* v12.7 — Dutch programme heading safety */
html[lang="nl"] .schedule-hero-copy,
html[lang="nl"] .schedule-day-header { min-width: 0; }
html[lang="nl"] .schedule-hero h1 {
  line-height: 1.01;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}
html[lang="nl"] .schedule-day-header h2 {
  line-height: 1.06;
  overflow-wrap: break-word;
}
@media (max-width: 620px) {
  html[lang="nl"] .schedule-hero-inner {
    grid-template-columns: minmax(0,1fr) 82px;
    align-items: end;
  }
  html[lang="nl"] .schedule-hero h1 {
    font-size: clamp(2.35rem, 12.6vw, 3.65rem);
    letter-spacing: -.035em;
    line-height: 1.02;
  }
  html[lang="nl"] .schedule-day-header {
    align-items: flex-start;
  }
  html[lang="nl"] .schedule-day-header h2 {
    font-size: clamp(1.65rem, 8vw, 2.35rem);
  }
}
