:root {
    --ink: #062115;
    --green-950: #001d12;
    --green-900: #00341f;
    --green-800: #00472b;
    --green-600: #008f43;
    --yellow: #ffd21a;
    --yellow-soft: #fff1a3;
    --paper: #fbf7df;
    --paper-strong: #fff9dc;
    --white: #ffffff;
    --muted: #607064;
    --line: rgba(0, 52, 31, 0.14);
    --shadow: 0 22px 60px rgba(5, 31, 18, 0.2);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        linear-gradient(90deg, rgba(0, 71, 43, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, #fffbe6 0%, var(--paper) 46%, #fff7d1 100%);
    background-size: 72px 72px, auto;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 210, 26, 0.12), rgba(0, 71, 43, 0.05));
    mix-blend-mode: multiply;
    z-index: -1;
}

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

a:hover {
    color: inherit;
}

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

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(0, 52, 31, 0.14);
    border-radius: var(--radius);
    background: #f1f3ee;
    color: var(--ink);
    padding: 0.88rem 1rem;
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--green-600);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 143, 67, 0.12);
}

label {
    display: block;
    margin: 0.8rem 0 0.35rem;
    color: #355246;
    font-size: 0.86rem;
    font-weight: 800;
}

.site-header {
    position: sticky;
    top: 14px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1180px, calc(100% - 32px));
    margin: 14px auto 0;
    padding: 0.5rem 0.65rem 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(8, 8, 7, 0.96);
    color: #fff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(16px);
}

.brand,
.admin-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    flex: 0 0 auto;
    font-weight: 900;
    line-height: 0.88;
}

.brand-logo {
    display: block;
    width: clamp(158px, 18vw, 210px);
    height: auto;
    max-height: 54px;
    object-fit: contain;
    object-position: left center;
}

.footer-brand .brand-logo {
    width: min(260px, 100%);
    height: auto;
    max-height: 72px;
}

.brand span,
.admin-brand span {
    font-size: 0.78rem;
}

.brand strong,
.admin-brand strong {
    color: #00c853;
    font-size: 1.05rem;
}

.brand i,
.footer-brand i {
    position: relative;
    width: 24px;
    height: 24px;
    display: inline-block;
}

.brand i::before,
.brand i::after,
.footer-brand i::before,
.footer-brand i::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50% 50% 50% 0;
    background: var(--yellow);
    box-shadow: 10px 0 0 var(--yellow), 5px 9px 0 var(--yellow);
    transform: rotate(45deg);
}

.brand i::after,
.footer-brand i::after {
    width: 7px;
    height: 7px;
    left: 8px;
    top: 8px;
    border-radius: 50%;
    background: #00b050;
    box-shadow: none;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.2rem;
}

.main-nav a {
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    padding: 0.56rem 0.68rem;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
    font-weight: 850;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.main-nav .nav-donate {
    color: #fff;
    background: #00a949;
}

.main-nav .nav-register {
    color: #091306;
    background: var(--yellow);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: var(--yellow);
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--green-950);
}

.flash {
    position: fixed;
    top: 92px;
    left: 50%;
    z-index: 50;
    width: min(720px, calc(100% - 32px));
    transform: translateX(-50%);
    border-radius: var(--radius);
    padding: 1rem 1.2rem;
    color: #fff;
    box-shadow: var(--shadow);
}

.flash-success {
    background: var(--green-800);
}

.flash-error {
    background: #8f1f1f;
}

main > section,
.hero,
.site-footer {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.hero {
    position: relative;
    min-height: 690px;
    margin-top: 22px;
    overflow: hidden;
    border-radius: 26px;
    background: #071911;
    color: #fff;
    box-shadow: var(--shadow);
}

.hero-media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 29, 18, 0.96) 0%, rgba(0, 29, 18, 0.74) 43%, rgba(0, 29, 18, 0.35) 100%),
        url("../img/hero-festival.png") 62% center / cover;
    transform: scale(1.02);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.45) 100%),
        radial-gradient(circle at 50% 30%, rgba(255, 210, 26, 0.2), transparent 34%);
    pointer-events: none;
}

