html,
body {
    max-width: 100%;
    overflow-x: clip;
    overscroll-behavior-x: none;
}

#main-content {
    overflow-x: clip;
}

.op-home {
    --home-forest: #263e32;
    --home-forest-deep: #172a21;
    --home-sage: #7e9a88;
    --home-sage-soft: #e9f0eb;
    --home-blush: #ead1c9;
    --home-cream: #f7f5ef;
    --home-paper: #fcfdfb;
    --home-ink: #17231d;
    --home-muted: #68776d;
    --home-line: rgba(38, 62, 50, 0.12);
    --home-shadow: 0 24px 70px rgba(28, 48, 37, 0.10);
    color: var(--home-ink);
    background: var(--home-paper);
}

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

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


.op-home-shell {
    width: min(calc(100% - 2rem), 78rem);
    margin-inline: auto;
}

.op-home-section {
    padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.op-home-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #637d6c;
    font-size: 0.73rem;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.op-home-kicker::before {
    width: 1.7rem;
    height: 1px;
    background: currentColor;
    content: "";
    opacity: 0.72;
}

.op-home-kicker--light {
    color: rgba(255, 255, 255, 0.78);
}

.op-home-section__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.op-home-section__head > div:first-child {
    max-width: 48rem;
}

.op-home-section__head h2,
.op-home-how h2,
.op-home-weekend h2,
.op-home-story h2,
.op-home-partners h2 {
    margin: 0.75rem 0 0;
    color: var(--home-ink);
    font-size: clamp(2rem, 4.6vw, 4.2rem);
    font-weight: 820;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.op-home-section__head p {
    max-width: 43rem;
    margin: 0.9rem 0 0;
    color: var(--home-muted);
    font-size: clamp(0.98rem, 1.6vw, 1.08rem);
    line-height: 1.65;
}

.op-home-section__actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 0.55rem;
}

.op-home-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0;
    color: var(--home-forest);
    font-size: 0.93rem;
    font-weight: 800;
    text-decoration: none;
}

.op-home-link > span {
    transition: transform 180ms ease;
}

.op-home-link:hover > span {
    transform: translateX(0.22rem);
}

.op-home-link--strong {
    margin-top: 1.6rem;
}

.op-home-arrow {
    display: grid;
    width: 2.9rem;
    height: 2.9rem;
    place-items: center;
    padding: 0;
    color: var(--home-forest);
    border: 1px solid var(--home-line);
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    transition:
        color 180ms ease,
        background 180ms ease,
        opacity 180ms ease,
        transform 180ms ease;
}

.op-home-arrow svg {
    width: 1.15rem;
    height: 1.15rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.op-home-arrow:hover:not(:disabled) {
    color: #fff;
    background: var(--home-forest);
    transform: translateY(-1px);
}

.op-home-arrow:disabled {
    cursor: default;
    opacity: 0.32;
}

.op-home-button {
    display: inline-flex;
    min-height: 3.2rem;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.85rem 1.15rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 820;
    line-height: 1.1;
    text-decoration: none;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease;
}

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

.op-home-button--dark {
    color: #fff;
    background: var(--home-forest);
    box-shadow: 0 12px 30px rgba(38, 62, 50, 0.18);
}

.op-home-button--light {
    color: var(--home-forest-deep);
    background: #fff;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.op-home-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: var(--home-forest-deep);
    isolation: isolate;
    touch-action: pan-y pinch-zoom;
}

.op-home-hero__slides,
.op-home-hero__slide,
.op-home-hero__veil {
    position: absolute;
    inset: 0;
}

.op-home-hero__slides {
    z-index: -3;
    overflow: hidden;
}

.op-home-hero__slide {
    overflow: hidden;
    opacity: 0;
    transition: opacity 1.65s ease;
}

.op-home-hero__slide.is-active {
    opacity: 1;
}


.op-home-hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(var(--home-hero-from));
    transition: transform 6.5s linear;
    will-change: transform;
}

.op-home-hero__slide.is-active img {
    transform: scale(var(--home-hero-to));
}

.op-home-hero__slide--zoom-in {
    --home-hero-from: 1.00;
    --home-hero-to: 1.12;
}

