:root {
    --navy: #071f38;
    --navy-2: #0b2f51;
    --ink: #172a3a;
    --muted: #5d6d7a;
    --gold: #f4b51d;
    --gold-dark: #d99700;
    --cream: #f6f3ec;
    --paper: #ffffff;
    --line: #dfe5e8;
    --teal: #15806c;
    --red: #dd4b35;
    --shadow: 0 22px 60px rgba(5, 31, 55, .12);
    --radius: 18px;
    --container: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p,
figure,
blockquote {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.08;
}

h1 {
    font-size: clamp(3rem, 6vw, 5.8rem);
    letter-spacing: -.05em;
}

h2 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    letter-spacing: -.035em;
}

h3 {
    font-size: 1.45rem;
    letter-spacing: -.02em;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    padding: 110px 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: -80px;
    z-index: 9999;
    padding: 12px 18px;
    color: var(--navy);
    background: var(--gold);
    border-radius: 8px;
    font-weight: 800;
    transition: top .2s ease;
}

.skip-link:focus {
    top: 16px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--teal);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .16em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 30px;
    height: 2px;
    background: currentColor;
    content: "";
}

.eyebrow.light {
    color: var(--gold);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 13px 24px;
    border: 2px solid transparent;
    border-radius: 7px;
    cursor: pointer;
    font-size: .85rem;
    font-weight: 900;
    letter-spacing: .04em;
    line-height: 1.2;
    text-transform: uppercase;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-gold {
    color: var(--navy);
    background: var(--gold);
    box-shadow: 0 12px 32px rgba(244, 181, 29, .2);
}

.button-gold:hover,
.button-gold:focus-visible {
    background: #ffc632;
    box-shadow: 0 15px 36px rgba(244, 181, 29, .3);
}

.button-navy {
    color: #fff;
    background: var(--navy);
}

.button-outline-light {
    color: #fff;
    border-color: rgba(255, 255, 255, .46);
    background: transparent;
}

.button-outline-light:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .08);
}

.button-outline-navy {
    color: var(--navy);
    border-color: var(--navy);
    background: transparent;
}

.button-full {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--navy);
    font-size: .86rem;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.text-link span {
    color: var(--teal);
    font-size: 1.25rem;
    transition: transform .2s ease;
}

.text-link:hover span {
    transform: translateX(5px);
}

.utility-bar {
    position: relative;
    z-index: 120;
    color: rgba(255, 255, 255, .82);
    background: #041523;
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: .06em;
}

.utility-inner {
    display: flex;
    min-height: 34px;
    align-items: center;
    justify-content: space-between;
}

.utility-links {
    display: flex;
    gap: 24px;
}

.utility-links a:hover {
    color: var(--gold);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 110;
    border-bottom: 1px solid rgba(7, 31, 56, .08);
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(18px);
    transition: box-shadow .2s ease;
}

.site-header.scrolled {
    box-shadow: 0 12px 36px rgba(7, 31, 56, .1);
}

.header-inner {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.brand-mark {
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    color: var(--navy);
    background: var(--gold);
    border-radius: 50% 50% 48% 12%;
    font-family: Georgia, serif;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: -.04em;
    transform: rotate(-4deg);
}

.brand-copy {
    display: flex;
    max-width: 190px;
    flex-direction: column;
    line-height: 1.12;
}

.brand-copy strong {
    color: var(--navy);
    font-family: Georgia, serif;
    font-size: .94rem;
}

.brand-copy small {
    margin-top: 5px;
    color: var(--teal);
    font-size: .6rem;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 17px;
}

.site-nav > a,
.nav-dropdown > a {
    position: relative;
    color: #2d4050;
    font-size: .76rem;
    font-weight: 850;
    letter-spacing: .025em;
    white-space: nowrap;
}

.site-nav > a:not(.nav-button)::after,
.nav-dropdown > a::after {
    position: absolute;
    right: 0;
    bottom: -13px;
    left: 0;
    height: 2px;
    background: var(--gold);
    content: "";
    transform: scaleX(0);
    transition: transform .2s ease;
}

.site-nav > a:hover::after,
.site-nav > a.active::after,
.nav-dropdown > a:hover::after,
.nav-dropdown > a.active::after {
    transform: scaleX(1);
}

.site-nav .festival-link {
    color: var(--teal);
}

.site-nav .nav-button {
    padding: 12px 17px;
    color: var(--navy);
    background: var(--gold);
    border-radius: 5px;
    text-transform: uppercase;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown > a span {
    font-size: .9rem;
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 24px);
    left: -25px;
    display: grid;
    width: 285px;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-7px);
    transition: opacity .2s ease, transform .2s ease;
}

.dropdown-panel a {
    padding: 11px 13px;
    border-radius: 7px;
    color: var(--ink);
    font-size: .82rem;
    font-weight: 750;
}

.dropdown-panel a:hover {
    color: var(--navy);
    background: var(--cream);
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 42px;
    padding: 9px;
    border: 0;
    border-radius: 7px;
    background: var(--navy);
}

.menu-toggle > span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: #fff;
}

.hero {
    position: relative;
    min-height: 740px;
    overflow: hidden;
    color: #fff;
    background: var(--navy);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image: linear-gradient(115deg, transparent 62%, rgba(244, 181, 29, .28) 62%), radial-gradient(circle at 14% 20%, rgba(42, 139, 160, .46), transparent 29%);
}

