*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --black: #0a0a0a;
    --white: #f5f4f0;
    --gray: #888;
    --light-gray: #e8e6e1;
    --mid-gray: #2a2a2a;
    --accent: #c8b89a;
    --font-display: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
}

/* ── HEADER ── */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    height: 72px;
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);
    transition: box-shadow .3s;
}

header.scrolled {
    box-shadow: 0 4px 32px rgba(0, 0, 0, .08);
}

.logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: .15em;
    color: var(--black);
    text-decoration: none;
}

nav {
    display: flex;
    gap: 2.5rem;
}

nav a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--black);
    text-decoration: none;
    position: relative;
    transition: color .2s;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--black);
    transition: width .3s;
}

nav a:hover::after {
    width: 100%;
}

.header-icons {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.search svg {
    width: 18px;
    height: auto;
}

.header-icons button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    color: var(--black);
    padding: 4px;
    transition: opacity .2s;
}

.header-icons button:hover {
    opacity: .5;
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -6px;
    background: var(--black);
    color: var(--white);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: .65rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--black);
    transition: all .3s;
    display: block;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 999;
    border-bottom: 1px solid var(--light-gray);
    padding: 2rem 5vw;
    flex-direction: column;
    gap: 1.5rem;
    transform: translateY(-100%);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}

.mobile-nav.open {
    transform: translateY(0);
}

.mobile-nav a {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--black);
    text-decoration: none;
}

/* ── HERO ── */
.hero {
    margin-top: 72px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    height: calc(100vh - 72px);
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8vw 6vw 8vw 8vw;
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-text::before {
    content: 'VŌID';
    position: absolute;
    font-family: var(--font-display);
    font-size: 22vw;
    font-weight: 900;
    color: rgba(255, 255, 255, .03);
    bottom: -4vw;
    right: -4vw;
    line-height: 1;
    user-select: none;
}

.hero-eyebrow {
    font-size: .8rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 7rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2rem;
}

.hero-title em {
    font-style: italic;
    color: var(--accent);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.7;
    color: rgba(245, 244, 240, .6);
    max-width: 400px;
    margin-bottom: 3.5rem;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: 1rem 2rem;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .3s;
}

.btn-white {
    background: var(--white);
    color: var(--black);
}

.btn-white:hover {
    background: var(--accent);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(245, 244, 240, .3);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(245, 244, 240, .07);
}

.btn-black {
    background: var(--black);
    color: var(--white);
}

.btn-black:hover {
    background: var(--mid-gray);
}

.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: grayscale(20%);
    transition: transform 8s ease;
}

.hero-image:hover img {
    transform: scale(1.04);
}

.hero-stat {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    background: var(--white);
    padding: 1.2rem 1.8rem;
}

.hero-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
}

.hero-stat span {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--gray);
}

/* ── MARQUEE ── */
.marquee-wrap {
    background: var(--black);
    color: var(--white);
    overflow: hidden;
    padding: 1.2rem 0;
    border-top: 1px solid var(--mid-gray);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 22s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-right: 4rem;
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    white-space: nowrap;
}

.marquee-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ── SECTION COMMON ── */
section {
    padding: 7rem 5vw;
}

.section-header {
    margin-bottom: 4rem;
}

.section-eyebrow {
    display: inline-block;
    font-size: .75rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4.5vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
}

.section-title em {
    font-style: italic;
}

.section-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

/* ── CATEGORY PILLS ── */
.filter-row {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.filter-btn {
    padding: .6rem 1.5rem;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    border: 1px solid var(--light-gray);
    background: transparent;
    cursor: pointer;
    transition: all .2s;
    color: var(--gray);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* ── PRODUCT GRID ── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.product-card {
    background: var(--white);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: opacity .2s;
}

.product-card:hover .product-img img {
    transform: scale(1.07);
}

.product-card:hover .card-overlay {
    opacity: 1;
}

.product-card:hover .quick-add {
    transform: translateY(0);
    opacity: 1;
}

.product-img {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--light-gray);
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: grayscale(15%);
    transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, .15);
    opacity: 0;
    transition: opacity .3s;
}

.quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--black);
    color: var(--white);
    padding: 1rem;
    text-align: center;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    transform: translateY(100%);
    opacity: 0;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

.badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--black);
    color: var(--white);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .35rem .8rem;
    z-index: 2;
}

.badge.sale {
    background: #c8b89a;
}

.badge.limited {
    background: var(--mid-gray);
}

.wishlist-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    z-index: 2;
    opacity: 0;
    transition: opacity .3s;
}

.product-card:hover .wishlist-btn {
    opacity: 1;
}