.op-home-hero__slide--zoom-out {
    --home-hero-from: 1.12;
    --home-hero-to: 1.00;
}

.op-home-hero__veil {
    z-index: -2;
    background:
        linear-gradient(180deg, rgba(12, 26, 18, 0.24) 0%, rgba(12, 26, 18, 0.52) 50%, rgba(12, 26, 18, 0.70) 100%),
        radial-gradient(circle at center, rgba(12, 26, 18, 0.24) 0%, rgba(12, 26, 18, 0.46) 72%, rgba(12, 26, 18, 0.58) 100%);
}

.op-home-hero__inner {
    display: flex;
    min-height: max(40rem, calc(80svh - 4.75rem));
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-block: clamp(3rem, 8vh, 6.8rem);
    text-align: center;
}

.op-home-hero__copy {
    display: flex;
    width: min(100%, 61rem);
    flex-direction: column;
    align-items: center;
    padding-block: 1.5rem;
}

.op-home-hero h1 {
    margin: 1rem auto 0;
    color: #fff;
    font-size: clamp(3rem, 7.2vw, 6.45rem);
    font-weight: 850;
    line-height: 0.91;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.op-home-hero h1 span {
    display: block;
    color: #e7d2cb;
}

.op-home-hero__lead {
    max-width: 42rem;
    margin: 1.35rem auto 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1.04rem, 2vw, 1.24rem);
    line-height: 1.62;
}

.op-home-search-bridge {
    position: relative;
    z-index: 8;
    margin-top: -2.7rem;
    pointer-events: none;
}

.op-home-search-bridge .op-home-shell {
    pointer-events: none;
}

.op-home-search {
    display: grid;
    width: min(100%, 63rem);
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.84fr) minmax(0, 1fr) auto;
    align-items: stretch;
    margin: 0 auto;
    padding: 0.42rem;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(22px) saturate(145%);
    pointer-events: auto;
}

.op-home-search__field {
    position: relative;
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 0.72rem;
    padding: 0.72rem 1rem;
    color: var(--home-forest-deep);
    border-radius: 0.95rem;
    cursor: text;
}

.op-home-search__field + .op-home-search__field::before {
    position: absolute;
    top: 20%;
    bottom: 20%;
    left: 0;
    width: 1px;
    background: rgba(38, 62, 50, 0.13);
    content: "";
}

.op-home-search__icon {
    display: grid;
    width: 2.15rem;
    height: 2.15rem;
    flex: 0 0 auto;
    place-items: center;
    color: var(--home-forest);
    border-radius: 0.7rem;
    background: var(--home-sage-soft);
}

.op-home-search__icon svg {
    width: 1.05rem;
    height: 1.05rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.op-home-search__content {
    display: grid;
    min-width: 0;
    flex: 1;
    gap: 0.1rem;
}

.op-home-search__content > span:first-child {
    color: #45574d;
    font-size: 0.67rem;
    font-weight: 850;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.op-home-search input,
.op-home-search select {
    width: 100%;
    min-width: 0;
    height: 1.55rem;
    padding: 0;
    color: var(--home-ink);
    border: 0;
    outline: 0;
    background: transparent;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 720;
}

.op-home-search input::placeholder {
    color: #829087;
    opacity: 1;
}

.op-home-search select {
    cursor: pointer;
}

.op-home-search__submit {
    display: inline-flex;
    min-width: 9.25rem;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.9rem 1.15rem;
    color: #fff;
    border: 0;
    border-radius: 0.95rem;
    background: var(--home-forest);
    box-shadow: 0 10px 26px rgba(38, 62, 50, 0.22);
    cursor: pointer;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 820;
    transition:
        background 180ms ease,
        transform 180ms ease;
}

.op-home-search__submit:hover {
    background: #365746;
    transform: translateY(-1px);
}

.op-home-search__submit svg {
    width: 1.05rem;
    height: 1.05rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 2;
}

.op-home-hero__quick {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 1.25rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
}

.op-home-hero__quick > span {
    margin-right: 0.15rem;
}

.op-home-hero__quick a {
    padding: 0.38rem 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-weight: 760;
    text-decoration: none;
    backdrop-filter: blur(12px);
    transition: background 180ms ease;
}

.op-home-hero__quick a:hover {
    background: rgba(255, 255, 255, 0.18);
}

.op-home-hero__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin-top: 1.75rem;
    padding-top: 0;
}

.op-home-hero__dots {
    display: flex;
    align-items: center;
    gap: 0.42rem;
}

.op-home-hero__dots button {
    width: 1.55rem;
    height: 0.24rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.38);
    cursor: pointer;
    transition:
        width 300ms ease,
        background 300ms ease;
}

