/* ═══════════════════════════════════════════
   Charlie's Fried Chicken – Homepage Styles
   ═══════════════════════════════════════════ */

:root {
    --cfc-red: #d4001a;
    --cfc-dark-red: #b0001a;
    --cfc-cream: #f5f0eb;
    --cfc-black: #111111;
    --cfc-white: #ffffff;
    --cfc-font-heading: 'Hannik', 'Georgia', serif;
    --cfc-font-body: 'Instrument Sans', 'Helvetica Neue', Arial, sans-serif;
}

/* ─── Reset for homepage scope ─── */
.cfc-homepage *,
.cfc-header *,
.cfc-footer * {
    box-sizing: border-box;
}

.cfc-homepage {
    font-family: var(--cfc-font-body);
    color: var(--cfc-black);
    overflow-x: hidden;
    line-height: 1.5;
}

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

/* ═══════════════════════════════════
   HEADER
   ═══════════════════════════════════ */

.cfc-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--cfc-red);
    font-family: var(--cfc-font-body);
}

.cfc-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 32px;
    gap: 24px;
}

.cfc-header__logo img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}

.cfc-header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.cfc-header__link {
    color: var(--cfc-white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: opacity 0.2s;
}

.cfc-header__link:hover {
    opacity: 0.75;
}

.cfc-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cfc-header__cart {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--cfc-white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.cfc-header__btn {
    display: inline-block;
    background: var(--cfc-white);
    color: var(--cfc-red);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.cfc-header__btn:hover {
    background: var(--cfc-cream);
    transform: scale(1.03);
}

/* Burger */
.cfc-header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.cfc-header__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cfc-white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.cfc-header__burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.cfc-header__burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.cfc-header__burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════
   BUTTONS
   ═══════════════════════════════════ */

.cfc-btn {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 8px;
    font-family: var(--cfc-font-heading);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    text-align: center;
}

.cfc-btn--outline {
    background: transparent;
    color: var(--cfc-white);
    border-color: var(--cfc-white);
}

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

.cfc-btn--white {
    background: var(--cfc-white);
    color: var(--cfc-red);
    border-color: var(--cfc-white);
}

.cfc-btn--white:hover {
    background: transparent;
    color: var(--cfc-white);
}

.cfc-btn--solid {
    background: var(--cfc-red);
    color: var(--cfc-white);
    border-color: var(--cfc-red);
}

.cfc-btn--solid:hover {
    background: var(--cfc-dark-red);
    border-color: var(--cfc-dark-red);
    transform: translateY(-1px);
}

.cfc-btn--solid.cfc-btn--red {
    background: var(--cfc-red);
    border-color: var(--cfc-red);
}

.cfc-btn--dark {
    color: var(--cfc-black);
    border-color: var(--cfc-black);
    background: transparent;
}

.cfc-btn--dark:hover {
    background: var(--cfc-black);
    color: var(--cfc-white);
}

.cfc-btn--small {
    padding: 4px 12px;
    font-size: 16px;
}

/* ═══════════════════════════════════
   HERO
   ═══════════════════════════════════ */

.cfc-hero {
    position: relative;
    height: 100vh;
    max-height: 750px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--cfc-red);
    background-size: cover;
    background-position: center bottom -600px;
    background-repeat: no-repeat;
    overflow: hidden;
}

.cfc-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 32px;
    margin-top: 5%;
    margin-bottom: auto;
}

.cfc-hero__headline {
    font-family: var(--cfc-font-heading);
    font-size: clamp(52px, 10vw, 180px);
    font-weight: 700;
    color: var(--cfc-white);
    line-height: 0.8;
    margin: 0 0 36px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    overflow: hidden;
}

.cfc-hero__line {
    display: block;
    animation: cfc-line-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    opacity: 0;
    transform: translateY(100%) rotateX(-10deg);
}

.cfc-hero__fade {
    animation: cfc-fade-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
    opacity: 0;
}

@keyframes cfc-line-up {
    0% {
        opacity: 0;
        transform: translateY(100%) rotateX(-10deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

@keyframes cfc-fade-up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.cfc-hero__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cfc-hero__scroll {
    position: absolute;
    right: 32px;
    bottom: 40px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--cfc-white);
    font-family: var(--cfc-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    writing-mode: vertical-lr;
}

.cfc-hero__scroll svg {
    transform: rotate(90deg);
    animation: cfc-bounce 2s 1.5s infinite;
}

@keyframes cfc-bounce {
    0%, 100% { transform: rotate(90deg) translateX(0); }
    50% { transform: rotate(90deg) translateX(6px); }
}

/* ═══════════════════════════════════
   MARQUEE
   ═══════════════════════════════════ */

.cfc-marquee {
    background: var(--cfc-white);
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
}

.cfc-footer__marquee {
    background: var(--cfc-red);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}

.cfc-marquee__track {
    display: flex;
    gap: 0;
    animation: cfc-marquee-scroll var(--marquee-speed, 50s) linear infinite;
    width: max-content;
}

.cfc-marquee .cfc-marquee__item {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 0 40px;
    font-family: var(--cfc-font-heading);
    font-size: 100px;
    font-weight: 700;
    color: var(--cfc-red);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    flex-shrink: 0;
    line-height: 1;
}

.cfc-footer__marquee .cfc-marquee__item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 0 32px;
    font-family: var(--cfc-font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--cfc-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.cfc-marquee .cfc-marquee__icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
    flex-shrink: 0;
}

.cfc-footer__marquee .cfc-marquee__icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

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

/* ═══════════════════════════════════
   MENU SECTION
   ═══════════════════════════════════ */

.cfc-menu {
    padding: 80px 0 80px 64px;
    max-width: none;
    margin: 0;
}

.cfc-menu__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 48px;
    padding-right: 64px;
}

.cfc-menu__heading {
    font-family: var(--cfc-font-heading);
    font-size: clamp(48px, 8vw, 100px);
    font-weight: 700;
    color: var(--cfc-black);
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.cfc-menu--visible .cfc-menu__heading {
    opacity: 1;
    transform: translateX(0);
}

.cfc-menu__nav {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    padding-top: 10px;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.cfc-menu--visible .cfc-menu__nav {
    opacity: 1;
    transform: translateX(0);
}

.cfc-menu__arrow {
    width: auto;
    height: auto;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    line-height: 0;
}

.cfc-menu__arrow img {
    width: 80px;
    height: auto;
    display: block;
}

.cfc-menu__arrow:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.cfc-menu__carousel {
    overflow: hidden;
}

.cfc-menu__track {
    display: flex;
    gap: 32px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cfc-menu__card {
    flex: 0 0 calc(42% - 16px);
    min-width: 340px;
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.cfc-menu--visible .cfc-menu__card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.cfc-menu--visible .cfc-menu__card:nth-child(1) { transition-delay: 0.3s; }
.cfc-menu--visible .cfc-menu__card:nth-child(2) { transition-delay: 0.45s; }
.cfc-menu--visible .cfc-menu__card:nth-child(3) { transition-delay: 0.6s; }
.cfc-menu--visible .cfc-menu__card:nth-child(4) { transition-delay: 0.75s; }

.cfc-menu__card-img-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--cfc-red);
    margin: 12px 12px 0;
    border-radius: 12px;
}

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

.cfc-menu__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--cfc-red);
    color: var(--cfc-white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cfc-menu__card-body {
    padding: 20px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cfc-menu__card-body .cfc-btn--menu {
    margin-top: auto;
}

.cfc-menu__card-title {
    font-family: var(--cfc-font-heading);
    font-size: clamp(24px, 3vw, 45px);
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 12px;
    color: var(--cfc-black);
    line-height: 1.1;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
}

.cfc-menu__card-desc {
    font-size: 14px;
    color: #555;
    margin: 0 0 16px;
    line-height: 1.6;
}

.cfc-menu__card-served {
    font-family: var(--cfc-font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 10px;
    color: var(--cfc-black);
}

.cfc-menu__card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.cfc-menu__card-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(212, 0, 26, 0.08);
    color: var(--cfc-red);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.cfc-btn--menu {
}

/* ═══════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════ */

.cfc-cta {
    background: var(--cfc-cream);
    padding: 60px;
}

.cfc-cta__grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 600px !important;
    gap: 0;
    background: var(--cfc-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 0 1px #e0e0e0;
}

.cfc-cta__content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.cfc-cta--flipped .cfc-cta__content {
    transform: translateX(50px);
}

.cfc-cta--visible .cfc-cta__content {
    opacity: 1;
    transform: translateX(0);
}

.cfc-cta__small {
    display: block;
    font-family: var(--cfc-font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cfc-black);
    opacity: 0.6;
    margin-bottom: 20px;
}

.cfc-cta__headline {
    font-family: var(--cfc-font-heading);
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 700;
    color: var(--cfc-black);
    line-height: 0.95;
    margin: 0 0 36px;
    text-transform: uppercase;
}

.cfc-cta__headline em {
    font-style: italic;
    color: var(--cfc-red);
}

.cfc-cta__buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}


.cfc-cta__slideshow {
    position: relative;
    overflow: hidden;
    padding: 16px;
    max-height: 600px;
    opacity: 0;
    transform: translateX(50px) scale(0.97);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.cfc-cta--flipped .cfc-cta__slideshow {
    transform: translateX(-50px) scale(0.97);
}

.cfc-cta--visible .cfc-cta__slideshow {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.cfc-cta__slide {
    position: absolute;
    inset: 16px;
    width: calc(100% - 32px);
    height: calc(100% - 32px);
    object-fit: cover;
    display: block;
    border-radius: 16px;
    opacity: 0;
}

.cfc-cta__slide--active {
    opacity: 1;
}

/* Flipped variant — image left, content right */
.cfc-cta--flipped .cfc-cta__grid {
    direction: rtl;
}

.cfc-cta--flipped .cfc-cta__grid > * {
    direction: ltr;
}

.cfc-hours__times {
    font-family: var(--cfc-font-heading);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: var(--cfc-black);
    margin: 0 0 32px;
}

.cfc-hours__play {
    position: absolute;
    bottom: 32px;
    left: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--cfc-red);
    color: var(--cfc-white);
    padding: 5px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-family: var(--cfc-font-heading);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    transition: background 0.2s;
}

.cfc-hours__play:hover {
    background: var(--cfc-dark-red);
}

/* ═══════════════════════════════════
   OUR STORY
   ═══════════════════════════════════ */

.cfc-story {
    padding: 60px 0 60px 60px;
    background: var(--cfc-black);
    overflow: hidden;
    border-radius: 24px;
    margin: 0 40px;
}

.cfc-story__layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: stretch;
}

.cfc-story__left {
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.cfc-story--visible .cfc-story__left {
    opacity: 1;
    transform: translateY(0);
}

.cfc-story__heading {
    font-family: var(--cfc-font-heading);
    font-size: clamp(60px, 15vw, 200px);
    font-weight: 700;
    color: var(--cfc-white);
    text-transform: uppercase;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    transform: rotate(180deg);
    line-height: 0.85;
    margin: 0;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.cfc-story__right {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cfc-story__top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-right: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.3s, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.cfc-story--visible .cfc-story__top-bar {
    opacity: 1;
    transform: translateY(0);
}

.cfc-story__nav {
    display: flex;
    gap: 10px;
}

.cfc-story__tagline {
    height: 40px !important;
    width: auto;
}

.cfc-story__nav .cfc-menu__arrow img {
    width: 80px;
}

.cfc-story__carousel {
    overflow: hidden;
    flex: 1;
}

.cfc-story__track {
    display: flex;
    gap: 28px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cfc-story__card {
    flex: 0 0 340px;
    min-width: 340px;
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.cfc-story--visible .cfc-story__card {
    opacity: 1;
    transform: translateX(0);
}

.cfc-story--visible .cfc-story__card:nth-child(1) { transition-delay: 0.4s; }
.cfc-story--visible .cfc-story__card:nth-child(2) { transition-delay: 0.55s; }
.cfc-story--visible .cfc-story__card:nth-child(3) { transition-delay: 0.7s; }
.cfc-story--visible .cfc-story__card:nth-child(4) { transition-delay: 0.85s; }

.cfc-story__card-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    margin-bottom: 16px;
}

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

.cfc-story__card-label {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: var(--cfc-white);
    color: var(--cfc-black);
    padding: 8px 16px;
    border-radius: 8px;
    font-family: var(--cfc-font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cfc-story__card-title {
    font-family: var(--cfc-font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--cfc-white);
    margin: 0 0 8px;
    text-transform: uppercase;
    line-height: 1.2;
}

.cfc-story__card-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}


/* ═══════════════════════════════════
   EVENTS
   ═══════════════════════════════════ */

.cfc-events {
    position: relative;
    padding: 120px 32px;
    background-size: cover;
    background-position: center;
    background-color: var(--cfc-red);
    text-align: center;
}

.cfc-events__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.cfc-events__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cfc-events__small {
    display: block;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cfc-white);
    opacity: 0;
    margin-bottom: 16px;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.cfc-events--visible .cfc-events__small {
    opacity: 0.8;
    transform: translateY(0);
}

.cfc-events__headline {
    font-family: var(--cfc-font-heading);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    color: var(--cfc-white);
    line-height: 1;
    margin: 0 0 32px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.35s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.35s;
}

.cfc-events--visible .cfc-events__headline {
    opacity: 1;
    transform: translateY(0);
}

.cfc-events__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.55s, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.55s;
}

.cfc-events--visible .cfc-events__buttons {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════
   FOOTER
   ═══════════════════════════════════ */

.cfc-footer {
    background: var(--cfc-red);
    color: var(--cfc-white);
    font-family: var(--cfc-font-body);
}

/* Large footer marquee — matches homepage marquee style */
.cfc-footer__marquee-lg {
    background: var(--cfc-red);
    padding: 24px 0;
    overflow: hidden;
    white-space: nowrap;
}

.cfc-footer__marquee-lg .cfc-marquee__track {
    animation: cfc-marquee-scroll 50s linear infinite;
}

.cfc-footer__marquee-lg .cfc-marquee__item {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 0 40px;
    font-family: var(--cfc-font-heading);
    font-size: 80px;
    font-weight: 700;
    color: var(--cfc-white);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    flex-shrink: 0;
    line-height: 1;
}

.cfc-footer__marquee-lg .cfc-marquee__icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

.cfc-footer__main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 64px 32px;
}

.cfc-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.cfc-footer__title {
    font-family: var(--cfc-font-heading);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 20px;
    color: var(--cfc-white);
}

.cfc-footer__text {
    font-family: var(--cfc-font-heading);
    font-size: 24px;
    line-height: 1.6;
    color: var(--cfc-white);
    margin: 0;
    text-transform: uppercase;
}

.cfc-footer__link {
    display: block;
    color: var(--cfc-white);
    text-decoration: none;
    font-family: var(--cfc-font-heading);
    font-size: 24px;
    padding: 3px 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: opacity 0.2s;
}

.cfc-footer__link:hover {
    opacity: 0.7;
}

.cfc-footer__newsletter {
    display: flex;
    gap: 0;
    margin-bottom: 12px;
}

.cfc-footer__input {
    flex: 1;
    background: var(--cfc-white);
    border: none;
    border-radius: 8px 0 0 8px;
    padding: 14px 16px;
    color: var(--cfc-black);
    font-size: 14px;
    font-family: var(--cfc-font-heading);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cfc-footer__input::placeholder {
    color: #999;
}

.cfc-footer__submit {
    background: var(--cfc-black);
    color: var(--cfc-white);
    border: none;
    border-radius: 0 8px 8px 0;
    padding: 14px 20px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.cfc-footer__submit:hover {
    background: #333;
}

.cfc-footer__privacy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.5;
}

.cfc-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cfc-footer__copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.cfc-footer__payment-icons {
    height: 32px;
    max-height: 32px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */

@media (max-width: 1024px) {
    .cfc-story__card {
        flex: 0 0 300px;
        min-width: 300px;
    }

    .cfc-menu__card {
        flex: 0 0 calc(50% - 16px);
    }

    .cfc-menu {
        padding: 60px 24px;
    }

    .cfc-menu__arrow img {
        width: 60px;
    }
}

@media (max-width: 768px) {
    .cfc-header__nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--cfc-red);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        z-index: 999;
    }

    .cfc-header__nav.cfc-header__nav--open {
        transform: translateX(0);
    }

    .cfc-header__nav .cfc-header__link {
        font-size: 20px;
    }

    .cfc-header__burger {
        display: flex;
    }

    .cfc-header__actions {
        z-index: 1001;
    }

    .cfc-header__cart-total {
        display: none;
    }

    .cfc-hero__content {
        padding: 100px 24px 0;
    }

    .cfc-hero__headline {
        font-size: clamp(40px, 12vw, 72px);
    }

    .cfc-hero__scroll {
        right: 16px;
        bottom: 24px;
    }

    .cfc-menu {
        padding: 60px 24px;
    }

    .cfc-menu__card {
        flex: 0 0 85%;
    }


    .cfc-story {
        margin: 0 16px;
        padding: 40px 24px;
    }

    .cfc-story__layout {
        grid-template-columns: 1fr;
    }

    .cfc-story__left {
        display: flex;
        justify-content: center;
    }

    .cfc-story__heading {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 48px;
    }

    .cfc-story__card {
        flex: 0 0 260px;
        min-width: 260px;
    }

    .cfc-footer__marquee-lg .cfc-marquee__item {
        font-size: 48px;
    }

    .cfc-footer__marquee-lg .cfc-marquee__icon {
        width: 40px;
        height: 40px;
    }

    .cfc-footer__main {
        padding: 40px 24px 24px;
    }

    .cfc-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .cfc-footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .cfc-cta {
        padding: 24px;
    }

    .cfc-cta__grid {
        grid-template-columns: 1fr;
    }

    .cfc-cta__content {
        padding: 40px 24px;
        text-align: center;
    }

    .cfc-cta__buttons {
        justify-content: center;
    }

    .cfc-cta__slideshow {
        min-height: 300px;
    }

    .cfc-cta--flipped .cfc-cta__grid {
        direction: ltr;
    }

    .cfc-events__content {
        padding-left: 0;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cfc-hero__buttons {
        flex-direction: column;
        align-items: center;
    }

    .cfc-footer__grid {
        grid-template-columns: 1fr;
    }

    .cfc-story__card {
        flex: 0 0 200px;
        min-width: 200px;
    }
}