.hero-card {
    position: relative;
    z-index: 2;
    width: min(620px, calc(100% - 44px));
    margin: 54px 0 0 34px;
    border: 4px solid var(--yellow);
    border-radius: 24px;
    padding: clamp(1.3rem, 4vw, 2.2rem);
    background: rgba(0, 52, 31, 0.82);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.eyebrow {
    margin: 0 0 0.7rem;
    color: var(--yellow);
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 430px;
    margin: 0;
    color: #fff;
    font-size: clamp(2.4rem, 7vw, 4.85rem);
    line-height: 0.9;
    letter-spacing: 0;
}

.hero h1::first-line {
    color: #fff;
}

.hero-date {
    margin: 1.35rem 0 0.6rem;
    color: var(--yellow);
    font-size: clamp(1rem, 2vw, 1.38rem);
    font-weight: 950;
}

.hero-copy {
    max-width: 500px;
    margin: 0 0 1.4rem;
    color: rgba(255, 255, 255, 0.91);
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.55;
}

.hero-actions,
.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-actions {
    flex-wrap: nowrap;
}

.hero-actions .btn {
    white-space: nowrap;
}

.btn,
button.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.48rem;
    min-height: 44px;
    border: 0;
    border-radius: 999px;
    padding: 0.8rem 1.18rem;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 950;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-yellow {
    background: var(--yellow);
    color: #0b1607;
    box-shadow: 0 10px 24px rgba(255, 210, 26, 0.28);
}

.btn-light {
    background: #fff;
    color: var(--green-950);
}

.btn-green {
    background: #00b84f;
    color: #fff;
}

.hero-side {
    position: absolute;
    top: 55px;
    right: 42px;
    z-index: 2;
    display: grid;
    gap: 0.45rem;
    width: 190px;
    padding: 1.1rem;
    background: rgba(0, 52, 31, 0.74);
    border-left: 4px solid var(--yellow);
    color: #fff;
}

.hero-side span {
    color: var(--yellow);
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.hero-side strong {
    line-height: 1.05;
    text-transform: uppercase;
}

.hero-side small {
    color: rgba(255, 255, 255, 0.78);
}

.hero-metrics {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 34px;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    overflow: hidden;
    border-radius: 18px;
    background: var(--paper-strong);
    color: var(--green-900);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.hero-metrics div {
    min-height: 84px;
    display: grid;
    place-items: center;
    align-content: center;
    padding: 0.8rem;
    text-align: center;
    border-right: 1px solid rgba(0, 52, 31, 0.12);
}

.hero-metrics div:last-child {
    border-right: 0;
}

.hero-metrics strong {
    display: block;
    font-size: clamp(1.35rem, 3vw, 2rem);
    line-height: 1;
}

.hero-metrics span {
    margin-top: 0.25rem;
    color: #45594d;
    font-size: 0.82rem;
    font-weight: 800;
}

.impact-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.1rem;
}

.impact-strip article {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 0.9rem;
    align-items: center;
    min-height: 112px;
    border: 1px solid rgba(0, 52, 31, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.78);
    padding: 1rem;
    box-shadow: 0 14px 34px rgba(0, 52, 31, 0.1);
    backdrop-filter: blur(10px);
}

.impact-strip i {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--green-900);
    font-size: 1.45rem;
}

.impact-strip strong,
.impact-strip span {
    display: block;
}

.impact-strip strong {
    color: var(--green-800);
    font-size: 1rem;
}

.impact-strip span {
    margin-top: 0.18rem;
    color: #53675b;
    font-size: 0.9rem;
    line-height: 1.45;
}

.intro-band,
.experiences,
.partners,
.participate,
.news-section {
    padding: 3.3rem 0 0;
}

.section-heading {
    margin-bottom: 1.2rem;
}

.section-heading h2 {
    margin: 0;
    color: var(--green-800);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.02;
    text-transform: none;
}

.section-heading p {
    margin: 0.35rem 0 0;
    color: var(--muted);
    font-size: 0.98rem;
}

.with-line {
    padding-bottom: 0.92rem;
    border-bottom: 4px solid var(--yellow);
}

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

.pillars article {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    min-height: 132px;
    padding: 1.05rem;
    border-radius: var(--radius);
    background: var(--green-800);
    color: #fff;
    box-shadow: 0 14px 28px rgba(0, 52, 31, 0.18);
}

.pillars i {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--green-900);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
    transform: none;
    font-size: 1.2rem;
}

