:root {
  --page-paper: #f1f1f1;
  --page-soft-green: #cde6d7;
  --page-rose: #f1c9c6;
  --page-ink-muted: rgb(13 13 13 / 0.72);
}

.inner-page {
  color: var(--body);
  background: var(--white);
}

.inner-shell {
  width: min(calc(100% - 96px), 1180px);
  margin-inline: auto;
}

.inner-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  min-height: 530px;
  color: var(--ink);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.inner-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 64px clamp(48px, 7vw, 108px) 68px max(48px, calc((100vw - 1360px) / 2));
  background:
    linear-gradient(135deg, rgb(205 230 215 / 0.5), transparent 46%),
    var(--white);
}

.inner-hero-image {
  position: relative;
  min-width: 0;
  min-height: 530px;
  overflow: hidden;
  background: var(--mint);
}

.inner-hero-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-hero-kicker {
  margin-bottom: 18px;
  color: var(--green-deep);
  font-size: var(--text-supporting);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.inner-hero h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(43px, 5vw, 70px);
  line-height: 1.02;
}

.inner-hero-lede {
  max-width: 48ch;
  margin: 0;
  color: var(--page-ink-muted);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.65;
}

.inner-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.inner-hero.is-light {
  background: var(--white);
}

.inner-hero.is-photo-led {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
  min-height: 590px;
  overflow: hidden;
  background: var(--white);
}

.inner-hero.is-photo-led .inner-hero-image {
  grid-column: 2;
  grid-row: 1;
  min-height: 590px;
}

.inner-hero.is-photo-led .inner-hero-copy {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  min-height: 590px;
  background:
    linear-gradient(145deg, rgb(205 230 215 / 0.72), transparent 58%),
    var(--white);
}

.inner-breadcrumb {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.inner-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  width: min(calc(100% - 96px), 1180px);
  gap: 9px;
  margin: 0 auto;
  padding: 16px 0;
  color: rgb(13 13 13 / 0.68);
  font-size: var(--text-supporting);
  list-style: none;
}

.inner-breadcrumb li:not(:last-child)::after {
  margin-left: 9px;
  color: var(--green);
  content: "/";
}

.inner-breadcrumb a:hover,
.inner-breadcrumb a:focus-visible {
  color: var(--green-deep);
}

.inner-section {
  padding-block: clamp(72px, 8vw, 118px);
  background: var(--white);
}

.inner-section.is-paper {
  background: var(--frost);
}

.inner-section.is-soft-green {
  background: var(--mint);
}

.inner-section.is-soft-green .section-label {
  color: var(--ink);
}

.inner-section.is-color {
  background: var(--rose);
}

.inner-intro {
  max-width: 760px;
  margin-bottom: 48px;
}

.inner-intro h2 {
  margin-bottom: 16px;
}

.inner-intro p {
  max-width: 60ch;
  margin: 0;
  color: var(--page-ink-muted);
  font-size: 18px;
}

.story-composition {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
}

.story-copy h2 {
  margin-bottom: 22px;
}

.story-copy p {
  color: var(--page-ink-muted);
  font-size: 18px;
  line-height: 1.75;
}

.story-media {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, minmax(180px, 250px));
  gap: 14px;
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-card);
}

.story-media img:first-child {
  grid-row: span 2;
}

.mission-ledger {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}

.mission-ledger-heading {
  position: sticky;
  top: 30px;
}

.mission-ledger-heading h2 {
  margin-bottom: 16px;
}

.mission-ledger-heading p {
  color: var(--page-ink-muted);
}

.mission-chapters {
  display: grid;
}

.mission-chapter {
  display: grid;
  grid-template-columns: minmax(190px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(24px, 3vw, 46px);
  padding-block: clamp(30px, 4vw, 46px);
}

.mission-chapter:first-child {
  padding-top: 0;
}

.mission-chapter:last-child {
  padding-bottom: 0;
}

.mission-chapter h3 {
  margin: 0;
  color: var(--green-deep);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.mission-chapter ul {
  margin: 0;
  padding-left: 1.15em;
}

.mission-chapter li {
  padding-left: 0.3em;
  color: var(--ink);
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.55;
}

.mission-chapter li::marker {
  color: var(--green);
}

.mission-chapter li + li {
  margin-top: 16px;
}

.mission-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  counter-reset: mission;
  list-style: none;
}

.mission-list li {
  position: relative;
  min-height: 132px;
  padding: 50px 22px 20px;
  border-top: 4px solid var(--green);
  border-radius: var(--radius-card);
  background: var(--white);
  counter-increment: mission;
}

.mission-list li:nth-child(3n + 2) {
  border-top-color: var(--red);
}

.mission-list li:nth-child(3n) {
  border-top-color: var(--gold);
}

.mission-list li::before {
  position: absolute;
  top: 16px;
  left: 22px;
  color: var(--green-deep);
  content: counter(mission, decimal-leading-zero);
  font-size: var(--text-supporting);
  font-weight: 700;
}

.aim-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: center;
  padding: clamp(38px, 6vw, 70px);
  border-radius: var(--radius-card);
  background: var(--rose);
}

.aim-panel h2 {
  margin: 0;
}

.aim-points {
  display: grid;
  gap: 0;
}

.aim-points p {
  margin: 0;
  padding-block: 20px;
  border-bottom: 1px solid rgb(216 35 35 / 0.25);
  color: var(--ink);
  font-size: 18px;
}

.history-timeline {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}

.history-timeline-heading {
  position: sticky;
  top: 30px;
}

.history-timeline-heading h2 {
  max-width: 12ch;
  margin: 0;
}

.timeline-list {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0 0 0 30px;
  list-style: none;
}

.timeline-list::before {
  position: absolute;
  top: 16px;
  bottom: 24px;
  left: 4px;
  width: 2px;
  background: var(--green);
  content: "";
}

.timeline-list li {
  position: relative;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 22px;
  padding: 0 0 38px;
}

.timeline-list li.has-media {
  padding-bottom: 54px;
}

.timeline-list li::before {
  position: absolute;
  top: 8px;
  left: -32px;
  width: 14px;
  height: 14px;
  border: 4px solid var(--mint);
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.timeline-list time {
  color: var(--green-deep);
  font-size: 20px;
  font-weight: 700;
}

.timeline-list h3 {
  margin-bottom: 6px;
  font-size: 24px;
}

.timeline-list p {
  max-width: 55ch;
  margin: 0;
  color: var(--page-ink-muted);
}

.timeline-entry-content {
  min-width: 0;
}

.timeline-memory {
  max-width: 660px;
  margin: 22px 0 4px;
}

.timeline-memory img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-card);
  object-fit: cover;
}

.timeline-memory.is-wide img {
  aspect-ratio: 16 / 9;
}

.timeline-memory figcaption {
  max-width: 58ch;
  margin-top: 9px;
  color: var(--page-ink-muted);
  font-size: var(--text-supporting);
  line-height: 1.5;
}

.program-ledger {
  border-top: 1px solid var(--line);
}

.program-row {
  display: grid;
  grid-template-columns: 110px minmax(220px, 0.62fr) minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
}

.program-row img {
  width: 110px;
  height: 110px;
  border-radius: var(--radius-card);
  object-fit: cover;
}

.program-row h2,
.program-row h3 {
  margin: 0;
  font-size: clamp(23px, 2.3vw, 32px);
}

.program-row p {
  margin: 0;
  color: var(--page-ink-muted);
}

.what-we-do-ledger .program-row {
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
  padding-block: 32px;
}

.what-we-do-ledger .program-row-identity {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  min-width: 0;
}

.what-we-do-ledger .program-row-details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  min-width: 0;
}

.what-we-do-ledger .program-row .arrow-link {
  grid-column: auto;
  white-space: nowrap;
}

.editorial-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(250px, auto);
  gap: 16px;
}

.bento-panel {
  position: relative;
  grid-column: span 5;
  min-height: 340px;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--mint);
  isolation: isolate;
}

.bento-panel:first-child {
  grid-column: span 7;
  grid-row: span 2;
}

.bento-panel:last-child {
  grid-column: span 5;
}

.bento-panel img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-panel:has(img)::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgb(19 132 64 / 0.88), rgb(19 132 64 / 0.03) 72%);
  content: "";
}

.bento-panel-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(24px, 4vw, 40px);
  color: var(--white);
}

.bento-panel:not(:has(img)) .bento-panel-content {
  color: var(--ink);
}

.bento-panel h3 {
  margin-bottom: 8px;
  color: inherit;
  font-size: clamp(26px, 3vw, 41px);
}

.bento-panel p {
  max-width: 40ch;
  margin: 0;
}

.bento-panel.is-color {
  background: var(--rose);
}

.festival-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--mint);
}

.festival-fact {
  min-height: 180px;
  padding: 34px;
  border-right: 1px solid rgb(19 132 64 / 0.24);
}

.festival-fact:last-child {
  border-right: 0;
}

.festival-fact strong,
.festival-fact span {
  display: block;
}

.festival-fact strong {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.15;
}

.festival-fact span {
  color: var(--page-ink-muted);
}

.history-line {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}

.history-line > h2 {
  position: sticky;
  top: 30px;
}

.history-editions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.history-edition {
  min-height: 190px;
  padding: 28px;
  border-radius: var(--radius-card);
  background: var(--frost);
}

.history-edition strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green-deep);
  font-size: 21px;
}

.history-edition p {
  margin: 0;
  color: var(--page-ink-muted);
}

.feature-story {
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(0, 0.95fr);
  min-height: 540px;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--frost);
}

.feature-story-media {
  min-height: 540px;
}

.feature-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-story-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(40px, 6vw, 72px);
}

.feature-story-copy h2 {
  margin-bottom: 18px;
}

.feature-story-copy > p:not(.section-label) {
  margin-bottom: 0;
  color: var(--page-ink-muted);
  line-height: 1.75;
}

.fact-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid rgb(19 132 64 / 0.32);
}

.fact-ribbon > div {
  min-width: 140px;
  padding: 18px 24px 0 0;
}

.fact-ribbon strong,
.fact-ribbon span {
  display: block;
}

.fact-ribbon strong {
  color: var(--ink);
  font-size: 20px;
}

.fact-ribbon span {
  color: var(--page-ink-muted);
  font-size: var(--text-supporting);
}

.event-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(390px, 0.86fr);
  min-height: 500px;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--mint);
}

.event-feature > img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.event-feature-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(40px, 6vw, 70px);
  color: var(--ink);
}

