:root {
    --forest: #173f2d;
    --forest-deep: #0d291e;
    --forest-ink: #092219;
    --acid: #d8ff45;
    --acid-soft: #e6ff88;
    --cream: #f4f0e4;
    --paper: #fbf8ef;
    --white: #fffdf7;
    --ink: #171a16;
    --muted: #677067;
    --line: rgba(23, 26, 22, .16);
    --shell: min(1240px, calc(100% - 48px));
    --display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
    --body: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    margin: 0;
    overflow-x: hidden;
    overflow-wrap: break-word;
    background: var(--paper);
    color: var(--ink);
    font: 400 16px/1.55 var(--body);
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

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

:focus-visible {
    outline: 3px solid #ff7a00;
    outline-offset: 4px;
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.section {
    padding: 120px 0;
}

.section--dark {
    background: var(--forest-ink);
    color: var(--white);
}

.section--acid {
    background: var(--acid);
}

.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;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    transform: translateY(-150%);
    background: var(--acid);
    color: var(--forest-ink);
    font-weight: 800;
}

.skip-link:focus {
    transform: translateY(0);
}

.announcement {
    position: relative;
    z-index: 30;
    background: var(--acid);
    color: var(--forest-ink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.announcement__inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.announcement p {
    margin: 0;
}

.announcement a {
    margin-left: 6px;
    border-bottom: 1px solid;
}

.announcement__pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--forest);
    box-shadow: 0 0 0 5px rgba(23, 63, 45, .13);
}

.site-header {
    position: absolute;
    z-index: 20;
    top: 36px;
    left: 0;
    width: 100%;
    color: var(--white);
    transition: background .25s, box-shadow .25s, transform .25s;
}

.site-header.is-fixed {
    position: fixed;
    top: 0;
    background: rgba(13, 41, 30, .96);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .16);
    backdrop-filter: blur(12px);
}

.site-header__inner {
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, .25);
}

.site-header.is-fixed .site-header__inner {
    height: 72px;
    border-bottom-color: transparent;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--display);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: -.02em;
    line-height: .9;
    text-transform: uppercase;
}

.brand img {
    width: 53px;
    height: 53px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2vw, 34px);
    margin-left: auto;
    margin-right: 32px;
}

.main-nav > a,
.nav-dropdown > summary {
    position: relative;
    font-size: 13px;
    font-weight: 700;
}

.main-nav > a::after,
.nav-dropdown > summary::before {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    transform: scaleX(0);
    background: var(--acid);
    content: "";
    transition: transform .2s;
}

.main-nav > a:hover::after,
.nav-dropdown:hover > summary::before,
.nav-dropdown[open] > summary::before,
.nav-dropdown--current > summary::before {
    transform: scaleX(1);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown > summary {
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    list-style: none;
}

.nav-dropdown > summary::-webkit-details-marker {
    display: none;
}

.nav-dropdown > summary::after {
    color: var(--acid);
    content: "＋";
    font-size: 12px;
    font-weight: 400;
    transition: transform .2s;
}

.nav-dropdown[open] > summary::after {
    transform: rotate(45deg);
}

.nav-submenu {
    position: absolute;
    top: calc(100% + 22px);
    left: 50%;
    width: 195px;
    padding: 8px;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    background: var(--white);
    color: var(--forest-ink);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .22);
    transform: translate(-50%, -6px);
    transition: opacity .18s, transform .18s, visibility .18s;
}

.nav-submenu::before {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 23px;
    content: "";
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu,
.nav-dropdown[open] .nav-submenu {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
}

.nav-submenu a {
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 800;
}

.nav-submenu a:hover,
.nav-submenu a[aria-current="page"] {
    background: var(--acid);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 13px;
    border: 0;
    background: transparent;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    margin: 6px 0;
    background: currentColor;
    transition: transform .25s;
}

.button {
    min-height: 56px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    border: 1px solid transparent;
    border-radius: 0;
    cursor: pointer;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .02em;
    line-height: 1;
    text-transform: uppercase;
    transition: background .2s, color .2s, transform .2s;
}

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

.button--small {
    min-height: 44px;
    padding-inline: 18px;
    gap: 15px;
}

.button--acid {
    background: var(--acid);
    color: var(--forest-ink);
}

.button--acid:hover {
    background: var(--white);
}

.button--dark {
    background: var(--forest-ink);
    color: var(--white);
}

.button--outline-light {
    border-color: rgba(255, 255, 255, .55);
    color: var(--white);
}

.button--outline-light:hover {
    background: var(--white);
    color: var(--forest-ink);
}

.text-link {
    display: inline-flex;
    gap: 14px;
    align-items: center;
    padding-bottom: 5px;
    border-bottom: 1px solid currentColor;
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
}

.text-link--dark {
    color: var(--forest-ink);
}

.text-link--light {
    padding: 0 0 5px;
    border: 0;
    border-bottom: 1px solid;
    background: transparent;
    cursor: pointer;
}

.hero {
    position: relative;
    min-height: 900px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    background: var(--forest-deep);
    color: var(--white);
}

.hero::before {
    position: absolute;
    z-index: 2;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 24, 16, .93) 0%, rgba(5, 29, 19, .76) 47%, rgba(5, 29, 19, .22) 100%),
        linear-gradient(0deg, rgba(4, 22, 15, .75), transparent 55%);
    content: "";
}

.hero__media {
    position: absolute;
    inset: 0;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 55% 46%;
    filter: saturate(.85) contrast(1.05);
    transform: scale(1.04);
}

.hero__grain {
    position: absolute;
    inset: 0;
    opacity: .13;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
}

.hero__content {
    position: relative;
    z-index: 3;
    padding-top: 170px;
    padding-bottom: 66px;
}