.pillars h3 {
    margin: 0;
    color: var(--yellow);
    text-transform: uppercase;
}

.pillars p {
    grid-column: 2;
    margin: 0.2rem 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.9rem;
}

.experience-grid,
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}

.experience-card,
.news-card,
.campaign-card,
.logo-board,
.form-card,
.don-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 16px 36px rgba(0, 52, 31, 0.12);
}

.experience-card {
    transform: translateZ(0);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.experience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 50px rgba(0, 52, 31, 0.16);
}

.experience-image,
.news-image,
.campaign-image {
    min-height: 0;
    overflow: hidden;
    background-image: url("../img/experience-panel.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.experience-image {
    aspect-ratio: 4 / 3;
}

.news-image {
    aspect-ratio: 4 / 3;
}

.campaign-image {
    aspect-ratio: 16 / 9;
}

.news-image img,
.public-item-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.crop-stage { background-image: url("../img/experience-stage.png"); }
.crop-panel { background-image: url("../img/experience-panel.png"); }
.crop-expo { background-image: url("../img/experience-expo.png"); }
.crop-stand { background-image: url("../img/experience-listening.png"); }
.crop-media { background-image: url("../img/experience-media.png"); }
.crop-community { background-image: url("../img/experience-community.png"); }
.crop-location { background-image: url("../img/festival-location.png"); }

.experience-body {
    padding: 1rem 1.05rem 1.1rem;
}

.experience-body h3,
.news-card h3,
.campaign-card h3,
.logo-board h3,
.form-card h3,
.don-card h3 {
    margin: 0;
    color: var(--green-800);
    font-size: 1.15rem;
}

.experience-body p,
.news-card p,
.campaign-card p,
.logo-board p,
.form-card p,
.don-card p {
    color: #40564a;
    line-height: 1.5;
}

.experience-body a,
.news-card a,
.text-button {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border: 0;
    border-radius: 999px;
    background: var(--green-800);
    color: #fff;
    padding: 0.5rem 0.9rem;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 950;
}

.sponsor-section {
    width: min(1200px, calc(100% - 32px));
    margin: 3.2rem auto 0;
    padding: clamp(1.25rem, 4vw, 2.6rem);
    border-radius: 22px;
    background: var(--green-900);
    color: #fff;
    box-shadow: var(--shadow);
}

.sponsor-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.sponsor-head h2 {
    margin: 0;
    font-size: clamp(1.7rem, 4vw, 2.4rem);
}

.sponsor-head p {
    margin: 0.35rem 0 0;
    color: rgba(255, 255, 255, 0.78);
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.tier-card {
    position: relative;
    min-height: 252px;
    padding: 1rem;
    border: 3px solid var(--yellow);
    border-radius: var(--radius);
    background: var(--paper-strong);
    color: var(--green-950);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.tier-card:first-child {
    background: var(--yellow);
}

.tier-card.selected,
.tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
    border-color: #fff;
}

.tier-card span {
    display: inline-flex;
    border-radius: 999px;
    background: var(--green-800);
    color: #fff;
    padding: 0.38rem 0.7rem;
    font-size: 0.72rem;
    font-weight: 950;
}

.tier-card h3 {
    margin: 1rem 0 0.25rem;
    font-size: 1.25rem;
}

.tier-card strong {
    display: block;
    color: var(--green-900);
    font-size: 1.75rem;
}

.tier-amount {
    display: block;
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--green-900);
    padding: 0.1rem 0;
    text-align: left;
    cursor: pointer;
    font-size: 1.75rem;
    font-weight: 950;
    line-height: 1.1;
}

.tier-amount:hover,
.tier-amount:focus-visible {
    color: #000;
    transform: none;
}

.tier-card small {
    color: #607064;
    font-weight: 800;
}

.tier-card ul {
    margin: 0.8rem 0 0.9rem;
    padding: 0;
    list-style: none;
}

.tier-card li {
    position: relative;
    padding-left: 1.2rem;
    margin: 0.24rem 0;
    color: #2d3b34;
    font-size: 0.88rem;
}

.tier-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: inset 0 0 0 2px var(--green-800);
}

