/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.rc-hero {
    position: relative;
    min-height: 92vh;
    display: grid;
    grid-template-columns: 1fr 45%;
    grid-template-rows: 1fr auto;
    align-items: center;
    padding: 0 48px;
    overflow: hidden;
}

.rc-hero__image {
    position: relative;
    z-index: 2;
    width: 45%;
    flex-shrink: 0;
    grid-column: 2;
    grid-row: 1;
    z-index: 2;
}

.rc-hero__image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.rc-hero__grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 48px 48px;
    animation: gridDrift 24s linear infinite;
    opacity: 0.5;
}

.rc-hero__noise {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

.rc-hero__glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,89,60,0.12) 0%, transparent 70%);
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    animation: glowPulse 4s ease-in-out infinite;
    pointer-events: none;
}

.rc-hero__accent-line {
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 160px;
    background: linear-gradient(180deg, transparent, var(--orange), transparent);
    transform: translateY(-50%);
    animation: linePulse 3s ease-in-out infinite;
}

.rc-hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    grid-column: 1;
    grid-row: 1;
}

.rc-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--orange);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeUp 0.6s ease both;
}

.rc-hero__tag::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--orange);
}

.rc-hero__heading {
    font-family: var(--font-display);
    font-size: clamp(72px, 12vw, 120px);
    line-height: 0.92;
    letter-spacing: 0.02em;
    animation: fadeUp 0.7s 0.1s ease both;
}

.rc-hero__heading--stroke {
    -webkit-text-stroke: 1px var(--text);
    color: transparent;
}

.rc-hero__heading--dot {
    color: var(--orange);
}

.rc-hero__sub {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--muted);
    margin-top: 20px;
    max-width: 420px;
    line-height: 1.6;
    animation: fadeUp 0.7s 0.2s ease both;
}

.rc-hero__cta {
    display: flex;
    gap: 12px;
    margin-top: 36px;
    animation: fadeUp 0.7s 0.3s ease both;
}

/* ═══════════════════════════════════════════
   TICKER
═══════════════════════════════════════════ */
.rc-ticker {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--charcoal);
    padding: 10px 0;
    overflow: hidden;
    margin-top: auto;
    grid-column: 1 / -1;
    grid-row: 2;
    margin-left: -48px;
    margin-right: -48px;
}

.rc-ticker__inner {
    display: flex;
    white-space: nowrap;
    animation: ticker 18s linear infinite;
}

.rc-ticker__item {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 0 32px;
}

.rc-ticker__dot {
    color: var(--orange);
    margin-right: 16px;
}

/* ═══════════════════════════════════════════
   DROPS
═══════════════════════════════════════════ */
.rc-drops__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 48px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
}

.rc-drops__title {
    font-family: var(--font-display);
    font-size: 42px;
    letter-spacing: 0.06em;
}

.rc-drops__title span {
    color: var(--orange);
}

.rc-drops__link {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.15em;
    color: var(--orange);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

.rc-drops__link::after {
    content: '→';
}

.rc-drops__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

/* ═══════════════════════════════════════════
   PRODUCT CARD
═══════════════════════════════════════════ */
.rc-product-card {
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.rc-product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(11,15,26,0.9));
    z-index: 1;
    pointer-events: none;
}

.rc-product-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--orange);
    color: #fff;
    padding: 3px 8px;
    border-radius: 2px;
}

.rc-product-card__badge--sale {
    background: var(--amber);
    color: #000;
}

.rc-product-card__img-wrap {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--slate);
}

.rc-product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.rc-product-card:hover .rc-product-card__img {
    transform: scale(1.04);
}

.rc-product-card__img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--slate);
}

.rc-product-card__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 20px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rc-product-card__name {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 0.06em;
    color: var(--text);
}

.rc-product-card__price {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--amber);
}

.rc-product-card__price .woocommerce-Price-amount {
    color: var(--amber);
    font-family: var(--font-mono);
    font-size: 11px;
}

/* ═══════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════ */
.rc-marquee {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    overflow: hidden;
    background: rgba(232, 89, 60, 0.04);
}

.rc-marquee__inner {
    display: flex;
    white-space: nowrap;
    animation: tickerReverse 22s linear infinite;
}

.rc-marquee__word {
    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: 0.15em;
    padding: 0 24px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(232, 89, 60, 0.4);
}

.rc-marquee__word--filled {
    color: var(--orange);
    -webkit-text-stroke: none;
}

/* ═══════════════════════════════════════════
   MANIFESTO
═══════════════════════════════════════════ */
.rc-manifesto {
    padding: 80px 48px;
    background: var(--charcoal);
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: center;
}

.rc-manifesto__label {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.25em;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.rc-manifesto__heading {
    font-family: var(--font-display);
    font-size: 48px;
    line-height: 0.95;
    letter-spacing: 0.04em;
}

.rc-manifesto__heading em {
    font-style: normal;
    -webkit-text-stroke: 1px var(--text);
    color: transparent;
}

.rc-manifesto__stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
}

.rc-manifesto__stat {
    display: flex;
    flex-direction: column;
}

.rc-manifesto__stat-num {
    font-family: var(--font-display);
    font-size: 40px;
    color: var(--orange);
    line-height: 1;
}

.rc-manifesto__stat-label {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 4px;
}

.rc-manifesto__body {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--muted);
    border-left: 2px solid var(--orange);
    padding-left: 24px;
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */
.will-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.will-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 768px) {

    /* ── Hero ── */
    .rc-hero {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        min-height: auto;
        padding: 40px 20px 0;
        gap: 0;
    }

    .rc-hero__content {
        grid-column: 1;
        grid-row: 1;
        max-width: 100%;
        text-align: center;
        padding-bottom: 32px;
    }

    .rc-hero__tag {
        justify-content: center;
    }

    .rc-hero__heading {
        font-size: clamp(56px, 18vw, 80px);
    }

    .rc-hero__sub {
        max-width: 100%;
        font-size: 15px;
    }

    .rc-hero__cta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .rc-hero__cta .btn-primary,
    .rc-hero__cta .btn-ghost {
        width: 100%;
        text-align: center;
    }

    .rc-hero__image {
        grid-column: 1;
        grid-row: 2;
        width: 70%;
        margin: 0 auto;
    }

    .rc-hero__glow {
        width: 300px;
        height: 300px;
        right: -50px;
    }

    .rc-ticker {
        grid-column: 1;
        grid-row: 3;
        margin-left: -20px;
        margin-right: -20px;
    }

    /* ── Drops section on homepage ── */
    .rc-drops__grid {
        grid-template-columns: 1fr 1fr;
    }

    .rc-drops__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    /* ── Manifesto ── */
    .rc-manifesto {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 20px;
    }

    .rc-manifesto__heading {
        font-size: 36px;
    }

    .rc-manifesto__stats {
        gap: 24px;
    }

    .rc-manifesto__stat-num {
        font-size: 32px;
    }

    /* ── Footer ── */
    .rc-footer {
        padding: 32px 20px 20px;
        text-align: center;
    }

    .rc-footer__inner {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .rc-drops__grid {
        grid-template-columns: 1fr;
    }

    .rc-hero__image {
        width: 85%;
    }
}
