:root {
    --tour-ink: #111318;
    --tour-charcoal: #1b1d21;
    --tour-paper: #f4f1e8;
    --tour-white: #ffffff;
    --tour-yellow: #ffe817;
    --tour-red: #f13b2d;
    --tour-blue: #54b7e8;
    --tour-muted: #65676d;
    --tour-border: rgba(17, 19, 24, 0.14);
    --tour-radius: 24px;
    --tour-shadow: 0 28px 70px rgba(17, 19, 24, 0.13);
}

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

.tour-site {
    margin: 0;
    background: var(--tour-paper);
    color: var(--tour-ink);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
}

.tour-site * {
    box-sizing: border-box;
}

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

.tour-site button,
.tour-site a {
    font: inherit;
}

.tour-site a {
    color: inherit;
}

.tour-site button {
    color: inherit;
}

.tour-container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.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;
    top: 12px;
    left: 12px;
    z-index: 10000;
    padding: 0.8rem 1rem;
    background: var(--tour-yellow);
    color: var(--tour-ink);
    font-weight: 800;
    text-decoration: none;
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

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

.tour-nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    color: var(--tour-white);
    background: rgba(17, 19, 24, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
}

.tour-nav-inner {
    width: min(1280px, calc(100% - 40px));
    min-height: 78px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.tour-brand {
    display: inline-flex;
    flex-direction: column;
    flex: 0 0 auto;
    color: var(--tour-white);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.05;
    text-decoration: none;
    text-transform: uppercase;
}

.tour-brand strong {
    color: var(--tour-yellow);
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.tour-countdown {
    min-width: 126px;
    margin-left: 8px;
    padding-left: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.22);
    line-height: 1.08;
}

.tour-countdown strong,
.tour-countdown span {
    display: block;
}

.tour-countdown strong {
    color: var(--tour-yellow);
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
}

.tour-countdown span {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tour-nav-links {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.tour-nav-links a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 180ms ease;
}

.tour-nav-links a:hover,
.tour-nav-links a:focus-visible {
    color: var(--tour-white);
}

.tour-nav-links .tour-nav-cta {
    padding: 0.66rem 1rem;
    color: var(--tour-ink);
    background: var(--tour-yellow);
    border-radius: 999px;
}

.tour-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 10px;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.tour-menu-toggle span[aria-hidden="true"] {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--tour-white);
    transition: transform 180ms ease, opacity 180ms ease;
}

.tour-header {
    position: relative;
    overflow: hidden;
    color: var(--tour-white);
    background:
        radial-gradient(circle at 72% 25%, rgba(255, 232, 23, 0.14), transparent 30%),
        linear-gradient(135deg, #111318 0%, #202329 58%, #111318 100%);
}

.tour-header::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.08;
    pointer-events: none;
    background-image: repeating-linear-gradient(120deg, transparent 0 28px, rgba(255, 255, 255, 0.36) 29px, transparent 30px);
}

.tour-hero {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 48px));
    min-height: 820px;
    margin-inline: auto;
    padding: 150px 0 92px;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.68fr);
    align-items: center;
    gap: clamp(48px, 7vw, 104px);
}

.tour-kicker,
.tour-eyebrow {
    margin: 0 0 18px;
    color: var(--tour-red);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.tour-kicker {
    color: var(--tour-yellow);
}

.tour-hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(4rem, 7.5vw, 7rem);
    font-weight: 900;
    font-kerning: normal;
    letter-spacing: -0.025em;
    line-height: 0.92;
    text-transform: uppercase;
}

.tour-hero h1 span {
    color: var(--tour-yellow);
}

.tour-hero-lede {
    max-width: 660px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(1.05rem, 1.5vw, 1.28rem);
    line-height: 1.55;
}

.tour-date-list {
    max-width: 680px;
    margin: 38px 0 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-block: 1px solid rgba(255, 255, 255, 0.18);
}