.compare-box {
    margin-top: 1rem;
    border-radius: var(--radius);
    background: #fff;
    color: var(--green-950);
    padding: 1.1rem;
}

.compare-box h3 {
    margin: 0 0 0.75rem;
    color: var(--green-800);
}

.compare-table {
    min-width: 680px;
}

.compare-box {
    overflow-x: auto;
}

.compare-table > div {
    display: grid;
    grid-template-columns: 1.2fr repeat(5, 1fr);
    gap: 0.6rem;
    padding: 0.48rem 0;
    border-bottom: 1px solid var(--line);
}

.sponsor-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
}

.sponsor-form label,
.don-card label {
    color: rgba(255, 255, 255, 0.78);
}

.sponsor-form .form-wide {
    grid-column: 1 / -1;
}

.sponsor-form button {
    grid-column: 1 / span 2;
    align-self: end;
}

.sponsor-modal .modal-content {
    overflow: hidden;
    border: 0;
    border-radius: 18px;
    background: var(--green-900);
    color: #fff;
    box-shadow: var(--shadow);
}

.sponsor-modal .modal-header,
.sponsor-modal .modal-footer {
    border-color: rgba(255, 255, 255, 0.12);
}

.sponsor-modal .btn-close {
    filter: invert(1);
}

.modal-kicker {
    margin: 0 0 0.25rem;
    color: var(--yellow);
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.sponsor-modal .modal-title {
    margin: 0;
    color: #fff;
    font-size: clamp(1.45rem, 3vw, 2rem);
}

.selected-sponsor-summary {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 1rem;
    align-items: center;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
}

.selected-sponsor-summary i {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--green-900);
    font-size: 1.35rem;
}

.selected-sponsor-summary span,
.selected-sponsor-summary strong {
    display: block;
}

.selected-sponsor-summary span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
}

.selected-sponsor-summary strong {
    color: #fff;
    font-size: 1.05rem;
}

.modal-sponsor-form {
    margin-top: 1rem;
    background: transparent;
    padding: 0;
}

.sponsor-modal .modal-footer .btn-light {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.partners .partner-layout,
.participate-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 1.1rem;
}

.campaign-card,
.logo-board {
    padding: 0;
}

.campaign-card h3,
.campaign-card p,
.logo-board h3,
.logo-board p {
    padding-inline: 1rem;
}

.campaign-card h3 {
    margin-top: 1rem;
}

.campaign-card p {
    margin-bottom: 1rem;
}

.logo-board {
    padding: 1.2rem;
}

.logo-board h3,
.logo-board p {
    padding: 0;
}

.logo-slots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    margin: 1rem 0;
}

.logo-slots span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    border: 2px solid var(--green-800);
    border-radius: var(--radius);
    padding: 0.45rem 0.7rem;
    font-size: 0.8rem;
    font-weight: 900;
}

.logo-slots span:nth-child(odd) {
    background: var(--yellow);
    border-color: var(--yellow);
}

.form-card,
.don-card {
    padding: clamp(1.1rem, 3vw, 1.55rem);
}

.don-card {
    background: var(--green-900);
    color: #fff;
}

.don-card h3 {
    color: #fff;
}

.don-card p {
    color: rgba(255, 255, 255, 0.84);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.check-line {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin: 1rem 0;
    color: #355246;
}

.check-line input {
    width: 18px;
    min-width: 18px;
    margin-top: 0.1rem;
}

.amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    margin: 1rem 0;
}

.amount-grid button {
    min-height: 44px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: var(--green-950);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 950;
}

.amount-grid button.active,
.amount-grid button:hover {
    background: var(--yellow);
}

.news-grid {
    margin-bottom: 6rem;
}