.hero::after {
    position: absolute;
    right: -130px;
    bottom: -280px;
    width: 600px;
    height: 600px;
    border: 80px solid rgba(255, 255, 255, .035);
    border-radius: 50%;
    content: "";
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 740px;
    align-items: center;
    grid-template-columns: 1.08fr .92fr;
    gap: 65px;
    padding-block: 82px;
}

.hero-copy h1 {
    max-width: 720px;
    margin-bottom: 26px;
    color: #fff;
}

.hero-copy > p {
    max-width: 640px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, .79);
    font-size: 1.12rem;
    line-height: 1.75;
}

.hero-promise {
    display: grid;
    max-width: 640px;
    margin-top: 52px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .16);
    grid-template-columns: repeat(3, 1fr);
}

.hero-promise div {
    display: flex;
    flex-direction: column;
    padding-right: 15px;
}

.hero-promise strong {
    color: var(--gold);
    font-family: Georgia, serif;
    font-size: 1.05rem;
}

.hero-promise span {
    color: rgba(255, 255, 255, .61);
    font-size: .73rem;
}

.hero-visual {
    position: relative;
    min-height: 560px;
}

.hero-image {
    position: absolute;
    overflow: hidden;
    border: 7px solid rgba(255, 255, 255, .12);
    box-shadow: 0 25px 70px rgba(0, 0, 0, .34);
}

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

.hero-image-main {
    inset: 0 0 58px 25px;
    clip-path: polygon(9% 0, 100% 0, 100% 91%, 88% 100%, 0 100%, 0 10%);
}

.hero-image-small {
    right: -30px;
    bottom: 0;
    width: 48%;
    height: 215px;
    border: 7px solid var(--navy);
    border-radius: 5px;
}

.hero-badge {
    position: absolute;
    bottom: 8px;
    left: -25px;
    display: flex;
    width: 235px;
    min-height: 112px;
    flex-direction: column;
    justify-content: center;
    padding: 20px 24px;
    color: var(--navy);
    background: var(--gold);
    border-radius: 4px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
    transform: rotate(-2deg);
}