.product-info {
    padding: 1.2rem 0 2rem;
    border-bottom: 1px solid var(--light-gray);
}

.product-cat {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--gray);
    margin-bottom: .4rem;
    font-weight: 500;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: .6rem;
    line-height: 1.2;
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 600;
}

.product-price-original {
    font-size: .9rem;
    color: var(--gray);
    text-decoration: line-through;
}

.stars {
    font-size: .75rem;
    color: var(--gray);
    margin-top: .4rem;
}

.stars span {
    color: var(--black);
    font-weight: 600;
}

/* ── EDITORIAL BAND ── */
.editorial {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.editorial-image {
    overflow: hidden;
    position: relative;
}

.editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: transform 6s ease;
}

.editorial-image:hover img {
    transform: scale(1.05);
}

.editorial-content {
    background: var(--black);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8vw;
    position: relative;
    overflow: hidden;
}

.editorial-content::before {
    content: '"';
    position: absolute;
    font-family: var(--font-display);
    font-size: 30vw;
    font-weight: 900;
    color: rgba(255, 255, 255, .025);
    top: -8vw;
    left: -4vw;
    line-height: 1;
}

.editorial-quote {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 4rem);
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 2.5rem;
}

.editorial-attribution {
    font-size: .8rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 3rem;
}

/* ══════════════════════════════════════════
   ── FEATURED STRIP — HORIZONTAL SCROLL CARDS ──
══════════════════════════════════════════ */

.featured-strip {
    background: var(--white);
    padding: 7rem 0 7rem 5vw;
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--light-gray);
}

/* Section label row */
.strip-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 5vw;
    margin-bottom: 4rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.strip-top-left {}

.strip-top-left .strip-eyebrow {
    display: block;
    font-size: .7rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: .7rem;
}

.strip-top-left h3 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3.8rem);
    font-weight: 900;
    color: var(--black);
    line-height: 1.05;
}

.strip-top-left h3 em {
    font-style: italic;
}

/* horizontal scroll row */
.strip-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-right: 5vw;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.strip-scroll::-webkit-scrollbar {
    display: none;
}

/* each card */
.strip-card {
    flex: 0 0 340px;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
    background: var(--black);
    color: var(--white);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    cursor: default;
}

.strip-card:hover {
    transform: translateY(-8px);
}

/* large bg number */
.strip-number {
    position: absolute;
    bottom: -1rem;
    right: -0.5rem;
    font-family: var(--font-display);
    font-size: 11rem;
    font-weight: 900;
    color: rgba(255, 255, 255, .055);
    line-height: 1;
    user-select: none;
    pointer-events: none;
    transition: color .4s;
}

.strip-card:hover .strip-number {
    color: rgba(200, 184, 154, .13);
}

/* top icon area */
.strip-icon-area {
    margin-bottom: 2.5rem;
}

/* custom icon SVG styling */
.strip-svg-icon {
    width: 52px;
    height: 52px;
    display: block;
}

.strip-svg-icon .icon-bg {
    fill: rgba(255, 255, 255, .07);
    transition: fill .3s;
}

.strip-card:hover .strip-svg-icon .icon-bg {
    fill: rgba(200, 184, 154, .18);
}

