/* ============================================
   HOME PAGE STYLES
   ============================================ */

/* --- Reveal Animation --- */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s var(--ease-smooth), transform 0.75s var(--ease-smooth);
}

[data-reveal].revealed {
    opacity: 1;
    transform: none;
}

/* --- Hero --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transform: scale(1.06);
    animation: heroZoom 14s var(--ease-smooth) forwards;
}

@keyframes heroZoom {
    from {
        transform: scale(1.06);
    }

    to {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.45) 50%,
            rgba(0, 0, 0, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: var(--nav-height);
}

.hero-text {
    max-width: 620px;
}

.hero-text .eyebrow {
    margin-bottom: 18px;
}

.hero-text h1 {
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero-text h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-sub {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 460px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-scroll span {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(0.85);
    }
}

/* --- Marquee --- */
.marquee-bar {
    background: var(--gold);
    padding: 12px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 28s linear infinite;
}

.marquee-track span {
    flex-shrink: 0;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    padding-right: 0;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* --- Featured Grid --- */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* --- Bestsellers --- */
.bestsellers-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: start;
}

.bestseller-item {
    position: relative;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--black-mid);
}

.bestseller-rank {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 300;
    color: rgba(184, 149, 90, 0.18);
    line-height: 1;
    z-index: 0;
}

.bestseller-img {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.bestseller-img img {
    height: 100%;
    transition: transform 0.6s var(--ease-smooth);
}

.bestseller-item:hover .bestseller-img img {
    transform: scale(1.05);
}

.bestseller-info {
    padding: 28px;
    position: relative;
    z-index: 1;
}

.bestseller-info h3 {
    color: var(--white);
    margin: 6px 0 12px;
}

.bestseller-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
}

.bestseller-footer {
    display: flex;
    align-items: center;
    margin-top: 14px;
}

.bestsellers-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.bestseller-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-dark);
    transition: background 0.2s;
}

.bestseller-row:last-child {
    border-bottom: none;
}

.bestseller-row img {
    width: 64px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.bestseller-row:hover {
    opacity: 0.85;
    cursor: pointer;
}

/* --- Brand Story --- */
.brand-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.brand-story-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
}

.brand-story-img img {
    height: 100%;
}

.brand-story-img-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 80%;
    height: 80%;
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.4;
}

.brand-story-text h2 {
    margin: 10px 0;
}

.brand-story-text p {
    color: var(--charcoal);
    line-height: 1.8;
    font-size: 0.95rem;
}

.brand-stat {
    display: flex;
    flex-direction: column;
}

.brand-stat-num {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.brand-stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
}

/* --- Newsletter --- */
.newsletter-section {
    position: relative;
    padding: 120px 0;
    background: var(--black-soft);
    overflow: hidden;
    text-align: center;
}

.newsletter-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(184, 149, 90, 0.1), transparent);
}

.newsletter-inner {
    position: relative;
    z-index: 1;
}

.newsletter-inner h2 {
    color: var(--white);
    margin: 10px 0 16px;
}

.newsletter-sub {
    color: rgba(255, 255, 255, 0.6);
    max-width: 420px;
    margin: 0 auto 36px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.9rem;
    font-family: var(--font-sans);
    outline: none;
    transition: border-color 0.25s;
}

.newsletter-form input:focus {
    border-color: var(--gold);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.newsletter-note {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.72rem;
    margin-top: 14px;
    letter-spacing: 0.08em;
}