.hero__kicker {
    display: flex;
    gap: 11px;
    margin-bottom: 32px;
}

.hero__kicker span {
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, .5);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero__kicker span:first-child {
    border-color: var(--acid);
    background: var(--acid);
    color: var(--forest-ink);
}

.hero h1 {
    position: relative;
    margin: 0;
    font-family: var(--display);
    font-size: clamp(72px, 11.2vw, 164px);
    font-weight: 900;
    letter-spacing: -.075em;
    line-height: .71;
    text-transform: uppercase;
}

.hero__title-logo {
    position: absolute;
    right: 2%;
    bottom: calc(100% + 18px);
    width: clamp(180px, 19vw, 275px);
    height: auto;
    opacity: .96;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, .22));
}

.hero h1 span {
    display: block;
}

.hero__title-outline {
    margin-left: 8vw;
    color: transparent;
    -webkit-text-stroke: 2px var(--white);
    text-stroke: 2px var(--white);
}

.hero__bottom {
    margin-top: 62px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
}

.hero__date {
    margin: 0 0 16px;
    color: var(--acid);
    font-family: var(--display);
    font-size: clamp(25px, 3vw, 42px);
    font-weight: 900;
    letter-spacing: -.045em;
    line-height: 1;
    text-transform: uppercase;
}

.hero__lead {
    max-width: 610px;
    margin: 0;
    color: rgba(255, 255, 255, .8);
    font-size: 16px;
}

.hero__lead::first-line {
    color: var(--white);
    font-weight: 800;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}

.hero__leaf {
    position: absolute;
    z-index: 3;
    color: var(--acid);
    font-size: 28px;
}

.hero__leaf--one {
    top: 36%;
    right: 9%;
}

.hero__leaf--two {
    top: 23%;
    left: 47%;
    font-size: 14px;
}

.countdown-wrap {
    position: relative;
    z-index: 4;
    background: rgba(7, 28, 20, .82);
    border-top: 1px solid rgba(255, 255, 255, .15);
    backdrop-filter: blur(16px);
}