.tour-date-list a {
    padding: 18px 14px 18px 0;
    display: flex;
    align-items: baseline;
    gap: 10px;
    color: var(--tour-white);
    text-decoration: none;
}

.tour-date-list a + a {
    padding-left: 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.tour-date-list strong {
    color: var(--tour-yellow);
    font-size: 0.76rem;
    letter-spacing: 0.06em;
}

.tour-date-list span {
    font-size: 0.88rem;
    font-weight: 800;
}

.tour-hero-actions,
.city-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 18px;
}

.tour-hero-actions {
    margin-top: 30px;
}

.tour-button {
    min-height: 48px;
    padding: 0.78rem 1.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.tour-site .tour-button-primary {
    color: var(--tour-ink);
    background: var(--tour-yellow);
    box-shadow: 0 12px 28px rgba(255, 232, 23, 0.14);
}

.tour-site .tour-button-ghost {
    color: var(--tour-white);
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.04);
}

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

.tour-tagline {
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.035em;
}

.tour-hero-art {
    position: relative;
}

.tour-hero-art::before,
.tour-hero-art::after {
    content: "";
    position: absolute;
    z-index: -1;
}

.tour-hero-art::before {
    width: 68%;
    height: 40%;
    top: -24px;
    right: -26px;
    background: var(--tour-yellow);
}

.tour-hero-art::after {
    width: 48%;
    height: 28%;
    bottom: -22px;
    left: -22px;
    border: 2px solid var(--tour-red);
}

.poster-trigger {
    border: 0;
    cursor: zoom-in;
}

.tour-hero-art .poster-trigger {
    position: relative;
    width: 100%;
    padding: 0;
    overflow: hidden;
    background: #24262b;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.48);
    transform: rotate(1.5deg);
    transition: transform 220ms ease;
}

.tour-hero-art .poster-trigger:hover,
.tour-hero-art .poster-trigger:focus-visible {
    transform: rotate(0deg) translateY(-4px);
}

.tour-hero-art .poster-trigger img {
    width: 100%;
    height: auto;
}

.tour-hero-art .poster-trigger picture {
    display: block;
}

.tour-hero-art .poster-trigger span {
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 0.55rem 0.75rem;
    color: var(--tour-ink);
    background: var(--tour-yellow);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
}

.tour-marquee {
    position: relative;
    z-index: 2;
    overflow: hidden;
    color: var(--tour-ink);
    background: var(--tour-yellow);
}