.hero-badge span {
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero-badge strong {
    font-family: Georgia, serif;
    font-size: 1.05rem;
    line-height: 1.25;
}

.impact-ribbon {
    color: #fff;
    background: var(--teal);
}

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

.ribbon-grid > div {
    position: relative;
    display: grid;
    min-height: 112px;
    align-content: center;
    padding: 18px 24px 18px 55px;
    border-right: 1px solid rgba(255, 255, 255, .18);
}

.ribbon-grid > div:first-child {
    border-left: 1px solid rgba(255, 255, 255, .18);
}

.ribbon-grid span {
    position: absolute;
    top: 22px;
    left: 18px;
    color: rgba(255, 255, 255, .5);
    font-family: Georgia, serif;
    font-size: .76rem;
}

.ribbon-grid strong {
    font-family: Georgia, serif;
    font-size: 1.18rem;
}

.ribbon-grid small {
    color: rgba(255, 255, 255, .68);
    font-size: .75rem;
}

.two-column {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px;
}

.sticky-heading {
    align-self: start;
    position: sticky;
    top: 125px;
}

.section-heading h2,
.sticky-heading h2 {
    max-width: 780px;
    margin-bottom: 28px;
}

.lead-copy,
.rich-copy {
    color: #334958;
    font-size: 1.08rem;
    line-height: 1.9;
}

.lead-copy {
    padding-left: 28px;
    border-left: 3px solid var(--gold);
}

.vision-mission-grid {
    display: grid;
    margin-top: 55px;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.vision-mission-grid article {
    position: relative;
    min-height: 250px;
    padding: 34px;
    overflow: hidden;
    background: var(--cream);
    border-radius: var(--radius);
}

.vision-mission-grid article:last-child {
    color: #fff;
    background: var(--navy);
}

.vision-mission-grid article:last-child h3 {
    color: #fff;
}

.card-number {
    position: absolute;
    right: 15px;
    bottom: -45px;
    color: rgba(7, 31, 56, .06);
    font-family: Georgia, serif;
    font-size: 10rem;
    font-weight: 900;
    line-height: 1;
}

.vision-mission-grid article:last-child .card-number {
    color: rgba(255, 255, 255, .05);
}

.programmes-section {
    background: var(--cream);
}

.heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
}

.heading-row h2 {
    margin-bottom: 0;
}

.programme-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.programme-card {
    display: grid;
    min-height: 350px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(7, 31, 56, .08);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(7, 31, 56, .04);
    grid-template-columns: .82fr 1.18fr;
    transition: transform .25s ease, box-shadow .25s ease;
}

.programme-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.programme-image {
    position: relative;
    min-height: 100%;
    overflow: hidden;
}

.programme-image img {
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.programme-card:hover .programme-image img {
    transform: scale(1.05);
}

.programme-image > span {
    position: absolute;
    top: 18px;
    left: 18px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: var(--navy);
    background: var(--gold);
    border-radius: 50%;
    font-size: .7rem;
    font-weight: 900;
}

.programme-card-body {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 34px;
}

.programme-icon {
    margin-bottom: 15px;
    font-size: 1.65rem;
}

.programme-card-body h3 {
    margin-bottom: 15px;
    font-size: 1.7rem;
}

.programme-card-body p {
    margin-bottom: 24px;
    color: var(--muted);
    font-size: .91rem;
}

.story-section {
    color: #fff;
    background: var(--navy);
}

.story-grid {
    display: grid;
    align-items: center;
    grid-template-columns: 1.25fr .75fr;
    gap: 75px;
}

.story-collage {
    display: grid;
    height: 590px;
    grid-template-columns: 1.2fr .8fr .8fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
}

.story-photo {
    margin: 0;
    overflow: hidden;
}

.story-photo img {
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.story-photo:hover img {
    transform: scale(1.05);
}

.story-photo-1 {
    grid-row: 1 / 3;
}

.story-photo-2 {
    grid-column: 2 / 4;
}

.story-photo-3,
.story-photo-4 {
    grid-row: 2;
}

.story-photo-5 {
    display: none;
}

.story-copy h2 {
    margin-bottom: 25px;
    color: #fff;
}

.story-copy p {
    margin-bottom: 32px;
    color: rgba(255, 255, 255, .73);
    font-size: 1.02rem;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.article-grid-wide {
    row-gap: 50px;
}

.article-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: box-shadow .25s ease, transform .25s ease;
}

.article-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.article-image {
    display: block;
    height: 235px;
    overflow: hidden;
}

.article-image img {
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-body {
    padding: 28px;
}

.article-category {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--teal);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.article-body h3 {
    margin-bottom: 14px;
}

.article-body p {
    color: var(--muted);
    font-size: .91rem;
}

.magazine-panel {
    padding: 85px 0;
    color: #fff;
    background: linear-gradient(120deg, #0e7567, #075246);
}

.magazine-grid {
    display: grid;
    align-items: center;
    grid-template-columns: .72fr 1.28fr;
    gap: 75px;
}

.magazine-mark,
.magazine-cover {
    display: flex;
    min-height: 380px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 45px;
    border: 1px solid rgba(255, 255, 255, .35);
    background: var(--navy);
    box-shadow: 25px 25px 0 rgba(244, 181, 29, .92);
    text-align: center;
    transform: rotate(-2deg);
}

.magazine-mark span,
.magazine-cover span {
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: .28em;
}

.magazine-mark strong,
.magazine-cover strong {
    color: var(--gold);
    font-family: Georgia, serif;
    font-size: clamp(3.4rem, 6vw, 5.8rem);
    line-height: .95;
}

.magazine-mark em,
.magazine-cover em {
    font-size: .82rem;
    font-style: normal;
    font-weight: 900;
    letter-spacing: .35em;
}

.magazine-grid h2 {
    margin-bottom: 23px;
    color: #fff;
}

.magazine-grid p {
    max-width: 680px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .78);
    font-size: 1.03rem;
}

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

.event-row {
    display: grid;
    align-items: center;
    padding: 28px 10px;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 205px 1fr 64px;
    gap: 30px;
    transition: background .2s ease, padding .2s ease;
}

.event-row:hover {
    padding-inline: 22px;
    background: var(--cream);
}

.event-date {
    color: var(--teal);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.event-row h3 {
    margin-bottom: 5px;
    font-size: 1.45rem;
}

.event-row p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: .91rem;
}

.event-arrow {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: var(--navy);
    background: var(--gold);
    border-radius: 50%;
    font-size: 1.25rem;
}

.festival-teaser {
    position: relative;
    padding: 95px 0;
    overflow: hidden;
    color: #fff;
    background: var(--navy);
}

.festival-teaser::before {
    position: absolute;
    top: -250px;
    right: -80px;
    width: 560px;
    height: 560px;
    border: 80px solid rgba(244, 181, 29, .12);
    border-radius: 50%;
    content: "";
}

.festival-teaser-grid {
    position: relative;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr .72fr;
    gap: 80px;
}

.festival-teaser h2 {
    margin-bottom: 22px;
    color: #fff;
    font-family: Inter, "Segoe UI", sans-serif;
    font-size: clamp(2.8rem, 5vw, 5.3rem);
    font-weight: 950;
    line-height: .93;
    letter-spacing: -.06em;
}

.festival-teaser h2 span {
    color: var(--gold);
}

.festival-teaser p {
    color: rgba(255, 255, 255, .73);
    font-size: 1.12rem;
}

.festival-actions {
    border-top: 1px solid rgba(255, 255, 255, .2);
}

.festival-actions a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    font-size: .83rem;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
    transition: color .2s ease, padding .2s ease;
}

.festival-actions a:hover {
    padding-inline: 16px;
    color: var(--gold);
}

.site-footer {
    color: rgba(255, 255, 255, .7);
    background: #041523;
}

.footer-cta {
    padding: 65px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    background: var(--navy-2);
}

.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.footer-cta h2 {
    max-width: 760px;
    margin-bottom: 0;
    color: #fff;
    font-size: clamp(2rem, 3vw, 3.2rem);
}

.footer-grid {
    display: grid;
    padding-block: 75px;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 65px;
}

.brand-footer .brand-copy strong {
    color: #fff;
}

.footer-brand p {
    max-width: 350px;
    margin-top: 22px;
}

.footer-grid > div:not(.footer-brand) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.footer-grid h3 {
    margin-bottom: 12px;
    color: #fff;
    font-family: Inter, "Segoe UI", sans-serif;
    font-size: .77rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-grid a,
.footer-grid span {
    font-size: .88rem;
}

.footer-grid a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: .76rem;
}

.page-hero {
    position: relative;
    padding: 105px 0 115px;
    overflow: hidden;
    color: #fff;
    background: var(--navy);
}

.page-hero::after {
    position: absolute;
    right: -90px;
    bottom: -260px;
    width: 560px;
    height: 560px;
    border: 75px solid rgba(244, 181, 29, .1);
    border-radius: 50%;
    content: "";
}

.page-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: end;
    grid-template-columns: 1.3fr .7fr;
    gap: 80px;
}

.page-hero h1 {
    max-width: 850px;
    margin-bottom: 0;
    color: #fff;
    font-size: clamp(3.2rem, 6vw, 5.7rem);
}

.page-hero p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, .76);
    font-size: 1.08rem;
}