.op-home-hero__dots button.is-active {
    width: 3.25rem;
    background: #fff;
}

.op-home-hero__organizer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
    text-decoration: none;
}

.op-home-hero__organizer strong {
    color: #fff;
    font-weight: 820;
}

.op-home-hero__organizer > span {
    transition: transform 180ms ease;
}

.op-home-hero__organizer:hover > span {
    transform: translateX(0.2rem);
}

.op-home-popular {
    position: relative;
    padding-top: clamp(5.5rem, 9vw, 8rem);
    background:
        radial-gradient(circle at 100% 0%, rgba(234, 209, 201, 0.3), transparent 28rem),
        var(--home-paper);
}

.op-home-event-track {
    display: grid;
    grid-auto-columns: calc((100% - 3rem) / 4);
    grid-auto-flow: column;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.15rem 0.05rem 1.35rem;
    scroll-behavior: smooth;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: contain;
}

.op-home-event-track::-webkit-scrollbar {
    display: none;
}

.op-home-event-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(38, 62, 50, 0.09);
    border-radius: 1.45rem;
    background: #fff;
    box-shadow: 0 12px 38px rgba(38, 62, 50, 0.06);
    scroll-snap-align: start;
    transition:
        transform 230ms ease,
        box-shadow 230ms ease,
        border-color 230ms ease;
}

.op-home-event-card:hover {
    border-color: rgba(38, 62, 50, 0.16);
    box-shadow: 0 20px 48px rgba(38, 62, 50, 0.11);
    transform: translateY(-4px);
}

.op-home-event-card__media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #e8eee9;
}

.op-home-event-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.op-home-event-card:hover .op-home-event-card__media img {
    transform: scale(1.045);
}

.op-home-event-card__rank,
.op-home-event-card__badge {
    position: absolute;
    z-index: 2;
    top: 0.8rem;
    display: inline-flex;
    min-height: 1.85rem;
    align-items: center;
    padding: 0.35rem 0.58rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    backdrop-filter: blur(12px);
}

.op-home-event-card__rank {
    left: 0.8rem;
    color: var(--home-forest-deep);
    background: rgba(255, 255, 255, 0.92);
}

.op-home-event-card__badge {
    right: 0.8rem;
    color: #fff;
    background: rgba(26, 42, 33, 0.74);
}

.op-home-event-card__body {
    padding: 1rem 1rem 1.05rem;
}

.op-home-event-card__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    color: #6d7c72;
    font-size: 0.69rem;
    font-weight: 830;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.op-home-event-card__topline strong {
    flex: 0 0 auto;
    color: var(--home-forest);
    font-size: 0.75rem;
}

.op-home-event-card h3 {
    margin: 0.58rem 0 0;
    font-size: 1.12rem;
    font-weight: 820;
    line-height: 1.18;
    letter-spacing: -0.025em;
}

