/* ========================================
   Farmers Inn — Custom Styles
   Bold editorial · Terracotta & Sand
======================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    overflow-x: hidden;
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ---------- Utility ---------- */
.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;
}

/* ---------- Section Shared ---------- */
.section-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #B85C38;
    margin-bottom: 1rem;
}

.section-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    color: #3D2B1F;
    margin-bottom: 1.5rem;
}

.section-headline--accent {
    font-style: italic;
    color: #B85C38;
}

.section-subheadline {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #5C4033;
    max-width: 480px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1.5px solid transparent;
}

.btn--terra {
    background: #B85C38;
    color: #FDF8F0;
    border-color: #B85C38;
}

.btn--terra:hover {
    background: #9a4a2e;
    border-color: #9a4a2e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(184, 92, 56, 0.3);
}

.btn--outline {
    background: transparent;
    color: #3D2B1F;
    border-color: #3D2B1F;
}

.btn--outline:hover {
    background: #3D2B1F;
    color: #FDF8F0;
    transform: translateY(-1px);
}

.btn--full {
    width: 100%;
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 248, 240, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(61, 43, 31, 0.08);
    transition: box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 2px 20px rgba(61, 43, 31, 0.08);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: #3D2B1F;
    text-decoration: none;
}

.nav__logo-icon {
    color: #B85C38;
}

.nav__logo-text {
    color: #3D2B1F;
}

.nav__links {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav__link {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #5C4033;
    text-decoration: none;
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.25s ease;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #B85C38;
    transition: width 0.3s ease;
}

.nav__link:hover {
    color: #B85C38;
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    background: #B85C38;
    color: #FDF8F0 !important;
    padding: 0.5rem 1.25rem;
    border-radius: 0;
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: #9a4a2e;
    color: #FDF8F0 !important;
}

.nav__burger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid rgba(61, 43, 31, 0.2);
    border-radius: 0;
    color: #3D2B1F;
    cursor: pointer;
    transition: all 0.25s ease;
}

.nav__burger:hover {
    border-color: #B85C38;
    color: #B85C38;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(253, 248, 240, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.mobile-menu__link {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 500;
    color: #3D2B1F;
    text-decoration: none;
    transition: color 0.25s ease;
}

.mobile-menu__link:hover {
    color: #B85C38;
}

.mobile-menu__link--cta {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 1rem;
    padding: 0.75rem 2rem;
    background: #B85C38;
    color: #FDF8F0;
}

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 72px;
    padding-bottom: 3rem;
    background: #FDF8F0;
    overflow: hidden;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    flex: 1;
    padding-bottom: 2rem;
}

.hero__text {
    max-width: 560px;
}

.hero__eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #B85C38;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero__eyebrow::before {
    content: '';
    width: 2rem;
    height: 1.5px;
    background: #B85C38;
}

.hero__headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    font-weight: 500;
    line-height: 1.05;
    color: #3D2B1F;
    margin-bottom: 1.75rem;
    letter-spacing: -0.02em;
}

.hero__headline--accent {
    font-style: italic;
    color: #B85C38;
}

.hero__subheadline {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #5C4033;
    max-width: 420px;
    margin-bottom: 2.5rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero__details {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #5C4033;
}

.hero__details-dot {
    color: #B85C38;
}

.hero__phone {
    color: #B85C38;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s ease;
}

.hero__phone:hover {
    color: #9a4a2e;
    text-decoration: underline;
}

/* Hero Image Stack */
.hero__image-stack {
    position: relative;
    max-width: 520px;
    margin-left: auto;
}

.hero__image {
    overflow: hidden;
    position: relative;
}

.hero__image--primary {
    width: 100%;
    aspect-ratio: 3/4;
}

.hero__image--primary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero__image--primary:hover img {
    transform: scale(1.02);
}

.hero__image--secondary {
    position: absolute;
    bottom: -2rem;
    left: -15%;
    width: 55%;
    aspect-ratio: 4/3;
    border: 4px solid #FDF8F0;
    box-shadow: 0 16px 48px rgba(61, 43, 31, 0.15);
}

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

.hero__image-badge {
    position: absolute;
    top: 1.5rem;
    right: -1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #B85C38;
    color: #FDF8F0;
    padding: 0.625rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    z-index: 2;
}

/* Hero Scroll Indicator */
.hero__scroll-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #5C4033;
    opacity: 0.5;
    padding-bottom: 1.5rem;
}

/* ---------- Marquee Strip ---------- */
.marquee-strip {
    background: #3D2B1F;
    padding: 0.875rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-strip__inner {
    display: inline-flex;
    gap: 1.5rem;
    animation: marquee 30s linear infinite;
}

.marquee-strip__inner span {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(253, 248, 240, 0.7);
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---------- Menu Section ---------- */
.menu {
    padding: 7rem 0;
    background: #FDF8F0;
}

.menu__header {
    max-width: 640px;
    margin-bottom: 4rem;
}

.menu__categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.menu__category {
    border-top: 1px solid rgba(61, 43, 31, 0.12);
    padding-top: 2rem;
}

.menu__category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.menu__category-header svg {
    color: #B85C38;
}

.menu__category-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #3D2B1F;
}

.menu__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.menu__item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(61, 43, 31, 0.06);
}

.menu__item:last-child {
    border-bottom: none;
}

.menu__item-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.menu__item-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #3D2B1F;
}

.menu__item-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: #804F25;
}

.menu__note {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: #804F25;
    font-style: italic;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(61, 43, 31, 0.12);
}

/* ---------- Story Section ---------- */
.story {
    padding: 7rem 0;
    background: #FAEDD4;
}

.story__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.story__image-col {
    position: relative;
}