.strip-svg-icon .icon-stroke {
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.strip-svg-icon .icon-fill {
    fill: var(--accent);
    stroke: none;
}

/* text */
.strip-tag {
    display: inline-block;
    font-size: .62rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(200, 184, 154, .35);
    padding-bottom: .3rem;
}

.strip-title {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.strip-desc {
    font-size: .88rem;
    line-height: 1.85;
    color: rgba(245, 244, 240, .5);
    flex: 1;
    transition: color .3s;
}

.strip-card:hover .strip-desc {
    color: rgba(245, 244, 240, .75);
}

/* bottom cta line */
.strip-link {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-top: 2.5rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(245, 244, 240, .3);
    text-decoration: none;
    transition: color .3s, gap .3s;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 1.5rem;
}

.strip-card:hover .strip-link {
    color: var(--accent);
    gap: 1.1rem;
}

.strip-link-arrow {
    font-size: 1rem;
    transition: transform .3s;
}

.strip-card:hover .strip-link-arrow {
    transform: translateX(5px);
}

/* nav dots */
.strip-nav {
    display: flex;
    gap: .6rem;
    align-items: center;
    padding-right: 5vw;
    margin-top: 2.5rem;
}

.strip-dot {
    width: 28px;
    height: 3px;
    background: var(--light-gray);
    cursor: pointer;
    transition: background .2s, width .2s;
    border: none;
    padding: 0;
}

.strip-dot.active {
    background: var(--black);
    width: 44px;
}

.powered-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

/* responsive */
@media (max-width: 900px) {
    .strip-card {
        flex: 0 0 300px;
        min-height: 380px;
    }

    .featured-strip {
        padding: 5rem 0 5rem 4vw;
    }
}

@media (max-width: 600px) {
    .strip-card {
        flex: 0 0 80vw;
        min-height: 360px;
        padding: 2.2rem;
    }

    .strip-number {
        font-size: 8rem;
    }

    .strip-title {
        font-size: 1.6rem;
    }

    .featured-strip {
        padding: 4rem 0 4rem 4vw;
    }

    .strip-top {
        padding-right: 4vw;
        margin-bottom: 2.5rem;
    }

    .strip-scroll {
        gap: 1rem;
        padding-right: 4vw;
    }
}

/* ── NEWSLETTER ── */
.newsletter {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 8rem 5vw;
}

.newsletter .section-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.newsletter p {
    color: rgba(245, 244, 240, .55);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0;
    border: 1px solid rgba(245, 244, 240, .2);
}

.newsletter-form input {
    flex: 1;
    padding: 1.1rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: .95rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(245, 244, 240, .3);
}

.newsletter-form button {
    padding: 1.1rem 2rem;
    background: var(--white);
    color: var(--black);
    border: none;
    font-family: var(--font-body);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s;
}

.newsletter-form button:hover {
    background: var(--accent);
    color: var(--white);
}

/* ── FOOTER ── */
footer {
    background: var(--black);
    color: var(--white);
    border-top: 1px solid var(--mid-gray);
    padding: 5rem 5vw 2.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    color: var(--white);
    display: block;
    margin-bottom: 1.2rem;
}

.footer-brand p {
    font-size: .9rem;
    color: rgba(255, 255, 255, .4);
    line-height: 1.7;
    max-width: 260px;
}

.footer-col h4 {
    font-size: .75rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--accent);
    font-weight: 600;
}

.footer-col a {
    display: block;
    font-size: .9rem;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    margin-bottom: .8rem;
    transition: color .2s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--mid-gray);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: .8rem;
    color: rgba(255, 255, 255, .3);
}

/* ── HIDDEN / SHOW ── */
.product-card.hidden {
    display: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 900px) {
    nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-text {
        padding: 5rem 6vw;
        min-height: 60vw;
    }

    .hero-image {
        height: 60vw;
    }

    .editorial {
        grid-template-columns: 1fr;
    }

    .editorial-image {
        height: 50vw;
    }

    .editorial-content {
        padding: 6vw;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* strip */
    .strip-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .strip-header-right {
        text-align: left;
        max-width: 100%;
    }

    .featured-strip {
        padding: 5rem 5vw;
    }

    .strip-card:hover {
        transform: translate(-3px, -3px);
        box-shadow: 6px 6px 0 var(--black);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    header {
        padding: 0 4vw;
        height: 64px;
    }

    .mobile-nav {
        top: 64px;
    }

    .hero {
        margin-top: 64px;
    }

    .hero-text {
        padding: 3.5rem 5vw;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-image {
        height: 75vw;
    }

    .hero-stat {
        bottom: 1rem;
        left: 1rem;
        padding: .9rem 1.2rem;
    }

    .hero-stat strong {
        font-size: 1.6rem;
    }

    section {
        padding: 4rem 4vw;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
    }

    .product-name {
        font-size: 1rem;
    }

    .product-info {
        padding: .8rem 0 1.2rem;
    }

    .newsletter-form {
        flex-direction: column;
        border: none;
        gap: .5rem;
    }

    .newsletter-form input,
    .newsletter-form button {
        border: 1px solid rgba(245, 244, 240, .2);
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .editorial-image {
        height: 80vh;
    }

    .editorial-content {
        padding: 5vw;
    }

    .editorial-quote {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .filter-btn {
        padding: .5rem 1rem;
        font-size: .75rem;
    }

    .btn {
        padding: .85rem 1.5rem;
        font-size: .8rem;
    }

    /* strip mobile */
    .featured-strip {
        padding: 3.5rem 4vw;
    }

    .strip-header {
        margin-bottom: 2.5rem;
    }

    .strip-card {
        padding: 2rem 1.8rem;
    }

    .strip-number {
        font-size: 3.5rem;
        margin-bottom: 1rem;
    }

    .strip-title {
        font-size: 1.3rem;
    }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp .8s cubic-bezier(.4, 0, .2, 1) both;
}

.delay-1 {
    animation-delay: .15s;
}

.delay-2 {
    animation-delay: .3s;
}

.delay-3 {
    animation-delay: .45s;
}