.op-home-event-card h3 a {
    display: -webkit-box;
    overflow: hidden;
    text-decoration: none;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.op-home-event-card__foot {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.9rem;
    color: var(--home-muted);
    font-size: 0.76rem;
}

.op-home-event-card__foot > span:first-child {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 0.35rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.op-home-event-card__foot svg {
    width: 0.92rem;
    height: 0.92rem;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.op-home-event-card__views {
    flex: 0 0 auto;
    color: #849188;
}

.op-home-empty {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    border: 1px solid var(--home-line);
    border-radius: 1.5rem;
    background: #fff;
}

.op-home-empty__icon {
    display: grid;
    width: 3.7rem;
    height: 3.7rem;
    flex: 0 0 auto;
    place-items: center;
    color: var(--home-forest);
    border-radius: 1.1rem;
    background: var(--home-sage-soft);
}

.op-home-empty__icon svg {
    width: 1.55rem;
    height: 1.55rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.op-home-empty h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 820;
}

.op-home-empty p {
    margin: 0.25rem 0 0;
    color: var(--home-muted);
    font-size: 0.86rem;
}

.op-home-empty .op-home-button {
    margin-left: auto;
}

.op-home-how {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 3% 15%, rgba(234, 209, 201, 0.42), transparent 23rem),
        linear-gradient(180deg, #f6f8f5 0%, #fff 100%);
}

.op-home-section__head--center {
    justify-content: center;
    text-align: center;
}

.op-home-section__head--center > div:first-child {
    max-width: 52rem;
}

.op-home-how__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.op-home-how__grid::before {
    position: absolute;
    z-index: 0;
    top: 4.15rem;
    right: 14%;
    left: 14%;
    height: 1px;
    background:
        repeating-linear-gradient(
            90deg,
            rgba(38, 62, 50, 0.22) 0 8px,
            transparent 8px 15px
        );
    content: "";
}

.op-home-how__step {
    position: relative;
    z-index: 1;
    min-height: 20rem;
    padding: 1.55rem;
    border: 1px solid rgba(38, 62, 50, 0.10);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 38px rgba(38, 62, 50, 0.05);
}

.op-home-how__number {
    position: absolute;
    top: 1.2rem;
    right: 1.35rem;
    color: rgba(38, 62, 50, 0.16);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.07em;
}

.op-home-how__icon {
    display: grid;
    width: 5.2rem;
    height: 5.2rem;
    place-items: center;
    margin-bottom: 3.1rem;
    color: var(--home-forest);
    border: 0.55rem solid #f6f8f5;
    border-radius: 50%;
    background: var(--home-sage-soft);
    box-shadow: 0 0 0 1px rgba(38, 62, 50, 0.08);
}

.op-home-how__icon svg {
    width: 1.55rem;
    height: 1.55rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.op-home-how__step h3 {
    margin: 0;
    color: var(--home-ink);
    font-size: 1.28rem;
    font-weight: 830;
    letter-spacing: -0.03em;
}

.op-home-how__step p {
    margin: 0.65rem 0 0;
    color: var(--home-muted);
    font-size: 0.93rem;
    line-height: 1.65;
}

.op-home-how__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    margin-top: 2rem;
    color: var(--home-muted);
    font-size: 0.88rem;
}

.op-home-how__cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--home-forest);
    font-weight: 820;
    text-decoration: none;
}

.op-home-categories {
    background: #fff;
}

.op-home-category-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(14rem, 1fr));
    gap: 0.85rem;
}

.op-home-category-card {
    position: relative;
    min-height: 14rem;
    overflow: hidden;
    border-radius: 1.45rem;
    background: var(--home-forest);
    text-decoration: none;
    isolation: isolate;
}

.op-home-category-card--1 {
    grid-column: span 5;
    grid-row: span 2;
}

.op-home-category-card--2 {
    grid-column: span 4;
}

.op-home-category-card--3 {
    grid-column: span 3;
}

.op-home-category-card--4 {
    grid-column: span 3;
}

.op-home-category-card--5 {
    grid-column: span 3;
}

.op-home-category-card--6 {
    grid-column: span 3;
}

.op-home-category-card img,
.op-home-category-card__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.op-home-category-card img {
    z-index: -2;
    object-fit: cover;
    transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.op-home-category-card:hover img {
    transform: scale(1.055);
}

.op-home-category-card__shade {
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(11, 26, 18, 0.04) 20%, rgba(11, 26, 18, 0.78) 100%);
}

.op-home-category-card__content {
    position: absolute;
    right: 1.1rem;
    bottom: 1.05rem;
    left: 1.1rem;
    display: grid;
    color: #fff;
}

.op-home-category-card__count {
    margin-bottom: 0.25rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.7rem;
    font-weight: 780;
}

.op-home-category-card__content strong {
    max-width: 12ch;
    font-size: clamp(1.3rem, 2.6vw, 2.3rem);
    font-weight: 850;
    line-height: 1;
    letter-spacing: -0.045em;
}