.tour-marquee > div {
    width: min(1320px, calc(100% - 32px));
    min-height: 70px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.tour-marquee span {
    font-size: clamp(0.72rem, 1.1vw, 0.9rem);
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.tour-marquee span:not(:last-child)::after {
    content: "✦";
    margin-left: clamp(20px, 3vw, 48px);
}

.tour-festivals,
.tour-about {
    padding: 120px 0;
}

.tour-section-heading {
    max-width: 780px;
    margin-bottom: 66px;
}

.tour-section-heading h2,
.tour-sponsor-copy h2,
.tour-volunteer-copy h2 {
    margin: 0;
    font-size: clamp(2.7rem, 5vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 0.98;
}

.tour-section-heading > p:last-child,
.tour-sponsor-copy > p,
.tour-volunteer-copy > p {
    max-width: 700px;
    margin: 24px 0 0;
    color: var(--tour-muted);
    font-size: 1.05rem;
}

.city-feature {
    --city-accent: var(--tour-yellow);
    --city-watermark-opacity: 0.1;
    margin-top: 46px;
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    background: var(--tour-white);
    border: 1px solid var(--tour-border);
    border-radius: var(--tour-radius);
    box-shadow: var(--tour-shadow);
}

.city-calgary {
    --city-accent: #d8d8d8;
    --city-watermark-opacity: 0.13;
}

.city-red-deer {
    --city-accent: var(--tour-red);
    --city-watermark-opacity: 0.055;
}

.city-cover {
    overflow: hidden;
    background: var(--tour-ink);
}

.city-edmonton .city-cover {
    background: var(--tour-yellow);
}

.city-calgary .city-cover {
    background: #1b1d21;
}

.city-red-deer .city-cover {
    background: var(--tour-red);
}

.city-cover img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.city-cover picture {
    display: block;
    width: 100%;
    height: auto;
}

.city-calgary .city-cover {
    order: 0;
}

.city-details {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(34px, 4vw, 52px);
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    grid-template-rows: auto auto auto auto auto;
    align-items: start;
    gap: 12px clamp(30px, 4vw, 64px);
    border-top: 8px solid var(--city-accent);
}

.city-details::before {
    position: absolute;
    top: 50%;
    left: -0.045em;
    z-index: 0;
    color: var(--city-accent);
    font-size: clamp(7rem, 18vw, 14rem);
    font-weight: 900;
    letter-spacing: -0.085em;
    line-height: 0.72;
    opacity: var(--city-watermark-opacity);
    text-transform: uppercase;
    white-space: nowrap;
    transform: translateY(-50%);
    pointer-events: none;
    user-select: none;
}

.city-edmonton .city-details::before {
    content: "Edmonton";
}

.city-calgary .city-details::before {
    right: -0.035em;
    left: auto;
    content: "Calgary";
}

.city-red-deer .city-details::before {
    top: 46%;
    left: 0.12em;
    content: "Red Deer";
}

.city-details > * {
    position: relative;
    z-index: 1;
}

.city-details > .city-number {
    position: absolute;
}

.city-number {
    position: absolute;
    top: 22px;
    right: 28px;
    color: rgba(17, 19, 24, 0.09);
    font-size: 4.8rem;
    font-weight: 900;
    letter-spacing: -0.08em;
    line-height: 1;
}

.city-date {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    color: var(--tour-muted);
    font-size: 0.77rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.city-details h3 {
    grid-column: 1;
    grid-row: 2 / span 3;
    margin: 0;
    max-width: 100%;
    font-size: clamp(3rem, 5vw, 4.8rem);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 0.94;
    text-transform: uppercase;
}

.city-location {
    grid-column: 2;
    grid-row: 1;
    min-height: 0;
    margin: 0;
    color: var(--tour-muted);
    font-size: 0.95rem;
    font-weight: 600;
}

.city-time {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    font-size: 0.86rem;
}

.city-time strong {
    font-size: 1rem;
}

.city-lineup {
    grid-column: 2;
    grid-row: 3;
    margin: 12px 0 0;
    padding-top: 18px;
    border-top: 1px solid var(--tour-border);
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.05;
}

.city-lineup span {
    display: block;
    margin-bottom: 7px;
    color: var(--tour-muted);
    font-size: 0.67rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.city-supporting {
    grid-column: 2;
    grid-row: 4;
    margin: 0;
    color: var(--tour-muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.city-actions {
    grid-column: 1 / 3;
    grid-row: 5;
    margin-top: 24px;
    padding-top: 26px;
    border-top: 1px solid var(--tour-border);
}

.city-search-content {
    grid-column: 1 / 3;
    grid-row: 6;
    margin-top: 18px;
    padding-top: 30px;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(28px, 4vw, 58px);
    border-top: 1px solid var(--tour-border);
}

.city-search-content h4 {
    margin: 0 0 10px;
    color: var(--tour-ink);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.city-search-content p {
    margin: 0;
    color: var(--tour-muted);
    font-size: 0.82rem;
    line-height: 1.65;
}

.city-highlights ul {
    margin: 18px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.city-highlights li {
    padding: 0.45rem 0.7rem;
    color: var(--tour-ink);
    background: var(--tour-paper);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
}

.tour-text-button {
    padding: 6px 0;
    color: var(--tour-ink);
    background: transparent;
    border: 0;
    border-bottom: 1px solid currentColor;
    border-radius: 0;
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.tour-sponsorship {
    padding: 112px 0;
    color: var(--tour-white);
    background: var(--tour-ink);
}

.tour-sponsor-grid,
.tour-volunteer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    align-items: center;
    gap: clamp(48px, 8vw, 120px);
}

.tour-sponsor-copy .tour-eyebrow {
    color: var(--tour-yellow);
}

.tour-sponsor-copy > p {
    color: rgba(255, 255, 255, 0.66);
}

.tour-check-list {
    margin: 30px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
    list-style: none;
}

.tour-check-list li {
    position: relative;
    padding-left: 28px;
    color: rgba(255, 255, 255, 0.83);
    font-size: 0.9rem;
    font-weight: 600;
}

.tour-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--tour-yellow);
    font-weight: 900;
}

.tour-sponsor-card {
    padding: clamp(34px, 5vw, 58px);
    color: var(--tour-ink);
    background: var(--tour-white);
    border-top: 10px solid var(--tour-yellow);
    box-shadow: 16px 16px 0 var(--tour-red);
}

.tour-sponsor-card-label {
    display: block;
    color: var(--tour-muted);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.tour-sponsor-card > strong {
    display: block;
    margin: 16px 0 30px;
    font-size: clamp(2rem, 3.5vw, 3.3rem);
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.tour-sponsor-card > p {
    margin: 22px 0 0;
    color: var(--tour-muted);
    font-size: 0.82rem;
}

.tour-sponsor-card > p a {
    color: var(--tour-ink);
    font-weight: 800;
}

.tour-volunteer {
    padding: 110px 0;
    background: var(--tour-blue);
}

.tour-volunteer-grid {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
}

.tour-volunteer-badge {
    min-height: 360px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    color: var(--tour-white);
    background: var(--tour-ink);
    box-shadow: 16px 16px 0 var(--tour-yellow);
}

.tour-volunteer-badge span {
    margin-bottom: auto;
    color: var(--tour-yellow);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.tour-volunteer-badge strong {
    font-size: clamp(2.2rem, 4vw, 3.7rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 0.95;
}

.tour-volunteer-badge time {
    margin-top: 28px;
    font-weight: 800;
}

.tour-volunteer-badge small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.62);
}

.tour-volunteer-copy .tour-eyebrow {
    color: var(--tour-ink);
}

.tour-volunteer-copy > p {
    color: rgba(17, 19, 24, 0.7);
}

.tour-volunteer-copy .tour-button {
    margin-top: 30px;
}

.tour-volunteer-copy .tour-note {
    margin-top: 14px;
    font-size: 0.76rem;
    font-weight: 700;
}

.tour-about {
    background: var(--tour-white);
}

.tour-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tour-values article {
    position: relative;
    min-height: 330px;
    padding: 38px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 0;
    border-radius: 22px;
}

.tour-values article:nth-child(1) {
    background: var(--tour-yellow);
}

.tour-values article:nth-child(2) {
    background: var(--tour-blue);
}

.tour-values article:nth-child(3) {
    color: var(--tour-white);
    background: var(--tour-ink);
}

.tour-values article::after {
    content: "";
    position: absolute;
    top: -48px;
    right: -38px;
    width: 150px;
    height: 150px;
    border: 24px solid rgba(17, 19, 24, 0.08);
    border-radius: 50%;
}

.tour-values article:nth-child(3)::after {
    border-color: rgba(241, 59, 45, 0.58);
}

.tour-values span {
    position: relative;
    z-index: 1;
    color: rgba(17, 19, 24, 0.34);
    font-size: 1.1rem;
    font-weight: 900;
}

.tour-values article:nth-child(3) span {
    color: var(--tour-red);
}

.tour-values h3 {
    position: relative;
    z-index: 1;
    max-width: 290px;
    margin: auto 0 16px;
    font-size: clamp(1.65rem, 2.5vw, 2.25rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1.02;
}

.tour-values p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(17, 19, 24, 0.7);
    font-size: 0.9rem;
    font-weight: 600;
}

.tour-values article:nth-child(3) p {
    color: rgba(255, 255, 255, 0.68);
}

.tour-footer {
    padding: 78px 0 26px;
    color: var(--tour-white);
    background: var(--tour-charcoal);
}

.tour-footer-main {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 0.8fr;
    gap: 60px;
}

.tour-brand-footer {
    margin-bottom: 20px;
}

.tour-footer h2 {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.tour-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.86rem;
}

.tour-footer a {
    color: var(--tour-white);
}

.tour-footer-main > div:first-child p {
    max-width: 380px;
}

.tour-footer-bottom {
    margin-top: 64px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.poster-dialog[hidden] {
    display: none;
}

.poster-dialog {
    position: fixed;
    inset: 0;
    z-index: 9999;
    padding: 32px;
    display: grid;
    place-items: center;
}

.poster-dialog-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 6, 8, 0.94);
    backdrop-filter: blur(8px);
}

.poster-dialog-panel {
    position: relative;
    z-index: 1;
    max-width: min(92vw, 920px);
    max-height: 92vh;
}

.poster-dialog-panel img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    margin-inline: auto;
    object-fit: contain;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.poster-dialog-close {
    position: absolute;
    top: -18px;
    right: -18px;
    z-index: 2;
    width: 46px;
    height: 46px;
    color: var(--tour-ink);
    background: var(--tour-yellow);
    border: 0;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.tour-site :focus-visible {
    outline: 3px solid var(--tour-blue);
    outline-offset: 4px;
}

.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 1050px) {
    .tour-nav-links {
        gap: 16px;
    }

    .tour-nav-links a:not(.tour-nav-cta) {
        font-size: 0.79rem;
    }

    .tour-hero {
        grid-template-columns: minmax(0, 1fr) minmax(290px, 0.54fr);
        gap: 54px;
    }

    .tour-hero h1 {
        font-size: clamp(3.8rem, 8vw, 6.3rem);
    }

}

@media (max-width: 860px) {
    .tour-nav-inner {
        min-height: 70px;
    }

    .tour-countdown {
        margin-left: auto;
    }

    .tour-menu-toggle {
        display: block;
        margin-left: 0;
    }

    .tour-nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        margin: 0;
        padding: 20px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        background: rgba(17, 19, 24, 0.98);
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .tour-nav-links.is-open {
        display: flex;
    }

    .tour-nav-links a,
    .tour-nav-links a:not(.tour-nav-cta) {
        padding: 0.85rem 0.35rem;
        font-size: 0.92rem;
    }

    .tour-nav-links .tour-nav-cta {
        margin-top: 8px;
        padding-inline: 1rem;
        align-self: flex-start;
    }

    .tour-menu-toggle[aria-expanded="true"] span[aria-hidden="true"]:nth-of-type(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .tour-menu-toggle[aria-expanded="true"] span[aria-hidden="true"]:nth-of-type(2) {
        opacity: 0;
    }

    .tour-menu-toggle[aria-expanded="true"] span[aria-hidden="true"]:nth-of-type(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .tour-hero {
        min-height: auto;
        padding-top: 128px;
        grid-template-columns: 1fr;
    }

    .tour-hero-copy {
        max-width: 720px;
    }

    .tour-hero-art {
        width: min(520px, 90%);
        margin-inline: auto;
    }

    .tour-marquee > div {
        justify-content: center;
        flex-wrap: wrap;
        padding: 18px 0;
    }

    .tour-marquee span:not(:last-child)::after {
        margin-left: 24px;
    }

    .city-feature,
    .tour-sponsor-grid,
    .tour-volunteer-grid {
        grid-template-columns: 1fr;
    }

    .city-cover,
    .city-calgary .city-cover {
        min-height: 0;
        order: 0;
    }

    .city-details {
        min-height: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .city-location {
        min-height: auto;
        margin: 20px 0 0;
    }

    .city-time {
        margin: 16px 0 0;
    }

    .city-lineup {
        margin: 30px 0 0;
        padding: 24px 0 0;
        border-top: 1px solid var(--tour-border);
        border-left: 0;
    }

    .city-supporting {
        margin: 9px 0 0;
        padding-left: 0;
    }

    .city-actions {
        margin-top: 30px;
    }

    .city-search-content {
        width: 100%;
        margin-top: 24px;
    }

    .tour-sponsor-card {
        width: min(580px, calc(100% - 18px));
    }

    .tour-volunteer-badge {
        width: min(520px, calc(100% - 18px));
    }

    .tour-values {
        grid-template-columns: 1fr;
    }

    .tour-values article {
        min-height: 250px;
    }
}

@media (max-width: 620px) {
    html {
        scroll-padding-top: 76px;
    }

    .tour-container,
    .tour-hero {
        width: min(100% - 30px, 1180px);
    }

    .tour-nav-inner {
        width: calc(100% - 28px);
    }

    .tour-countdown {
        min-width: 0;
        margin-left: auto;
        padding-left: 14px;
    }

    .tour-countdown strong {
        font-size: 0.78rem;
    }

    .tour-countdown span {
        font-size: 0.58rem;
    }

    .tour-hero {
        padding: 116px 0 72px;
        gap: 56px;
    }

    .tour-kicker,
    .tour-eyebrow {
        font-size: 0.69rem;
    }

    .tour-hero h1 {
        font-size: clamp(3.35rem, 17vw, 5.1rem);
    }

    .tour-hero-lede {
        margin-top: 24px;
    }

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

    .tour-date-list a,
    .tour-date-list a + a {
        padding: 13px 0;
        border-left: 0;
    }

    .tour-date-list a + a {
        border-top: 1px solid rgba(255, 255, 255, 0.14);
    }

    .tour-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .tour-hero-actions .tour-button {
        width: 100%;
    }

    .tour-tagline span {
        display: none;
    }

    .tour-tagline {
        display: grid;
        gap: 4px;
    }

    .tour-marquee span:nth-child(4),
    .tour-marquee span:nth-child(5) {
        display: none;
    }

    .tour-festivals,
    .tour-about {
        padding: 80px 0;
    }

    .tour-section-heading {
        margin-bottom: 44px;
    }

    .tour-section-heading h2,
    .tour-sponsor-copy h2,
    .tour-volunteer-copy h2 {
        font-size: clamp(2.55rem, 13vw, 4rem);
    }

    .tour-section-heading > p:last-child,
    .tour-sponsor-copy > p,
    .tour-volunteer-copy > p {
        font-size: 0.94rem;
    }

    .city-feature {
        margin-top: 30px;
        border-radius: 16px;
    }

    .city-details {
        min-height: 0;
        padding: 34px 26px 38px;
    }

    .city-details::before {
        top: 31%;
        font-size: clamp(5.5rem, 29vw, 8rem);
    }

    .city-red-deer .city-details::before {
        top: 29%;
        left: -0.02em;
    }

    .city-number {
        top: 18px;
        right: 20px;
        font-size: 3.7rem;
    }

    .city-details h3 {
        font-size: clamp(3rem, 16vw, 4.5rem);
    }

    .city-actions {
        align-items: flex-start;
    }

    .city-actions .tour-button {
        width: 100%;
    }

    .city-search-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .tour-sponsorship,
    .tour-volunteer {
        padding: 80px 0;
    }

    .tour-sponsor-card,
    .tour-volunteer-badge {
        width: calc(100% - 12px);
        padding: 34px 28px;
        box-shadow: 10px 10px 0 var(--tour-red);
    }

    .tour-volunteer-badge {
        min-height: 320px;
        box-shadow: 10px 10px 0 var(--tour-yellow);
    }

    .tour-values article {
        min-height: 240px;
        padding: 28px;
    }

    .tour-footer-main {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .tour-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .poster-dialog {
        padding: 18px;
    }

    .poster-dialog-close {
        top: -12px;
        right: -8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .js .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .tour-button,
    .tour-hero-art .poster-trigger,
    .tour-menu-toggle span[aria-hidden="true"] {
        transition: none;
    }
}