.event-feature-copy time {
  margin-bottom: 12px;
  color: var(--red);
  font-size: var(--text-supporting);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-feature-copy h2 {
  margin-bottom: 14px;
}

.event-feature-copy p {
  color: var(--page-ink-muted);
}

.event-archive {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 42px;
  border-top: 1px solid var(--line);
}

.event-entry {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 22px;
  padding-block: 26px;
  border-bottom: 1px solid var(--line);
}

.event-entry img {
  width: 130px;
  height: 145px;
  border-radius: var(--radius-control);
  object-fit: cover;
}

.event-entry time {
  display: block;
  margin-bottom: 6px;
  color: var(--green-deep);
  font-size: var(--text-supporting);
  font-weight: 700;
}

.event-entry h3 {
  margin-bottom: 7px;
  font-size: 22px;
}

.event-entry p {
  margin: 0;
  color: var(--page-ink-muted);
  font-size: 14px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.editorial-card {
  position: relative;
  grid-column: span 6;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 330px;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--frost);
}

.editorial-card.is-lead {
  grid-column: span 12;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 470px;
}

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

.editorial-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.editorial-card time {
  margin-bottom: 10px;
  color: #0b6f35;
  font-size: var(--text-supporting);
  font-weight: 700;
}

.editorial-card .arrow-link {
  color: #0b6f35;
}

.editorial-card h2,
.editorial-card h3 {
  margin-bottom: 10px;
  font-size: clamp(23px, 2.5vw, 37px);
}

.editorial-card p {
  margin: 0;
  color: var(--page-ink-muted);
}

.editorial-card-link::after {
  position: absolute;
  inset: 0;
  content: "";
}

/* WordPress Query Loop adaptation for the approved news archive. */
.editorial-grid.wp-block-post-template {
  margin-block: 0;
  margin-inline: auto;
  padding: 0;
  list-style: none;
}

.editorial-grid > .wp-block-post {
  grid-column: span 6;
}

.editorial-grid > .wp-block-post:first-child {
  grid-column: span 12;
}

.editorial-grid .editorial-card {
  height: 100%;
}

.editorial-grid > .wp-block-post:first-child .editorial-card {
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 470px;
}

.editorial-card .wp-block-post-featured-image {
  height: 100%;
  margin: 0;
}

.editorial-card .wp-block-post-featured-image a {
  display: block;
  height: 100%;
}

.editorial-card .wp-block-post-title a::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
}

.editorial-card .wp-block-post-excerpt__excerpt {
  margin: 0;
}

.pacc-blog-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 44px;
}

.pacc-blog-pagination .wp-block-query-pagination-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
}

.pacc-blog-pagination a,
.pacc-blog-pagination .page-numbers {
  display: inline-grid;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  color: var(--ink);
  background: var(--white);
  text-decoration: none;
  font-weight: 600;
  line-height: 1;
}

.pacc-blog-pagination a:hover,
.pacc-blog-pagination a:focus-visible {
  border-color: var(--green);
  color: var(--green-deep);
  background: var(--page-soft-green);
}

.pacc-blog-pagination a:active {
  transform: translateY(1px);
}

.pacc-blog-pagination .page-numbers.current {
  border-color: var(--green);
  color: var(--white);
  background: var(--green);
}

.pacc-blog-pagination .page-numbers.dots {
  min-width: 28px;
  padding-inline: 4px;
  border-color: transparent;
  background: transparent;
}

.news-empty {
  grid-column: 1 / -1;
  padding: 36px;
  border-left: 5px solid var(--green);
  background: var(--frost);
}

.content-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(500px, 1.28fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}

.content-aside {
  position: sticky;
  top: 30px;
}

.content-aside h2 {
  margin-bottom: 16px;
}

.content-aside p {
  color: var(--page-ink-muted);
  line-height: 1.75;
}

.criteria-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.criteria-group {
  padding: 28px;
  border-top: 4px solid var(--green);
  border-radius: var(--radius-card);
  background: var(--white);
}

.criteria-group:nth-child(2n) {
  border-top-color: var(--red);
}

.criteria-group h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.criteria-group p,
.criteria-group ul {
  margin-bottom: 0;
  color: var(--page-ink-muted);
}

.grant-index {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  counter-reset: grant-criterion;
  list-style: none;
}

.grant-index-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 22px;
  padding-block: 25px;
  counter-increment: grant-criterion;
}

.grant-index-item + .grant-index-item {
  border-top: 1px solid var(--line);
}

.grant-index-item::before {
  padding-top: 5px;
  color: var(--green-deep);
  content: counter(grant-criterion, decimal-leading-zero);
  font-size: var(--text-supporting);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.grant-index-item h3,
.workshop-brief-item h3,
.skills-spectrum-group h3,
.scholarship-priority h3,
.scholarship-advisory h3 {
  margin-bottom: 9px;
}

.grant-index-item h3 {
  font-size: clamp(23px, 2.35vw, 31px);
}

.grant-index-item p,
.workshop-brief-item p,
.scholarship-priority p,
.scholarship-advisory p {
  max-width: 54ch;
  margin: 0;
  color: var(--page-ink-muted);
  line-height: 1.65;
}

.workshop-brief {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 58px) clamp(30px, 5vw, 54px);
}

.workshop-brief-item {
  min-width: 0;
}

.workshop-brief-item h3 {
  max-width: 15ch;
  color: var(--green-deep);
  font-size: clamp(25px, 2.6vw, 34px);
  line-height: 1.12;
}

.skills-spectrum {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.skills-spectrum-group {
  min-width: 0;
  padding-right: clamp(20px, 3vw, 32px);
}

.skills-spectrum-group + .skills-spectrum-group {
  padding-right: 0;
  padding-left: clamp(20px, 3vw, 32px);
  border-left: 1px solid var(--line);
}

.skills-spectrum-group h3 {
  font-size: clamp(22px, 2.2vw, 29px);
  line-height: 1.18;
}

.skills-spectrum-group ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--page-ink-muted);
  list-style: none;
}

.skills-spectrum-group li {
  line-height: 1.45;
}

.scholarship-priorities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(30px, 5vw, 52px);
}

.scholarship-priority {
  min-width: 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.scholarship-priority.is-primary {
  grid-column: 1 / -1;
  padding: 0 0 34px;
  border-top: 0;
}

.scholarship-priority.is-primary h3 {
  max-width: 12ch;
  color: var(--green-deep);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.04;
}

.scholarship-priority:not(.is-primary) h3 {
  font-size: clamp(22px, 2.2vw, 29px);
}

.scholarship-advisory {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
  gap: 24px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.scholarship-advisory h3 {
  font-size: 20px;
}

.contact-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1.22fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}

.contact-directory h2 {
  margin-bottom: 16px;
}

.contact-directory > p {
  color: var(--page-ink-muted);
}

.contact-channel {
  padding-block: 20px;
  border-bottom: 1px solid var(--line);
}

.contact-channel strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.contact-channel a {
  color: var(--green-deep);
  font-weight: 600;
}

.contact-surface {
  padding: clamp(30px, 5vw, 54px);
  border-radius: var(--radius-card);
  background: var(--frost);
}

.contact-surface h2 {
  margin-bottom: 25px;
  font-size: clamp(32px, 3.5vw, 46px);
}

.inner-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--green);
  border-radius: var(--radius-control);
  color: var(--ink);
  background: var(--white);
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgb(13 13 13 / 0.68);
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border: 2px solid var(--red);
}

.inner-form .form-field.is-wide,
.inner-form .contact-status {
  grid-column: 1 / -1;
}

.contact-status {
  color: var(--green-deep);
  font-weight: 600;
}

.form-note,
.notice {
  color: var(--page-ink-muted);
  font-size: var(--text-supporting);
}

.action-band {
  padding-block: clamp(58px, 7vw, 88px);
  background: var(--mint);
}

.action-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: center;
}

.action-band h2 {
  max-width: 760px;
  margin-bottom: 8px;
  font-size: clamp(34px, 4vw, 56px);
}

.action-band p {
  margin: 0;
  color: var(--page-ink-muted);
}

.action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-panel {
  padding: clamp(38px, 6vw, 68px);
  border-radius: var(--radius-card);
  color: var(--white);
  background: var(--green);
  overflow: hidden;
}

.payment-panel h2 {
  margin: 0;
  color: var(--white);
}

.payment-intro {
  max-width: 720px;
  margin-bottom: clamp(24px, 4vw, 38px);
}

.payment-intro p:last-child {
  margin: 14px 0 0;
  color: var(--white);
  font-size: 18px;
}

.zeffy-embed-shell {
  width: 100%;
  max-width: 750px;
  min-height: 450px;
  margin-inline: auto;
  border-radius: var(--radius-card);
  background: transparent;
  overflow: hidden;
}

.placeholder-hero {
  display: block;
  min-height: 440px;
}

.placeholder-hero .inner-hero-copy {
  min-height: 440px;
  padding-right: max(48px, calc((100vw - 1180px) / 2));
}

.placeholder-panel {
  max-width: 820px;
}

.placeholder-panel h2 {
  max-width: 16ch;
  margin-bottom: 18px;
}

.placeholder-panel > p:not(.section-label) {
  max-width: 62ch;
  margin-bottom: 28px;
  color: var(--page-ink-muted);
  font-size: 18px;
  line-height: 1.7;
}

.archive-content-note {
  max-width: 58ch;
  margin-top: 12px !important;
  color: var(--green-deep) !important;
  font-size: var(--text-supporting);
  font-weight: 600;
}

.founder-portrait-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 860px;
  margin-top: 22px;
}

.founder-placeholder-card {
  min-width: 0;
  margin: 0;
}

.founder-placeholder-visual {
  position: relative;
  display: flex;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  align-items: flex-end;
  padding: 18px;
  border: 1px solid rgb(19 132 64 / 0.24);
  border-radius: var(--radius-card);
  color: var(--green-deep);
  background:
    linear-gradient(45deg, transparent 46%, rgb(19 132 64 / 0.12) 46% 54%, transparent 54%) 0 0 / 28px 28px,
    linear-gradient(-45deg, transparent 46%, rgb(216 35 35 / 0.08) 46% 54%, transparent 54%) 0 0 / 28px 28px,
    var(--mint);
}

.founder-placeholder-visual::after {
  position: absolute;
  inset: 16px;
  border: 1px solid rgb(255 255 255 / 0.72);
  border-radius: calc(var(--radius-card) - 5px);
  content: "";
}

.founder-placeholder-visual span {
  position: relative;
  z-index: 1;
  max-width: 8ch;
  font-size: var(--text-supporting);
  font-weight: 700;
  line-height: 1.25;
}

.founder-placeholder-card figcaption {
  display: grid;
  gap: 3px;
  padding-top: 12px;
}

.founder-placeholder-card figcaption strong {
  color: var(--ink);
  font-size: 16px;
}

.founder-placeholder-card figcaption span {
  color: var(--page-ink-muted);
  font-size: var(--text-supporting);
  line-height: 1.45;
}

.board-hero .inner-hero-image img {
  object-position: center 38%;
}

.board-president-section {
  background: var(--white);
}

.board-president-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
}

.board-president-layout:not(.has-portrait) {
  grid-template-columns: minmax(0, 780px);
}

.board-president-portrait {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-card);
  background: var(--mint);
}

.board-president-portrait::after {
  position: absolute;
  inset: 18px;
  border: 1px solid rgb(255 255 255 / 0.78);
  border-radius: calc(var(--radius-card) - 5px);
  content: "";
  pointer-events: none;
}

.board-president-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: center 24%;
}

.board-president-copy {
  max-width: 720px;
  padding-top: clamp(6px, 2vw, 22px);
}

.board-president-copy h2 {
  max-width: 14ch;
  margin-bottom: 28px;
}

.board-president-message {
  color: var(--page-ink-muted);
  font-size: 18px;
  line-height: 1.75;
}

.board-president-message p {
  margin: 0 0 18px;
}

.board-president-signature {
  display: grid;
  gap: 4px;
  margin: 30px 0 0;
  padding-left: 18px;
  border-left: 4px solid var(--green);
}

.board-president-signature strong {
  color: var(--ink);
  font-size: 18px;
}

.board-president-signature span {
  max-width: 48ch;
  color: var(--green-deep);
  font-size: var(--text-supporting);
  font-weight: 600;
  line-height: 1.45;
}