.news-card {
    position: relative;
    padding-bottom: 1rem;
}

.news-card h3,
.news-card p,
.news-card a {
    margin-left: 1rem;
    margin-right: 1rem;
}

.news-icon {
    position: absolute;
    top: 144px;
    left: 1rem;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--green-950);
    font-weight: 950;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.news-icon i {
    line-height: 1;
}

.news-card h3 {
    margin-top: 1.2rem;
}

.site-footer {
    display: grid;
    grid-template-columns: 1.1fr 1.7fr 1.4fr auto;
    gap: 1.3rem;
    align-items: center;
    width: 100%;
    max-width: none;
    margin-top: 4rem;
    padding: 3rem max(32px, calc((100vw - 1180px) / 2));
    background: #050505;
    color: #fff;
}

.site-footer p {
    margin: 0 0 0.7rem;
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.62rem;
    align-items: center;
}

.social-link {
    --social-color: var(--yellow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    min-width: 42px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    padding: 0;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
    transform: translateY(-2px);
    border-color: var(--social-color);
    background: rgba(255, 255, 255, 0.11);
}

.social-link i {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--social-color);
    color: #fff;
    font-size: 1.18rem;
}

.social-whatsapp { --social-color: #25d366; }
.social-facebook { --social-color: #1877f2; }
.social-tiktok { --social-color: #111111; }
.social-instagram { --social-color: #e4405f; }
.social-linkedin { --social-color: #0a66c2; }
.social-youtube { --social-color: #ff0000; }

.social-tiktok i {
    text-shadow: -1px 0 #25f4ee, 1px 0 #fe2c55;
}

.page-hero {
    min-height: 360px;
    display: grid;
    align-content: center;
    gap: 0.8rem;
    margin-top: 22px;
    overflow: hidden;
    border-radius: 24px;
    background:
        linear-gradient(90deg, rgba(0, 29, 18, 0.92), rgba(0, 29, 18, 0.56)),
        url("../img/hero-festival.png") center center / cover;
    color: #fff;
    padding: clamp(1.4rem, 5vw, 3rem);
    box-shadow: var(--shadow);
}

.page-hero span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: fit-content;
    border-radius: 999px;
    background: var(--yellow);
    color: var(--green-950);
    padding: 0.45rem 0.8rem;
    font-weight: 950;
}

.page-hero h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(2.2rem, 7vw, 4.7rem);
    line-height: 0.96;
}

.page-hero p {
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.08rem;
    line-height: 1.55;
}

.page-hero-talk,
.page-hero-participate {
    background-image:
        linear-gradient(90deg, rgba(0, 29, 18, 0.92), rgba(0, 29, 18, 0.5)),
        url("../img/experience-listening.png");
}

.page-hero-understand,
.page-hero-blog {
    background-image:
        linear-gradient(90deg, rgba(0, 29, 18, 0.92), rgba(0, 29, 18, 0.5)),
        url("../img/experience-panel.png");
}

.page-hero-screening {
    background-image:
        linear-gradient(90deg, rgba(0, 29, 18, 0.92), rgba(0, 29, 18, 0.5)),
        url("../img/experience-expo.png");
}

.page-hero-media {
    background-image:
        linear-gradient(90deg, rgba(0, 29, 18, 0.92), rgba(0, 29, 18, 0.5)),
        url("../img/experience-media.png");
}

.page-hero-program,
.page-hero-sponsor {
    background-image:
        linear-gradient(90deg, rgba(0, 29, 18, 0.92), rgba(0, 29, 18, 0.5)),
        url("../img/experience-stage.png");
}

.page-hero-location {
    background-image:
        linear-gradient(90deg, rgba(0, 29, 18, 0.92), rgba(0, 29, 18, 0.5)),
        url("../img/festival-location.png");
}

.content-band {
    width: min(1180px, calc(100% - 32px));
    margin: 2rem auto 0;
}

.two-columns {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.1rem;
    align-items: start;
}

.calm-panel,
.knowledge-grid article {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.86);
    padding: clamp(1.1rem, 3vw, 1.5rem);
    box-shadow: 0 16px 36px rgba(0, 52, 31, 0.1);
}

.highlight-panel {
    background: var(--green-900);
    color: #fff;
}

.highlight-panel h2,
.highlight-panel p {
    color: #fff;
}

.calm-panel h2,
.knowledge-grid h3,
.care-form h2,
.phq-form h2,
.phq-form h3 {
    color: var(--green-800);
}

.calm-panel p,
.knowledge-grid p {
    color: #46594e;
    line-height: 1.62;
}

.soft-list {
    display: grid;
    gap: 0.65rem;
    margin-top: 1rem;
}

.soft-list span {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    border-radius: var(--radius);
    background: #f4f5ee;
    padding: 0.75rem;
    color: var(--green-900);
    font-weight: 850;
}

.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.knowledge-grid i {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--green-900);
    font-size: 1.25rem;
}

.care-form,
.phq-form {
    overflow: visible;
}

.phq-form fieldset {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin: 1rem 0;
    padding: 1rem;
    background: #fafbf4;
}

.phq-form legend {
    float: none;
    width: auto;
    margin: 0 0 0.85rem;
    color: var(--green-800);
    font-size: 0.98rem;
    font-weight: 950;
}

.scale-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 0.55rem;
}

.scale-options label {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 0.45rem;
    align-items: center;
    min-height: 56px;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 0.6rem;
    color: var(--green-950);
    font-size: 0.78rem;
}

.scale-options input {
    width: 16px;
}

.result-band {
    display: grid;
    place-items: center;
}

.phq-result {
    text-align: center;
}

.phq-result > span {
    color: var(--muted);
    font-weight: 950;
    text-transform: uppercase;
}

.phq-result > strong {
    display: block;
    margin-top: 0.3rem;
    color: var(--green-900);
    font-size: clamp(3rem, 9vw, 5.5rem);
    line-height: 1;
}

.phq-result h2 {
    color: var(--green-800);
}

.result-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem;
    margin: 1rem 0;
}

