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

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #fff;
    color: #000;
    line-height: 1.6;
    max-width: 100%;
    overflow-x: clip;
}

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

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    border-bottom: 1px solid #eee;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
}

.header__email {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.01em;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.header.is-scrolled .header__email {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.header__right {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.header__brand {
    display: none;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding-right: 16px;
    margin-right: 16px;
    border-right: 1px solid #eee;
    white-space: nowrap;
    transition: opacity 0.25s ease;
}

.header.is-scrolled .header__brand {
    display: block;
}

.header__social {
    display: flex;
    align-items: stretch;
}

.header:not(.is-scrolled) .header__social {
    border-left: 1px solid #eee;
}

.header__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 36px;
    border-right: 1px solid #eee;
    transition: opacity 0.2s;
}

.header__social-link:last-child {
    border-right: none;
}

.header__social-link:hover {
    opacity: 0.6;
}

.header__social-link svg {
    width: 16px;
    height: 16px;
    fill: #000;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 52vh;
    padding: 60px 24px 80px;
    text-align: center;
}

.hero__name {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.05;
    text-transform: uppercase;
}

.hero__subtitle {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.content {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 48px 80px;
}

.content p:first-child {
    margin-bottom: 28px;
}

.content p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
    margin-bottom: 20px;
}

.content ul,
.content ol {
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 20px 1.2em;
}

.content a {
    text-decoration: underline;
}

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

.venues {
    --venues-gutter: 48px;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 var(--venues-gutter) 120px;
    overflow-x: clip;
}

@media (min-width: 769px) {
    .venues {
        max-width: none;
    }
}

.venues__title {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.venues__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 5px;
}

.venues__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0;
    flex: 1 1 auto;
}

.venues__filter {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 999px;
    background: #fff;
    color: #000;
    font: inherit;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.venues__filter:hover {
    border-color: #999;
}

.venues__filter.is-active {
    border-color: #000;
    background: #000;
    color: #fff;
}

.venues__view-switch {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0;
    margin-left: auto;
    flex: 0 0 auto;
}

.venues__view {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 999px;
    background: #fff;
    color: #000;
    font: inherit;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.venues__view:hover {
    border-color: #999;
}

.venues__view.is-active {
    border-color: #000;
    background: #000;
    color: #fff;
}

.venues__btn-icon {
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.venues__btn-label {
    display: inline;
}

.venues__panel[hidden] {
    display: none !important;
}

.venue-card-item {
    display: contents;
}

.venue-card-item[hidden] {
    display: none !important;
}

.venues__inner {
    width: 100%;
}

.venue-card {
    display: block;
    transition: opacity 0.2s;
}

.venue-card:hover .venue-card__image {
    opacity: 0.92;
}

.venue-card__image {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    width: 100%;
    background: #f0f0f0;
    display: block;
    transition: opacity 0.2s ease;
}

.venue-card__name {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;
}

.venue-card__tag {
    display: inline-block;
    margin-top: 8px;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: capitalize;
    color: #666;
    transition: background 0.2s ease;
}

.venue-card:hover .venue-card__tag {
    background:red;
}

.venues--grid .venues__inner {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.venues--grid .venue-card-item {
    display: block;
    transition: transform 0.3s ease;
    transform-origin: center center;
}

.venues--grid .venue-card-item:hover {
    transform: scale(1.05);
    position: relative;
    z-index: 1;
    border-radius:20px
}


.venues--carousel .venues__carousel {
    position: relative;
}

.venues--carousel .venues__inner {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.venues--carousel .venues__inner::-webkit-scrollbar {
    display: none;
}

.venues--carousel .venue-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
}

.venues__nav {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    color: #000;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

.venues__nav--prev { left: -20px; }
.venues__nav--next { right: -20px; }

.venues--justified .venues__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
}

.venues--justified .venue-card {
    flex: 1 1 180px;
    max-width: calc(33.333% - 11px);
}

.venues--masonry .venues__inner {
    column-count: 3;
    column-gap: 24px;
}

.venues--masonry .venue-card {
    break-inside: avoid;
    margin-bottom: 24px;
}

.venues--list .venues__inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.venues--list .venue-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.venues--list .venue-card__image {
    width: 120px;
    aspect-ratio: 1;
    flex-shrink: 0;
}

.venues--list .venue-card__name {
    margin-top: 0;
    font-size: 16px;
}

.venues--asymmetric .venue-card-item {
    display: block;
    width: calc(33.333% - 11px);
}

.venues--asymmetric .venues__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-start;
}

.venues--asymmetric .venue-card-item.is-portrait {
    width: calc(25% - 12px);
}

.venues--asymmetric .venue-card-item.is-landscape {
    width: calc(50% - 8px);
}

.venues--asymmetric .venue-card-item.is-square {
    width: calc(25% - 12px);
}

.venues--asymmetric .venue-card__image {
    aspect-ratio: 4 / 5;
    width: 100%;
    height: auto;
}

.venues--asymmetric .venue-card-item.is-portrait .venue-card__image {
    aspect-ratio: 3 / 4;
}

.venues--asymmetric .venue-card-item.is-landscape .venue-card__image {
    aspect-ratio: 16 / 10;
}

.venues--asymmetric .venue-card-item.is-square .venue-card__image {
    aspect-ratio: 1;
}

.venues--editorial {
    position: relative;
    width: calc(100% + (2 * var(--venues-gutter)));
    margin-left: calc(-1 * var(--venues-gutter));
    margin-right: calc(-1 * var(--venues-gutter));
    overflow-x: clip;
}

.venues__panel.venues--grid {
    width: 100%;
}

.venues__editorial-stage {
    position: relative;
    width: 100%;
    padding: 4px 0 48px;
    --editorial-gap: 56px;
    --editorial-card-width: 280px;
    --editorial-offset: 0px;
    --editorial-parallax-bg: 0px;
    --editorial-parallax-fg: 0px;
}

.venues__editorial-viewport {
    position: relative;
    z-index: 1;
    overflow: clip;
    width: 100%;
    touch-action: pan-y pinch-zoom;
}

.venues__backdrop {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.venues__backdrop-track {
    display: flex;
    justify-content: center;
    width: 100%;
    font-size: clamp(4.5rem, 16vw, 13rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.045);
    white-space: nowrap;
}

.venues__backdrop-track [data-editorial-backdrop-text] {
    display: inline-block;
    transform: translateX(var(--editorial-parallax-bg, 0px));
    will-change: transform;
    transition: opacity 0.35s ease;
}

.venues--editorial .venues__inner {
    display: flex;
    align-items: center;
    gap: var(--editorial-gap);
    padding-left: calc(50% - var(--editorial-card-width) / 2);
    padding-right: calc(50% - var(--editorial-card-width) / 2);
    transform: translateX(var(--editorial-offset));
    transition: transform 0.55s ease;
    will-change: transform;
    touch-action: pan-y pinch-zoom;
}

.venues--editorial .venue-card-item {
    display: block;
    flex: 0 0 var(--editorial-card-width);
    margin-top: 0;
    opacity: 0.72;
    transform: scale(0.9);
    transform-origin: center center;
    transition: opacity 0.35s ease, transform 0.55s ease;
}

.venues--editorial .venue-card-item.is-editorial-active {
    opacity: 1;
    transform: scale(1);
}

.venues--editorial .venue-card-item:hover {
    transform: scale(0.945);
}

.venues--editorial .venue-card-item.is-editorial-active:hover {
    transform: scale(1.05);
}

.venue-editorial__card {
    display: block;
    color: inherit;
    border: none;
    background: none;
    padding: 0;
    width: 100%;
    text-align: left;
    font: inherit;
}

.venues--editorial .venue-card-item:not(.is-editorial-active) .venue-editorial__card {
    cursor: pointer;
}

.venues--editorial .venue-card-item.is-editorial-active .venue-editorial__card[data-editorial-url] {
    cursor: pointer;
}

.venues--editorial .venue-card-item.is-editorial-active .venue-editorial__card:hover .venue-editorial__image {
    transform: scale(1.02);
}

.venues--editorial .venue-card-item:not(.is-editorial-active) .venue-editorial__card:hover .venue-editorial__image {
    transform: scale(1.01);
}

.venue-editorial__number {
    display: block;
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.03em;
    color: #fff;
    -webkit-text-stroke: 2px #000;
    paint-order: stroke fill;
    margin-bottom: -0.15em;
    position: relative;
    z-index: 2;
    max-width: 100%;
    overflow: hidden;
}

.venue-editorial {
    overflow: clip;
}

.venue-editorial__media {
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
}

.venue-editorial__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.32) 100%);
    pointer-events: none;
}

.venue-editorial__image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.venue-editorial__overlay-title {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    color: #fff;
    font-size: clamp(2.2rem, 5.5vw, 4.25rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    -webkit-text-stroke: 2px #000;
    paint-order: stroke fill;
    transform: translateX(var(--editorial-parallax-fg, 0px));
    will-change: transform;
}

.venue-editorial__tag {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    background:white;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #666;
    transition: background 0.2s ease;
}

.venue-editorial__card:hover .venue-editorial__tag {
    background: rgba(243, 243, 243, 1);
}

.venue-editorial__caption {
    display: block;
    margin-top: 14px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #111;
}

.venues__editorial-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 36px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.venues__editorial-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #d4d4d4;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.venues__editorial-dot:hover {
    background: #999;
}

.venues__editorial-dot.is-active {
    background: #000;
    transform: scale(1.15);
}

.venues__editorial-dot[hidden] {
    display: none;
}

@media (max-width: 768px) {
    html.venues-mobile-grid-default .venues__panel[data-venue-panel="editorial"] {
        display: none !important;
    }

    html.venues-mobile-grid-default .venues__panel[data-venue-panel="grid"] {
        display: block !important;
    }

    html.venues-mobile-grid-default .venues__view[data-venue-view="grid"] {
        border-color: #000;
        background: #000;
        color: #fff;
    }

    html.venues-mobile-grid-default .venues__view[data-venue-view="editorial"] {
        border-color: #ddd;
        background: #fff;
        color: #000;
    }

    .header {
        padding: 16px 20px;
    }

    .hero {
        min-height: 44vh;
        padding: 48px 20px 60px;
    }

    .content,
    .venues {
        --venues-gutter: 20px;
        padding-left: var(--venues-gutter);
        padding-right: var(--venues-gutter);
    }

    .venues {
        padding-bottom: 80px;
    }

    .venues__toolbar {
        gap: 10px;
        margin-bottom: 24px;
    }

    .venues__filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 2px;
    }

    .venues__filters::-webkit-scrollbar {
        display: none;
    }

    .venues__filter[data-venue-filter="all"] .venues__btn-label,
    .venues__view .venues__btn-label {
        display: none;
    }

    .venues__filter[data-venue-filter="all"] .venues__btn-icon,
    .venues__view .venues__btn-icon {
        display: inline-flex;
    }

    .venues__filter[data-venue-filter="all"],
    .venues__view {
        width: 40px;
        height: 40px;
        padding: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .venues--grid .venues__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .venue-card__name {
        font-size: 1.2rem;
    }

    .venues--justified .venue-card {
        max-width: calc(50% - 8px);
    }

    .venues--masonry .venues__inner {
        column-count: 2;
    }

    .venues--list .venue-card__image {
        width: 88px;
    }

    .venues--asymmetric .venue-card-item,
    .venues--asymmetric .venue-card-item.is-portrait,
    .venues--asymmetric .venue-card-item.is-square {
        width: calc(50% - 8px);
    }

    .venues--asymmetric .venue-card-item.is-landscape {
        width: 100%;
    }

    .venues--editorial .venues__filters {
        padding: 0;
    }

    .venues__toolbar {
        gap: 12px;
    }

    .venues__view-switch {
        margin-left: auto;
        flex-shrink: 0;
    }

    .venues__editorial-stage {
        --editorial-gap: 20px;
        padding-bottom: 40px;
    }

    .venues--editorial .venue-card-item:not(.is-editorial-active) {
        transform: scale(0.88);
    }

    .venue-editorial__overlay-title {
        font-size: clamp(1.6rem, 7vw, 2.4rem);
    }

    .venue-editorial__number {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
}

.footer {
    padding: 48px 24px;
    text-align: center;
}

.footer__text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.01em;
}