.board-directory-section {
  background: var(--frost);
}

.board-directory-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

.board-directory-heading h2 {
  max-width: 17ch;
  margin-bottom: 18px;
}

.board-directory-heading > p:not(.section-label) {
  max-width: 64ch;
  color: var(--page-ink-muted);
  font-size: 18px;
  line-height: 1.7;
}

.board-profile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.board-profile-card {
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgb(19 132 64 / 0.16);
  border-radius: var(--radius-card);
  background: var(--white);
}

.board-profile-visual {
  position: relative;
  display: flex;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  align-items: flex-end;
  padding: 22px;
  color: var(--green-deep);
  background:
    linear-gradient(45deg, transparent 46%, rgb(19 132 64 / 0.13) 46% 54%, transparent 54%) 0 0 / 32px 32px,
    linear-gradient(-45deg, transparent 46%, rgb(19 132 64 / 0.07) 46% 54%, transparent 54%) 0 0 / 32px 32px,
    var(--mint);
}

.board-profile-visual::after {
  position: absolute;
  inset: 18px;
  border: 1px solid rgb(255 255 255 / 0.78);
  border-radius: calc(var(--radius-card) - 5px);
  content: "";
}

.board-profile-visual span {
  position: relative;
  z-index: 1;
  max-width: 8ch;
  font-size: var(--text-supporting);
  font-weight: 700;
  line-height: 1.25;
}

.board-profile-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.board-profile-copy {
  padding: 22px;
}

.board-profile-copy h3 {
  margin-bottom: 7px;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 27px);
}

.board-profile-copy p {
  margin: 0;
  color: var(--page-ink-muted);
  font-size: var(--text-supporting);
  line-height: 1.55;
}

.board-profile-copy .board-profile-role {
  margin-bottom: 13px;
  color: var(--green-deep);
  font-size: 15px;
  font-weight: 700;
}

.board-profile-bio p + p {
  margin-top: 10px;
}

.board-action-band .outline-action {
  border-color: var(--green-deep);
  color: var(--green-deep);
}

.archive-year-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.archive-year-grid article {
  min-height: 170px;
  padding: 26px;
  border-left: 5px solid var(--green);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  background: var(--white);
  scroll-margin-top: var(--document-scroll-padding);
}

.archive-year-grid h3 {
  margin-bottom: 10px;
  color: var(--green-deep);
  font-size: clamp(26px, 3vw, 34px);
}

.archive-year-grid p {
  margin: 0;
  color: var(--page-ink-muted);
}

@media (max-width: 1000px) {
  .inner-hero,
  .inner-hero.is-photo-led {
    grid-template-columns: 1fr 1fr;
  }

  .inner-hero-copy {
    padding-inline: 48px;
  }

  .story-composition,
  .mission-ledger,
  .history-timeline,
  .history-line,
  .content-columns,
  .contact-stage {
    grid-template-columns: 1fr;
  }

  .mission-ledger-heading,
  .history-timeline-heading,
  .history-line > h2,
  .content-aside {
    position: static;
  }

  .program-row {
    grid-template-columns: 100px minmax(210px, 0.7fr) minmax(0, 1fr);
  }

  .program-row .arrow-link {
    grid-column: 2 / -1;
  }

  .what-we-do-ledger .program-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .what-we-do-ledger .program-row .arrow-link {
    grid-column: auto;
  }

  .editorial-card {
    grid-column: span 12;
  }

  .board-profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .inner-shell,
  .inner-breadcrumb ol {
    width: calc(100% - 32px);
  }

  .payment-panel {
    padding: 24px;
  }

  .inner-hero,
  .inner-hero.is-light,
  .inner-hero.is-photo-led {
    display: flex;
    min-height: auto;
    flex-direction: column-reverse;
  }

  .inner-hero-copy,
  .inner-hero.is-photo-led .inner-hero-copy {
    width: 100%;
    min-height: 0;
    padding: 46px 16px 54px;
  }

  .inner-hero-image,
  .inner-hero.is-photo-led .inner-hero-image {
    width: 100%;
    min-height: 320px;
    height: 320px;
  }

  .placeholder-hero,
  .inner-hero.placeholder-hero {
    display: block;
    min-height: 390px;
  }

  .placeholder-hero .inner-hero-copy {
    min-height: 390px;
    padding-inline: 16px;
  }

  .inner-hero h1 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .inner-section {
    padding-block: 68px;
  }

  .archive-year-grid {
    grid-template-columns: 1fr;
  }

  .founder-portrait-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .board-profile-grid {
    grid-template-columns: 1fr;
  }

  .board-president-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .board-president-portrait {
    width: min(100%, 440px);
  }

  .board-president-copy {
    padding-top: 0;
  }

  .story-media {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 280px);
  }

  .story-media img:first-child {
    grid-row: auto;
  }

  .mission-list,
  .aim-panel,
  .history-editions,
  .festival-facts,
  .event-archive,
  .inner-form,
  .criteria-groups {
    grid-template-columns: 1fr;
  }

  .workshop-brief,
  .skills-spectrum,
  .scholarship-priorities,
  .scholarship-advisory {
    grid-template-columns: 1fr;
  }

  .skills-spectrum {
    padding-top: 0;
    border-top: 0;
  }

  .skills-spectrum-group,
  .skills-spectrum-group + .skills-spectrum-group {
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .skills-spectrum-group:last-child {
    padding-bottom: 0;
  }

  .scholarship-priority:not(.is-primary) {
    padding-block: 25px;
  }

  .scholarship-advisory {
    gap: 6px;
    margin-top: 0;
  }

  .mission-chapter {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-block: 28px;
  }

  .mission-chapter:first-child {
    padding-top: 24px;
  }

  .timeline-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .timeline-memory {
    margin-top: 18px;
  }

  .program-row {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 18px;
  }

  .program-row img {
    width: 86px;
    height: 86px;
  }

  .program-row p,
  .program-row .arrow-link {
    grid-column: 1 / -1;
  }

  .what-we-do-ledger .program-row-identity {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 18px;
  }

  .what-we-do-ledger .program-row-details {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .what-we-do-ledger .program-row {
    gap: 22px;
    padding-block: 26px;
  }

  .what-we-do-ledger .program-row .arrow-link {
    grid-column: 1;
  }

  .editorial-bento {
    display: flex;
    flex-direction: column;
  }

  .bento-panel,
  .bento-panel:first-child {
    min-height: 320px;
  }

  .festival-fact {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgb(19 132 64 / 0.22);
  }

  .festival-fact:last-child {
    border-bottom: 0;
  }

  .feature-story,
  .event-feature,
  .editorial-card,
  .editorial-card.is-lead {
    grid-template-columns: 1fr;
  }

  .feature-story-media,
  .event-feature > img,
  .editorial-card img {
    min-height: 290px;
    height: 290px;
  }

  .event-entry {
    grid-template-columns: 105px minmax(0, 1fr);
    gap: 16px;
  }

  .event-entry img {
    width: 105px;
    height: 125px;
  }

  .inner-form .form-field.is-wide,
  .inner-form .contact-status {
    grid-column: auto;
  }

  .action-band-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .action-buttons {
    align-items: flex-start;
    flex-direction: column;
  }

  .action-buttons > * {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 390px) {
  .timeline-list {
    padding-left: 24px;
  }

  .timeline-list li::before {
    left: -26px;
  }

  .contact-surface,
  .criteria-group {
    padding: 24px;
  }

  .grant-index-item {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .arrow-link::after {
    transition: none;
  }
}

@media (max-width: 760px) {
  .editorial-grid > .wp-block-post,
  .editorial-grid > .wp-block-post:first-child {
    grid-column: span 12;
  }

  .editorial-grid > .wp-block-post:first-child .editorial-card {
    grid-template-columns: 1fr;
    min-height: 330px;
  }

  .pacc-blog-pagination {
    gap: 10px 8px;
    margin-top: 36px;
  }

  .pacc-blog-pagination .wp-block-query-pagination-previous,
  .pacc-blog-pagination .wp-block-query-pagination-next {
    flex: 1 1 calc(50% - 4px);
  }

  .pacc-blog-pagination .wp-block-query-pagination-numbers {
    order: 3;
    width: 100%;
  }
}

/* Festival microsite */

.festival-page,
.sponsor-page,
.festival-nav {
  --festival-max: 1240px;
  --festival-sticky-content-top: calc(
    var(--site-header-sticky-height, 66px) +
    var(--festival-nav-height, 58px) +
    24px
  );
}

.festival-page section[id],
.sponsor-page section[id] {
  scroll-margin-top: calc(
    var(--site-header-sticky-height, 66px) +
    var(--festival-nav-height, 58px) +
    18px -
    var(--document-scroll-padding, 82px)
  );
}

.sponsor-form {
  scroll-margin-top: calc(var(--festival-nav-height, 58px) + 24px);
}

.festival-nav {
  position: sticky;
  top: var(--site-header-sticky-height, 66px);
  z-index: 15;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 8px 22px rgb(19 132 64 / 0.07);
}

/*
 * WordPress wraps template parts in a box that is only as tall as the part.
 * Make that wrapper sticky so the festival navigation is not constrained by
 * its own 58px-tall parent while the page scrolls.
 */
.festival-subheader {
  position: sticky;
  top: var(--site-header-sticky-height, 66px);
  z-index: 15;
}

.festival-subheader > .festival-nav {
  position: static;
}

.festival-nav > .festival-nav-inner {
  display: flex;
  width: min(calc(100% - 96px), var(--festival-max));
  min-height: var(--festival-nav-height, 58px);
  gap: 4px;
  align-items: center;
  margin-inline: auto;
}

.festival-navigation .wp-block-navigation__container {
  width: 100%;
  min-width: max-content;
  gap: 4px;
}

.festival-navigation .wp-block-navigation-item {
  flex: 0 0 auto;
}

.festival-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 9px 14px;
  border-bottom: 3px solid transparent;
  color: var(--ink);
  font-size: var(--text-supporting);
  font-weight: 600;
  white-space: nowrap;
}

.festival-nav a:hover,
.festival-nav a:focus-visible,
.festival-nav a.is-active {
  color: var(--green-deep);
  border-bottom-color: var(--green);
}

.festival-nav .festival-nav-ticket {
  margin-left: auto;
}

.festival-nav .festival-nav-ticket > .wp-block-navigation-item__content,
.festival-nav a.festival-nav-ticket {
  border: 2px solid var(--green);
  border-radius: var(--radius-control);
  color: var(--white);
  background: var(--green);
}

.festival-nav .festival-nav-ticket > .wp-block-navigation-item__content:hover,
.festival-nav .festival-nav-ticket > .wp-block-navigation-item__content:focus-visible,
.festival-nav a.festival-nav-ticket:hover,
.festival-nav a.festival-nav-ticket:focus-visible {
  color: var(--white);
  background: var(--green-deep);
  border-color: var(--green-deep);
}

.festival-hero,
.sponsor-hero {
  display: grid;
  grid-template-columns: minmax(430px, 0.82fr) minmax(0, 1.18fr);
  min-height: 620px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.festival-hero-copy,
.sponsor-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 58px clamp(46px, 6vw, 88px) 62px max(48px, calc((100vw - 1440px) / 2));
  background:
    linear-gradient(140deg, rgb(205 230 215 / 0.68), transparent 54%),
    var(--white);
}

.festival-mark {
  width: min(100%, 440px);
  height: auto;
  margin-bottom: 30px;
}

.festival-date {
  margin-bottom: 12px;
  color: var(--green-deep);
  font-size: 18px;
  font-weight: 700;
}

.festival-hero h1,
.sponsor-hero h1 {
  max-width: 11ch;
  margin-bottom: 16px;
  font-size: clamp(43px, 4.8vw, 66px);
  line-height: 1.02;
}

.festival-hero-lede,
.sponsor-hero-copy > p {
  max-width: 43ch;
  margin-bottom: 0;
  color: var(--page-ink-muted);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
}

.festival-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  align-items: center;
  margin-top: 28px;
}

.festival-hero-media,
.sponsor-hero-media {
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  background: var(--mint);
}

.festival-hero-media img,
.sponsor-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.festival-countdown-section {
  padding-block: clamp(28px, 4vw, 52px);
  background: var(--white);
}

.festival-countdown {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
  padding: clamp(34px, 5vw, 68px);
  border-radius: var(--radius-card);
  color: var(--ink);
  background:
    linear-gradient(125deg, rgb(255 255 255 / 0.5), transparent 54%),
    var(--mint);
  box-shadow: inset 0 0 0 1px rgb(19 132 64 / 0.1);
}

.festival-countdown-heading {
  align-self: center;
}

.festival-countdown-label {
  margin-bottom: 8px;
  color: var(--green-deep);
  font-size: var(--text-supporting);
  font-weight: 700;
}

.festival-countdown h2 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.04;
}