.media-layout {
    width: min(1180px, calc(100% - 32px));
    margin: 2rem auto 5rem;
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.8fr);
    gap: 1rem;
}

.media-player,
.media-menu {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 16px 36px rgba(0, 52, 31, 0.12);
}

.media-player iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    background: #000;
}

.media-player-copy {
    padding: 1.1rem;
}

.media-player-copy time,
.blog-card time {
    display: inline-flex;
    margin-bottom: 0.55rem;
    color: var(--green-600);
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.media-player-copy h2 {
    color: var(--green-800);
}

.media-menu {
    max-height: 720px;
    overflow-y: auto;
    padding: 1rem;
}

.media-menu h2 {
    color: var(--green-800);
}

.media-menu button {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 0.75rem;
    width: 100%;
    min-height: 86px;
    margin-top: 0.7rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #f8f8ee;
    color: var(--green-950);
    padding: 0.55rem;
    text-align: left;
}

.media-menu button.active,
.media-menu button:hover {
    background: var(--yellow);
    transform: translateY(-2px);
}

.media-menu img {
    width: 96px;
    height: 64px;
    border-radius: 6px;
    object-fit: cover;
}

.media-menu strong,
.media-menu small {
    display: block;
}

.media-menu strong {
    line-height: 1.2;
}

.media-menu small {
    margin-top: 0.3rem;
    color: #52665a;
}

.empty-media {
    display: grid;
    place-items: center;
    min-height: 420px;
    padding: 2rem;
    text-align: center;
    background: var(--green-900);
    color: #fff;
}

.empty-media i {
    color: var(--yellow);
    font-size: 3rem;
}

.blog-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 2rem auto 5rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.blog-card {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 16px 36px rgba(0, 52, 31, 0.12);
}

.blog-card-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.blog-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-body {
    display: grid;
    align-content: start;
    min-height: 330px;
    padding: 1rem;
}

.blog-card h2 {
    min-height: 3.25rem;
    color: var(--green-800);
    font-size: 1.25rem;
    line-height: 1.28;
    text-transform: uppercase;
}

.blog-card p,
.blog-card-content {
    color: #46594e;
    line-height: 1.58;
}

.blog-card-content {
    max-height: 220px;
    overflow: auto;
    border-top: 1px solid var(--line);
    margin-top: 0.8rem;
    padding-top: 0.8rem;
}

.event-timeline {
    display: grid;
    gap: 0.85rem;
}

.event-timeline article {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 1rem;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 1rem;
    box-shadow: 0 14px 30px rgba(0, 52, 31, 0.1);
}

.event-timeline time {
    display: grid;
    place-items: center;
    min-height: 82px;
    border-radius: var(--radius);
    background: var(--yellow);
    color: var(--green-950);
    text-align: center;
}

.event-timeline time strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
}