.countdown {
    min-height: 120px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.countdown__label {
    margin: 0;
    color: rgba(255, 255, 255, .65);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.countdown__grid {
    display: flex;
}

.countdown__grid div {
    min-width: 100px;
    padding: 0 28px;
    border-left: 1px solid rgba(255, 255, 255, .16);
    text-align: center;
}

.countdown__grid div:last-child {
    border-right: 1px solid rgba(255, 255, 255, .16);
}

.countdown__grid strong {
    display: block;
    font-family: var(--display);
    font-size: 31px;
    line-height: 1;
}

.countdown__grid span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, .55);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.countdown__calendar {
    justify-self: end;
    font-size: 12px;
    font-weight: 800;
}

.countdown__calendar span {
    margin-left: 14px;
    color: var(--acid);
}

.eyebrow,
.overline {
    margin: 0;
    color: var(--forest);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.section--dark .eyebrow,
.section-heading--light .eyebrow,
.location .eyebrow {
    color: var(--acid);
}

.section-heading {
    margin-bottom: 70px;
}

.section-heading h2,
.tickets h2,
.exhibitors h2,
.lineup h2,
.location h2,
.faq h2,
.contact h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(48px, 6.2vw, 88px);
    font-weight: 900;
    letter-spacing: -.065em;
    line-height: .88;
    text-transform: uppercase;
}

.section-heading--split {
    display: grid;
    grid-template-columns: .62fr 1.25fr .75fr;
    gap: 40px;
    align-items: start;
}

.section-heading__lead {
    max-width: 430px;
    margin: 0;
    color: var(--muted);
}

.section-heading--light .section-heading__lead {
    color: rgba(255, 255, 255, .6);
}

.stats {
    margin: 10px 0 90px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.stat {
    min-height: 150px;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--line);
}

.stat:last-child {
    border: 0;
}

.stat strong {
    color: var(--forest);
    font-family: var(--display);
    font-size: 55px;
    letter-spacing: -.06em;
    line-height: 1;
}

.stat span {
    margin-top: 10px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.13fr .82fr .55fr;
    gap: 28px;
    align-items: center;
}

.image-card {
    margin: 0;
    overflow: hidden;
}

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

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

.story-grid__large {
    height: 580px;
}

.story-grid__large figcaption {
    position: absolute;
}

.story-grid__copy {
    position: relative;
    padding: 40px 24px;
}

.story-grid__number {
    position: absolute;
    top: -72px;
    right: 16px;
    color: rgba(23, 63, 45, .1);
    font-family: var(--display);
    font-size: 120px;
    font-weight: 900;
    line-height: 1;
}

.story-grid__copy h3 {
    margin: 22px 0;
    font-family: var(--display);
    font-size: clamp(32px, 3vw, 47px);
    letter-spacing: -.055em;
    line-height: .94;
    text-transform: uppercase;
}

.story-grid__copy > p:not(.overline) {
    margin-bottom: 32px;
    color: var(--muted);
}

.story-grid__small {
    height: 360px;
    transform: translateY(105px);
}

.program {
    position: relative;
}

.program::before {
    position: absolute;
    inset: 0;
    opacity: .16;
    background-image: radial-gradient(rgba(216, 255, 69, .55) .7px, transparent .7px);
    background-size: 17px 17px;
    mask-image: linear-gradient(90deg, transparent 30%, #000);
    content: "";
    pointer-events: none;
}

.program .shell {
    position: relative;
}

.program .section-heading {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: end;
}

.program .section-heading .eyebrow {
    grid-column: 1 / -1;
}

.program .section-heading__lead {
    justify-self: end;
}

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

.program-day {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 35px;
}

.program-day + .program-day {
    border-top: 1px solid rgba(255, 255, 255, .2);
}

.program-day__marker {
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 17px;
    color: var(--acid);
    font-family: var(--display);
    font-size: 13px;
    font-weight: 900;
}

.program-day__marker i {
    width: 1px;
    min-height: 150px;
    flex: 1;
    background: linear-gradient(var(--acid), rgba(216, 255, 69, .08));
}

.program-day .program-panel {
    padding: 50px 0 85px;
}

.program-panel {
    padding-top: 45px;
}

.program-panel__intro {
    margin-bottom: 45px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: end;
}

.program-panel__intro .overline {
    color: var(--acid);
}

.program-panel__intro h3 {
    margin: 12px 0 0;
    font-family: var(--display);
    font-size: 38px;
    letter-spacing: -.045em;
    text-transform: uppercase;
}

.program-panel__intro > p {
    max-width: 450px;
    margin: 0;
    color: rgba(255, 255, 255, .58);
}

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

.timeline li {
    min-height: 120px;
    display: grid;
    grid-template-columns: 115px 110px 1fr 48px;
    gap: 26px;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.timeline time {
    color: var(--acid);
    font-family: var(--display);
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
}

.tag {
    width: max-content;
    padding: 5px 8px;
    border: 1px solid currentColor;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.timeline h4 {
    margin: 0 0 3px;
    font-family: var(--display);
    font-size: 22px;
    letter-spacing: -.035em;
    text-transform: uppercase;
}

.timeline p {
    margin: 0;
    color: rgba(255, 255, 255, .5);
    font-size: 14px;
}

.favorite {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    font-size: 20px;
}

.favorite[aria-pressed="true"] {
    border-color: var(--acid);
    background: var(--acid);
    color: var(--forest-ink);
    transform: rotate(45deg);
}

.program-note {
    margin-top: 30px;
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .16);
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
}

.program-note p {
    margin: 0;
}

.program-note p span {
    margin-right: 12px;
    color: var(--acid);
}

.program-note a {
    color: var(--acid);
    font-weight: 800;
}

.zones {
    background: var(--cream);
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.zone-card {
    position: relative;
    min-height: 275px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background .25s, color .25s;
}

.zone-card > span:first-child {
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
}

.zone-card h3 {
    margin: 0 0 12px;
    font-family: var(--display);
    font-size: 29px;
    letter-spacing: -.045em;
    line-height: 1;
    text-transform: uppercase;
}

.zone-card p {
    max-width: 300px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.zone-card__arrow {
    position: absolute;
    top: 22px;
    right: 25px;
    font-size: 21px !important;
}

.zone-card:hover {
    background: var(--forest);
    color: var(--white);
}

.zone-card:hover p,
.zone-card:hover > span:first-child {
    color: rgba(255, 255, 255, .65);
}

.zone-card:hover .zone-card__arrow {
    color: var(--acid);
}

.lineup {
    min-height: 590px;
    display: grid;
    grid-template-columns: .8fr 1.2fr .8fr;
    overflow: hidden;
    background: var(--forest);
    color: var(--white);
}

.lineup__photo {
    min-height: 590px;
}

.lineup__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.08);
}

.lineup__content {
    padding: 80px 8vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.lineup__content .eyebrow {
    color: var(--acid);
}

.lineup__content h2 {
    margin: 24px 0;
}

.lineup__content p:not(.eyebrow) {
    max-width: 520px;
    margin: 0 0 32px;
    color: rgba(255, 255, 255, .68);
}

.lineup__word {
    align-self: center;
    color: transparent;
    font-family: var(--display);
    font-size: clamp(82px, 10vw, 160px);
    font-weight: 900;
    letter-spacing: -.08em;
    line-height: .72;
    -webkit-text-stroke: 1px rgba(216, 255, 69, .6);
    text-stroke: 1px rgba(216, 255, 69, .6);
    transform: rotate(-90deg);
    white-space: nowrap;
}

.tickets {
    background: var(--paper);
}

.tickets__header {
    margin-bottom: 65px;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 70px;
    align-items: end;
}

.tickets__header .eyebrow {
    margin-bottom: 24px;
}

.tickets__header > p {
    max-width: 470px;
    color: var(--muted);
}

.ticket-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
}

.ticket-card {
    min-height: 445px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    background: var(--white);
}

.ticket-card--featured {
    background: var(--forest);
    color: var(--white);
    transform: translateY(-16px);
}

.ticket-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
}

.ticket-card--featured .ticket-card__top {
    color: var(--acid);
}

.ticket-card h3 {
    margin: 75px 0 14px;
    font-family: var(--display);
    font-size: 29px;
    letter-spacing: -.045em;
    text-transform: uppercase;
}

.ticket-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.ticket-card--featured p {
    color: rgba(255, 255, 255, .58);
}

.ticket-card > strong {
    margin-top: auto;
    margin-bottom: 23px;
    font-family: var(--display);
    font-size: 24px;
    text-transform: uppercase;
}

.exhibitors {
    overflow: hidden;
    background: var(--acid);
}

.exhibitors__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.exhibitors__photos {
    position: relative;
    min-height: 620px;
}

.exhibitors__photo {
    position: absolute;
    object-fit: cover;
}

.exhibitors__photo--one {
    top: 0;
    left: 0;
    width: 75%;
    height: 72%;
}

.exhibitors__photo--two {
    right: 0;
    bottom: 0;
    width: 58%;
    height: 47%;
    border: 12px solid var(--acid);
}

.exhibitors__badge {
    position: absolute;
    right: 8%;
    top: 5%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--forest);
    color: var(--white);
    font-family: var(--display);
    font-size: 16px;
    letter-spacing: -.02em;
    line-height: .9;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(8deg);
}

.exhibitors__badge small {
    margin-top: 8px;
    color: var(--acid);
    font-size: 10px;
}

.exhibitors__content .eyebrow {
    margin-bottom: 24px;
}

.exhibitors__content h2 {
    font-size: clamp(45px, 5.2vw, 75px);
}

.exhibitors__content > p:not(.eyebrow) {
    max-width: 590px;
    margin: 28px 0;
}

.exhibitors__content ul {
    margin: 0 0 35px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    list-style: none;
    font-size: 13px;
    font-weight: 800;
}

.exhibitors__content li {
    display: flex;
    gap: 10px;
}

.exhibitors__content li span {
    color: var(--forest);
}

.gallery {
    background: var(--paper);
}

.section-heading--inline {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.section-heading--inline .eyebrow {
    margin-bottom: 23px;
}

.section-heading--inline > p {
    max-width: 430px;
    margin: 0 0 8px;
    color: var(--muted);
}

.archive-years {
    margin-bottom: 75px;
    border-top: 1px solid var(--line);
}

.archive-year {
    border-bottom: 1px solid var(--line);
}

.archive-year summary {
    min-height: 132px;
    display: grid;
    grid-template-columns: 55px 1fr 1.1fr 135px 28px;
    gap: 25px;
    align-items: center;
    cursor: pointer;
    list-style: none;
}

.archive-year summary::-webkit-details-marker {
    display: none;
}

.archive-year__index,
.archive-year__count {
    color: var(--muted);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.archive-year summary strong {
    color: var(--forest);
    font-family: var(--display);
    font-size: clamp(50px, 7vw, 88px);
    letter-spacing: -.07em;
    line-height: 1;
}

.archive-year__description {
    font-family: var(--display);
    font-size: 17px;
    font-weight: 900;
    letter-spacing: -.025em;
    text-transform: uppercase;
}

.archive-year__count {
    text-align: right;
}

.archive-year summary i {
    position: relative;
    width: 28px;
    height: 28px;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.archive-year summary i::before,
.archive-year summary i::after {
    position: absolute;
    top: 13px;
    left: 8px;
    width: 10px;
    height: 1px;
    background: var(--forest);
    content: "";
}

.archive-year summary i::after {
    transform: rotate(90deg);
    transition: transform .2s;
}

.archive-year[open] summary i {
    border-color: var(--forest);
    background: var(--forest);
}

.archive-year[open] summary i::before,
.archive-year[open] summary i::after {
    background: var(--acid);
}

.archive-year[open] summary i::after {
    transform: rotate(0);
}

.archive-year__content {
    padding: 0 0 38px 80px;
}

.archive-placeholder {
    min-height: 180px;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    gap: 28px;
    background: var(--cream);
}

.archive-placeholder > span {
    color: var(--forest);
    font-size: 30px;
}

.archive-placeholder h3 {
    margin: 0 0 7px;
    font-family: var(--display);
    font-size: 23px;
    letter-spacing: -.035em;
    text-transform: uppercase;
}

.archive-placeholder p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.archive-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.archive-gallery .gallery-item {
    min-height: 290px;
}

.gallery-highlights__heading {
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gallery-highlights__heading p {
    margin: 0;
}

.gallery-highlights__heading > p:last-child {
    color: var(--muted);
    font-size: 12px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr 1fr;
    grid-template-rows: 290px 290px;
    gap: 14px;
}

.gallery-item {
    position: relative;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: var(--forest);
    cursor: zoom-in;
}

.gallery-item--wide {
    grid-row: span 2;
}

.gallery-item:last-child {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .3s, transform .45s;
}

.gallery-item:hover img {
    opacity: .75;
    transform: scale(1.04);
}

.gallery-item > span {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--acid);
    color: var(--forest-ink);
    font-size: 21px;
}

.lightbox {
    width: min(1000px, calc(100% - 40px));
    max-height: 90vh;
    padding: 0;
    overflow: visible;
    border: 0;
    background: transparent;
}

.lightbox::backdrop {
    background: rgba(4, 16, 11, .91);
}

.lightbox img {
    width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox button {
    position: absolute;
    z-index: 2;
    top: -44px;
    right: 0;
    border: 0;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    font-size: 35px;
}

.location__grid {
    display: grid;
    grid-template-columns: .83fr 1.17fr;
    gap: 100px;
    align-items: center;
}

.location__content h2 {
    margin: 23px 0 52px;
}

.location dl {
    margin: 0 0 40px;
}

.location dl div {
    padding: 15px 0;
    display: grid;
    grid-template-columns: 115px 1fr;
    border-top: 1px solid rgba(255, 255, 255, .17);
}

.location dt {
    color: rgba(255, 255, 255, .48);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.location dd {
    margin: 0;
    font-weight: 700;
}

.location__actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.location__note {
    max-width: 410px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, .46);
    font-size: 12px;
}

.map-placeholder {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    background: #d9ddc3;
}

.map-placeholder__roads {
    position: absolute;
    inset: -20%;
    background:
        linear-gradient(112deg, transparent 0 42%, #f4f0e4 42% 45%, transparent 45% 100%),
        linear-gradient(18deg, transparent 0 37%, #ece7db 37% 40%, transparent 40% 100%),
        linear-gradient(74deg, transparent 0 63%, #f8f5ed 63% 65%, transparent 65% 100%),
        repeating-linear-gradient(90deg, transparent 0 60px, rgba(69, 92, 62, .15) 60px 62px),
        repeating-linear-gradient(0deg, transparent 0 72px, rgba(69, 92, 62, .13) 72px 74px);
    transform: rotate(-4deg);
}

.map-pin {
    position: absolute;
    top: 44%;
    left: 53%;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50% 50% 50% 0;
    background: var(--forest);
    transform: rotate(-45deg);
}

.map-pin i {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--acid);
}

.map-placeholder__label {
    position: absolute;
    top: calc(44% + 64px);
    left: calc(53% - 50px);
    padding: 12px 15px;
    display: flex;
    flex-direction: column;
    background: var(--white);
    color: var(--ink);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
    font-size: 11px;
}

.map-placeholder > button {
    position: absolute;
    right: 20px;
    bottom: 20px;
    padding: 12px 15px;
    border: 0;
    background: var(--forest-ink);
    color: var(--white);
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.map-placeholder iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.news {
    background: var(--cream);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
}

.news-grid article {
    min-height: 300px;
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--line);
}

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

.news-grid article > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
}

.news-grid h3 {
    margin: auto 0 13px;
    font-family: var(--display);
    font-size: 27px;
    letter-spacing: -.045em;
    line-height: 1;
    text-transform: uppercase;
}

.news-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.partners {
    padding-block: 80px;
}

.partners .eyebrow {
    margin-bottom: 30px;
    text-align: center;
}

.partners__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--line);
}

.partners__grid > a {
    min-height: 180px;
    padding: 30px;
    display: grid;
    place-items: center;
    border-right: 1px solid var(--line);
}

.partners__grid img {
    max-width: 170px;
    max-height: 100px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .75;
    transition: filter .2s, opacity .2s;
}

.partners__grid a:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.partner-join {
    display: flex !important;
    flex-direction: column;
    gap: 13px;
    background: var(--forest);
    color: var(--white);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.partner-join span {
    color: var(--acid);
    font-size: 28px;
}

.partners__note {
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 12px;
    text-align: center;
}

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

.faq__grid {
    display: grid;
    grid-template-columns: .65fr 1.35fr;
    gap: 110px;
    align-items: start;
}

.faq__intro {
    position: sticky;
    top: 110px;
}

.faq__intro h2 {
    margin: 24px 0;
}

.faq__intro > p:not(.eyebrow) {
    max-width: 350px;
    margin-bottom: 30px;
    color: var(--muted);
}

.accordion details {
    border-top: 1px solid var(--line);
}

.accordion details:last-child {
    border-bottom: 1px solid var(--line);
}

.accordion summary {
    min-height: 92px;
    display: grid;
    grid-template-columns: 45px 1fr 30px;
    gap: 20px;
    align-items: center;
    cursor: pointer;
    font-family: var(--display);
    font-size: 19px;
    font-weight: 900;
    letter-spacing: -.025em;
    list-style: none;
    text-transform: uppercase;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion summary > span {
    color: var(--muted);
    font-family: var(--body);
    font-size: 10px;
    letter-spacing: .08em;
}

.accordion summary i {
    position: relative;
    width: 22px;
    height: 22px;
}

.accordion summary i::before,
.accordion summary i::after {
    position: absolute;
    top: 10px;
    left: 3px;
    width: 16px;
    height: 2px;
    background: var(--forest);
    content: "";
}

.accordion summary i::after {
    transform: rotate(90deg);
    transition: transform .2s;
}

.accordion details[open] summary i::after {
    transform: rotate(0);
}

.accordion details > div {
    padding: 0 52px 28px 65px;
}

.accordion details p {
    max-width: 610px;
    margin: 0;
    color: var(--muted);
}

.contact {
    color: var(--forest-ink);
}

.contact .shell {
    width: min(1380px, calc(100% - 48px));
}

.contact__grid {
    display: grid;
    grid-template-columns: minmax(240px, .5fr) minmax(0, .75fr);
    gap: clamp(50px, 6vw, 85px);
}

.contact__intro h2 {
    margin: 24px 0;
}

.contact__intro > p:not(.eyebrow) {
    max-width: 420px;
}

.contact__intro > a {
    display: inline-block;
    max-width: 100%;
    margin-top: 25px;
    overflow-wrap: anywhere;
    border-bottom: 2px solid;
    font-weight: 900;
}

.contact-form {
    padding: 44px;
    background: var(--white);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.contact-form label {
    display: block;
    margin-bottom: 24px;
}

.contact-form label > span {
    display: block;
    margin-bottom: 8px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 13px 0;
    border: 0;
    border-bottom: 1px solid rgba(13, 41, 30, .28);
    border-radius: 0;
    background: transparent;
    outline: 0;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-bottom-color: var(--forest);
    box-shadow: 0 1px 0 var(--forest);
}

.contact-form .checkbox {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-form .checkbox input {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: var(--forest);
}

.contact-form .checkbox span {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.45;
    text-transform: none;
}

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

.form-submit {
    display: flex;
    align-items: center;
    gap: 20px;
}

.form-submit p {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
}

.footer {
    padding: 80px 0 24px;
    background: var(--forest-ink);
    color: var(--white);
}

.footer__top {
    padding-bottom: 55px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.brand--footer {
    font-size: 20px;
}

.brand--footer img {
    width: 70px;
    height: 70px;
}

.footer__top > p {
    margin: 0;
    color: rgba(255, 255, 255, .6);
    font-size: 13px;
}

.footer__social {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.footer__social a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.footer__social a:hover {
    border-color: var(--acid);
    background: var(--acid);
    color: var(--forest-ink);
}

.footer__nav {
    padding: 60px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.footer__nav > div {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer__nav span {
    margin-bottom: 10px;
    color: var(--acid);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.footer__nav a {
    width: fit-content;
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
}

.footer__nav a:hover {
    color: var(--white);
}

.footer__bottom {
    padding-top: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .4);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer__bottom span:nth-child(2) {
    text-align: center;
}

.footer__bottom a {
    justify-self: end;
    color: var(--white);
}

.site-header--inner {
    top: 0;
}

.archive-body {
    background: var(--paper);
}

.archive-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--forest-ink);
    color: var(--white);
}

.archive-hero::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 24, 16, .96), rgba(4, 24, 16, .66) 55%, rgba(4, 24, 16, .15)),
        linear-gradient(0deg, rgba(4, 24, 16, .85), transparent 55%);
    content: "";
}

.archive-hero__texture {
    position: absolute;
    inset: 0;
    background: url("/back/bg1.jpg") 65% 44% / cover;
    filter: saturate(.7);
}

.archive-hero__content {
    position: relative;
    z-index: 2;
    padding: 180px 0 75px;
}

.archive-hero .eyebrow {
    margin-bottom: 35px;
    color: var(--acid);
}

.archive-hero h1,
.edition-hero h1 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(78px, 13vw, 180px);
    font-weight: 900;
    letter-spacing: -.08em;
    line-height: .72;
    text-transform: uppercase;
}

.archive-hero h1 span {
    margin-left: 11vw;
    color: transparent;
    -webkit-text-stroke: 2px var(--white);
    text-stroke: 2px var(--white);
}

.archive-hero__bottom {
    margin-top: 65px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.archive-hero__bottom p {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, .65);
}

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

.edition-link {
    min-height: 155px;
    display: grid;
    grid-template-columns: 55px .65fr 1.2fr 180px 45px;
    gap: 25px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    transition: padding .25s, background .25s, color .25s;
}

.edition-link:hover {
    padding-inline: 24px;
    background: var(--forest);
    color: var(--white);
}

.edition-link__index,
.edition-link__status {
    color: var(--muted);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.edition-link strong {
    color: var(--forest);
    font-family: var(--display);
    font-size: clamp(55px, 7vw, 88px);
    letter-spacing: -.07em;
    line-height: 1;
    transition: color .25s;
}

.edition-link__name {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -.03em;
    text-transform: uppercase;
}

.edition-link__status {
    text-align: right;
}

.edition-link i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--forest);
    font-style: normal;
}

.edition-link:hover strong,
.edition-link:hover i {
    color: var(--acid);
}

.edition-link:hover .edition-link__index,
.edition-link:hover .edition-link__status {
    color: rgba(255, 255, 255, .55);
}

.edition-link:hover i {
    border-color: var(--acid);
}

.edition-hero {
    min-height: 570px;
    padding-top: 120px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--forest);
    color: var(--white);
}

.edition-hero__content {
    padding-bottom: 70px;
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 70px;
    align-items: end;
}

.edition-hero__back {
    display: inline-block;
    margin-bottom: 55px;
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    font-weight: 800;
}

.edition-hero .eyebrow {
    margin-bottom: 20px;
    color: var(--acid);
}

.edition-hero h1 {
    color: var(--acid);
    font-size: clamp(110px, 18vw, 245px);
}

.edition-hero__content > p {
    max-width: 410px;
    margin: 0 0 16px;
    color: rgba(255, 255, 255, .63);
}

.edition-empty {
    min-height: 510px;
    padding: 70px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: var(--cream);
}

.edition-empty > span {
    margin-bottom: 25px;
    color: var(--forest);
    font-size: 35px;
}

.edition-empty h2 {
    margin: 22px 0;
    font-family: var(--display);
    font-size: clamp(48px, 7vw, 90px);
    letter-spacing: -.065em;
    line-height: .88;
    text-transform: uppercase;
}

.edition-empty > p:not(.eyebrow) {
    max-width: 530px;
    margin: 0 0 32px;
    color: var(--muted);
}

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

.edition-gallery .gallery-item {
    min-height: 360px;
}

.edition-pagination {
    margin-top: 70px;
    padding-top: 28px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    border-top: 1px solid var(--line);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.edition-pagination > span:last-child {
    text-align: right;
}

.edition-pagination > a {
    color: var(--forest);
}

.footer--compact .footer__top {
    padding-bottom: 48px;
}

.footer--compact .footer__top > .button {
    justify-self: end;
}

.footer--compact .footer__bottom {
    margin-top: 24px;
}

@media (max-width: 1050px) {
    :root {
        --shell: min(100% - 36px, 900px);
    }

    .main-nav {
        gap: 17px;
        margin-right: 18px;
    }

    .main-nav a,
    .nav-dropdown > summary {
        font-size: 11px;
    }

    .header-cta {
        display: none;
    }

    .hero {
        min-height: 820px;
    }

    .section-heading--split {
        grid-template-columns: .5fr 1.5fr;
    }

    .section-heading--split .section-heading__lead {
        grid-column: 2;
    }

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

    .story-grid__small {
        display: none;
    }

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

    .lineup {
        grid-template-columns: .8fr 1.2fr;
    }

    .lineup__word {
        display: none;
    }

    .exhibitors__grid,
    .location__grid,
    .contact__grid {
        gap: 55px;
    }

    .faq__grid {
        gap: 60px;
    }

    .edition-link {
        grid-template-columns: 45px .65fr 1.2fr 45px;
    }

    .edition-link__status {
        display: none;
    }
}

@media (max-width: 780px) {
    :root {
        --shell: calc(100% - 32px);
    }

    html {
        scroll-padding-top: 72px;
    }

    .section {
        padding: 80px 0;
    }

    .announcement__inner {
        min-height: 40px;
        justify-content: flex-start;
        overflow: hidden;
        white-space: nowrap;
    }

    .announcement a {
        display: none;
    }

    .site-header {
        top: 40px;
    }

    .site-header--inner {
        top: 0;
    }

    .site-header__inner {
        height: 72px;
    }

    .site-header.is-fixed .site-header__inner {
        height: 66px;
    }

    .brand img {
        width: 45px;
        height: 45px;
    }

    .brand {
        position: relative;
        z-index: 3;
    }

    .menu-toggle {
        position: relative;
        z-index: 3;
        display: block;
        color: var(--white);
    }

    .menu-toggle[aria-expanded="true"] span:nth-last-child(2) {
        transform: translateY(4px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:last-child {
        transform: translateY(-4px) rotate(-45deg);
    }

    .main-nav {
        position: fixed;
        z-index: 2;
        inset: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        padding: 125px max(24px, calc((100vw - 680px) / 2)) 50px;
        display: none;
        overflow-y: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 19px;
        background-color: var(--forest-ink);
        background-image:
            radial-gradient(circle at 85% 12%, rgba(216, 255, 69, .12), transparent 28%),
            radial-gradient(circle at 8% 92%, rgba(40, 104, 73, .4), transparent 32%);
        overscroll-behavior: contain;
    }

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

    body.menu-open .site-header {
        position: fixed;
        z-index: 100;
        top: 0;
        bottom: 0;
        height: 100vh;
        height: 100dvh;
        background: var(--forest-ink);
    }

    body.menu-open .site-header__inner,
    body.menu-open .site-header.is-fixed .site-header__inner {
        height: 72px;
        border-bottom-color: rgba(255, 255, 255, .15);
    }

    .main-nav > a,
    .nav-dropdown > summary {
        font-family: var(--display);
        font-size: clamp(27px, 9vw, 42px);
        font-weight: 900;
        letter-spacing: -.04em;
        line-height: 1.05;
        text-transform: uppercase;
    }

    .main-nav > a::after,
    .nav-dropdown > summary::before {
        display: none;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown > summary {
        width: 100%;
        justify-content: space-between;
    }

    .nav-dropdown > summary::after {
        font-family: var(--body);
        font-size: 24px;
    }

    .nav-submenu {
        position: static;
        width: 100%;
        margin-top: 14px;
        padding: 0 0 0 15px;
        display: none;
        visibility: visible;
        grid-template-columns: 1fr 1fr;
        gap: 7px;
        opacity: 1;
        background: transparent;
        box-shadow: none;
        color: var(--white);
        transform: none;
        transition: none;
    }

    .nav-submenu::before {
        display: none;
    }

    .nav-dropdown[open] .nav-submenu {
        display: grid;
        transform: none;
    }

    .nav-submenu a {
        padding: 11px 13px;
        border: 1px solid rgba(255, 255, 255, .17);
        background: rgba(255, 255, 255, .05);
        font-family: var(--body);
        font-size: 15px;
        font-weight: 800;
        letter-spacing: .02em;
        text-transform: none;
    }

    .nav-submenu a:first-child {
        grid-column: 1 / -1;
    }

    .nav-submenu a:hover,
    .nav-submenu a[aria-current="page"] {
        border-color: var(--acid);
        background: var(--acid);
        color: var(--forest-ink);
    }

    .archive-hero {
        min-height: 670px;
    }

    .archive-hero__content {
        padding-top: 150px;
        padding-bottom: 55px;
    }

    .archive-hero h1 {
        font-size: clamp(65px, 20vw, 105px);
    }

    .archive-hero h1 span {
        margin-left: 0;
        -webkit-text-stroke-width: 1px;
    }

    .archive-hero__bottom {
        margin-top: 45px;
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }

    .edition-link {
        min-height: 120px;
        grid-template-columns: 35px 1fr 38px;
        gap: 12px;
    }

    .edition-link__name {
        display: none;
    }

    .edition-link strong {
        font-size: 58px;
    }

    .edition-hero {
        min-height: 540px;
    }

    .edition-hero__content {
        padding-bottom: 50px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .edition-hero__back {
        margin-bottom: 35px;
    }

    .edition-hero h1 {
        font-size: clamp(100px, 35vw, 180px);
    }

    .edition-empty {
        min-height: 460px;
        padding: 45px 25px;
    }

    .edition-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .edition-gallery .gallery-item {
        min-height: 270px;
    }

    .edition-pagination {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .edition-pagination > a {
        display: none;
    }

    .footer--compact .footer__top > .button {
        justify-self: start;
    }

    .hero {
        min-height: 780px;
    }

    .hero::before {
        background:
            linear-gradient(0deg, rgba(4, 24, 16, .97) 0%, rgba(4, 24, 16, .72) 60%, rgba(4, 24, 16, .38) 100%),
            linear-gradient(90deg, rgba(4, 24, 16, .6), transparent);
    }

    .hero__media img {
        object-position: 58% center;
    }

    .hero__content {
        padding-top: 150px;
        padding-bottom: 48px;
    }

    .hero__kicker {
        margin-bottom: 25px;
        flex-wrap: wrap;
    }

    .hero h1 {
        font-size: clamp(58px, 20vw, 95px);
        line-height: .77;
    }

    .hero__title-logo {
        position: static;
        width: clamp(155px, 48vw, 210px);
        margin: 0 0 24px;
    }

    .hero__title-outline {
        margin-left: 0;
        -webkit-text-stroke-width: 1px;
    }

    .hero__bottom {
        margin-top: 42px;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero__date {
        font-size: 27px;
    }

    .hero__lead br {
        display: none;
    }

    .hero__actions {
        align-items: stretch;
        flex-direction: column;
        gap: 20px;
    }

    .hero__actions .button {
        width: 100%;
    }

    .countdown {
        padding: 22px 0;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .countdown__label,
    .countdown__calendar {
        display: none;
    }

    .countdown__grid {
        justify-content: space-between;
    }

    .countdown__grid div {
        min-width: 0;
        width: 25%;
        padding: 0 8px;
    }

    .countdown__grid strong {
        font-size: 26px;
    }

    .section-heading h2,
    .tickets h2,
    .exhibitors h2,
    .lineup h2,
    .location h2,
    .faq h2,
    .contact h2 {
        font-size: clamp(36px, 11.5vw, 56px);
        letter-spacing: -.055em;
    }

    .section-heading {
        margin-bottom: 45px;
    }

    .section-heading--split,
    .program .section-heading,
    .section-heading--inline {
        display: block;
    }

    .section-heading .eyebrow {
        margin-bottom: 22px;
    }

    .section-heading__lead,
    .section-heading--inline > p {
        margin-top: 25px;
    }

    .stats {
        margin-bottom: 55px;
        grid-template-columns: 1fr 1fr;
    }

    .stat {
        min-height: 120px;
        padding: 20px;
        border-bottom: 1px solid var(--line);
    }

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

    .stat strong {
        font-size: 43px;
    }

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

    .story-grid__large {
        height: 390px;
    }

    .story-grid__copy {
        padding: 48px 0 0;
    }

    .story-grid__number {
        top: 16px;
        right: 0;
        font-size: 80px;
    }

    .program .section-heading__lead {
        margin-top: 25px;
    }

    .program-panel__intro {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .program-day {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .program-day__marker {
        padding-top: 34px;
        align-items: center;
        flex-direction: row;
    }

    .program-day__marker i {
        width: auto;
        min-height: 1px;
        height: 1px;
        background: linear-gradient(90deg, var(--acid), rgba(216, 255, 69, .08));
    }

    .program-day .program-panel {
        padding: 25px 0 60px;
    }

    .timeline li {
        padding: 22px 0;
        grid-template-columns: 1fr 42px;
        gap: 10px 16px;
    }

    .timeline time,
    .timeline .tag {
        grid-column: 1;
    }

    .timeline div {
        grid-column: 1;
    }

    .timeline .favorite {
        grid-column: 2;
        grid-row: 1 / span 3;
    }

    .program-note {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

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

    .zone-card {
        min-height: 225px;
    }

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

    .lineup__photo {
        min-height: 380px;
    }

    .lineup__content {
        padding: 65px 24px;
    }

    .tickets__header,
    .ticket-grid,
    .exhibitors__grid,
    .location__grid,
    .faq__grid,
    .contact__grid {
        grid-template-columns: 1fr;
    }

    .tickets__header {
        gap: 20px;
    }

    .ticket-grid {
        gap: 12px;
    }

    .ticket-card,
    .ticket-card--featured {
        min-height: 370px;
        transform: none;
    }

    .ticket-card h3 {
        margin-top: 45px;
    }

    .exhibitors__grid {
        gap: 45px;
    }

    .exhibitors__photos {
        min-height: 440px;
    }

    .exhibitors__content ul {
        grid-template-columns: 1fr;
    }

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

    .archive-year summary {
        min-height: 105px;
        grid-template-columns: 35px 1fr 28px;
        gap: 12px;
    }

    .archive-year__description,
    .archive-year__count {
        display: none;
    }

    .archive-year summary strong {
        font-size: 55px;
    }

    .archive-year__content {
        padding: 0 0 25px;
    }

    .archive-placeholder {
        min-height: 160px;
        padding: 28px 24px;
    }

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

    .gallery-highlights__heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .gallery-item--wide,
    .gallery-item:last-child {
        grid-row: auto;
    }

    .location__grid {
        gap: 50px;
    }

    .map-placeholder {
        min-height: 440px;
    }

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

    .news-grid article {
        min-height: 240px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

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

    .partners__grid > a {
        min-height: 145px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .faq__intro {
        position: static;
    }

    .accordion summary {
        grid-template-columns: 32px 1fr 22px;
        gap: 10px;
        font-size: 16px;
    }

    .accordion details > div {
        padding-left: 42px;
        padding-right: 15px;
    }

    .contact__grid {
        gap: 45px;
    }

    .contact .shell {
        width: var(--shell);
    }

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

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-submit {
        align-items: stretch;
        flex-direction: column;
    }

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

    .footer__social {
        justify-content: flex-start;
    }

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

    .footer__bottom {
        grid-template-columns: 1fr auto;
        gap: 8px;
    }

    .footer__bottom span:nth-child(2) {
        display: none;
    }
}

@media (max-width: 480px) {
    :root {
        --shell: calc(100% - 24px);
    }

    .section {
        padding: 64px 0;
    }

    .main-nav {
        padding: 105px 20px 35px;
        gap: 15px;
    }

    .main-nav > a,
    .nav-dropdown > summary {
        font-size: clamp(25px, 8.5vw, 34px);
    }

    .nav-submenu {
        padding-left: 8px;
    }

    .brand span {
        font-size: 12px;
    }

    .announcement {
        font-size: 10px;
    }

    .hero {
        min-height: 740px;
    }

    .hero__kicker span {
        font-size: 9px;
    }

    .hero__lead {
        font-size: 14px;
    }

    .timeline h4 {
        font-size: 19px;
    }

    .ticket-card {
        padding: 25px;
    }

    .exhibitors__photos {
        min-height: 360px;
    }

    .location dl div {
        grid-template-columns: 82px 1fr;
        gap: 10px;
    }

    .edition-gallery {
        grid-template-columns: 1fr;
    }

    .edition-pagination {
        font-size: 10px;
    }

    .contact-form {
        padding-inline: 18px;
    }

    .contact h2 {
        font-size: clamp(31px, 9.8vw, 40px);
        letter-spacing: -.05em;
        overflow-wrap: anywhere;
    }

    .section-heading h2,
    .tickets h2,
    .exhibitors h2,
    .lineup h2,
    .location h2,
    .faq h2 {
        font-size: clamp(34px, 10.5vw, 46px);
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 260px);
    }

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

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