.festival-countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  font-variant-numeric: tabular-nums;
}

.festival-countdown-unit {
  display: grid;
  min-width: 0;
  padding-inline: clamp(14px, 2.2vw, 30px);
  border-left: 1px solid rgb(19 132 64 / 0.22);
}

.festival-countdown-unit:first-child {
  padding-left: 0;
  border-left: 0;
}

.festival-countdown-unit:last-child {
  padding-right: 0;
}

.festival-countdown-unit number-flow {
  display: block;
  width: fit-content;
  color: var(--green-deep);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.84;
  --number-flow-mask-height: 0.18em;
  --number-flow-mask-width: 0.25em;
}

.festival-countdown-unit > span {
  margin-top: 16px;
  color: var(--ink);
  font-size: var(--text-supporting);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.festival-countdown-date {
  grid-column: 2;
  margin: -4px 0 0;
  color: var(--page-ink-muted);
  font-size: 14px;
  font-weight: 600;
}

.festival-countdown-fallback {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--green-deep);
  font-weight: 700;
}

.festival-countdown.is-complete .festival-countdown-grid {
  opacity: 0.46;
}

.festival-section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.festival-section-heading h2 {
  margin-bottom: 16px;
}

.festival-section-heading p {
  max-width: 58ch;
  margin: 0;
  color: var(--page-ink-muted);
  font-size: 18px;
}

.festival-experience-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(285px, auto);
  gap: 16px;
}

.festival-experience {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--mint);
  isolation: isolate;
}

.festival-experience.is-family {
  grid-column: span 7;
  grid-row: span 2;
}

.festival-experience.is-food,
.festival-experience.is-performance {
  grid-column: span 5;
}

.festival-experience.is-makers {
  grid-column: span 12;
  min-height: 330px;
}

.festival-experience::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgb(13 75 39 / 0.92), transparent 72%);
  content: "";
}

.festival-experience img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.festival-experience:hover img {
  transform: scale(1.025);
}

.festival-experience > div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(24px, 3.5vw, 38px);
  color: var(--white);
}

.festival-experience h3 {
  margin-bottom: 7px;
  color: inherit;
  font-size: clamp(25px, 3vw, 40px);
}

.festival-experience p {
  max-width: 40ch;
  margin: 0;
}

.festival-involvement {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}

.festival-involvement-media {
  position: sticky;
  top: var(--festival-sticky-content-top);
  min-height: 610px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-card);
}

.festival-involvement-media img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
}

.festival-involvement-copy h2 {
  max-width: 12ch;
  margin-bottom: 30px;
}

.festival-involvement-list {
  border-top: 1px solid var(--line);
}

.festival-involvement-list article {
  display: grid;
  grid-template-columns: minmax(190px, 0.7fr) minmax(0, 1fr);
  gap: 12px 28px;
  padding-block: 26px;
  border-bottom: 1px solid var(--line);
}

.festival-involvement-list h3 {
  grid-row: span 2;
  margin: 0;
  font-size: clamp(21px, 2vw, 27px);
}

.festival-involvement-list p {
  margin: 0;
  color: var(--page-ink-muted);
}

.festival-involvement-list .arrow-link {
  justify-self: start;
}

.festival-sponsor-roster {
  margin-bottom: 34px;
  border-top: 1px solid rgb(19 132 64 / 0.3);
}

.festival-sponsor-tier {
  display: grid;
  grid-template-columns: minmax(170px, 0.32fr) minmax(0, 1.68fr);
  gap: 34px;
  align-items: center;
  padding-block: 34px;
  border-bottom: 1px solid rgb(19 132 64 / 0.3);
}

.festival-sponsor-tier h3 {
  margin: 0;
  color: var(--green-deep);
  font-size: 22px;
}

.festival-sponsor-tier-content {
  min-width: 0;
}

.festival-sponsor-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.festival-sponsor-logos.is-featured {
  grid-template-columns: minmax(0, 430px);
}

.festival-sponsor-logos li {
  display: grid;
  min-height: 154px;
  place-items: center;
  padding: 20px;
  border-radius: var(--radius-control);
  background: var(--white);
  border: 1px solid rgb(19 132 64 / 0.12);
}

.festival-sponsor-logos a {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border-radius: calc(var(--radius-control) - 4px);
  transition: transform 180ms ease;
}

.festival-sponsor-logos a:hover {
  transform: translateY(-2px);
}

.festival-sponsor-logos a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 5px;
}

.festival-sponsor-logos.is-featured li {
  min-height: 182px;
}

.festival-sponsor-logos img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 118px;
  object-fit: contain;
}

.festival-sponsor-logos.is-featured img {
  max-height: 142px;
}

.festival-supporter-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 28px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.festival-supporter-list li {
  color: var(--ink);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 600;
}

.festival-sponsor-tier:last-child .festival-supporter-list {
  margin-top: 0;
}

.festival-sponsor-action {
  margin-top: 2px;
}

.vendor-stage {
  display: grid;
  grid-template-columns: minmax(260px, 0.56fr) minmax(0, 1.44fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}

.vendor-stage-heading {
  position: sticky;
  top: var(--festival-sticky-content-top);
}

.vendor-stage-heading h2 {
  margin-bottom: 16px;
}

.vendor-stage-heading p {
  margin-bottom: 26px;
  color: var(--page-ink-muted);
}

.vendor-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vendor-directory li {
  display: grid;
  min-width: 0;
  gap: 12px;
  align-content: start;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.vendor-directory a,
.vendor-directory .vendor-card {
  display: grid;
  min-width: 0;
  gap: 12px;
  align-content: start;
  border-radius: var(--radius-control);
  color: inherit;
  text-decoration: none;
}

.vendor-directory a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 5px;
}

.vendor-directory a .vendor-logo-frame {
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.vendor-directory a:hover .vendor-logo-frame {
  border-color: var(--green);
  box-shadow: 0 10px 24px rgb(19 132 64 / 0.12);
  transform: translateY(-2px);
}

.vendor-directory a:hover span {
  color: var(--green-deep);
  text-decoration: underline;
  text-decoration-color: var(--mint);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.vendor-logo-frame {
  position: relative;
  display: grid;
  aspect-ratio: 4 / 3;
  place-items: center;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--white);
}

.vendor-logo-frame img {
  position: absolute;
  inset: 11%;
  display: block;
  width: 78%;
  max-width: none;
  height: 78%;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.vendor-directory span {
  display: block;
  min-width: 0;
  width: 100%;
  padding-inline: 3px;
  overflow-wrap: anywhere;
}

.festival-faq-preview-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.festival-faq-preview-intro {
  position: sticky;
  top: var(--festival-sticky-content-top);
}

.festival-faq-preview-intro h2 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.04;
}

.festival-faq-preview-intro > p:not(.section-label) {
  max-width: 40ch;
  margin: 0 0 28px;
  color: var(--page-ink-muted);
  font-size: 17px;
}

.festival-faq-list {
  border-top: 1px solid rgb(13 13 13 / 0.26);
}

.festival-faq-list details {
  border-bottom: 1px solid rgb(13 13 13 / 0.2);
}

.festival-faq-list summary {
  display: flex;
  min-height: 68px;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 19px 2px;
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.festival-faq-list summary::-webkit-details-marker {
  display: none;
}

.festival-faq-list summary::after {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  content: "+";
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
  transition: transform 180ms ease, background-color 180ms ease;
}

.festival-faq-list details[open] summary::after {
  background: var(--green-deep);
  transform: rotate(45deg);
}

.festival-faq-list summary:hover,
.festival-faq-list summary:focus-visible {
  color: var(--green-deep);
}

.festival-faq-list summary:focus-visible {
  outline: 3px solid rgb(19 132 64 / 0.34);
  outline-offset: 4px;
}

.festival-faq-list details > div {
  padding: 0 58px 24px 2px;
}

.festival-faq-list details > div p {
  max-width: 68ch;
  margin: 0;
  color: var(--page-ink-muted);
  font-size: 16px;
  line-height: 1.7;
}

.festival-faq-list details > div a {
  color: var(--green-deep);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.festival-faq-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  min-height: 430px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.festival-faq-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 58px clamp(46px, 6vw, 88px) 62px max(48px, calc((100vw - 1440px) / 2));
  background:
    linear-gradient(140deg, rgb(205 230 215 / 0.72), transparent 58%),
    var(--white);
}

.festival-faq-hero-copy h1 {
  max-width: 11ch;
  margin-bottom: 18px;
  font-size: clamp(44px, 5vw, 66px);
  line-height: 1.02;
}

.festival-faq-hero-copy > p:last-child {
  max-width: 43ch;
  margin: 0;
  color: var(--page-ink-muted);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
}

.festival-faq-hero-media {
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  background: var(--mint);
}

.festival-faq-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.festival-faq-content {
  padding-top: clamp(64px, 7vw, 96px);
}

.faq-page-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.52fr) minmax(0, 1.48fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: start;
}

.faq-page-layout > *,
.faq-groups,
.faq-group,
.faq-category-nav nav {
  min-width: 0;
}

.faq-category-nav {
  position: sticky;
  top: var(--festival-sticky-content-top);
}

.faq-category-nav h2 {
  margin-bottom: 22px;
  font-size: 24px;
}

.faq-category-nav nav {
  display: grid;
  gap: 4px;
}

.faq-category-nav a {
  padding: 10px 12px;
  border-left: 3px solid transparent;
  color: var(--page-ink-muted);
  font-size: 15px;
  font-weight: 600;
}

.faq-category-nav a:hover,
.faq-category-nav a:focus-visible {
  border-left-color: var(--green);
  color: var(--green-deep);
  background: rgb(205 230 215 / 0.42);
}

.faq-groups {
  display: grid;
  gap: clamp(58px, 7vw, 88px);
}

.faq-group {
  scroll-margin-top: calc(var(--festival-sticky-content-top) + 8px);
}

.faq-group > h2 {
  margin-bottom: 22px;
  color: var(--green-deep);
  font-size: clamp(28px, 3vw, 38px);
}

@media (prefers-reduced-motion: reduce) {
  .festival-faq-list summary::after {
    transition: none;
  }
}

.festival-venue {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: stretch;
}

.festival-venue-copy {
  align-self: center;
}

.festival-venue-copy h2 {
  margin-bottom: 26px;
}

.festival-venue-copy h3 {
  margin-bottom: 12px;
  color: var(--green-deep);
  font-size: 25px;
}

.festival-venue-copy address {
  margin-bottom: 18px;
  color: var(--ink);
  font-style: normal;
  font-weight: 600;
}

.festival-venue-copy p {
  margin-bottom: 26px;
  color: var(--page-ink-muted);
}

.festival-map {
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--frost);
}

.festival-map iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
}