.event-timeline time span,
.event-timeline article > div > span {
    font-size: 0.75rem;
    font-weight: 950;
    text-transform: uppercase;
}

.event-timeline h3 {
    margin: 0.25rem 0;
    color: var(--green-800);
}

.site-footer address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
}

.site-footer address strong,
.footer-contact strong {
    display: block;
    color: var(--yellow);
    margin-bottom: 0.7rem;
}

.contact-links {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.62rem;
    align-items: center;
}

.contact-links a {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: rgba(255, 210, 26, 0.12);
    color: var(--yellow);
    border: 1px solid rgba(255, 210, 26, 0.25);
    transition: transform 180ms ease, background 180ms ease;
}

.contact-links a:hover,
.contact-links a:focus-visible {
    transform: translateY(-2px);
    background: var(--yellow);
    color: var(--green-950);
}

.section-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 700ms ease, transform 700ms ease;
}

.section-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.result-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem;
    background: var(--green-950);
}

.result-card {
    width: min(620px, 100%);
    padding: clamp(1.3rem, 5vw, 2.4rem);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
}

.result-card .brand {
    color: #111;
}

.result-card h1 {
    color: var(--green-800);
    font-size: clamp(2rem, 5vw, 3rem);
}

.result-card dl {
    display: grid;
    gap: 0.7rem;
    margin: 1.4rem 0;
}

.result-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: var(--radius);
    background: #f4f5ee;
}

.result-card dt {
    color: var(--muted);
    font-weight: 800;
}

.result-card dd {
    margin: 0;
    font-weight: 950;
    text-align: right;
}

.listing-page .site-header {
    margin-bottom: 1rem;
}

.listing-main {
    width: min(1180px, calc(100% - 32px));
    margin: 1.4rem auto 5rem;
}

.listing-hero {
    min-height: 310px;
    display: grid;
    align-content: center;
    border-radius: 24px;
    background:
        linear-gradient(90deg, rgba(0, 29, 18, 0.92), rgba(0, 29, 18, 0.55)),
        url("../img/festival-location.png") center center / cover;
    color: #fff;
    padding: clamp(1.4rem, 5vw, 3rem);
    box-shadow: var(--shadow);
}

.listing-hero span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: fit-content;
    border-radius: 999px;
    background: var(--yellow);
    color: var(--green-950);
    padding: 0.45rem 0.8rem;
    font-weight: 950;
}

.listing-hero h1 {
    max-width: 800px;
    margin: 1rem 0 0.6rem;
    font-size: clamp(2.2rem, 7vw, 4.5rem);
    line-height: 0.96;
}

.listing-hero p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.08rem;
}

.public-list-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.public-item-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 16px 36px rgba(0, 52, 31, 0.12);
}

.public-item-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-image: url("../img/experience-panel.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.public-item-body {
    padding: 1rem;
}