.story__image-main {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.story__image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story__image-main:hover img {
    transform: scale(1.02);
}

.story__image-accent {
    position: absolute;
    bottom: -2rem;
    right: 0;
    width: 50%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border: 4px solid #FAEDD4;
    box-shadow: 0 16px 48px rgba(61, 43, 31, 0.15);
}

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

.story__text-col {
    max-width: 520px;
}

.story__body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.story__body p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.75;
    color: #5C4033;
}

.story__stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.story__stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.story__stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 500;
    color: #B85C38;
    line-height: 1;
}

.story__stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #804F25;
}

.story__stat-divider {
    width: 1px;
    height: 3rem;
    background: rgba(61, 43, 31, 0.15);
}

/* ---------- Gallery Section ---------- */
.gallery {
    padding: 7rem 0;
    background: #FDF8F0;
}

.gallery__header {
    max-width: 480px;
    margin-bottom: 3rem;
}

.gallery__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery__item:hover img {
    transform: scale(1.04);
}

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(61, 43, 31, 0.5);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-overlay span {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    color: #FDF8F0;
}

/* ---------- Visit Section ---------- */
.visit {
    padding: 7rem 0;
    background: #3D2B1F;
    position: relative;
    overflow: hidden;
}

.visit__bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(253, 248, 240, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.visit__inner {
    position: relative;
    z-index: 1;
}

.visit__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.visit__eyebrow {
    color: #f8c4b5;
}

.visit__headline {
    color: #FDF8F0;
}

.visit__headline-accent {
    color: #f8c4b5;
}

.visit__details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.visit__detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.visit__detail svg {
    color: #f8c4b5;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.visit__detail-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(253, 248, 240, 0.5);
    margin-bottom: 0.25rem;
}

.visit__detail-value {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #FDF8F0;
    line-height: 1.6;
}

.visit__detail-link {
    color: #f8c4b5;
    text-decoration: none;
    transition: color 0.25s ease;
}

.visit__detail-link:hover {
    color: #FDF8F0;
    text-decoration: underline;
}

.visit__hours {
    background: rgba(253, 248, 240, 0.05);
    border: 1px solid rgba(253, 248, 240, 0.1);
    padding: 2.5rem;
}

.visit__hours-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #FDF8F0;
    margin-bottom: 1.5rem;
}

.visit__hours-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.visit__hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0;
    border-bottom: 1px solid rgba(253, 248, 240, 0.08);
}

.visit__hours-item:last-child {
    border-bottom: none;
}

.visit__hours-day {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #FDF8F0;
}

.visit__hours-time {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: rgba(253, 248, 240, 0.6);
}

.visit__hours-note {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-style: italic;
    color: rgba(253, 248, 240, 0.45);
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(253, 248, 240, 0.08);
}

/* ---------- Contact Section ---------- */
.contact {
    padding: 7rem 0;
    background: #FAEDD4;
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.contact__text {
    max-width: 440px;
}

.contact__subtext {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.75;
    color: #5C4033;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background: #FDF8F0;
    padding: 2.5rem;
    border: 1px solid rgba(61, 43, 31, 0.08);
}

.contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.contact__field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact__label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5C4033;
}

.contact__input,
.contact__select,
.contact__textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #FDF8F0;
    border: 1px solid rgba(61, 43, 31, 0.2);
    border-radius: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #3D2B1F;
    transition: border-color 0.25s ease;
    appearance: none;
    -webkit-appearance: none;
}

.contact__input:focus,
.contact__select:focus,
.contact__textarea:focus {
    outline: none;
    border-color: #B85C38;
}

.contact__input::placeholder,
.contact__textarea::placeholder {
    color: #c4a882;
}

.contact__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact__success {
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(184, 92, 56, 0.08);
    border: 1px solid rgba(184, 92, 56, 0.2);
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #7d3d28;
}

.contact__success.visible {
    display: flex;
}

.contact__success svg {
    color: #B85C38;
    flex-shrink: 0;
}

/* ---------- Footer ---------- */
.footer {
    background: #3D2B1F;
    padding: 4rem 0 2rem;
}

.footer__inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer__brand {}

.footer__logo {
    text-decoration: none;
    color: #FDF8F0;
}

.footer__tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: rgba(253, 248, 240, 0.45);
    margin-top: 0.5rem;
}

.footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer__link {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(253, 248, 240, 0.6);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer__link:hover {
    color: #f8c4b5;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__contact-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: rgba(253, 248, 240, 0.6);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer__contact-link:hover {
    color: #f8c4b5;
}

.footer__address {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: rgba(253, 248, 240, 0.45);
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(253, 248, 240, 0.08);
}

.footer__bottom p {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: rgba(253, 248, 240, 0.3);
}

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
    .menu__categories {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery__item--large {
        grid-column: span 2;
    }

    .gallery__item--large img {
        aspect-ratio: 16/9;
    }

    .gallery__item:not(.gallery__item--large) img {
        aspect-ratio: 1/1;
    }

    .visit__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .contact__inner {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .footer__top {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .nav__links {
        display: flex;
    }

    .nav__burger {
        display: none;
    }

    .hero__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .hero__text {
        padding-right: 2rem;
    }

    .story__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .story__image-col {
        max-width: 480px;
    }

    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto auto;
    }

    .gallery__item--large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery__item--large img {
        aspect-ratio: auto;
        height: 100%;
    }

    .gallery__item--wide {
        grid-column: span 2;
    }

    .gallery__item--wide img {
        aspect-ratio: 16/9;
    }

    .gallery__item:not(.gallery__item--large):not(.gallery__item--wide) img {
        aspect-ratio: 1/1;
    }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .marquee-strip__inner {
        animation: none;
    }
}
