:root {
    --color-bg: #f3f6fb;
    --color-surface: #ffffff;
    --color-ink: #141414;
    --color-title: #241508;
    --color-muted: #6d6d73;
    --color-line: #ececee;
    --color-accent: #141414;
    --color-accent-hover: #333333;
    --color-button: #3a2306;
    --color-button-hover: #52310c;
    --color-green: #2f7d57;
    --color-yellow: #141414;
    --font-display: Georgia, "Palatino Linotype", Palatino, serif;
    --font-body: "Segoe UI", system-ui, sans-serif;
    --space: 1rem;
    --radius: 1.15rem;
    --radius-sm: 0.85rem;
    --shadow: 0 18px 50px rgb(20 20 20 / 0.06);
    --max: 72rem;
    --header-h: 4.6rem;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    min-height: 100vh;
    padding-top: var(--header-h);
    color: var(--color-ink);
    font-family: var(--font-body);
    font-size: 1.02rem;
    line-height: 1.55;
    background:
        radial-gradient(120% 80% at 100% 0%, #fde8dc 0%, transparent 42%),
        radial-gradient(90% 70% at 0% 0%, #e7eefc 0%, transparent 46%),
        var(--color-bg);
}

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

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

a:hover { color: var(--color-accent-hover); }

:focus-visible {
    outline: 3px solid var(--color-ink);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--color-ink);
    color: #fff;
    padding: 0.5rem 1rem;
    z-index: 20;
}

.skip-link:focus { left: 0.5rem; top: 0.5rem; z-index: 40; }

.shell {
    width: min(var(--max), calc(100% - 1.5rem));
    margin: 0.75rem auto 2.5rem;
    background: var(--color-surface);
    border-radius: 2rem;
    box-shadow: var(--shadow);
    padding: 0.75rem 1.1rem 1.5rem;
}

.wrap { width: 100%; }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 30;
    width: 100%;
    background: rgb(255 255 255 / 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid transparent;
    transition:
        background 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}

.site-header.is-scrolled {
    background: rgb(255 255 255 / 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom-color: var(--color-line);
    box-shadow: 0 10px 32px rgb(20 20 20 / 0.08);
}

.site-header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.75rem 1rem;
    width: min(var(--max), calc(100% - 1.5rem));
    margin: 0 auto;
    padding: 0.7rem 0.2rem;
    transition: padding 0.28s ease;
}

.site-header.is-scrolled .site-header__inner {
    padding-block: 0.4rem;
}

.brand {
    justify-self: start;
    color: var(--color-ink);
    font-family: var(--font-body);
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.brand small {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--color-muted);
}

.city-picker {
    grid-column: 2;
    justify-self: center;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 0.45rem;
    min-height: 2.7rem;
    padding: 0.35rem 0.85rem 0.35rem 0.7rem;
    background: #f4f4f5;
    color: var(--color-ink);
    border: 1px solid var(--color-line);
    box-shadow: 0 8px 22px rgb(20 20 20 / 0.05);
}

.city-picker:hover,
.city-picker:focus-visible {
    background: #fff;
    color: var(--color-ink);
    border-color: var(--color-ink);
}

.city-picker__pin {
    position: relative;
    display: grid;
    place-items: center;
    width: 1.35rem;
    height: 1.45rem;
    color: var(--color-ink);
    animation: pin-idle 2.2s ease-in-out infinite;
}

.city-picker__pin i {
    position: absolute;
    bottom: 0.05rem;
    left: 50%;
    width: 0.42rem;
    height: 0.14rem;
    border-radius: 50%;
    background: rgb(20 20 20 / 0.22);
    transform: translateX(-50%);
}

.city-picker:hover .city-picker__pin,
.city-picker:focus-visible .city-picker__pin {
    animation: pin-drop 0.5s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}

.city-picker__value {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.city-picker__caret {
    flex-shrink: 0;
    opacity: 0.55;
    transition: transform 0.2s ease;
}

.city-picker[aria-expanded="true"] .city-picker__caret {
    transform: rotate(180deg);
}

@keyframes pin-idle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

@keyframes pin-drop {
    0% { transform: translateY(-7px); }
    60% { transform: translateY(1px); }
    100% { transform: translateY(0); }
}

.city-form,
.search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    align-items: center;
}

.city-form select {
    min-width: min(16rem, 100%);
    text-align: center;
    text-align-last: center;
}

.site-footer__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    align-items: center;
    justify-content: space-between;
}

label.sr-only,
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

select,
input[type="search"],
input[type="text"],
input[type="date"] {
    font: inherit;
    color: inherit;
    background: #f7f7f8;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    padding: 0.4rem 0.85rem;
    min-height: 2.45rem;
}

