/* ==================================================
   LA TERRAZA MEXICAN GRILL – STYLES
   ================================================== */

/* VARIABLES */
:root {
    --cream: #F7F5EF;
    --white: #FFFFFF;
    --gold: #CBB184;
    --gold-dark: #AD8E5E;
    --charcoal: #2D2C27;
    --text: #272727;
    --text-muted: #6B6862;
    --border: #E6E1D6;

    --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
    --font-sans: "Montserrat", "Helvetica Neue", Arial, sans-serif;

    --container: 1200px;
    --radius: 8px;
    --shadow: 0 10px 30px rgba(45, 44, 39, 0.10);
    --transition: 0.35s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    font: inherit;
    border: 0;
    background: none;
    cursor: pointer;
    color: inherit;
}

.icon {
    width: 1em;
    height: 1em;
    fill: currentColor;
    flex-shrink: 0;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* SHARED TYPOGRAPHY */
.section-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-dark);
    text-align: center;
    margin-bottom: 10px;
}

.section-eyebrow--lines {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.section-eyebrow--lines::before,
.section-eyebrow--lines::after {
    content: "";
    width: 48px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(1.9rem, 3.2vw, 2.7rem);
    line-height: 1.2;
    text-align: center;
    color: var(--text);
}

.divider {
    display: block;
    width: 56px;
    height: 2px;
    background: var(--gold);
    margin: 22px auto;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 30px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn .icon {
    font-size: 1rem;
    transition: transform var(--transition);
}

.btn:hover .icon {
    transform: translateX(4px);
}

.btn--gold {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(173, 142, 94, 0.35);
}

.btn--gold:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.btn--light {
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
}

.btn--light:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.btn--outline {
    background: var(--white);
    color: var(--text);
    border: 1px solid var(--gold);
}

.btn--outline .icon {
    color: var(--gold-dark);
}

.btn--outline:hover {
    background: var(--gold);
    color: var(--white);
}

.btn--outline:hover .icon {
    color: var(--white);
    transform: none;
}

/* SLIDER ARROWS (shared by hero & favorites) */
.slider-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: background var(--transition), color var(--transition), transform var(--transition);
    z-index: 5;
}

.slider-arrow .icon {
    font-size: 1.3rem;
}

.slider-arrow:hover {
    background: var(--gold);
    color: var(--white);
}

/* ==================================================
   TOP BAR
   ================================================== */
.top-bar {
    background: var(--gold);
    color: var(--white);
    font-size: 0.78rem;
    letter-spacing: 0.02em;
}

.top-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 38px;
    gap: 16px;
}

.top-bar__info {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.top-bar__item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.top-bar__item .icon {
    font-size: 0.95rem;
}

.top-bar__social {
    display: flex;
    gap: 14px;
}

.top-bar__social a {
    display: flex;
    font-size: 1rem;
    transition: opacity var(--transition);
}

.top-bar__social a:hover {
    opacity: 0.7;
}

/* ==================================================
   HEADER
   ================================================== */
.header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 88px;
}

.header__logo img {
    height: 62px;
    width: auto;
}

.nav__list {
    display: flex;
    gap: 44px;
}

.nav__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 0;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text);
    transition: color var(--transition);
}

.nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
}

.nav__link:hover,
.nav__link.is-active {
    color: var(--gold-dark);
}

.nav__link:hover::after,
.nav__link.is-active::after {
    transform: scaleX(1);
}

/* Hamburger */
.hamburger {
    display: none;
    width: 42px;
    height: 42px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text);
    transition: transform var(--transition), opacity var(--transition);
}

.hamburger.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==================================================
   HERO
   ================================================== */
.hero {
    position: relative;
    min-height: 620px;
    height: calc(100vh - 126px);
    max-height: 760px;
    display: flex;
    align-items: center;
    background: var(--cream);
    overflow: hidden;
}

.hero__slides {
    position: absolute;
    inset: 0;
}

.hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1.1s ease, transform 6s ease;
}

.hero__slide.is-active {
    opacity: 1;
    transform: scale(1);
}

/* Cream gradient so the text stays readable while the food remains prominent */
.hero__slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(247, 245, 239, 0.96) 0%,
        rgba(247, 245, 239, 0.92) 30%,
        rgba(247, 245, 239, 0.55) 48%,
        rgba(247, 245, 239, 0) 68%);
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: var(--container);
}

.hero__eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 8px;
}

.hero__title {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: clamp(3rem, 6.2vw, 5.4rem);
    line-height: 0.98;
    text-transform: uppercase;
    color: var(--text);
    letter-spacing: 0.01em;
}

.hero__subtitle {
    margin-top: 18px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text);
}

.hero__text {
    margin-top: 24px;
    max-width: 380px;
    font-size: 0.98rem;
    color: var(--text-muted);
}

.hero__content .btn {
    margin-top: 32px;
}

.hero .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.hero .slider-arrow--prev {
    left: 24px;
}

.hero .slider-arrow--next {
    right: 24px;
}

.hero__dots {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero__dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(45, 44, 39, 0.25);
    border: 2px solid transparent;
    transition: background var(--transition), transform var(--transition);
}