.op-home-category-card__arrow {
    position: absolute;
    right: 0;
    bottom: 0;
    display: grid;
    width: 2.5rem;
    height: 2.5rem;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition:
        color 180ms ease,
        background 180ms ease,
        transform 180ms ease;
}

.op-home-category-card:hover .op-home-category-card__arrow {
    color: var(--home-forest-deep);
    background: #fff;
    transform: rotate(8deg);
}

.op-home-weekend {
    color: #fff;
    background:
        radial-gradient(circle at 10% 20%, rgba(234, 209, 201, 0.17), transparent 28rem),
        var(--home-forest-deep);
}

.op-home-weekend .op-home-shell {
    display: grid;
    grid-template-columns: minmax(16rem, 0.8fr) minmax(0, 1.6fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
}

.op-home-weekend__intro h2 {
    color: #fff;
}

.op-home-weekend__intro p {
    max-width: 31rem;
    margin: 1rem 0 1.5rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
}

.op-home-weekend__events {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.op-home-weekend-card {
    min-width: 0;
}

.op-home-weekend-card > a {
    position: relative;
    display: block;
    min-height: 25rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1.35rem;
    background: #253b30;
    text-decoration: none;
}

.op-home-weekend-card img,
.op-home-weekend-card__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.op-home-weekend-card img {
    object-fit: cover;
    transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.op-home-weekend-card:hover img {
    transform: scale(1.05);
}

.op-home-weekend-card__shade {
    background:
        linear-gradient(180deg, rgba(11, 25, 17, 0.04) 18%, rgba(11, 25, 17, 0.85) 100%);
}

.op-home-weekend-card__content {
    position: absolute;
    z-index: 2;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    display: grid;
    gap: 0.35rem;
}

.op-home-weekend-card__content time {
    color: #ead1c9;
    font-size: 0.69rem;
    font-weight: 850;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.op-home-weekend-card__content strong {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 830;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.op-home-weekend-card__content > span:last-child {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
}

.op-home-story {
    background: #fff;
}

.op-home-story__panel {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
    min-height: 38rem;
    overflow: hidden;
    border: 1px solid var(--home-line);
    border-radius: 2rem;
    background: var(--home-cream);
}

.op-home-story__visual {
    position: relative;
    min-height: 31rem;
    overflow: hidden;
}

.op-home-story__visual > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.op-home-story__note {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    max-width: 18rem;
    padding: 0.9rem 1rem;
    color: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 1rem;
    background: rgba(23, 42, 33, 0.64);
    font-size: 0.8rem;
    line-height: 1.45;
    backdrop-filter: blur(14px);
}

.op-home-story__note strong {
    display: block;
    color: #fff;
    font-size: 0.93rem;
}

.op-home-story__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 5vw, 4.5rem);
}

.op-home-story h2 {
    font-size: clamp(2.2rem, 4.8vw, 4.3rem);
}

.op-home-story__content > p {
    max-width: 38rem;
    margin: 1.2rem 0 0;
    color: var(--home-muted);
    font-size: 1rem;
    line-height: 1.72;
}

.op-home-trust-list {
    display: grid;
    gap: 0.65rem;
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.op-home-trust-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #44564b;
    font-size: 0.88rem;
    font-weight: 710;
}

.op-home-trust-list li > span {
    display: grid;
    width: 1.55rem;
    height: 1.55rem;
    flex: 0 0 auto;
    place-items: center;
    color: var(--home-forest);
    border-radius: 50%;
    background: var(--home-sage-soft);
    font-size: 0.72rem;
    font-weight: 900;
}

.op-home-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.7rem;
}

.op-home-stats > div {
    padding-top: 0.9rem;
    border-top: 1px solid rgba(38, 62, 50, 0.14);
}

.op-home-stats strong,
.op-home-stats span {
    display: block;
}

.op-home-stats strong {
    color: var(--home-forest);
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    font-weight: 870;
    line-height: 1;
    letter-spacing: -0.045em;
}

.op-home-stats span {
    margin-top: 0.35rem;
    color: var(--home-muted);
    font-size: 0.68rem;
    line-height: 1.35;
}


.op-home-partners {
    padding-top: 0;
    overflow: hidden;
    background: #fff;
}

.op-home-partners__heading {
    max-width: 46rem;
    margin-bottom: clamp(1.8rem, 4vw, 2.8rem);
}

.op-home-partners h2 {
    margin: 0.75rem 0 0;
    color: var(--home-ink);
    font-size: clamp(2rem, 4.6vw, 4.2rem);
    font-weight: 820;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.op-home-partners__heading p {
    max-width: 40rem;
    margin: 0.9rem 0 0;
    color: var(--home-muted);
    font-size: clamp(0.98rem, 1.6vw, 1.08rem);
    line-height: 1.65;
}

.op-home-partners__marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-block: 0.35rem;
    touch-action: pan-y pinch-zoom;
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent,
        #000 5%,
        #000 95%,
        transparent
    );
    mask-image: linear-gradient(
        90deg,
        transparent,
        #000 5%,
        #000 95%,
        transparent
    );
}

.op-home-partners__track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: op-home-partners-scroll 30s linear infinite;
}