.sponsor-hero {
  grid-template-columns: minmax(430px, 0.92fr) minmax(0, 1.08fr);
  min-height: 590px;
}

.sponsor-hero-copy {
  min-height: 590px;
}

.sponsor-hero-copy .festival-mark {
  width: min(100%, 380px);
}

.sponsor-hero-copy .solid-action {
  margin-top: 28px;
}

.sponsor-hero-media {
  min-height: 590px;
}

.sponsor-stat-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sponsor-stat-band > div {
  padding: 30px;
  border-right: 1px solid var(--line);
}

.sponsor-stat-band > div:last-child {
  border-right: 0;
}

.sponsor-stat-band strong,
.sponsor-stat-band span {
  display: block;
}

.sponsor-stat-band strong {
  margin-bottom: 8px;
  color: var(--green-deep);
  font-size: clamp(38px, 4.8vw, 62px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.sponsor-stat-band span {
  color: var(--ink);
  font-weight: 600;
}

.sponsor-levels {
  border-top: 1px solid var(--line);
}

.sponsor-level {
  display: grid;
  grid-template-columns: minmax(150px, 0.55fr) minmax(0, 1.6fr) auto;
  gap: 22px clamp(28px, 5vw, 74px);
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.sponsor-level-heading h3,
.sponsor-level-heading p {
  margin: 0;
}

.sponsor-level-heading h3 {
  color: var(--green-deep);
  font-size: clamp(25px, 2.5vw, 34px);
  letter-spacing: -0.035em;
  line-height: 1;
}

.sponsor-level-heading p {
  margin-top: 9px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
}

.sponsor-level-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sponsor-level-highlights li {
  min-width: 0;
}

.sponsor-level-highlights strong,
.sponsor-level-highlights span {
  display: block;
}

.sponsor-level-highlights strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.2;
}

.sponsor-level-highlights span {
  margin-top: 5px;
  color: var(--page-ink-muted);
  font-size: var(--text-supporting);
  line-height: 1.35;
}

.sponsor-level-select {
  min-width: 142px;
}

.sponsor-level-select.is-selected {
  color: var(--white);
  background: var(--green-deep);
  border-color: var(--green-deep);
}

.sponsor-level-details {
  grid-column: 2 / -1;
  min-width: 0;
}

.sponsor-level-details summary,
.sponsor-comparison > summary {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  color: var(--green-deep);
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.sponsor-level-details summary {
  font-size: 14px;
}

.sponsor-level-details summary::-webkit-details-marker,
.sponsor-comparison > summary::-webkit-details-marker {
  display: none;
}

.sponsor-level-details summary::after,
.sponsor-comparison > summary::after {
  content: "+";
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
}

.sponsor-level-details[open] summary::after,
.sponsor-comparison[open] > summary::after {
  content: "-";
}

.sponsor-level-details summary:focus-visible,
.sponsor-comparison > summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}

.sponsor-level-benefit-groups {
  display: grid;
  grid-template-columns: 0.75fr 1fr 1fr;
  gap: 28px;
  padding-top: 26px;
}

.sponsor-level-benefit-groups section {
  padding-top: 16px;
  border-top: 2px solid var(--mint);
}

.sponsor-level-benefit-groups h4 {
  margin: 0 0 12px;
  color: var(--green-deep);
  font-size: 14px;
}

.sponsor-level-benefit-groups dl {
  display: grid;
  gap: 9px;
  margin: 0;
}

.sponsor-level-benefit-groups dl > div {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  color: var(--page-ink-muted);
  font-size: var(--text-supporting);
}

.sponsor-level-benefit-groups dt,
.sponsor-level-benefit-groups dd {
  margin: 0;
}

.sponsor-level-benefit-groups dd {
  flex: 0 0 auto;
  color: var(--ink);
  font-weight: 700;
  text-align: right;
}

.sponsor-comparison {
  margin-top: 34px;
  border-radius: var(--radius-card);
  background: var(--white);
}

.sponsor-comparison > summary {
  width: 100%;
  justify-content: space-between;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  font-size: 16px;
}

.sponsor-comparison[open] > summary {
  border-radius: var(--radius-card) var(--radius-card) 0 0;
}

.sponsor-comparison .sponsor-table-scroll {
  border-top: 0;
  border-radius: 0 0 var(--radius-card) var(--radius-card);
  box-shadow: none;
}

.sponsor-table-scroll {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: 0 14px 32px rgb(19 132 64 / 0.07);
}

.sponsor-table-scroll:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.sponsor-table {
  --tier-diamond: #103b68;
  --tier-platinum: #4a4f54;
  --tier-gold: #d4a23c;
  --tier-silver: #d9dedc;
  --tier-bronze: #8a4f2b;
  --tier-friend: #138440;
  width: 100%;
  min-width: 1020px;
  border-collapse: collapse;
  color: var(--ink);
  font-size: 14px;
}

.sponsor-table caption {
  padding: 22px 24px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  text-align: left;
}

.sponsor-table th,
.sponsor-table td {
  padding: 15px 13px;
  border-top: 1px solid var(--line);
  text-align: center;
  vertical-align: middle;
}

.sponsor-table thead th {
  color: var(--ink);
  background: var(--mint);
  font-weight: 700;
}

.sponsor-table thead th:first-child {
  position: sticky;
  left: 0;
  z-index: 3;
  color: var(--white);
  background: var(--green);
  text-align: left;
}

.sponsor-table .sponsor-tier-head {
  border-top: 5px solid transparent;
  color: var(--white);
}

.sponsor-table .sponsor-tier-head.is-diamond {
  border-top-color: #8fb4d4;
  background: var(--tier-diamond);
}

.sponsor-table .sponsor-tier-head.is-platinum {
  border-top-color: #c5ccd1;
  background: var(--tier-platinum);
}

.sponsor-table .sponsor-tier-head.is-gold {
  border-top-color: #f3d482;
  color: var(--ink);
  background: var(--tier-gold);
}

.sponsor-table .sponsor-tier-head.is-silver {
  border-top-color: #f5f7f6;
  color: var(--ink);
  background: var(--tier-silver);
}

.sponsor-table .sponsor-tier-head.is-bronze {
  border-top-color: #d99a6e;
  background: var(--tier-bronze);
}

.sponsor-table .sponsor-tier-head.is-friend {
  border-top-color: #86c29d;
  background: var(--tier-friend);
}

.sponsor-table tbody th {
  position: sticky;
  left: 0;
  z-index: 2;
  min-width: 190px;
  color: var(--ink);
  background: var(--frost);
  text-align: left;
}

.sponsor-table tbody th > span {
  vertical-align: middle;
}

.sponsor-table tbody th > .ph {
  width: 20px;
  margin-right: 9px;
  color: var(--green-deep);
  font-size: 19px;
  vertical-align: middle;
}

.sponsor-table td {
  min-width: 118px;
}

.sponsor-table tbody td:nth-child(2) {
  background: #eef4f8;
}

.sponsor-table tbody td:nth-child(3) {
  background: #f2f4f5;
}

.sponsor-table tbody td:nth-child(4) {
  background: #fcf7e9;
}

.sponsor-table tbody td:nth-child(5) {
  background: #f6f8f7;
}

.sponsor-table tbody td:nth-child(6) {
  background: #faf1eb;
}

.sponsor-table tbody td:nth-child(7) {
  background: #eef7f1;
}

.benefit-status {
  position: relative;
  display: inline-grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  font-size: 17px;
}

.benefit-status.is-included {
  color: #0d6b34;
  background: #dcefe3;
}

.benefit-status.is-unavailable {
  color: #6d7470;
  background: rgb(109 116 112 / 0.1);
}

.benefit-status sup {
  position: absolute;
  top: -4px;
  right: -5px;
  color: var(--ink);
  font-size: 11px;
  line-height: 1;
}

.sponsor-value {
  display: inline-block;
  padding: 5px 8px;
  border: 1px solid rgb(19 132 64 / 0.16);
  border-radius: var(--radius-control);
  color: var(--ink);
  background: rgb(255 255 255 / 0.72);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.sponsor-table tbody tr:nth-child(1) td,
.sponsor-table tbody tr:nth-child(2) td {
  font-weight: 700;
}

.sponsor-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.sponsor-notes p {
  margin: 0;
  color: var(--page-ink-muted);
  font-size: var(--text-supporting);
}

.sponsor-visibility {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}

.sponsor-visibility-copy h2 {
  margin-bottom: 18px;
}

.sponsor-visibility-copy p {
  color: var(--page-ink-muted);
  font-size: 17px;
}

.sponsor-display-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  margin: 0;
}

.sponsor-display-specs > div {
  min-height: 170px;
  padding: 28px;
  border-radius: var(--radius-card);
  background: var(--frost);
}

.sponsor-display-specs > div:first-child {
  grid-column: span 2;
  background: var(--mint);
}

.sponsor-display-specs dt {
  margin-bottom: 18px;
  color: var(--green-deep);
  font-size: 18px;
  font-weight: 700;
}

.sponsor-display-specs dd {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
}

.sponsor-request {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}

.sponsor-request-intro {
  position: sticky;
  top: var(--festival-sticky-content-top);
}

.sponsor-request-intro h2 {
  margin-bottom: 16px;
}

.sponsor-request-intro p {
  color: var(--page-ink-muted);
}

.sponsor-form {
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-card);
  background: var(--white);
}

.sponsor-form .form-field {
  align-content: start;
}

.sponsor-form .form-error {
  min-height: 1.25em;
  margin-top: 7px;
}

.optional-label {
  color: var(--page-ink-muted);
  font-size: var(--text-supporting);
  font-weight: 400;
}

.sponsor-tier-options {
  margin: 0;
  padding: 0;
  border: 0;
}

.sponsor-tier-options legend {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.sponsor-tier-options > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.sponsor-tier-options label {
  display: flex;
  min-height: 48px;
  gap: 9px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--green);
  border-radius: var(--radius-control);
  color: var(--ink);
  background: var(--white);
  font-size: 14px;
  font-weight: 600;
}

.sponsor-tier-options input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.sponsor-form-status {
  grid-column: 1 / -1;
  min-height: 1.4em;
  margin: 0;
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 700;
}

.sponsor-form .form-note.is-wide {
  grid-column: 1 / -1;
  margin: 0;
}

@media (max-width: 1100px) {
  .festival-nav > .festival-nav-inner {
    width: min(calc(100% - 48px), var(--festival-max));
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 12px;
    scrollbar-width: thin;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
  }

  .festival-hero,
  .sponsor-hero {
    grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
  }

  .festival-hero-copy,
  .sponsor-hero-copy {
    padding-inline: 48px;
  }

  .festival-involvement-list article {
    grid-template-columns: 1fr;
  }

  .festival-involvement-list h3 {
    grid-row: auto;
  }

  .vendor-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 22px;
  }

  .vendor-directory li {
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  .festival-hero,
  .sponsor-hero,
  .festival-faq-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .festival-hero-copy,
  .sponsor-hero-copy,
  .festival-faq-hero-copy {
    min-height: 0;
    padding: 48px;
  }

  .festival-hero-media,
  .sponsor-hero-media,
  .festival-faq-hero-media {
    min-height: 420px;
    height: 420px;
  }

  .festival-involvement,
  .festival-venue,
  .sponsor-visibility,
  .sponsor-request {
    grid-template-columns: 1fr;
  }

  .festival-involvement-media,
  .vendor-stage-heading,
  .sponsor-request-intro {
    position: static;
  }

  .festival-involvement-media,
  .festival-involvement-media img {
    min-height: 480px;
    height: 480px;
  }

  .vendor-stage {
    grid-template-columns: 1fr;
  }

  .festival-faq-preview-layout,
  .faq-page-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .festival-faq-preview-intro,
  .faq-category-nav {
    position: static;
  }

  .faq-category-nav nav {
    display: flex;
    width: 100%;
    max-width: 100%;
    margin-inline: -4px;
    padding: 4px;
    gap: 6px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }

  .faq-category-nav a {
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: var(--radius-control);
    background: var(--white);
  }

  .faq-category-nav a:hover,
  .faq-category-nav a:focus-visible {
    border-color: var(--green);
  }

  .sponsor-visibility-copy {
    max-width: 680px;
  }

  .sponsor-level {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px 26px;
  }

  .sponsor-level-highlights,
  .sponsor-level-details {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .festival-nav > .festival-nav-inner {
    width: 100%;
    padding-inline: 12px;
  }

  .festival-nav a {
    padding-inline: 11px;
  }

  .festival-nav .festival-nav-ticket {
    order: -1;
    margin-left: 0;
  }

  .festival-hero-copy,
  .sponsor-hero-copy,
  .festival-faq-hero-copy {
    padding: 38px 16px 44px;
  }

  .festival-mark {
    width: min(100%, 390px);
    margin-bottom: 24px;
  }

  .festival-hero h1,
  .sponsor-hero h1,
  .festival-faq-hero-copy h1 {
    font-size: clamp(39px, 11vw, 52px);
  }

  .festival-hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .festival-hero-media,
  .sponsor-hero-media,
  .festival-faq-hero-media {
    min-height: 330px;
    height: 330px;
  }

  .festival-faq-preview-layout,
  .faq-page-layout {
    gap: 40px;
  }

  .festival-faq-preview-intro h2 {
    max-width: 14ch;
  }

  .festival-faq-list summary {
    min-height: 62px;
    gap: 16px;
    padding-block: 16px;
    font-size: 18px;
  }

  .festival-faq-list summary::after {
    width: 30px;
    height: 30px;
    font-size: 22px;
    line-height: 28px;
  }

  .festival-faq-list details > div {
    padding: 0 4px 22px 2px;
  }

  .festival-countdown {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .festival-countdown h2 {
    max-width: 15ch;
  }

  .festival-countdown-date {
    grid-column: 1;
  }

  .festival-experience-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: none;
  }

  .festival-experience.is-family,
  .festival-experience.is-food,
  .festival-experience.is-performance,
  .festival-experience.is-makers {
    grid-column: 1;
    grid-row: auto;
    min-height: 340px;
  }

  .festival-involvement-media,
  .festival-involvement-media img {
    min-height: 360px;
    height: 360px;
  }

  .festival-sponsor-tier {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .festival-sponsor-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .festival-sponsor-logos.is-featured {
    grid-template-columns: minmax(0, 1fr);
    max-width: 430px;
  }

  .festival-supporter-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vendor-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .festival-map,
  .festival-map iframe {
    min-height: 390px;
  }

  .sponsor-stat-band {
    grid-template-columns: 1fr;
  }

  .sponsor-stat-band > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .sponsor-stat-band > div:last-child {
    border-bottom: 0;
  }

  .sponsor-level {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-block: 27px;
  }

  .sponsor-level-highlights,
  .sponsor-level-select,
  .sponsor-level-details {
    grid-column: 1;
  }

  .sponsor-level-select {
    width: 100%;
  }

  .sponsor-level-benefit-groups {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 24px;
  }

  .sponsor-comparison {
    margin-top: 28px;
  }

  .sponsor-comparison > summary {
    padding: 18px;
  }

  .sponsor-notes,
  .sponsor-display-specs {
    grid-template-columns: 1fr;
  }

  .sponsor-display-specs > div:first-child {
    grid-column: auto;
  }

  .sponsor-tier-options > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sponsor-form {
    padding: 26px 20px;
  }
}

@media (max-width: 390px) {
  .festival-sponsor-logos,
  .festival-supporter-list {
    grid-template-columns: 1fr;
  }

  .festival-nav a {
    font-size: var(--text-supporting);
  }

  .festival-hero-actions .solid-action {
    width: 100%;
  }

  .festival-countdown {
    padding: 26px 22px;
  }

  .festival-countdown-grid {
    gap: 18px 0;
  }

  .festival-countdown-unit {
    padding-inline: 10px;
  }

  .festival-countdown-unit number-flow {
    font-size: clamp(39px, 14vw, 58px);
  }

  .festival-countdown-unit > span {
    margin-top: 11px;
    font-size: var(--text-supporting);
    letter-spacing: 0.04em;
  }

  .sponsor-tier-options > div {
    grid-template-columns: 1fr;
  }

  .sponsor-level-highlights {
    gap: 12px;
  }

  .sponsor-level-highlights strong {
    font-size: 14px;
  }

  .sponsor-level-highlights span {
    font-size: var(--text-supporting);
  }
}

@media (prefers-reduced-motion: reduce) {
  .festival-experience img {
    transition: none;
  }

  .festival-countdown-unit number-flow {
    --number-flow-mask-height: 0;
    --number-flow-mask-width: 0;
  }
}

/* Festival visitor map */

.festival-visit-section {
  background: var(--white);
}

.festival-map-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.festival-map-heading .section-label {
  margin-bottom: 12px;
  color: var(--red);
}

.festival-map-heading h2 {
  margin-bottom: 14px;
}

.festival-map-heading > p:last-child {
  max-width: 58ch;
  margin: 0;
  color: var(--page-ink-muted);
  font-size: 18px;
}

.festival-map-toolbar {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.festival-map-filters {
  display: flex;
  min-width: 0;
  gap: 8px;
  align-items: center;
}

.festival-map-filter {
  min-height: 44px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  color: var(--ink);
  background: var(--white);
  font-size: var(--text-supporting);
  font-weight: 600;
  white-space: nowrap;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.festival-map-filter:hover,
.festival-map-filter:focus-visible {
  color: var(--green-deep);
  border-color: var(--green);
}

.festival-map-filter.is-active {
  color: var(--white);
  border-color: var(--green);
  background: var(--green);
}

.festival-map-filter:active {
  transform: translateY(1px);
}

.festival-map-reset {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 7px 0;
  border: 0;
  color: var(--green-deep);
  background: transparent;
  font-size: var(--text-supporting);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--mint);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.festival-map-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1.42fr);
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "details map"
    "directory map";
  gap: 22px clamp(28px, 4vw, 54px);
  align-items: start;
}

.festival-map-stage {
  position: relative;
  grid-area: map;
  min-width: 0;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--frost);
  box-shadow: 0 18px 42px rgb(19 132 64 / 0.1);
}

.festival-map-stage .festival-map-canvas {
  position: absolute;
  inset: 0;
}

.festival-map-stage.is-fallback .festival-map-canvas {
  visibility: hidden;
}

.festival-map-loading,
.festival-map-fallback {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.festival-map-loading {
  display: grid;
  place-content: center;
  gap: 14px;
  padding: 28px;
  color: var(--green-deep);
  text-align: center;
  background:
    linear-gradient(135deg, rgb(205 230 215 / 0.62), transparent 62%),
    var(--frost);
}

.festival-map-loading[hidden],
.festival-map-fallback[hidden],
.festival-map-provider-logo[hidden] {
  display: none;
}

.festival-map-loading span {
  display: block;
  width: 54px;
  height: 4px;
  margin-inline: auto;
  overflow: hidden;
  border-radius: var(--radius-control);
  background: var(--mint);
}

.festival-map-loading span::after {
  display: block;
  width: 50%;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
  animation: festival-map-loading 900ms ease-in-out infinite alternate;
  content: "";
}

.festival-map-loading p {
  margin: 0;
  font-weight: 700;
}

@keyframes festival-map-loading {
  to { transform: translateX(100%); }
}

.festival-map-fallback {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(28px, 6vw, 72px);
  background:
    linear-gradient(145deg, rgb(205 230 215 / 0.84), rgb(255 255 255 / 0.94) 66%),
    var(--white);
}

.festival-map-fallback-label {
  margin-bottom: 9px;
  color: var(--green-deep);
  font-size: var(--text-supporting);
  font-weight: 700;
}

.festival-map-fallback h3 {
  max-width: 22ch;
  margin-bottom: 12px;
}

.festival-map-fallback address {
  margin-bottom: 16px;
  font-style: normal;
  font-weight: 600;
}

.festival-map-fallback > p:not(.festival-map-fallback-label) {
  max-width: 50ch;
  margin-bottom: 24px;
  color: var(--page-ink-muted);
}

.festival-map-provider-logo {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 3;
  display: block;
  width: 88px;
  min-height: 24px;
  padding: 3px 5px;
  border-radius: 4px;
  background: rgb(255 255 255 / 0.9);
}

.festival-map-provider-logo img {
  width: 100%;
  height: auto;
}

.festival-location-card {
  grid-area: details;
  min-width: 0;
  padding: 26px;
  border-top: 4px solid var(--green);
  border-radius: var(--radius-card);
  background: var(--frost);
}

.festival-location-heading {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
}

.festival-location-category {
  margin-bottom: 6px;
  color: var(--green-deep);
  font-size: var(--text-supporting);
  font-weight: 700;
}

.festival-location-card h3 {
  margin-bottom: 12px;
  font-size: clamp(22px, 2vw, 28px);
}

.festival-location-price {
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: var(--radius-control);
  color: var(--green-deep);
  background: var(--mint);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.festival-location-card address {
  margin-bottom: 14px;
  color: var(--ink);
  font-style: normal;
  font-weight: 600;
}

.festival-location-card > p:not(.festival-location-category) {
  margin-bottom: 22px;
  color: var(--page-ink-muted);
}

.festival-location-card .festival-location-pending {
  padding: 13px 14px;
  border-left: 4px solid var(--red);
  background: var(--white);
  color: var(--ink);
  font-weight: 600;
}

.festival-location-accessibility {
  font-size: var(--text-supporting);
}

.festival-location-card .solid-action {
  width: 100%;
}

.festival-location-directory {
  grid-area: directory;
  min-width: 0;
}

.festival-location-directory > h3 {
  margin-bottom: 12px;
  color: var(--green-deep);
  font-size: 19px;
}

.festival-location-list {
  max-height: 306px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border-top: 1px solid var(--line);
  scrollbar-width: thin;
}

.festival-location-option {
  display: grid;
  width: 100%;
  min-height: 72px;
  gap: 2px;
  align-content: center;
  padding: 14px 13px;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  text-align: left;
  transition: color 180ms ease, background-color 180ms ease, padding-left 180ms ease;
}

.festival-location-option:hover,
.festival-location-option:focus-visible,
.festival-location-option.is-selected {
  color: var(--green-deep);
  background: rgb(205 230 215 / 0.46);
}

.festival-location-option.is-selected {
  padding-left: 18px;
  box-shadow: inset 4px 0 0 var(--green);
}

.festival-location-option-category,
.festival-location-option-meta {
  font-size: 12px;
}

.festival-location-option-category {
  color: var(--green-deep);
  font-weight: 700;
}

.festival-location-option strong {
  font-size: 15px;
}

.festival-location-option-meta {
  color: var(--page-ink-muted);
}

.festival-location-list-status {
  margin: 0;
  padding: 18px 0;
  color: var(--page-ink-muted);
  font-size: var(--text-supporting);
}

.festival-map-noscript {
  margin-top: 22px;
  padding: 26px;
  border-radius: var(--radius-card);
  background: var(--mint);
}

.festival-map-noscript h3,
.festival-map-noscript address {
  margin-bottom: 14px;
}

.festival-map-noscript address {
  font-style: normal;
  font-weight: 600;
}

.festival-map-marker {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 3px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 8px 20px rgb(19 132 64 / 0.24);
  transform-origin: 50% 100%;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.festival-map-marker-shell[hidden] {
  display: none;
}

.festival-map-marker::after {
  position: absolute;
  bottom: -7px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-right: 3px solid var(--white);
  border-bottom: 3px solid var(--white);
  background: inherit;
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.festival-map-marker > span {
  position: relative;
  z-index: 1;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.festival-map-marker.is-parking {
  background: var(--green);
}

.festival-map-marker.is-entrance {
  background: var(--red);
}

.festival-map-marker.is-festival {
  background: var(--ink);
}

.festival-map-marker:hover,
.festival-map-marker:focus-visible,
.festival-map-marker.is-selected {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 10px 26px rgb(19 132 64 / 0.34);
}

.festival-map-marker.is-selected {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.festival-map-marker[hidden] {
  display: none;
}

.festival-map-stage .maplibregl-ctrl-top-right {
  top: 10px;
  right: 10px;
}

.festival-map-stage .maplibregl-ctrl-group {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  box-shadow: 0 8px 20px rgb(19 132 64 / 0.15);
}

.festival-map-stage .maplibregl-ctrl-group button {
  width: 42px;
  height: 42px;
}

.festival-map-stage .maplibregl-ctrl button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -4px;
  box-shadow: inset 0 0 0 2px var(--green);
}

.festival-map-stage .maplibregl-ctrl-attrib {
  color: var(--ink);
  font-family: var(--body-font);
}

.festival-map-stage .maplibregl-ctrl-attrib a {
  color: var(--green-deep);
}

.festival-map-stage .maplibregl-cooperative-gesture-screen {
  color: var(--white);
  background: rgb(13 13 13 / 0.72);
  font-family: var(--body-font);
}

@media (max-width: 900px) {
  .festival-map-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "map"
      "details"
      "directory";
  }

  .festival-map-stage {
    min-height: 520px;
  }

  .festival-location-card {
    padding: 28px;
  }

  .festival-location-list {
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 700px) {
  .festival-map-heading {
    margin-bottom: 28px;
  }

  .festival-map-heading > p:last-child {
    font-size: 17px;
  }

  .festival-map-toolbar {
    display: block;
    margin-inline: -16px;
  }

  .festival-map-filters {
    overflow-x: auto;
    padding: 3px 16px 10px;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 16px;
    scrollbar-width: thin;
  }

  .festival-map-reset {
    margin-left: 16px;
  }

  .festival-map-layout {
    gap: 18px;
  }

  .festival-map-stage {
    min-height: 390px;
  }

  .festival-map-fallback {
    padding: 28px 24px;
  }

  .festival-location-card {
    padding: 24px 20px;
  }

  .festival-location-heading {
    gap: 12px;
  }

  .festival-map-stage .maplibregl-ctrl-top-right {
    top: 6px;
    right: 6px;
  }

  .festival-map-stage .maplibregl-ctrl-group button {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 390px) {
  .festival-location-heading {
    display: block;
  }

  .festival-location-price {
    display: inline-block;
    margin-bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .festival-sponsor-logos a,
  .vendor-directory a .vendor-logo-frame {
    transition: none;
  }

  .festival-sponsor-logos a:hover,
  .vendor-directory a:hover .vendor-logo-frame {
    transform: none;
  }

  .festival-map-loading span::after {
    animation: none;
    transform: none;
  }

  .festival-map-filter,
  .festival-location-option,
  .festival-map-marker {
    transition: none;
  }
}

/* Map-first festival location experience */

.festival-map-marker-shell {
  position: relative;
}

.festival-map-marker-name {
  position: absolute;
  bottom: calc(100% + 11px);
  left: 50%;
  z-index: 0;
  max-width: 176px;
  overflow: hidden;
  padding: 6px 9px;
  border: 1px solid rgb(19 132 64 / 0.28);
  border-radius: var(--radius-control);
  color: var(--ink);
  background: rgb(255 255 255 / 0.96);
  box-shadow: 0 7px 18px rgb(13 84 39 / 0.14);
  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  transform: translateX(-50%);
}

.festival-map-marker-shell:hover,
.festival-map-marker-shell:focus-within,
.festival-map-marker-shell.is-selected {
  z-index: 2;
}

.festival-map-marker-shell:hover .festival-map-marker-name,
.festival-map-marker-shell:focus-within .festival-map-marker-name,
.festival-map-marker-shell.is-selected .festival-map-marker-name {
  border-color: rgb(19 132 64 / 0.55);
  box-shadow: 0 9px 22px rgb(13 84 39 / 0.2);
}

.festival-map-stage {
  position: relative;
  width: min(100%, 1040px);
  height: 520px;
  min-height: 520px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--frost);
  box-shadow: 0 18px 42px rgb(19 132 64 / 0.1);
  isolation: isolate;
}

.festival-map-toolbar {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 7;
  display: flex;
  max-width: calc(100% - 168px);
  min-width: 0;
  gap: 6px;
  align-items: center;
  margin: 0;
  padding: 5px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  border: 1px solid rgb(13 84 39 / 0.16);
  border-radius: var(--radius-control);
  background: rgb(255 255 255 / 0.97);
  box-shadow: 0 8px 22px rgb(13 84 39 / 0.14);
  scrollbar-width: none;
}

.festival-map-toolbar::-webkit-scrollbar {
  display: none;
}

.festival-map-filter-panel-header,
.festival-map-mobile-filter-trigger {
  display: none;
}

.festival-map-mobile-header {
  display: contents;
}

.festival-map-filters {
  display: flex;
  flex: 0 0 auto;
  min-width: max-content;
  gap: 4px;
}

.festival-map-filter,
.festival-map-reset,
.festival-map-mobile-filter-trigger,
.festival-map-locations-trigger,
.festival-map-filter-close,
.festival-location-drawer-close {
  min-height: 40px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  font-family: var(--body-font);
  font-size: var(--text-supporting);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.festival-map-filter {
  min-height: 40px;
  padding: 8px 13px;
  border-color: transparent;
  background: transparent;
}

.festival-map-filter:hover,
.festival-map-filter:focus-visible {
  color: var(--green-deep);
  border-color: var(--mint);
  background: rgb(205 230 215 / 0.35);
}

.festival-map-filter.is-active {
  color: var(--white);
  border-color: var(--green);
  background: var(--green);
}

.festival-map-reset {
  flex: 0 0 auto;
  min-height: 40px;
  margin: 0;
  padding: 8px 13px;
  color: var(--green-deep);
  background: var(--mint);
  text-decoration: none;
}

.festival-map-reset:hover,
.festival-map-reset:focus-visible,
.festival-map-mobile-filter-trigger:hover,
.festival-map-mobile-filter-trigger:focus-visible,
.festival-map-locations-trigger:hover,
.festival-map-locations-trigger:focus-visible,
.festival-map-filter-close:hover,
.festival-map-filter-close:focus-visible,
.festival-location-drawer-close:hover,
.festival-location-drawer-close:focus-visible {
  border-color: var(--green);
  color: var(--green-deep);
  background: var(--white);
}

.festival-map-locations-trigger {
  position: absolute;
  top: 154px;
  right: 14px;
  z-index: 7;
  padding: 10px 15px;
  border-color: rgb(13 84 39 / 0.18);
  color: var(--white);
  background: var(--green-deep);
  box-shadow: 0 8px 22px rgb(13 84 39 / 0.18);
}

.festival-map-status {
  position: absolute;
  top: 82px;
  left: 50%;
  z-index: 7;
  width: max-content;
  max-width: min(520px, calc(100% - 180px));
  padding: 11px 15px;
  border: 1px solid rgb(157 27 46 / 0.28);
  border-radius: var(--radius-control);
  color: var(--ink);
  background: rgb(255 255 255 / 0.98);
  box-shadow: 0 8px 22px rgb(13 84 39 / 0.14);
  font-size: var(--text-supporting);
  font-weight: 700;
  text-align: center;
  transform: translateX(-50%);
}

.festival-map-status[hidden],
.festival-map-filter-backdrop[hidden],
.festival-location-drawer[hidden],
.festival-location-drawer-backdrop[hidden] {
  display: none;
}

.festival-location-heading {
  display: flex;
  min-width: 0;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}

.festival-location-category {
  margin: 0 0 5px;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 700;
}

.festival-location-content h3,
.festival-location-content strong {
  color: var(--ink);
  overflow-wrap: anywhere;
}

.festival-location-content h3 {
  margin: 0;
  font-size: clamp(19px, 1.7vw, 25px);
  line-height: 1.12;
}

.festival-location-price {
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: var(--radius-control);
  color: var(--green-deep);
  background: var(--mint);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.festival-location-address,
.festival-location-description,
.festival-location-accessibility {
  margin: 0;
}

.festival-location-address {
  color: var(--ink);
  font-style: normal;
  font-weight: 600;
  line-height: 1.45;
}

.festival-location-description {
  color: var(--page-ink-muted);
  font-size: 14px;
  line-height: 1.45;
}

.festival-location-accessibility {
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.festival-location-actions .solid-action {
  width: auto;
  min-width: 142px;
  padding: 12px 16px;
  white-space: nowrap;
}

.festival-map-filter-backdrop,
.festival-location-drawer-backdrop {
  position: absolute;
  inset: 0;
  z-index: 20;
  background: rgb(13 13 13 / 0.42);
}

.festival-location-drawer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 21;
  display: flex;
  width: min(420px, 44%);
  flex-direction: column;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background: var(--white);
  box-shadow: -18px 0 42px rgb(13 84 39 / 0.2);
}

.festival-location-drawer-header {
  display: flex;
  flex: 0 0 auto;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 22px 18px;
  border-bottom: 1px solid var(--line);
}

.festival-location-drawer-header p {
  margin: 0 0 4px;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 700;
}

.festival-location-drawer-header h3 {
  margin: 0;
  font-size: 28px;
}

.festival-location-drawer-close {
  flex: 0 0 auto;
  padding: 9px 13px;
  border-color: var(--line);
  color: var(--ink);
  background: var(--frost);
}

.festival-map-filter-close {
  flex: 0 0 auto;
  padding: 9px 13px;
  border-color: var(--line);
  color: var(--ink);
  background: var(--frost);
}

.festival-location-drawer-help {
  flex: 0 0 auto;
  margin: 0;
  padding: 17px 22px;
  color: var(--page-ink-muted);
  font-size: 14px;
  line-height: 1.5;
}

.festival-location-drawer .festival-location-list {
  min-height: 0;
  max-height: none;
  flex: 1 1 auto;
  overflow-y: auto;
  border-top: 1px solid var(--line);
}

.festival-location-option {
  display: block;
  width: 100%;
  min-height: 88px;
  padding: 16px 22px;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  text-align: left;
}

.festival-location-option .festival-location-content {
  display: grid;
  gap: 4px;
}

.festival-location-option .festival-location-heading {
  display: flex;
}

.festival-location-option .festival-location-address {
  display: none;
}

.festival-location-option:hover,
.festival-location-option:focus-visible,
.festival-location-option.is-selected {
  color: var(--green-deep);
  background: rgb(205 230 215 / 0.46);
}

.festival-location-option.is-selected {
  padding-left: 26px;
  box-shadow: inset 4px 0 0 var(--green);
}

.festival-location-option.is-pending {
  min-height: 92px;
  border-left: 4px solid var(--red);
  background: var(--frost);
}

.festival-location-option.is-pending .festival-location-option-meta {
  color: var(--red-deep, var(--red));
  font-weight: 700;
}

.festival-location-option-meta {
  color: var(--page-ink-muted);
  font-size: 12px;
}

.festival-location-list-status {
  margin: 0;
  padding: 20px 22px;
  color: var(--page-ink-muted);
  font-size: var(--text-supporting);
}

.festival-location-popup {
  z-index: 12;
  width: min(420px, calc(100vw - 48px));
  max-width: calc(100vw - 48px) !important;
}

.festival-location-popup .maplibregl-popup-content {
  max-height: min(400px, calc(100dvh - 160px));
  padding: 0;
  overflow-y: auto;
  border: 1px solid rgb(13 84 39 / 0.2);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: 0 18px 44px rgb(13 84 39 / 0.24);
  scrollbar-width: thin;
}

.festival-location-popup .maplibregl-popup-close-button {
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 0 var(--radius-card) 0 var(--radius-control);
  color: var(--ink);
  background: var(--mint);
  font-size: 25px;
}

.festival-location-popup .maplibregl-popup-close-button:hover,
.festival-location-popup .maplibregl-popup-close-button:focus-visible {
  color: var(--white);
  background: var(--green-deep);
}

.festival-location-popup .festival-location-content {
  display: grid;
  gap: 14px;
  padding: 22px 22px 20px;
}

.festival-location-popup .festival-location-heading {
  padding-right: 34px;
}

.festival-location-popup .festival-location-content h3 {
  font-size: 23px;
  line-height: 1.16;
}

.festival-location-popup .festival-location-description {
  font-size: 14px;
}

.festival-location-popup .festival-location-actions .solid-action {
  width: 100%;
}

.festival-location-popup.maplibregl-popup-anchor-bottom .maplibregl-popup-tip,
.festival-location-popup.maplibregl-popup-anchor-bottom-left .maplibregl-popup-tip,
.festival-location-popup.maplibregl-popup-anchor-bottom-right .maplibregl-popup-tip {
  border-top-color: var(--white);
}

.festival-location-popup.maplibregl-popup-anchor-top .maplibregl-popup-tip,
.festival-location-popup.maplibregl-popup-anchor-top-left .maplibregl-popup-tip,
.festival-location-popup.maplibregl-popup-anchor-top-right .maplibregl-popup-tip {
  border-bottom-color: var(--white);
}

.festival-location-popup.maplibregl-popup-anchor-left .maplibregl-popup-tip {
  border-right-color: var(--white);
}

.festival-location-popup.maplibregl-popup-anchor-right .maplibregl-popup-tip {
  border-left-color: var(--white);
}

.festival-map-stage .maplibregl-ctrl-top-right {
  top: 14px;
  right: 14px;
  z-index: 8;
}

.festival-map-stage .maplibregl-ctrl-bottom-right {
  right: 6px;
  bottom: 4px;
  z-index: 9;
}

.festival-map-stage .maplibregl-ctrl-group {
  margin: 0 0 8px;
}

.festival-map-stage .maplibregl-ctrl-group button {
  width: 40px;
  height: 40px;
}

.festival-map-provider-logo {
  bottom: 7px;
  left: 8px;
  z-index: 9;
}

.festival-map-loading,
.festival-map-fallback,
.festival-map-noscript {
  z-index: 30;
}

.festival-map-noscript {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin: 0;
  padding: clamp(28px, 6vw, 72px);
  border-radius: 0;
  background:
    linear-gradient(145deg, rgb(205 230 215 / 0.84), rgb(255 255 255 / 0.96) 66%),
    var(--white);
}

.festival-map-noscript > p:not(.festival-map-fallback-label) {
  max-width: 48ch;
  margin-bottom: 22px;
  color: var(--page-ink-muted);
}

.festival-map-stage.is-fallback .festival-map-toolbar,
.festival-map-stage.is-fallback .festival-map-mobile-header,
.festival-map-stage.is-fallback .festival-map-status,
.festival-map-stage.is-fallback .festival-map-filter-backdrop,
.festival-map-stage.is-fallback .festival-location-drawer,
.festival-map-stage.is-fallback .festival-location-drawer-backdrop {
  display: none;
}

@media (max-width: 900px) {
  .festival-map-stage {
    height: 460px;
    min-height: 460px;
  }
}

@media (max-width: 700px) {
  .festival-location-popup {
    width: min(360px, calc(100vw - 48px));
  }

  .festival-location-popup .maplibregl-popup-content {
    max-height: min(340px, calc(100dvh - 180px));
  }

  .festival-location-popup .festival-location-content {
    gap: 13px;
    padding: 20px 18px 18px;
  }

  .festival-location-popup .festival-location-content h3 {
    font-size: 21px;
  }

  .festival-map-marker-name {
    display: none;
    max-width: min(176px, calc(100vw - 82px));
  }

  .festival-map-stage:not(.has-location-popup) .festival-map-marker-shell.is-selected .festival-map-marker-name {
    display: block;
  }

  .festival-map-stage {
    height: 420px;
    min-height: 420px;
  }

  .festival-map-mobile-header {
    position: absolute;
    top: 8px;
    right: 8px;
    left: 8px;
    z-index: 7;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }

  .festival-map-mobile-filter-trigger {
    display: flex;
    width: 100%;
    min-width: 0;
    min-height: 48px;
    gap: 5px;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 14px;
    overflow: hidden;
    border-color: rgb(13 84 39 / 0.18);
    color: var(--ink);
    background: rgb(255 255 255 / 0.97);
    box-shadow: 0 8px 22px rgb(13 84 39 / 0.14);
    text-align: left;
  }

  .festival-map-mobile-filter-trigger span {
    color: var(--page-ink-muted);
    font-weight: 600;
  }

  .festival-map-mobile-filter-trigger strong {
    min-width: 0;
    overflow: hidden;
    color: var(--green-deep);
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .festival-map-toolbar {
    top: 64px;
    right: 8px;
    bottom: auto;
    left: 8px;
    z-index: 21;
    display: none;
    width: auto;
    max-width: none;
    gap: 0;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
    border-radius: var(--radius-card);
    box-shadow: 0 18px 46px rgb(13 84 39 / 0.26);
  }

  .festival-map-stage.is-filter-panel-open .festival-map-toolbar {
    display: flex;
    flex-direction: column;
  }

  .festival-map-filter-panel-header {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    justify-content: space-between;
    padding: 18px 18px 14px;
    border-bottom: 1px solid var(--line);
  }

  .festival-map-filter-panel-header p {
    margin: 0 0 3px;
    color: var(--green-deep);
    font-size: 12px;
    font-weight: 700;
  }

  .festival-map-filter-panel-header h3 {
    margin: 0;
    font-size: 24px;
  }

  .festival-map-filters {
    display: grid;
    min-width: 0;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
    padding: 14px;
  }

  .festival-map-filter {
    grid-column: span 2;
    width: 100%;
    min-height: 44px;
    padding: 9px 4px;
    border-color: var(--line);
    background: var(--white);
    font-size: 12px;
  }

  .festival-map-filter:nth-child(n + 4) {
    grid-column: span 3;
  }

  .festival-map-locations-trigger {
    position: static;
    min-height: 48px;
    padding: 10px 14px;
  }

  .festival-map-reset {
    width: auto;
    min-height: 44px;
    margin: 0 14px 14px;
    padding: 9px 12px;
  }

  .festival-map-status {
    top: 70px;
    right: 62px;
    left: 8px;
    width: auto;
    max-width: none;
    padding: 10px 12px;
    text-align: left;
    transform: none;
  }

  .festival-map-filter-backdrop,
  .festival-location-drawer-backdrop {
    background: rgb(13 13 13 / 0.5);
  }

  .festival-location-drawer {
    top: 8px;
    right: 8px;
    bottom: 8px;
    width: calc(100% - 16px);
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    box-shadow: 0 18px 46px rgb(13 84 39 / 0.26);
  }

  .festival-location-drawer-header {
    padding: 19px 18px 15px;
  }

  .festival-location-drawer-header h3 {
    font-size: 25px;
  }

  .festival-location-drawer-help {
    padding: 14px 18px;
  }

  .festival-location-option {
    padding: 15px 18px;
  }

  .festival-map-stage .maplibregl-ctrl-top-right {
    top: 70px;
    right: 8px;
  }

  .festival-map-stage .maplibregl-ctrl-group button {
    width: 40px;
    height: 40px;
  }

  .festival-map-fallback,
  .festival-map-noscript {
    padding: 28px 22px;
  }
}

@media (max-width: 390px) {
  .festival-map-stage {
    height: 420px;
    min-height: 420px;
  }

  .festival-location-popup {
    width: min(340px, calc(100vw - 48px));
    max-width: calc(100vw - 48px) !important;
  }

  .festival-location-popup .maplibregl-popup-content {
    max-height: min(320px, calc(100dvh - 180px));
  }

  .festival-location-popup .festival-location-heading {
    display: block;
  }

  .festival-location-popup .festival-location-price {
    display: inline-block;
    margin-top: 9px;
  }
}

@media (max-width: 350px) {
  .festival-map-filter-panel-header {
    gap: 8px;
    padding: 14px;
  }

  .festival-map-filter-panel-header h3 {
    font-size: 20px;
  }

  .festival-map-filter-close {
    padding: 8px 10px;
  }

  .festival-map-filters {
    padding: 12px;
  }

  .festival-map-reset {
    margin: 0 12px 12px;
  }

  .festival-location-popup .maplibregl-popup-content {
    max-height: 230px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .festival-map-filter,
  .festival-map-reset,
  .festival-map-mobile-filter-trigger,
  .festival-map-locations-trigger,
  .festival-map-filter-close,
  .festival-location-drawer-close,
  .festival-location-option,
  .festival-location-popup .maplibregl-popup-close-button {
    transition: none;
  }
}