.hero__dot:hover {
    background: var(--gold);
}

.hero__dot.is-active {
    background: var(--gold-dark);
    transform: scale(1.25);
}

/* ==================================================
   WELCOME
   ================================================== */
.welcome {
    position: relative;
    padding: 84px 0 80px;
    background: var(--white);
    text-align: center;
    overflow: hidden;
}

.welcome__inner {
    max-width: 780px;
    position: relative;
    z-index: 1;
}

.welcome__text {
    max-width: 640px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1rem;
}

/* ==================================================
   FAVORITES
   ================================================== */
.favorites {
    padding: 76px 0 84px;
    background: var(--cream);
}

.favorites__carousel {
    position: relative;
    margin-top: 44px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.favorites__viewport {
    flex: 1;
    overflow: hidden;
    touch-action: pan-y;
}

.favorites__track {
    display: flex;
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.favorites__track.no-transition {
    transition: none;
}

.fav-card {
    flex: 0 0 25%; /* 4 cards on desktop; adjusted in media queries */
    padding: 0 12px;
}

.fav-card__inner {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(45, 44, 39, 0.06);
    text-align: center;
    cursor: pointer;
    display: block;
    width: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
}

.fav-card__inner:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.fav-card__image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--border);
}

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

.fav-card__inner:hover .fav-card__image img {
    transform: scale(1.06);
}

.fav-card__zoom {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: background var(--transition), color var(--transition);
}

.fav-card__zoom .icon {
    font-size: 1rem;
}

.fav-card__inner:hover .fav-card__zoom {
    background: var(--gold);
    color: var(--white);
}

.fav-card__body {
    padding: 18px 14px 20px;
}

.fav-card__name {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1.15rem;
    color: var(--text);
}

.fav-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 9px 20px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--gold);
    transition: background var(--transition);
}

.fav-card__cta .icon {
    font-size: 0.85rem;
}

.fav-card__inner:hover .fav-card__cta {
    background: var(--gold-dark);
}

.favorites__cta {
    text-align: center;
    margin-top: 44px;
}

/* ==================================================
   COCKTAIL PARALLAX
   ================================================== */
.cocktails {
    position: relative;
    padding: 130px 0;
    color: var(--white);
    background-color: var(--charcoal);
    /* REPLACE: your cocktails banner image */
    background-image: url("images/cocktails-banner.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* parallax on desktop */
    overflow: hidden;
}

/* Subtle overlay – keeps the photo visible while text remains readable */
.cocktails::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(20, 18, 14, 0.62) 0%,
        rgba(20, 18, 14, 0.42) 45%,
        rgba(20, 18, 14, 0.12) 100%);
}

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

.cocktails__eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.cocktails__title {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: clamp(2.8rem, 5.5vw, 4.6rem);
    line-height: 1;
    text-transform: uppercase;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.cocktails__text {
    margin-top: 18px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

.cocktails__content .btn {
    margin-top: 30px;
}

/* ==================================================
   CONTACT
   ================================================== */
.contact {
    padding: 84px 0 90px;
    background: var(--white);
}

.contact__grid {
    margin-top: 52px;
    display: grid;
    grid-template-columns: 1fr 1.25fr 1.15fr;
    gap: 36px;
    align-items: start;
}

.contact__col--left,
.contact__col--right {
    display: flex;
    flex-direction: column;
    gap: 36px;
    padding-top: 6px;
}

.contact__item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact__item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact__item a:hover {
    color: var(--gold-dark);
}

.contact__icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

.contact__icon .icon {
    font-size: 1.35rem;
}

.contact__label {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: var(--text);
}

.hours {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 16px;
    row-gap: 6px;
    font-size: 0.88rem;
}

.hours dt {
    color: var(--text);
    white-space: nowrap;
}

.hours dd {
    color: var(--text-muted);
    white-space: nowrap;
}

.contact__col--center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.contact__map {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 4px solid var(--white);
    background: var(--cream);
}

.contact__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ==================================================
   FOOTER
   ================================================== */
.footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.75);
    padding: 40px 0;
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer__logo img {
    height: 60px;
    width: auto;
}

.footer__social {
    display: flex;
    gap: 18px;
}

.footer__social a {
    display: flex;
    font-size: 1.25rem;
    color: var(--white);
    transition: color var(--transition);
}

.footer__social a:hover {
    color: var(--gold);
}

.footer__credit {
    font-size: 0.8rem;
}

.footer__credit a {
    color: var(--gold);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition);
}

.footer__credit a:hover {
    border-color: var(--gold);
}