.op-home-partners__marquee:hover .op-home-partners__track,
.op-home-partners__marquee:focus-within .op-home-partners__track {
    animation-play-state: paused;
}

.op-home-partners__group {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: clamp(0.7rem, 1.5vw, 1.15rem);
    padding-right: clamp(0.7rem, 1.5vw, 1.15rem);
}

.op-home-partner-card {
    display: grid;
    width: clamp(9.5rem, 15vw, 13rem);
    height: clamp(6rem, 9vw, 7.5rem);
    flex: 0 0 auto;
    place-items: center;
    padding: clamp(0.8rem, 2vw, 1.25rem);
    border: 1px solid var(--home-line);
    border-radius: 1.35rem;
    background: #fff;
    box-shadow: 0 12px 35px rgba(28, 48, 37, 0.055);
}

.op-home-partner-card img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 4.5rem;
    object-fit: contain;
}

@keyframes op-home-partners-scroll {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

[data-home-reveal] {
    opacity: 0;
    transform: translateY(1rem);
    transition:
        opacity 650ms ease,
        transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-home-reveal].is-visible {
    opacity: 1;
    transform: none;
}

.op-home-how__step:nth-child(2),
.op-home-category-card:nth-child(2),
.op-home-weekend-card:nth-child(2) {
    transition-delay: 80ms;
}

.op-home-how__step:nth-child(3),
.op-home-category-card:nth-child(3),
.op-home-weekend-card:nth-child(3) {
    transition-delay: 160ms;
}

@media (max-width: 74.99rem) {
    .op-home-event-track {
        grid-auto-columns: calc((100% - 2rem) / 3);
    }

    .op-home-weekend .op-home-shell {
        grid-template-columns: minmax(15rem, 0.72fr) minmax(0, 1.4fr);
        gap: 2rem;
    }
}

@media (max-width: 61.99rem) {

    .op-home-search-bridge {
        margin-top: -3.9rem;
    }

    .op-home-search {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .op-home-search__field + .op-home-search__field::before {
        display: none;
    }

    .op-home-search__field:nth-child(1),
    .op-home-search__field:nth-child(2) {
        border-bottom: 1px solid rgba(38, 62, 50, 0.11);
    }

    .op-home-search__field:nth-child(1),
    .op-home-search__field:nth-child(3) {
        border-right: 1px solid rgba(38, 62, 50, 0.11);
    }

    .op-home-search__submit {
        min-height: 3.6rem;
    }

    .op-home-event-track {
        grid-auto-columns: calc((100% - 1rem) / 2);
    }

    .op-home-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
    }

    .op-home-category-card,
    .op-home-category-card--1,
    .op-home-category-card--2,
    .op-home-category-card--3,
    .op-home-category-card--4,
    .op-home-category-card--5,
    .op-home-category-card--6 {
        grid-column: auto;
        grid-row: auto;
        min-height: 18rem;
    }

    .op-home-category-card--1 {
        grid-column: span 2;
        min-height: 24rem;
    }

    .op-home-weekend .op-home-shell {
        grid-template-columns: 1fr;
    }

    .op-home-weekend__intro {
        max-width: 39rem;
    }

    .op-home-story__panel {
        grid-template-columns: 1fr;
    }

    .op-home-story__visual {
        min-height: 29rem;
    }

}

@media (max-width: 47.99rem) {
    .op-home-shell {
        width: min(calc(100% - 1.25rem), 78rem);
    }

    .op-home-section {
        padding-block: 4.2rem;
    }

    .op-home-section__head {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.7rem;
    }

    .op-home-section__actions {
        width: 100%;
    }

    .op-home-section__actions .op-home-link {
        margin-left: auto;
    }





    .op-home-hero__veil {
        background:
            linear-gradient(180deg, rgba(12, 26, 18, 0.55) 0%, rgba(12, 26, 18, 0.48) 32%, rgba(12, 26, 18, 0.76) 100%),
            linear-gradient(90deg, rgba(12, 26, 18, 0.35), rgba(12, 26, 18, 0.18));
    }

    .op-home-hero h1 {
        font-size: clamp(2.85rem, 10vw, 4.7rem);
        line-height: 0.91;
    }

    .op-home-hero__lead {
        max-width: 34rem;
        font-size: 0.98rem;
    }

    .op-home-search-bridge {
        margin-top: -4.4rem;
    }

    .op-home-search {
        grid-template-columns: 1fr;
        border-radius: 1.1rem;
    }

    .op-home-search__field {
        min-height: 3.65rem;
        padding: 0.62rem 0.75rem;
        border: 0 !important;
    }

    .op-home-search__field + .op-home-search__field {
        border-top: 1px solid rgba(38, 62, 50, 0.10) !important;
    }

    .op-home-search__submit {
        min-height: 3.45rem;
        margin-top: 0.12rem;
    }

    .op-home-hero__quick {
        display: none;
    }

    .op-home-hero__bottom {
        align-items: center;
        flex-direction: column;
        margin-top: 1.4rem;
    }

    .op-home-hero__organizer {
        max-width: 18rem;
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
    }

    .op-home-event-track {
        width: calc(100% + 0.625rem);
        grid-auto-columns: 84%;
        margin-right: -0.625rem;
        padding-right: 0.625rem;
        scroll-padding-inline: 0;
    }

    .op-home-how__grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .op-home-how__grid::before {
        display: none;
    }

    .op-home-how__step {
        min-height: 0;
    }

    .op-home-how__icon {
        margin-bottom: 2rem;
    }

    .op-home-how__cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .op-home-weekend__events {
        grid-template-columns: 1fr;
    }

    .op-home-weekend-card > a {
        min-height: 19rem;
    }

    .op-home-story__panel {
        border-radius: 1.45rem;
    }

    .op-home-story__visual {
        min-height: 23rem;
    }

    .op-home-story__content {
        padding: 1.5rem;
    }

    .op-home-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }


    .op-home-partners__marquee {
        width: calc(100% + 1.25rem);
        margin-right: -0.625rem;
        margin-left: -0.625rem;
        -webkit-mask-image: linear-gradient(
            90deg,
            transparent,
            #000 3%,
            #000 97%,
            transparent
        );
        mask-image: linear-gradient(
            90deg,
            transparent,
            #000 3%,
            #000 97%,
            transparent
        );
    }

    .op-home-partner-card {
        width: 9.25rem;
        height: 5.8rem;
        border-radius: 1.05rem;
    }

}

@media (max-width: 35.99rem) {
    .op-home-section__actions .op-home-arrow {
        display: none;
    }

    .op-home-section__actions .op-home-link {
        margin-left: 0;
    }

    .op-home-event-track {
        grid-auto-columns: 88%;
    }

    .op-home-category-grid {
        gap: 0.65rem;
    }

    .op-home-category-card,
    .op-home-category-card--1 {
        grid-column: span 2;
        min-height: 18rem;
    }

    .op-home-category-card--1 {
        min-height: 22rem;
    }

    .op-home-stats {
        gap: 0.45rem;
    }

    .op-home-stats span {
        font-size: 0.62rem;
    }

    .op-home-empty {
        align-items: flex-start;
        flex-direction: column;
    }

    .op-home-empty .op-home-button {
        width: 100%;
        margin-left: 0;
    }
}