.public-item-body time {
    display: inline-flex;
    margin-bottom: 0.55rem;
    color: var(--green-600);
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.public-item-body h2 {
    color: var(--green-800);
    font-size: 1.35rem;
}

.public-item-body p,
.public-item-content {
    color: #46594e;
    line-height: 1.58;
}

.public-item-content {
    border-top: 1px solid var(--line);
    margin-top: 1rem;
    padding-top: 1rem;
}

.video-item-card iframe,
.location-card iframe {
    display: block;
    width: 100%;
    min-height: 0;
    border: 0;
}

.video-item-card iframe {
    aspect-ratio: 16 / 9;
}

.location-card iframe {
    aspect-ratio: 16 / 10;
}

.location-card address {
    display: flex;
    gap: 0.5rem;
    color: var(--green-900);
    font-style: normal;
    font-weight: 850;
}

.location-card small {
    color: var(--muted);
    font-weight: 800;
}

@media (max-width: 980px) {
    .nav-toggle {
        display: inline-block;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        border-radius: 22px;
        background: rgba(8, 8, 7, 0.98);
        padding: 0.8rem;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        text-align: center;
    }

    .hero {
        min-height: 780px;
    }

    .hero-card {
        margin: 34px auto 0;
    }

    .hero-side {
        display: none;
    }

    .hero-metrics,
    .impact-strip,
    .pillars,
    .experience-grid,
    .tier-grid,
    .partners .partner-layout,
    .participate-grid,
    .news-grid,
    .site-footer {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .two-columns,
    .media-layout,
    .blog-grid {
        grid-template-columns: 1fr;
    }

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

    .listing-page .listing-nav {
        position: static;
        display: flex;
        flex-direction: row;
        padding: 0;
        background: transparent;
    }
}

@media (max-width: 700px) {
    .site-header {
        top: 8px;
        width: min(100% - 18px, 1180px);
        border-radius: 22px;
        padding-left: 0.8rem;
    }

    .brand span {
        font-size: 0.68rem;
    }

    .brand-logo {
        width: min(148px, 48vw);
        max-height: 44px;
    }

    .hero {
        width: min(100% - 18px, 1180px);
        min-height: 720px;
        border-radius: 18px;
    }

    .hero-media {
        background-position: 68% center;
        background-size: cover;
    }

    .hero-card {
        width: calc(100% - 24px);
        margin-top: 16px;
        border-width: 3px;
        border-radius: 18px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-actions {
        flex-wrap: wrap;
    }

    .hero-metrics {
        left: 12px;
        right: 12px;
        bottom: 12px;
        grid-template-columns: 1fr 1fr;
    }

    .pillars,
    .impact-strip,
    .experience-grid,
    .tier-grid,
    .partners .partner-layout,
    .participate-grid,
    .news-grid,
    .public-list-grid,
    .knowledge-grid,
    .site-footer,
    .form-row,
    .sponsor-form,
    .logo-slots,
    .amount-grid,
    .scale-options {
        grid-template-columns: 1fr;
    }

    .page-hero {
        min-height: 280px;
        border-radius: 18px;
    }

    .media-menu button {
        grid-template-columns: 84px 1fr;
    }

    .media-menu img {
        width: 84px;
        height: 56px;
    }

    .blog-card-body {
        min-height: auto;
    }

    .blog-card h2 {
        min-height: auto;
    }

    .event-timeline article {
        grid-template-columns: 1fr;
    }

    .sponsor-head {
        display: grid;
    }

    .sponsor-form button {
        grid-column: 1;
    }

    main > section,
    .sponsor-section {
        width: min(100% - 18px, 1180px);
    }

    .site-footer {
        gap: 1.6rem;
        padding: 2rem 18px;
    }

    .social-links,
    .contact-links {
        width: 100%;
        justify-content: flex-start;
    }

    .footer-actions .btn {
        width: 100%;
    }

    .selected-sponsor-summary {
        grid-template-columns: 46px 1fr;
    }

    .selected-sponsor-summary > div:last-child {
        grid-column: 2;
    }

    .listing-main {
        width: min(100% - 18px, 1180px);
    }

    .listing-hero {
        min-height: 260px;
        border-radius: 18px;
        background-position: center top;
    }

    .listing-page .site-header {
        align-items: flex-start;
        flex-wrap: wrap;
        border-radius: 18px;
    }

    .listing-page .listing-nav {
        flex: 1 1 100%;
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0.35rem;
        margin-top: 0.65rem;
    }

    .listing-page .listing-nav a {
        flex: 1 1 auto;
        min-width: 92px;
        padding-inline: 0.55rem;
    }
}