/* ==================================================
   MODAL / LIGHTBOX
   ================================================== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(20, 18, 14, 0.78);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.is-open {
    opacity: 1;
    visibility: visible;
}

.modal__box {
    position: relative;
    width: 100%;
    max-width: 880px;
    max-height: 100%;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    transform: translateY(24px) scale(0.98);
    transition: transform 0.35s ease;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.modal.is-open .modal__box {
    transform: none;
}

.modal__image {
    background: var(--border);
    min-height: 320px;
}

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

.modal__body {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.modal__body .divider {
    margin: 18px 0;
}

.modal__title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 1.2;
    color: var(--text);
}

.modal__desc {
    color: var(--text-muted);
    font-size: 0.98rem;
}

.modal__desc:empty {
    display: none;
}

.modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: background var(--transition), color var(--transition);
    z-index: 2;
}

.modal__close:hover {
    background: var(--gold);
    color: var(--white);
}

.modal__close .icon {
    font-size: 1.1rem;
}

/* ==================================================
   RESPONSIVE
   ================================================== */

/* Large tablets / small desktops */
@media (max-width: 1100px) {
    .fav-card {
        flex: 0 0 33.3333%;
    }

    .nav__list {
        gap: 26px;
    }
}

/* Tablets */
@media (max-width: 900px) {
    .hero {
        min-height: 560px;
        height: auto;
        padding: 90px 0 90px;
    }

    .hero__slide::after {
        background: linear-gradient(90deg,
            rgba(247, 245, 239, 0.96) 0%,
            rgba(247, 245, 239, 0.88) 40%,
            rgba(247, 245, 239, 0.35) 75%,
            rgba(247, 245, 239, 0.1) 100%);
    }

    .fav-card {
        flex: 0 0 50%;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Mobile order: address & phone, map & directions, hours */
    .contact__col--left  { order: 1; }
    .contact__col--center { order: 2; }
    .contact__col--right { order: 3; }

    .contact__col--left,
    .contact__col--right {
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }

    /* Parallax fallback: background-attachment: fixed is unreliable on mobile */
    .cocktails {
        background-attachment: scroll;
        padding: 100px 0;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .top-bar__inner {
        justify-content: center;
        flex-direction: column;
        gap: 4px;
        padding: 8px 16px;
    }

    .top-bar__info {
        justify-content: center;
        gap: 14px;
    }

    .top-bar__social {
        display: none;
    }

    .header__inner {
        min-height: 74px;
    }

    .header__logo img {
        height: 50px;
    }

    .hamburger {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .nav.is-open {
        max-height: 380px;
    }

    .nav__list {
        flex-direction: column;
        gap: 0;
        padding: 10px 24px 18px;
    }

    .nav__list li {
        border-bottom: 1px solid var(--border);
    }

    .nav__list li:last-child {
        border-bottom: 0;
    }

    .nav__link {
        display: flex;
        justify-content: space-between;
        padding: 16px 0;
        font-size: 0.85rem;
    }

    .nav__link::after {
        display: none;
    }

    /* Mobile: text on top over a cream fade, food photo fully visible below */
    .hero {
        min-height: 0;
        padding: 56px 0 300px;
        text-align: center;
        align-items: flex-start;
    }

    .hero__slide {
        background-position: center bottom;
    }

    .hero__slide::after {
        background: linear-gradient(180deg,
            rgba(247, 245, 239, 0.97) 0%,
            rgba(247, 245, 239, 0.94) 45%,
            rgba(247, 245, 239, 0.6) 60%,
            rgba(247, 245, 239, 0) 75%);
    }

    .hero__dots {
        bottom: 22px;
    }

    .hero__dot {
        background: rgba(255, 255, 255, 0.6);
    }

    .hero__dot.is-active {
        background: var(--white);
    }

    .hero__title {
        font-size: clamp(2.6rem, 12vw, 3.6rem);
    }

    .hero__text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero .slider-arrow {
        width: 38px;
        height: 38px;
        top: auto;
        bottom: 16px;
        transform: none;
    }

    .hero .slider-arrow--prev { left: 16px; }
    .hero .slider-arrow--next { right: 16px; }

    .welcome,
    .favorites,
    .contact {
        padding: 60px 0;
    }

    .favorites__carousel {
        gap: 8px;
        padding: 0 8px;
    }

    .favorites .slider-arrow {
        width: 38px;
        height: 38px;
    }

    .fav-card {
        flex: 0 0 100%;
        padding: 0 6px;
    }

    .cocktails {
        padding: 80px 0;
        text-align: center;
    }

    .cocktails::before {
        background: rgba(20, 18, 14, 0.5);
    }

    .hours {
        grid-template-columns: 1fr;
        row-gap: 2px;
    }

    .hours dd {
        margin-bottom: 8px;
    }

    .footer__inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .modal {
        padding: 16px;
        align-items: flex-end;
    }

    .modal__box {
        grid-template-columns: 1fr;
        max-height: 92vh;
        overflow-y: auto;
    }

    .modal__image {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .modal__body {
        padding: 28px 24px 32px;
    }

    .modal__title {
        font-size: 1.5rem;
    }
}

/* Small phones */
@media (max-width: 420px) {
    .container {
        padding: 0 16px;
    }

    .top-bar {
        font-size: 0.72rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.75rem;
    }

    .section-eyebrow--lines::before,
    .section-eyebrow--lines::after {
        width: 28px;
    }
}

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

    .hero__slide,
    .favorites__track,
    .fav-card__image img {
        transition: none;
    }
}