.page-hero-about {
    background: linear-gradient(118deg, var(--navy), #0a4b5f);
}

.page-hero-impact {
    background: linear-gradient(118deg, var(--navy), #0b6258);
}

.page-hero-events {
    background: linear-gradient(118deg, var(--navy), #59330d);
}

.page-hero-involved {
    background: linear-gradient(118deg, var(--navy), #174f42);
}

.about-page-grid {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    gap: 85px;
}

.about-page-image {
    position: relative;
    padding: 0 38px 42px 0;
}

.about-page-image img {
    height: 590px;
    object-fit: cover;
    border-radius: var(--radius);
}

.image-note {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    width: 290px;
    min-height: 130px;
    flex-direction: column;
    justify-content: center;
    padding: 25px 28px;
    color: var(--navy);
    background: var(--gold);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.image-note strong {
    font-family: Georgia, serif;
    font-size: 1.35rem;
}

.image-note span {
    font-size: .78rem;
}

.about-page-copy h2 {
    margin-bottom: 30px;
}

.principles-section {
    padding: 95px 0;
    color: #fff;
    background: var(--teal);
}

.principles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.principles-grid article {
    padding-right: 60px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.principles-grid article:last-child {
    border: 0;
}

.principles-grid span {
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.principles-grid h2 {
    margin: 22px 0 0;
    color: #fff;
}

.principles-grid p {
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .82);
    font-size: 1.15rem;
}

.centered {
    max-width: 800px;
    margin-inline: auto;
    margin-bottom: 50px;
    text-align: center;
}

.centered .eyebrow {
    justify-content: center;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.value-grid article {
    min-height: 290px;
    padding: 32px;
    background: var(--cream);
    border-radius: var(--radius);
}

.value-grid article > span {
    display: block;
    margin-bottom: 55px;
    color: var(--teal);
    font-size: .75rem;
    font-weight: 900;
}

.value-grid p {
    color: var(--muted);
    font-size: .91rem;
}

.photo-statement {
    padding-top: 0;
}

.photo-statement-grid {
    display: grid;
    align-items: stretch;
    grid-template-columns: 1.2fr .8fr;
}

.photo-statement-grid img {
    height: 440px;
    object-fit: cover;
}

.photo-statement-grid blockquote {
    display: flex;
    margin: 0;
    align-items: center;
    padding: 55px;
    color: var(--navy);
    background: var(--gold);
    font-family: Georgia, serif;
    font-size: clamp(2rem, 3vw, 3.3rem);
    font-weight: 700;
    line-height: 1.15;
}

.programme-list {
    display: grid;
    gap: 105px;
}

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

.programme-feature.reverse .programme-feature-image {
    order: 2;
}

.programme-feature-image {
    position: relative;
    display: block;
    height: 520px;
    overflow: hidden;
    border-radius: var(--radius);
}

.programme-feature-image img {
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.programme-feature-image:hover img {
    transform: scale(1.04);
}

.programme-feature-image > span {
    position: absolute;
    right: 22px;
    bottom: 22px;
    display: grid;
    width: 68px;
    height: 68px;
    place-items: center;
    color: var(--navy);
    background: var(--gold);
    border-radius: 50%;
    font-family: Georgia, serif;
    font-weight: 900;
}

.programme-feature-copy > .programme-icon {
    display: block;
    font-size: 2.5rem;
}

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

.programme-feature-copy > p {
    color: var(--muted);
    font-size: 1.05rem;
}

.mini-focus-list {
    display: grid;
    margin: 28px 0 35px;
    padding: 0;
    list-style: none;
    grid-template-columns: 1fr 1fr;
    gap: 10px 22px;
}

.mini-focus-list li {
    position: relative;
    padding-left: 18px;
    font-size: .88rem;
    font-weight: 750;
}

.mini-focus-list li::before {
    position: absolute;
    top: .65em;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    content: "";
}

.detail-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: end;
    overflow: hidden;
    color: #fff;
    background: var(--navy);
}

.detail-hero-image,
.detail-hero-overlay {
    position: absolute;
    inset: 0;
}

.detail-hero-image img {
    height: 100%;
    object-fit: cover;
}

.detail-hero-overlay {
    background: linear-gradient(90deg, rgba(4, 21, 35, .96) 0%, rgba(4, 21, 35, .75) 48%, rgba(4, 21, 35, .2) 100%), linear-gradient(0deg, rgba(4, 21, 35, .75), transparent 50%);
}

.detail-hero-content {
    position: relative;
    z-index: 2;
    padding-block: 90px;
}

.back-link {
    display: inline-flex;
    margin-bottom: 35px;
    color: var(--gold);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.detail-icon {
    display: block;
    margin-bottom: 15px;
    font-size: 2.6rem;
}

.detail-hero h1 {
    max-width: 800px;
    margin-bottom: 25px;
    color: #fff;
}

.detail-hero p {
    max-width: 700px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 1.12rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 90px;
}

.detail-copy blockquote {
    margin: 45px 0 0;
    padding: 32px 36px;
    color: var(--navy);
    background: var(--gold);
    border-radius: 12px;
    font-family: Georgia, serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
}

.focus-panel {
    align-self: start;
    padding: 36px;
    color: #fff;
    background: var(--navy);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.focus-panel > span {
    color: var(--gold);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.focus-panel ul {
    margin: 25px 0 30px;
    padding: 0;
    list-style: none;
}

.focus-panel li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    font-size: .9rem;
}

.focus-panel li i {
    color: var(--gold);
    font-style: normal;
}

.related-section {
    background: var(--cream);
}

.award-banner {
    padding: 75px 0;
    color: var(--navy);
    background: var(--gold);
}

.award-banner-grid {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr .8fr;
    gap: 70px;
}

.award-banner span {
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.award-banner h2 {
    margin: 10px 0 0;
    font-size: clamp(2.1rem, 3.5vw, 3.4rem);
}

.award-banner p {
    margin-bottom: 0;
    font-size: 1.02rem;
}

.simple-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.simple-card {
    display: flex;
    min-height: 290px;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: transform .2s ease, box-shadow .2s ease;
}

.simple-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.simple-card > span {
    margin-bottom: 24px;
    color: var(--teal);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.simple-card p {
    color: var(--muted);
    font-size: .9rem;
}

.simple-card strong {
    margin-top: auto;
    color: var(--teal);
    font-size: .8rem;
    text-transform: uppercase;
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 45px;
}

.category-filter a {
    padding: 9px 16px;
    border: 1px solid var(--line);
    border-radius: 99px;
    color: var(--muted);
    font-size: .78rem;
    font-weight: 800;
}

.category-filter a:hover,
.category-filter a.active {
    color: #fff;
    border-color: var(--navy);
    background: var(--navy);
}

.gallery-grid {
    display: grid;
    grid-auto-flow: dense;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.gallery-item {
    position: relative;
    height: 350px;
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.gallery-item:nth-child(5n + 1) {
    grid-row: span 2;
    height: 718px;
}

.gallery-item:nth-child(7n + 3) {
    grid-column: span 2;
}

.gallery-item img {
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.gallery-item figcaption {
    position: absolute;
    inset: auto 0 0;
    padding: 70px 25px 24px;
    color: #fff;
    background: linear-gradient(transparent, rgba(4, 21, 35, .95));
    transform: translateY(54px);
    transition: transform .3s ease;
}

.gallery-item:hover figcaption,
.gallery-item:focus figcaption {
    transform: translateY(0);
}

.gallery-item:hover img,
.gallery-item:focus img {
    transform: scale(1.05);
}

.gallery-item figcaption span {
    color: var(--gold);
    font-size: .67rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.gallery-item h2 {
    margin: 5px 0 8px;
    color: #fff;
    font-size: 1.45rem;
}

.gallery-item p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .78);
    font-size: .84rem;
}

.empty-state {
    grid-column: 1 / -1;
    padding: 75px 35px;
    background: var(--cream);
    border-radius: var(--radius);
    text-align: center;
}

.magazine-hero {
    padding: 100px 0;
    color: #fff;
    background: linear-gradient(120deg, #075246, var(--navy));
}

.magazine-hero-grid {
    display: grid;
    align-items: center;
    grid-template-columns: .7fr 1.3fr;
    gap: 85px;
}

.magazine-cover {
    min-height: 470px;
}

.magazine-cover small {
    margin-top: 60px;
    color: rgba(255, 255, 255, .58);
    font-size: .64rem;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.magazine-hero h1 {
    margin-bottom: 25px;
    color: #fff;
}

.magazine-hero p {
    color: rgba(255, 255, 255, .77);
    font-size: 1.08rem;
}

.coming-label {
    display: inline-flex;
    margin-top: 18px;
    padding: 8px 14px;
    color: var(--navy);
    background: var(--gold);
    border-radius: 99px;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.story-topics {
    padding: 85px 0;
    color: #fff;
    background: var(--navy);
}

.topic-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.topic-cloud span {
    padding: 13px 19px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 99px;
    color: rgba(255, 255, 255, .82);
    font-size: .84rem;
}

.article-header {
    padding: 100px 0 165px;
    color: #fff;
    background: var(--navy);
}

.article-header-inner {
    max-width: 900px;
}

.article-header h1 {
    margin-bottom: 26px;
    color: #fff;
}

.article-header p {
    max-width: 730px;
    color: rgba(255, 255, 255, .75);
    font-size: 1.12rem;
}

.article-lead-image {
    margin-top: -105px;
}

.article-lead-image img {
    height: min(65vw, 650px);
    object-fit: cover;
    border: 8px solid #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.article-content {
    max-width: 820px;
    padding-block: 80px 110px;
}

.article-content .rich-copy {
    font-size: 1.15rem;
}

.article-share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 55px;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-size: .85rem;
    font-weight: 800;
}

.article-share a {
    color: var(--teal);
}

.events-catalogue {
    display: grid;
    gap: 45px;
}

.event-card-large {
    display: grid;
    min-height: 390px;
    overflow: hidden;
    background: var(--cream);
    border-radius: var(--radius);
    grid-template-columns: .95fr 1.05fr;
}

.event-card-image {
    position: relative;
    min-height: 390px;
    overflow: hidden;
}

.event-card-image img {
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.event-card-image:hover img {
    transform: scale(1.04);
}

.event-card-image span {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    color: var(--navy);
    background: var(--gold);
    border-radius: 50%;
    font-size: .73rem;
    font-weight: 900;
}

.event-card-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 48px;
}

.event-date-label {
    margin-bottom: 18px;
    color: var(--teal);
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.event-card-copy h2 {
    margin-bottom: 12px;
    font-size: clamp(2rem, 3vw, 3rem);
}

.event-card-copy small {
    color: var(--teal);
    font-weight: 750;
}

.event-card-copy p {
    margin: 18px 0 30px;
    color: var(--muted);
}

.event-detail-hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: end;
    overflow: hidden;
    color: #fff;
    background: var(--navy);
}

.event-detail-photo {
    position: absolute;
    inset: 0;
}

.event-detail-photo::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 21, 35, .97) 0%, rgba(4, 21, 35, .77) 54%, rgba(4, 21, 35, .45));
    content: "";
}

.event-detail-photo img {
    height: 100%;
    object-fit: cover;
}

.event-detail-grid {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: end;
    padding-block: 95px;
    grid-template-columns: 1fr 340px;
    gap: 70px;
}

.event-detail-grid h1 {
    margin-bottom: 25px;
    color: #fff;
}

.event-detail-grid > div > p {
    max-width: 700px;
    color: rgba(255, 255, 255, .79);
    font-size: 1.1rem;
}

.event-detail-grid aside {
    display: flex;
    flex-direction: column;
    padding: 30px;
    color: var(--navy);
    background: rgba(255, 255, 255, .95);
    border-radius: var(--radius);
}

.event-detail-grid aside > span {
    color: var(--teal);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.event-detail-grid aside > strong {
    margin: 3px 0 18px;
    font-family: Georgia, serif;
    font-size: 1.25rem;
}

.event-body {
    max-width: 800px;
}

.festival-hero {
    position: relative;
    min-height: 780px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: var(--navy);
}

.festival-sun {
    position: absolute;
    top: -290px;
    right: -190px;
    width: 800px;
    height: 800px;
    border: 115px solid rgba(244, 181, 29, .13);
    border-radius: 50%;
}

.festival-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr .75fr;
    gap: 70px;
    padding-block: 90px;
}

.festival-hero h1 {
    margin-bottom: 28px;
    color: #fff;
    font-family: Inter, "Segoe UI", sans-serif;
    font-size: clamp(3.3rem, 7vw, 7rem);
    font-weight: 950;
    line-height: .82;
    letter-spacing: -.07em;
}

.festival-hero h1 > span,
.festival-hero h1 > i,
.festival-hero h1 > strong {
    display: block;
}

.festival-hero h1 > i {
    margin-block: 8px;
    color: var(--gold);
    font-style: normal;
}

.festival-hero h1 > strong {
    margin-top: 18px;
    color: var(--gold);
    font-size: .27em;
    letter-spacing: .12em;
}

.festival-hero p {
    font-size: 1.18rem;
}

.festival-hero-photo {
    position: relative;
    height: 550px;
    border: 8px solid rgba(255, 255, 255, .12);
    clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
}

.festival-hero-photo img {
    height: 100%;
    object-fit: cover;
}

.festival-hero-photo span {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 15px 19px;
    color: var(--navy);
    background: var(--gold);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.festival-meaning {
    color: #fff;
    background: var(--teal);
}

.festival-meaning-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.festival-meaning-grid > div {
    display: grid;
    min-height: 190px;
    align-content: center;
    padding: 35px 60px;
    border-right: 1px solid rgba(255, 255, 255, .25);
}

.festival-meaning-grid span {
    color: rgba(255, 255, 255, .62);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .14em;
}

.festival-meaning-grid strong {
    font-family: Georgia, serif;
    font-size: 2.4rem;
}

.festival-meaning-grid p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .75);
}

.festival-about-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
}

.festival-activities-section {
    background: var(--cream);
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.activity-grid > div {
    display: flex;
    min-height: 160px;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
}

.activity-grid span {
    color: var(--teal);
    font-size: .7rem;
    font-weight: 900;
}

.activity-grid strong {
    color: var(--navy);
    font-family: Georgia, serif;
    line-height: 1.25;
}

.festival-register-section {
    padding: 110px 0;
    color: #fff;
    background: var(--navy);
}

.festival-register-section h2 {
    color: #fff;
}

.festival-option-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.festival-option-grid a {
    display: grid;
    min-height: 185px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 12px;
    transition: background .2s ease, transform .2s ease;
}

.festival-option-grid a:hover {
    color: var(--navy);
    background: var(--gold);
    transform: translateY(-4px);
}

.festival-option-grid a > span {
    color: var(--gold);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.festival-option-grid a:hover > span {
    color: var(--navy);
}

.festival-option-grid strong {
    align-self: center;
    font-family: Georgia, serif;
    font-size: 1.35rem;
    line-height: 1.2;
}

.festival-option-grid i {
    justify-self: end;
    font-style: normal;
}

.form-hero {
    color: #fff;
    background: var(--navy);
}

.form-hero-grid {
    display: grid;
    min-height: 520px;
    align-items: center;
    grid-template-columns: 1fr .8fr;
    gap: 75px;
    padding-block: 70px;
}

.form-hero h1 {
    margin-bottom: 23px;
    color: #fff;
}

.form-hero p {
    color: rgba(255, 255, 255, .78);
    font-size: 1.08rem;
}

.form-hero-photo {
    height: 390px;
    overflow: hidden;
    border: 7px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
}

.form-hero-photo img {
    height: 100%;
    object-fit: cover;
}

.form-section {
    background: var(--cream);
}

.form-layout,
.contact-layout {
    display: grid;
    align-items: start;
    grid-template-columns: .65fr 1.35fr;
    gap: 55px;
}

.form-layout > aside {
    padding: 32px;
    background: #fff;
    border-radius: var(--radius);
}

.form-layout aside ul {
    margin: 5px 0 25px;
    padding: 0;
    list-style: none;
}

.form-layout aside li {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    font-size: .9rem;
    font-weight: 750;
}

.form-layout aside p {
    color: var(--muted);
    font-size: .82rem;
}

.public-form {
    padding: 42px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 18px 50px rgba(7, 31, 56, .07);
}

.form-heading {
    margin-bottom: 30px;
    padding-bottom: 23px;
    border-bottom: 1px solid var(--line);
}

.form-heading h2 {
    margin-bottom: 6px;
    font-size: 2rem;
}

.form-heading p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: .85rem;
}

.field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.field-full {
    grid-column: 1 / -1;
}

.field > span {
    color: var(--navy);
    font-size: .8rem;
    font-weight: 800;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid #cfd8dd;
    border-radius: 7px;
    background: #fff;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.field input,
.field select {
    height: 51px;
    padding: 0 14px;
}

.field textarea {
    padding: 13px 14px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(21, 128, 108, .1);
}

.public-form > .button {
    margin-top: 26px;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.form-errors {
    margin-bottom: 25px;
    padding: 16px 20px;
    color: #8b251c;
    background: #ffefec;
    border: 1px solid #ffc7be;
    border-radius: 8px;
    font-size: .86rem;
}

.form-errors ul {
    margin: 8px 0 0;
}

.involvement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.involvement-grid article {
    min-height: 310px;
    padding: 40px;
    background: var(--cream);
    border-radius: var(--radius);
}

.involvement-grid article > span {
    display: block;
    margin-bottom: 45px;
    color: var(--teal);
    font-size: .74rem;
    font-weight: 900;
}

.involvement-grid h2 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.involvement-grid p {
    color: var(--muted);
}

.partner-banner {
    padding: 80px 0;
    color: #fff;
    background: var(--teal);
}

.partner-banner-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
}

.partner-banner h2 {
    max-width: 820px;
    margin-bottom: 0;
    color: #fff;
}

.contact-card {
    position: sticky;
    top: 125px;
    padding: 40px;
    color: #fff;
    background: var(--navy);
    border-radius: var(--radius);
}

.contact-card h2 {
    margin-bottom: 36px;
    color: #fff;
    font-size: 2.4rem;
}

.contact-card > div {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, .15);
}

.contact-card > div span {
    color: var(--gold);
    font-size: .67rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.flash-wrap {
    position: fixed;
    z-index: 500;
    top: 132px;
    right: 20px;
    width: min(420px, calc(100% - 40px));
}

.flash {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 17px 20px;
    border-radius: 9px;
    box-shadow: var(--shadow);
    font-size: .9rem;
}

.flash-success {
    color: #0b543c;
    background: #e4f8ef;
    border: 1px solid #9ce1c5;
}

.flash button {
    padding: 0;
    color: inherit;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
}

.pagination-wrap,
.admin-pagination {
    margin-top: 40px;
}

.pagination-wrap nav > div:first-child {
    display: none;
}

.pagination-wrap nav > div:last-child > div:first-child {
    color: var(--muted);
    font-size: .82rem;
}

@media (max-width: 1180px) {
    .site-nav {
        gap: 15px;
    }

    .site-nav > a,
    .nav-dropdown > a {
        font-size: .7rem;
    }

    .brand-copy {
        max-width: 145px;
    }

    .hero-grid {
        gap: 40px;
    }

    .activity-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1120px) {
    .utility-bar {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: 82px;
        right: 0;
        bottom: 0;
        display: flex;
        width: min(420px, 100%);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 25px;
        overflow-y: auto;
        background: #fff;
        box-shadow: -20px 30px 60px rgba(7, 31, 56, .15);
        transform: translateX(105%);
        transition: transform .25s ease;
    }

    .site-nav.open {
        transform: translateX(0);
    }

    .site-nav > a,
    .nav-dropdown > a {
        display: block;
        padding: 13px 8px;
        border-bottom: 1px solid var(--line);
        font-size: .88rem;
    }

    .site-nav > a::after,
    .nav-dropdown > a::after {
        display: none;
    }

    .site-nav .nav-button {
        margin-top: 18px;
        text-align: center;
    }

    .dropdown-panel {
        position: static;
        display: grid;
        width: auto;
        padding: 4px 0 8px 16px;
        border: 0;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .dropdown-panel a {
        padding: 8px;
        font-size: .78rem;
    }

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

    .hero-visual {
        min-height: 500px;
    }

    .two-column,
    .story-grid,
    .about-page-grid,
    .programme-feature,
    .detail-grid,
    .magazine-hero-grid,
    .festival-hero-grid,
    .form-hero-grid,
    .form-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .sticky-heading,
    .contact-card {
        position: static;
    }

    .programme-card {
        grid-template-columns: 1fr;
    }

    .programme-image {
        min-height: 270px;
    }

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

    .magazine-grid {
        grid-template-columns: .8fr 1.2fr;
        gap: 55px;
    }

    .page-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .programme-feature.reverse .programme-feature-image {
        order: 0;
    }

    .detail-hero-overlay {
        background: linear-gradient(90deg, rgba(4, 21, 35, .94), rgba(4, 21, 35, .55));
    }

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

    .gallery-item:nth-child(7n + 3) {
        grid-column: auto;
    }

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

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

    .footer-grid > div:last-child {
        grid-column: 2;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 78px 0;
    }

    .hero,
    .hero-grid {
        min-height: auto;
    }

    .hero-grid {
        padding-block: 65px 80px;
    }

    .hero-copy h1 {
        font-size: clamp(3rem, 14vw, 4.3rem);
    }

    .hero-promise {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hero-visual {
        min-height: 430px;
    }

    .hero-image-main {
        inset: 0 0 45px 0;
    }

    .hero-image-small {
        right: -5px;
        width: 50%;
        height: 165px;
    }

    .hero-badge {
        left: -5px;
        width: 200px;
        min-height: 95px;
    }

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

    .ribbon-grid > div {
        min-height: 96px;
        border-bottom: 1px solid rgba(255, 255, 255, .18);
    }

    .vision-mission-grid,
    .programme-grid,
    .article-grid,
    .principles-grid,
    .photo-statement-grid,
    .gallery-grid,
    .event-card-large,
    .festival-meaning-grid,
    .festival-about-grid,
    .involvement-grid {
        grid-template-columns: 1fr;
    }

    .award-banner-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .heading-row,
    .footer-cta-inner,
    .partner-banner-grid {
        align-items: flex-start;
        flex-direction: column;
    }

    .story-collage {
        height: 470px;
        grid-template-columns: 1fr 1fr;
    }

    .story-photo-1 {
        grid-row: 1 / 3;
    }

    .story-photo-2 {
        grid-column: 2;
    }

    .story-photo-4 {
        display: none;
    }

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

    .magazine-mark {
        min-height: 330px;
    }

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

    .event-date {
        grid-column: 1 / -1;
    }

    .festival-teaser-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-grid > div:last-child {
        grid-column: auto;
    }

    .page-hero {
        padding: 80px 0;
    }

    .page-hero h1 {
        font-size: clamp(3rem, 13vw, 4.4rem);
    }

    .about-page-image img,
    .programme-feature-image {
        height: 430px;
    }

    .principles-grid article {
        padding: 0 0 35px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .3);
    }

    .photo-statement-grid blockquote {
        padding: 40px;
    }

    .detail-hero {
        min-height: 600px;
    }

    .gallery-item,
    .gallery-item:nth-child(5n + 1) {
        height: 420px;
        grid-row: auto;
    }

    .gallery-item figcaption {
        transform: none;
    }

    .event-card-large {
        min-height: auto;
    }

    .event-card-image {
        min-height: 300px;
    }

    .event-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .festival-meaning-grid > div {
        min-height: 155px;
        padding: 30px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .25);
    }

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

    .form-hero-photo {
        height: 320px;
    }

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

    .field-full {
        grid-column: auto;
    }

    .public-form {
        padding: 28px 22px;
    }
}

@media (max-width: 520px) {
    h2 {
        font-size: 2.35rem;
    }

    .brand-copy {
        max-width: 170px;
    }

    .brand-copy strong {
        font-size: .8rem;
    }

    .brand-mark {
        width: 41px;
        height: 41px;
    }

    .button-row .button {
        width: 100%;
    }

    .hero-visual {
        min-height: 360px;
    }

    .hero-image-small {
        height: 135px;
    }

    .hero-badge {
        width: 180px;
        min-height: 88px;
        padding: 14px 17px;
    }

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

    .vision-mission-grid,
    .value-grid,
    .simple-card-grid,
    .festival-option-grid,
    .activity-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid > div,
    .footer-brand,
    .footer-grid > div:last-child {
        grid-column: auto;
    }

    .footer-bottom {
        min-height: 90px;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        text-align: center;
    }

    .mini-focus-list {
        grid-template-columns: 1fr;
    }

    .programme-feature-image,
    .about-page-image img {
        height: 350px;
    }

    .event-card-copy {
        padding: 32px 25px;
    }

    .festival-hero-photo {
        height: 400px;
    }

    .festival-register-section {
        padding: 80px 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