.button,
button {
    font: inherit;
    font-weight: 700;
    border: 0;
    background: var(--color-button);
    color: #fff;
    padding: 0.45rem 1.05rem;
    min-height: 2.45rem;
    border-radius: 999px;
    cursor: pointer;
    text-decoration: none;
}

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

.button--ghost,
button.ghost {
    background: transparent;
    color: var(--color-ink);
    border: 1px solid var(--color-line);
}

.button--ghost:hover,
button.ghost:hover {
    background: #f4f4f5;
    color: var(--color-ink);
}

.page-lead {
    width: 100%;
    margin: 0 auto;
}

.banner {
    position: relative;
    isolation: isolate;
    display: grid;
    align-items: end;
    min-height: clamp(22rem, 68vh, 38rem);
    color: #fff;
    background: #1a1a1a;
}

.banner__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(80% 70% at 80% 0%, #3a3228 0%, transparent 55%),
        #1c1916;
}

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

.banner::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgb(20 20 20 / 0.12) 0%, rgb(20 20 20 / 0.42) 42%, rgb(20 20 20 / 0.88) 100%);
}

.banner__inner {
    position: relative;
    z-index: 2;
    width: min(var(--max), calc(100% - 1.5rem));
    margin: 0 auto;
    padding: 4.2rem 0 4.6rem;
}

.banner__kicker {
    display: inline-flex;
    margin: 0 0 0.85rem;
    padding: 0.28rem 0.7rem;
    border: 1px solid rgb(255 255 255 / 0.28);
    border-radius: 999px;
    background: rgb(20 20 20 / 0.28);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.banner h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.05;
    max-width: 16ch;
    margin: 0 0 0.75rem;
}

.banner__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.85rem;
    margin: 0 0 0.7rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: capitalize;
    color: rgb(255 255 255 / 0.88);
}

.banner__summary {
    max-width: 42ch;
    margin: 0 0 1.25rem;
    color: rgb(255 255 255 / 0.82);
    font-size: 1.02rem;
    line-height: 1.45;
}

.banner__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    margin: 0;
}

.banner .pill--free {
    margin: 0;
    background: rgb(255 255 255 / 0.94);
    color: var(--color-green);
}

.banner__cta,
.banner__cta:hover {
    background: #fff;
    color: var(--color-ink);
}

.hero {
    text-align: center;
    padding: 1.5rem 0.5rem 2rem;
}

.hero--compact {
    position: relative;
    z-index: 5;
    width: min(var(--max), calc(100% - 1.5rem));
    margin: -2.3rem auto 0;
    padding: 0;
}

.hero--compact .hero-search {
    max-width: none;
    padding: 0.55rem;
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: var(--shadow);
}

.hero--compact .hero-search input { box-shadow: none; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    margin: 0 0 1.1rem;
    padding: 0.3rem 0.75rem;
    border: 1px solid rgb(20 20 20 / 0.08);
    border-radius: 999px;
    background: rgb(255 255 255 / 0.5);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-muted);
}

.hero h1 {
    color: var(--color-title);
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 6vw, 3.6rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.08;
    max-width: 16ch;
    margin: 0 auto 0.85rem;
}

.hero__lead {
    margin: 0 auto 1.4rem;
    max-width: 42ch;
    color: var(--color-muted);
}

.hero-search {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 auto;
    max-width: 34rem;
}

.hero-search input {
    flex: 1 1 14rem;
    background: #fff;
    box-shadow: 0 8px 24px rgb(20 20 20 / 0.05);
}

.hero__hint {
    margin: 0.7rem 0 0;
    font-size: 0.84rem;
    color: var(--color-muted);
}

.page-intro { padding: 1.5rem 0.4rem 0.4rem; }

.page-intro h1 {
    color: var(--color-title);
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    letter-spacing: -0.04em;
    margin: 0 0 0.4rem;
}

.page-intro p { margin: 0; color: var(--color-muted); }

.section { padding: 3.4rem 0.4rem 0.35rem; }

.shell > main > .section:first-child { padding-top: 1.5rem; }

.section__head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
    margin: 0 0 1.25rem;
}

.section h2 {
    color: var(--color-title);
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.2vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    margin: 0;
}

.section h2 span,
.section__head a {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-muted);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(16.5rem, 1fr));
    gap: 1.2rem;
}

.empty {
    border: 1px dashed var(--color-line);
    border-radius: var(--radius-sm);
    padding: 1.1rem;
    color: var(--color-muted);
}

.event-card {
    display: flex;
    flex-direction: column;
    color: inherit;
    min-height: 100%;
    background: #fafafa;
    border-radius: var(--radius);
    overflow: hidden;
}

