body.fall-landing {
    --font-display: 'Fredoka One', 'Poppins', 'Arial Rounded MT Bold', sans-serif;
    --font-body: 'Poppins', 'Segoe UI', sans-serif;
    --fall-pumpkin: #ff7a00;
    --primary-pink: #ff7a00;
    --primary-magenta: #542c1d;
    --primary-yellow: #ffc857;
    --primary-orange: #f26722;
    --primary-purple: #76527f;
    --primary-cyan: #667a3e;
    --white: #fffdf8;
    --off-white: #f8f1e3;
    --light-pink: #f4e4d2;
    --gray-100: #f5eee2;
    --gray-200: #e4d6c3;
    --gray-300: #c9b79f;
    --gray-500: #725f50;
    --gray-700: #49372c;
    --gray-900: #2e2019;
    --gradient-primary: linear-gradient(135deg, #ff4f00 0%, #ff8a00 52%, #76527f 100%);
    --gradient-secondary: linear-gradient(135deg, #ffc857 0%, #ff7a00 100%);
    --gradient-cta: linear-gradient(135deg, #ff7a00 0%, #d9581e 58%, #76527f 100%);
    --shadow-glow: 0 0 36px rgba(118, 82, 127, 0.22);
}

.fall-landing .hero {
    background: #f8f1e3;
}

.fall-landing .confetti {
    width: 30px;
    height: 45px;
    border-radius: 0;
    clip-path: none;
    -webkit-mask: url('/landing-assets/oak-leaf-mask.svg') center / contain no-repeat;
    mask: url('/landing-assets/oak-leaf-mask.svg') center / contain no-repeat;
    background: #f26a1b;
    opacity: 0.82;
    filter: drop-shadow(0 2px 1px rgba(84, 44, 29, 0.28));
    animation-name: fall-leaf-drift;
    animation-duration: 8s;
    animation-timing-function: linear;
}

.fall-landing .confetti::after {
    content: '';
    position: absolute;
    top: 16%;
    bottom: 12%;
    left: 50%;
    width: 2px;
    background: rgba(74, 40, 21, 0.42);
    transform: translateX(-50%) rotate(1deg);
}

.fall-landing .confetti:nth-child(1) {
    background: #e6a817;
    animation-duration: 9s;
}

.fall-landing .confetti:nth-child(2) {
    background: #f26a1b;
    animation-duration: 7.5s;
}

.fall-landing .confetti:nth-child(3) {
    background: #7f8b32;
    animation-duration: 10s;
}

.fall-landing .confetti:nth-child(4) {
    background: #b6401c;
    animation-duration: 8.5s;
}

.fall-landing .confetti:nth-child(5) {
    background: #7a461f;
    animation-duration: 9.5s;
}

@keyframes fall-leaf-drift {
    0% {
        transform: translate3d(-18px, -12vh, 0) rotate(0deg);
        opacity: 0;
    }
    12% {
        opacity: 0.82;
    }
    45% {
        transform: translate3d(28px, 42vh, 0) rotate(190deg);
    }
    72% {
        transform: translate3d(-20px, 72vh, 0) rotate(310deg);
    }
    100% {
        transform: translate3d(34px, 108vh, 0) rotate(520deg);
        opacity: 0;
    }
}

.fall-landing .hero__badge,
.fall-landing .section__badge {
    letter-spacing: 0;
}

.fall-landing .hero__badge {
    background: var(--fall-pumpkin);
    color: #2e2019;
}

.fall-landing .fall-hero-image {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: center 35%;
}

.fall-landing .fall-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fall-landing .service-card::before {
    background: var(--fall-pumpkin);
}

.fall-landing .service-card:nth-child(2n) .service-card__icon,
.fall-landing .about-feature:nth-child(2n) .about-feature__icon {
    background: #667a3e;
}

.fall-landing .service-card:nth-child(3n) .service-card__icon,
.fall-landing .about-feature:nth-child(3n) .about-feature__icon {
    background: #76527f;
}

.fall-landing .state-card--active,
.fall-landing .fall-event-card {
    background: #fffaf0;
}

.fall-landing .state-card:nth-child(2),
.fall-landing .state-card:nth-child(4),
.fall-landing .fall-event-card:nth-child(2),
.fall-landing .fall-event-card:nth-child(4) {
    border-color: rgba(102, 122, 62, 0.36);
}

.fall-landing .pricing,
.fall-landing .fall-event-types {
    background: #fffaf0;
}

.fall-landing .pricing-card__header > i,
.fall-landing .pricing__category-title > i {
    color: var(--fall-pumpkin);
}

.fall-landing .fall-event-types__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fall-landing .about,
.fall-landing .faq {
    background: #f8f1e3;
}

.fall-landing .experience-badge {
    background: #542c1d;
}

.fall-landing .mobile-call-bar__btn--book {
    background: var(--fall-pumpkin);
}

.fall-landing .mobile-call-bar__btn--call {
    background: #542c1d;
}

@media screen and (max-width: 768px) {
    .fall-landing .fall-services__grid,
    .fall-landing .fall-event-types__grid {
        grid-template-columns: 1fr;
    }

    .fall-route-variant .hero__badge {
        display: none;
    }

}

@media screen and (max-width: 768px) and (min-height: 701px) {
    .fall-landing .hero__buttons {
        display: none;
    }
}

@media screen and (max-width: 768px) and (max-height: 700px) {
    body.fall-landing {
        padding-bottom: 0;
    }

    .fall-landing .mobile-call-bar,
    .fall-landing .chatclient-button {
        display: none !important;
    }
}

@media screen and (max-width: 576px) {
    .fall-landing .confetti {
        width: 24px;
        height: 36px;
    }

    .fall-landing .fall-hero-image {
        min-height: 390px;
    }

    .fall-landing .gallery__grid {
        grid-auto-rows: auto;
    }

    .fall-landing .gallery__item[data-fall-seasonal-image="true"] {
        height: auto;
        aspect-ratio: var(--fall-gallery-aspect);
    }

    .fall-landing .gallery__item[data-fall-seasonal-image="true"] img {
        object-position: center;
    }

    .fall-landing .gallery__item[data-fall-seasonal-image="true"]:hover img {
        transform: none;
    }
}

.fall-route__kicker {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
    padding: 0.55rem 1rem;
    border-radius: 999px;
    color: #2e2019;
    background: var(--fall-pumpkin);
    font-size: var(--text-sm);
    font-weight: 700;
}

.fall-route__note {
    max-width: 680px;
    margin: calc(var(--space-4) * -0.25) 0 var(--space-5);
    padding-left: var(--space-4);
    border-left: 4px solid var(--fall-pumpkin);
    color: var(--gray-700);
    font-weight: 600;
}

.fall-route__title-prefix {
    display: block;
    margin-bottom: 0.08em;
    color: #2e2019;
    font-size: 1em;
    line-height: 1.1;
}

.fall-title__prefix,
.fall-title__subject {
    display: block;
}

.fall-title__prefix {
    color: #2e2019;
}

.fall-title__subject {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fall-landing .fall-bigger-crowds {
    background: #fffaf0;
    border-top: 1px solid rgba(242, 106, 27, 0.14);
    border-bottom: 1px solid rgba(102, 122, 62, 0.14);
}

.fall-landing .fall-bigger-crowds .about__image-wrapper img {
    height: auto;
    aspect-ratio: 771 / 596;
    object-position: center;
}

@media screen and (max-width: 768px) {
    .fall-landing .hero__image {
        order: initial;
    }

    .fall-landing .mobile-call-bar {
        gap: 8px;
        padding-right: 78px;
    }

    .fall-landing .mobile-call-bar__btn {
        min-width: 0;
        padding-right: 8px;
        padding-left: 8px;
        font-size: 0.82rem;
        white-space: nowrap;
    }

    .fall-landing .chatclient-button {
        right: 10px !important;
        bottom: 7px !important;
    }

    .fall-landing .back-to-top {
        display: none !important;
    }
}

@media screen and (max-width: 968px) {
    .fall-landing .form-row--date-time {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media screen and (max-width: 360px) {
    .fall-landing .experience-badge {
        right: 0;
    }

    .fall-landing .contact__wrapper {
        grid-template-columns: minmax(0, 1fr);
    }

    .fall-landing .contact__info,
    .fall-landing .contact-item__content {
        min-width: 0;
    }

    .fall-landing .contact-item__content a,
    .fall-landing .contact-item__content span {
        overflow-wrap: anywhere;
    }

    .fall-landing .contact__form-wrapper {
        padding: var(--space-6);
    }

    .fall-landing .public-time-picker {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.75fr) minmax(0, 1.2fr);
        gap: var(--space-1);
    }

    .fall-landing .public-time-picker__select {
        padding-right: var(--space-1) !important;
        padding-left: var(--space-1) !important;
        font-size: 0.875rem;
    }
}