.event-card:hover { color: inherit; }

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

.event-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #ececee;
}

.event-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.event-card__badge {
    position: absolute;
    top: 0.7rem;
    left: 0.7rem;
    display: grid;
    place-items: center;
    min-width: 3.15rem;
    margin: 0;
    padding: 0.35rem 0.45rem;
    background: rgb(255 255 255 / 0.96);
    border-radius: 0.7rem;
    line-height: 1.05;
    text-align: center;
}

.event-card__badge strong { font-size: 1.12rem; font-weight: 800; }

.event-card__badge span {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: lowercase;
    color: var(--color-muted);
}

.event-card__city {
    position: absolute;
    right: 0.7rem;
    bottom: 0.7rem;
    max-width: calc(100% - 1.4rem);
    margin: 0;
    padding: 0.28rem 0.62rem;
    overflow: hidden;
    border-radius: 999px;
    background: rgb(20 20 20 / 0.78);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.event-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0.95rem 1rem 1.05rem;
}

.event-card__when {
    margin: 0 0 0.4rem;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: capitalize;
    color: var(--color-ink);
}

.event-card h3 {
    color: var(--color-title);
    font-size: 1.14rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.25;
    margin: 0 0 0.4rem;
}

.event-card__place {
    margin: 0 0 0.5rem;
    font-size: 0.92rem;
    color: var(--color-muted);
}

.event-card__summary {
    margin: 0 0 0.7rem;
    color: var(--color-muted);
    font-size: 0.9rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin: 0;
}

.event-card__footer {
    margin: auto 0 0;
    padding-top: 0.85rem;
}

.event-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 2.45rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: var(--color-button);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
}

.event-card:hover .event-card__cta {
    background: var(--color-button-hover);
    color: #fff;
}

.tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.22rem 0.62rem;
    margin: 0.15rem 0.15rem 0 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.event-card__tags .tag { margin: 0; }

a.tag:hover { filter: brightness(0.96); color: inherit; }

.tag--mpb { background: #fde2ea; color: #8a2048; }
.tag--rock { background: #ececec; color: #222; }
.tag--sertanejo { background: #fdecc8; color: #8a5a12; }
.tag--jazz { background: #e3e0fb; color: #3b2f8f; }
.tag--teatro { background: #f8d9d4; color: #8b2b22; }
.tag--danca { background: #f8d7ee; color: #8a246e; }
.tag--cinema { background: #dce7fb; color: #244a8a; }
.tag--exposicao { background: #d8f0ea; color: #1b6a5a; }
.tag--oficina { background: #e5f3c9; color: #4a6b14; }
.tag--festival { background: #ffe1c4; color: #9a4a10; }
.tag--gastronomia { background: #f8ddd0; color: #8a3a1c; }
.tag--cafe { background: #eadfd3; color: #6b4226; }
.tag--literatura { background: #dceadf; color: #2d5a3a; }
.tag--familia { background: #d8eef8; color: #1d5a78; }
.tag--infantil { background: #fff1b8; color: #7a5b00; }
.tag--tone-0 { background: #ece8ff; color: #3d2f8c; }
.tag--tone-1 { background: #fde2ea; color: #8a2048; }
.tag--tone-2 { background: #e7f4ee; color: #1f5c40; }
.tag--tone-3 { background: #ffe1c4; color: #9a4a10; }
.tag--tone-4 { background: #dce7fb; color: #244a8a; }
.tag--tone-5 { background: #eadfd3; color: #6b4226; }

.pill {
    display: inline-block;
    border-radius: 999px;
    padding: 0.15rem 0.55rem;
    margin: 0.15rem 0.15rem 0 0;
    font-size: 0.75rem;
    font-weight: 700;
    background: #f4f4f5;
    color: var(--color-muted);
}

.event-card .pill--free {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    margin: 0;
    background: rgb(255 255 255 / 0.94);
    color: var(--color-green);
}

.pill--free { background: var(--color-green); color: #fff; }

.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.chip {
    display: inline-block;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: #f7f7f8;
    color: inherit;
    font-weight: 600;
}

.chip:hover { background: var(--color-ink); color: #fff; }

.event-page { padding: 0.8rem 0.4rem 2rem; }

.event-page__layout {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.35rem;
}

.event-page h1 {
    color: var(--color-title);
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin: 0 0 0.7rem;
}

.poster {
    border-radius: 1.4rem;
    overflow: hidden;
    min-height: 14rem;
    background: #ececee;
}

.poster img { width: 100%; height: min(26rem, 62vw); object-fit: cover; }

.panel {
    background: #fafafa;
    border-radius: var(--radius);
    padding: 1.15rem 1.2rem;
}

.panel p { margin: 0 0 0.85rem; }

.panel p:last-child { margin-bottom: 0; }

.actions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0; }

.filters {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem 0.9rem;
    align-items: end;
    margin: 1.15rem 0 0;
    padding: 1rem;
    background: #fafafa;
    border-radius: var(--radius);
}

.filters > * { min-width: 0; }

.filters label {
    display: grid;
    gap: 0.35rem;
    font-size: 0.88rem;
    font-weight: 600;
}

.filters input:not([type="checkbox"]),
.filters select {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    border-radius: var(--radius-sm);
}

.filters select {
    appearance: none;
    background-color: #f7f7f8;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath fill='%236d6d73' d='M4.2 6.2 8 10l3.8-3.8 1.2 1.2L8 12.4 3 7.4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    background-size: 0.75rem;
    padding-right: 2.2rem;
}

.filters input[type="date"] {
    appearance: none;
    min-width: 0;
}

.filters input[type="date"]::-webkit-calendar-picker-indicator {
    margin: 0;
    cursor: pointer;
    opacity: 0.7;
}

.filters__check {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    min-height: 2.55rem;
}

.filters__check input {
    width: 1.1rem;
    height: 1.1rem;
    min-height: 0;
    margin: 0;
    accent-color: var(--color-ink);
    flex-shrink: 0;
}

.filters__submit { width: 100%; }

@media (min-width: 560px) {
    .filters { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .filters__q { grid-column: 1 / -1; }
}

@media (min-width: 840px) {
    .filters { grid-template-columns: repeat(4, minmax(0, 1fr)); }

    .filters__q { grid-column: span 2; }
}

.pagination {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin: 1.25rem 0;
}

.site-footer {
    margin-top: 2.2rem;
    padding: 1.1rem 0.4rem 0.2rem;
    font-size: 0.88rem;
    color: var(--color-muted);
}

.site-footer__cities { margin: 0.7rem 0 0; }

.muted { color: var(--color-muted); }

.geo-status {
    min-height: 1.1em;
    margin: 0.15rem 0.4rem 0;
    font-size: 0.82rem;
    color: var(--color-muted);
}

.dialog {
    border: 0;
    border-radius: var(--radius);
    background: var(--color-surface);
    padding: 0;
    max-width: 28rem;
    box-shadow: var(--shadow);
}

.dialog::backdrop,
.city-dialog::backdrop { background: rgb(20 20 20 / 0.4); }

.dialog__body { padding: 1.15rem; }

.dialog ol { padding-left: 1.1rem; }

.dialog button { margin-top: 0.35rem; width: 100%; }

.city-dialog {
    width: min(32rem, calc(100vw - 1.5rem));
    max-width: none;
    margin: auto;
    border: 0;
    border-radius: 1.4rem;
    padding: 1.35rem 1.3rem 1.2rem;
    background: var(--color-surface);
    box-shadow: var(--shadow);
}

.city-dialog__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.city-dialog h2 {
    margin: 0;
    color: var(--color-title);
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.city-dialog__head .ghost {
    width: auto;
    margin: 0;
}

.city-dialog input[type="search"] {
    width: 100%;
    background: #f7f7f8;
}

.city-dialog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(9.25rem, 1fr));
    gap: 0.5rem;
    margin-top: 0.95rem;
    max-height: min(26rem, 55vh);
    overflow: auto;
}

.city-option {
    width: 100%;
    margin: 0;
    background: #f7f7f8;
    color: var(--color-ink);
    font-weight: 600;
    min-height: 2.85rem;
    padding: 0.55rem 0.75rem;
    text-align: center;
}

.city-option:hover,
.city-option:focus-visible {
    background: #ececee;
    color: var(--color-ink);
}

.city-option.is-current {
    background: var(--color-ink);
    color: #fff;
}

.city-option.is-current:hover {
    background: var(--color-accent-hover);
    color: #fff;
}

@media (max-width: 639px) {
    :root { --header-h: 6.6rem; }

    .site-header__inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .brand,
    .city-picker {
        grid-column: 1;
        justify-self: center;
    }
}

@media (min-width: 840px) {
    .shell { padding: 0.9rem 1.6rem 1.8rem; }

    .event-page__layout { grid-template-columns: 1.5fr 0.9fr; align-items: start; }
}

@media (min-width: 1100px) {
    .hero:not(.hero--compact) { padding-top: 2.2rem; }
}

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

    .site-header,
    .site-header__inner,
    .city-picker__pin {
        animation: none;
        transition: none;
    }
}
