/* ============================================
   The Honest Joke — Dark Color System
   Applied: 2026-04-19
   Spec: #000000, #1C1C1C, #2E2E2E backgrounds |
         #FFFFFF headlines, #EAEAEA body |
         #C8A96A gold / #1F5E4E deep green (sparingly) |
         white buttons, gold hover
   ============================================ */

:root {
    /* Backgrounds */
    --bg: #000000;
    --bg-elevated: #1C1C1C;
    --bg-card: #1C1C1C;
    --bg-card-hover: #2E2E2E;
    --surface: #2E2E2E;
    --border: #2E2E2E;

    /* Text */
    --text: #EAEAEA;
    --text-muted: #888888;
    --text-dim: #666666;
    --text-headline: #FFFFFF;

    /* Accent — sparingly */
    --accent: #C8A96A;
    --accent-hover: #C8A96A;
    --accent-subtle: #1F5E4E;

    /* Buttons */
    --btn-bg: #FFFFFF;
    --btn-text: #000000;
    --btn-hover-bg: #C8A96A;
    --btn-hover-text: #000000;

    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --max-width: 1200px;
    --transition: 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
}

.logo-icon { width: 28px; height: 28px; object-fit: contain; vertical-align: middle; display: inline-block; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition);
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
    background: var(--accent) !important;
    color: white !important;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
    background: var(--accent-hover) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 5px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    z-index: 99;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px 0;
}

.mobile-menu.open { display: flex; }

/* ============================================
   Hero
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(200, 169, 106, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(168, 85, 247, 0.08), transparent),
        radial-gradient(ellipse 60% 40% at 20% 60%, rgba(200, 169, 106, 0.06), transparent);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    padding: 8px 20px;
    border: 1px solid rgba(200, 169, 106, 0.3);
    border-radius: 100px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 40px;
}

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

.hero-scroll {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-dim);
    font-size: 0.8rem;
    animation: bob 2s ease-in-out infinite;
}

@keyframes bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--btn-bg);
    color: var(--btn-text);
}

.btn-primary:hover {
    background: var(--btn-hover-bg);
    color: var(--btn-hover-text);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    border-color: var(--text-muted);
    background: rgba(255,255,255,0.05);
    transform: translateY(-1px);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
    min-height: 44px;
}

/* ============================================
   Featured Quote
   ============================================ */
.featured-quote-section {
    padding: 80px 24px;
    text-align: center;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.featured-quote {
    max-width: 700px;
    margin: 0 auto 24px;
    position: relative;
}

.quote-marks {
    font-size: 6rem;
    line-height: 1;
    color: var(--accent);
    opacity: 0.3;
    font-family: Georgia, serif;
    margin-bottom: -20px;
}

.featured-quote blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    font-weight: 500;
    line-height: 1.4;
    color: var(--text);
    transition: opacity 0.3s ease;
}

.quote-category {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ============================================
   Sections
   ============================================ */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--bg-elevated);
}

.section-accent {
    background: linear-gradient(135deg, #1a0a0e, #000000);
    border-top: 1px solid rgba(200, 169, 106, 0.2);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 8px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.section-footer {
    text-align: center;
    margin-top: 48px;
}

/* ============================================
   Quotes Filter & Grid
   ============================================ */
.quotes-filter {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0 20px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.filter-btn:hover {
    color: var(--text);
    border-color: var(--text-muted);
}

.filter-btn.active {
    color: white;
    background: var(--accent);
    border-color: var(--accent);
}

.category-quick-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.cqn-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.cqn-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 14px;
    border-radius: 100px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition);
}

.cqn-link:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.quote-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.quote-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    opacity: 0;
    transition: opacity var(--transition);
}

.quote-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.quote-card:hover::before { opacity: 1; }

.quote-card-text {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 500;
    white-space: pre-line;
}

.quote-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quote-card-category {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
}

.quote-card-actions {
    display: flex;
    gap: 12px;
}

.quote-action {
    background: none;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color var(--transition);
    padding: 8px 6px;
    min-height: 44px;
    min-width: 44px;
}

.quote-action:hover { color: var(--text); }
.quote-action.liked { color: var(--accent); }

/* Share icon buttons */
a.share-action-x,
a.share-action-fb,
button.share-action-copy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    width: 44px;
    height: 44px;
    border-radius: 6px;
    color: var(--text-muted);
    background: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: color var(--transition), border-color var(--transition), background var(--transition);
    text-decoration: none;
    padding: 0;
}
a.share-action-x:hover,
a.share-action-fb:hover,
button.share-action-copy:hover {
    color: var(--accent);
    border-color: rgba(200, 169, 106, 0.3);
    background: rgba(200, 169, 106, 0.06);
}

/* ============================================
   Categories Grid
   ============================================ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all var(--transition);
    display: block;
}

.category-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.category-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 16px;
}

.category-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.category-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ============================================
   Clips Grid
   ============================================ */
.clips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.clip-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.clip-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.clip-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    background-color: var(--surface);
    background-image: url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/company_64525/images/746bacdc-41b0-4b04-8ee7-92ab5d550114.png');
    background-size: 40%;
    background-position: center;
    background-repeat: no-repeat;
}

.clip-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    transition: color var(--transition);
}

.clip-card:hover .clip-placeholder { color: var(--accent); }

.clip-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.clip-info {
    padding: 16px 20px;
}

.clip-info h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.clip-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
}

.clips-coming-soon {
    text-align: center;
    margin-top: 40px;
    padding: 24px;
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    color: var(--text-muted);
}

/* ============================================
   Merch Shop
   ============================================ */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.shop-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.shop-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.shop-img {
    position: relative;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--surface), var(--bg-card));
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border);
}

.shop-emoji {
    font-size: 5rem;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.shop-card:hover .shop-emoji {
    transform: scale(1.1) rotate(-3deg);
}

.shop-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
}

.shop-badge-accent {
    background: var(--green);
    color: #000000;
}

.shop-badge-purple {
    background: var(--purple);
}

.shop-badge-yellow {
    background: var(--yellow);
    color: #000000;
}

.shop-info {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.shop-info h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.shop-quote {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 16px;
    flex: 1;
}

.shop-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.shop-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
}

.shop-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px 24px;
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ============================================
   Stickers Row (above merch grid)
   ============================================ */
.shop-stickers-row {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 48px;
}

.shop-card-stickers {
    max-width: 340px;
}

/* ============================================
   Merch Section Label
   ============================================ */
.merch-section-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.merch-section-label span {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
}

.merch-section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* ============================================
   Merch Grid
   ============================================ */
.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 16px;
}

.merch-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
}

.merch-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.merch-card-wide {
    grid-column: span 2;
}

.merch-card-featured {
    border-color: rgba(200, 169, 106, 0.3);
}

.merch-card-featured:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 40px rgba(200, 169, 106, 0.15);
}

/* Merch Preview Area — the "mock print" */
.merch-preview {
    background: #000000;
    padding: 28px 20px;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.merch-preview-text {
    font-family: var(--font-display);
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 700;
    color: #f0f0f0;
    text-align: center;
    line-height: 1.35;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Dual front/back preview */
.merch-preview-dual {
    gap: 0;
    padding: 20px;
    flex-direction: row;
    align-items: stretch;
    min-height: 160px;
}

.merch-preview-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 8px;
}

.merch-preview-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-dim);
    text-transform: uppercase;
}

.merch-preview-divider {
    color: var(--border);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    padding: 0 4px;
    opacity: 0.5;
}

/* Accent preview (red tint) */
.merch-preview-accent {
    background: linear-gradient(135deg, #1a0a0b, #000000);
    border-bottom-color: rgba(200, 169, 106, 0.3);
}

.merch-preview-accent .merch-preview-text {
    color: #EAEAEA;
}

/* Image-based merch preview */
.merch-preview-image {
    background: #000000;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.merch-preview-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.merch-preview-image-tall {
    min-height: 260px;
}

.merch-preview-image-tall img {
    height: 260px;
}

/* Tee images — centered with contain so designs aren't cropped */
.merch-preview-image-tee img {
    object-fit: contain;
    padding: 16px;
    mix-blend-mode: multiply;
    background: #1C1C1C;
}

/* Fallback for browsers that don't support mix-blend-mode */
@supports (mix-blend-mode: multiply) {
    .merch-preview-image-tee img {
        background: #1C1C1C;
    }
}

/* Dark blend fallback: for edges the tee fabric (not background) stays visible */
@supports not (mix-blend-mode: multiply) {
    .merch-preview-image-tee img {
        /* Subtle dark overlay to soften white edges */
        filter: brightness(0.92) contrast(1.05);
    }
}

/* White hoodie cutout images — remove white background via multiply blend */
.merch-cutout-img {
    mix-blend-mode: multiply;
    background: #000000;
    filter: brightness(0.95);
}

/* Dual preview for image-based white hoodie (front + back) */
.merch-preview-dual-white {
    background: #000000;
    gap: 0;
    padding: 16px 12px;
    flex-direction: row;
    align-items: stretch;
    min-height: 180px;
    border-bottom: 1px solid var(--border);
}

.merch-preview-dual-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.merch-preview-dual-side img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    display: block;
}

.merch-preview-dual-label {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-dim);
    text-transform: uppercase;
}

/* Design label badge on image previews */
.merch-design-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: var(--yellow);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid rgba(255, 209, 102, 0.3);
}

/* Info section */
.merch-info {
    padding: 16px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 12px;
}

.merch-title {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
}

.merch-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Variant buttons */
.merch-variants {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.merch-variant-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    background: transparent;
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
}

.merch-variant-btn:hover {
    border-color: var(--accent);
    color: var(--text);
    background: rgba(200, 169, 106, 0.08);
}

.merch-variant-btn-buy {
    background: #fff;
    color: #000 !important;
    border-color: #fff !important;
    font-weight: 700;
}

.merch-variant-btn-buy:hover {
    background: #C8A96A !important;
    color: #fff !important;
    border-color: #C8A96A !important;
}

.merch-coming-soon {
    font-size: 0.75rem;
    color: var(--text-dim);
    font-style: italic;
    display: block;
}


/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 60px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-inner {
    text-align: center;
}

.footer-brand {
    margin-bottom: 24px;
}

.footer-brand .logo-icon { width: 32px; height: 32px; }
.footer-brand .logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-tagline {
    color: var(--text-dim);
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 4px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-links a:hover { color: var(--text); }

.footer-bottom p {
    color: var(--text-dim);
    font-size: 0.8rem;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.quote-card {
    animation: fadeInUp 0.4s ease forwards;
    opacity: 0;
}

.quote-card:nth-child(1) { animation-delay: 0.05s; }
.quote-card:nth-child(2) { animation-delay: 0.1s; }
.quote-card:nth-child(3) { animation-delay: 0.15s; }
.quote-card:nth-child(4) { animation-delay: 0.2s; }
.quote-card:nth-child(5) { animation-delay: 0.25s; }
.quote-card:nth-child(6) { animation-delay: 0.3s; }
.quote-card:nth-child(7) { animation-delay: 0.35s; }
.quote-card:nth-child(8) { animation-delay: 0.4s; }
.quote-card:nth-child(9) { animation-delay: 0.45s; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }

    .hero { min-height: 90vh; padding: 100px 20px 60px; }
    .hero-title { letter-spacing: -1px; }

    .section { padding: 64px 0; }

    .quotes-grid { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: 1fr; }
    .clips-grid { grid-template-columns: 1fr; }
    .shop-grid { grid-template-columns: 1fr; }
    .merch-grid { grid-template-columns: 1fr; }
    .merch-card-wide { grid-column: span 1; }
    .shop-stickers-row { justify-content: stretch; }
    .shop-card-stickers { max-width: 100%; width: 100%; }


    .footer-links { gap: 20px; flex-wrap: wrap; }
}

@media (max-width: 480px) {
    .hero-badge { font-size: 0.65rem; letter-spacing: 2px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; }
    .quotes-filter { gap: 6px; }
    .filter-btn { padding: 6px 14px; font-size: 0.8rem; }
}

/* 375px — iPhone SE / small Android: tighten horizontal padding */
@media (max-width: 390px) {
    .container { padding: 0 16px; }
    .hero { padding-left: 16px; padding-right: 16px; }
    .section { padding-left: 16px; padding-right: 16px; }
    .filter-btn { padding: 6px 10px; font-size: 0.75rem; }
    .quote-card-actions { gap: 6px; }
}

/* ============================================
   REBRAND 2026 — New Sections
   ============================================ */

/* Button extensions */
.btn-lg {
    padding: 16px 40px;
    font-size: 1rem;
}

.btn-xl {
    padding: 20px 56px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--text);
    transition: all var(--transition);
}

.btn-outline:hover {
    background: var(--text);
    color: #000;
    transform: translateY(-2px);
}

/* Section label pill */
.rb-section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    padding: 6px 16px;
    border: 1px solid rgba(200, 169, 106, 0.35);
    border-radius: 100px;
}

/* ============================================
   HERO — Rebrand
   ============================================ */
.rb-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 0;
    overflow: hidden;
    background: #000;
}

.rb-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% -10%, rgba(200, 169, 106, 0.18), transparent),
        radial-gradient(ellipse 50% 40% at 85% 70%, rgba(200, 169, 106, 0.06), transparent);
    pointer-events: none;
}

.rb-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
    padding-bottom: 80px;
}

.rb-hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
    padding: 8px 20px;
    border: 1px solid rgba(200, 169, 106, 0.4);
    border-radius: 100px;
}

.rb-hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 9vw, 6.5rem);
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -3px;
    color: #fff;
    margin-bottom: 24px;
}

.rb-hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #aaa;
    line-height: 1.65;
    margin-bottom: 44px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.rb-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scrolling ticker */
.rb-hero-ticker {
    width: 100%;
    background: var(--accent);
    overflow: hidden;
    padding: 14px 0;
    margin-top: 80px;
}

.rb-ticker-track {
    display: inline-flex;
    gap: 24px;
    white-space: nowrap;
    animation: ticker 22s linear infinite;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
}

@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============================================
   BRAND STATEMENT
   ============================================ */
.rb-statement {
    padding: 120px 0;
    background: #000;
    border-top: 1px solid #1C1C1C;
}

.rb-statement-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.rb-statement-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    padding: 6px 16px;
    border: 1px solid rgba(200, 169, 106, 0.35);
    border-radius: 100px;
}

.rb-statement-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 800;
    letter-spacing: -3px;
    color: #fff;
    margin-bottom: 28px;
    line-height: 1.0;
}

.rb-statement-body {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #999;
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto;
}

/* ============================================
   FEATURED DROP SECTION
   ============================================ */
.rb-drop {
    padding: 120px 0;
    background: #000000;
    border-top: 1px solid #1C1C1C;
    border-bottom: 1px solid #1C1C1C;
}

.rb-drop .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.rb-drop-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid rgba(200, 169, 106, 0.35);
    border-radius: 100px;
}

.rb-drop-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -3px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.0;
}

.rb-drop-desc {
    font-size: 1.05rem;
    color: #888;
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 440px;
}

/* Drop visual card */
.rb-drop-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rb-drop-card {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 3/4;
    background: #000000;
    border: 1px solid #1C1C1C;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.rb-drop-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(200, 169, 106, 0.12), transparent);
}

.rb-drop-card-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px;
}

.rb-drop-card-text {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.rb-drop-card-tag {
    display: block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-top: 28px;
}

/* Swap 2: "I tried guys" image replaces the text card */
.rb-drop-card-img {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 3/4;
    border-radius: 16px;
    object-fit: cover;
    display: block;
}

/* Swap 3: Eye of Horus standalone art in drop section */
.rb-drop-standalone-art {
    width: 100%;
    max-width: 280px;
    margin: 24px auto 32px;
    display: block;
    border-radius: 12px;
}

/* ============================================
   FAN FAVORITES
   ============================================ */
.rb-favorites {
    padding: 120px 0;
}

/* ============================================
   HOODIE MOCKUP — between hero & brand statement
   ============================================ */
.rb-hoodie-mockup {
    padding: 0 0 120px;
    background: #000;
    text-align: center;
}

.rb-hoodie-mockup .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.rb-hoodie-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    padding: 6px 16px;
    border: 1px solid rgba(200, 169, 106, 0.35);
    border-radius: 100px;
}

.rb-hoodie-img {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid #1C1C1C;
    box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 60px rgba(200, 169, 106, 0.08);
    display: block;
    margin: 0 auto;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.rb-hoodie-img:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 32px 100px rgba(0,0,0,0.7), 0 0 80px rgba(200, 169, 106, 0.15);
}

.rb-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.rb-product-card {
    background: #000000;
    border: 1px solid #222;
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.rb-product-card:hover {
    border-color: #444;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.rb-product-featured {
    border-color: rgba(200, 169, 106, 0.2);
}

.rb-product-featured:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 40px rgba(200, 169, 106, 0.12);
}

.rb-product-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #1C1C1C;
}

.rb-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.rb-product-card:hover .rb-product-img img {
    transform: scale(1.04);
}

/* Text-only product preview */
.rb-product-img-text {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
}

.rb-product-img-red {
    background: linear-gradient(135deg, #1a0608, #1C1C1C);
}

.rb-product-text-preview {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 700;
    text-transform: uppercase;
    color: #EAEAEA;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.5px;
    padding: 20px;
}

/* Product badge */
.rb-product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
}

.rb-badge-hand {
    background: var(--yellow);
    color: #000;
}

.rb-product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.rb-product-info h3 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.35;
}

.rb-product-info p {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.rb-favorites-footer {
    text-align: center;
    margin-top: 16px;
}

/* ============================================
   WHY PEOPLE LOVE IT
   ============================================ */
.rb-why {
    padding: 120px 0;
    background: #000;
    border-top: 1px solid #1C1C1C;
}

.rb-why-inner {
    max-width: 640px;
    margin: 0 auto;
}

.rb-why-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -2.5px;
    color: #fff;
    margin-bottom: 48px;
    line-height: 1.0;
}

.rb-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.rb-why-list li {
    display: flex;
    align-items: baseline;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid #1C1C1C;
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    color: #e0e0e0;
    line-height: 1.3;
}

.rb-why-list li:first-child {
    border-top: 1px solid #1C1C1C;
}

.rb-why-icon {
    color: var(--accent);
    font-size: 1.4rem;
    font-weight: 300;
    flex-shrink: 0;
    line-height: 1;
}

/* ============================================
   VIBE / SOCIAL PROOF
   ============================================ */
.rb-vibe {
    padding: 120px 0;
    background: #000000;
    border-top: 1px solid #1C1C1C;
}

.rb-vibe-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.rb-vibe-bar {
    width: 48px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.rb-vibe-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -2.5px;
    color: #fff;
    line-height: 1.0;
}

.rb-vibe-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #888;
    line-height: 1.8;
    max-width: 520px;
    margin-top: -16px;
}

/* ============================================
   FINAL CTA
   ============================================ */
.rb-final-cta {
    padding: 140px 0;
    background: #000;
    border-top: 1px solid #1C1C1C;
    text-align: center;
}

.rb-final-cta-inner {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.rb-final-cta-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 800;
    letter-spacing: -3px;
    color: #fff;
    line-height: 1.0;
}

/* ============================================
   FOOTER — Rebrand
   ============================================ */
.rb-footer {
    padding: 64px 0 40px;
    background: #000;
    border-top: 1px solid #1C1C1C;
}

.rb-footer-inner {
    text-align: center;
}

.rb-footer-brand {
    margin-bottom: 32px;
}

.rb-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
}

.rb-footer-logo .logo-icon { width: 30px; height: 30px; }

.rb-footer-tagline {
    color: var(--text-dim);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 8px;
    letter-spacing: 0.5px;
}

.rb-footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 32px;
}

.rb-footer-links a {
    color: #555;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color var(--transition);
}

.rb-footer-links a:hover { color: var(--text); }

.rb-footer-bottom p {
    color: #333;
    font-size: 0.78rem;
}

/* ============================================
   REBRAND RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .rb-drop .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .rb-drop-visual {
        order: -1;
    }
    .rb-drop-card {
        max-width: 280px;
        margin: 0 auto;
    }
    .rb-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .rb-hero-title { letter-spacing: -2px; }
    .rb-hero-actions { flex-direction: column; align-items: center; }
    .rb-hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

    .rb-statement { padding: 80px 0; }
    .rb-statement-title { letter-spacing: -2px; }

    .rb-drop { padding: 80px 0; }
    .rb-drop-title { letter-spacing: -2px; }

    .rb-hoodie-mockup { padding-bottom: 80px; }

    .rb-favorites { padding: 80px 0; }
    .rb-products-grid { grid-template-columns: 1fr; }

    .rb-why { padding: 80px 0; }
    .rb-why-title { letter-spacing: -1.5px; }
    .rb-why-list li { font-size: 1rem; }

    .rb-vibe { padding: 80px 0; }
    .rb-vibe-title { letter-spacing: -1.5px; }

    .rb-final-cta { padding: 100px 0; }
    .rb-final-cta-title { letter-spacing: -2px; }
    .rb-final-cta-inner .btn { width: 100%; max-width: 320px; justify-content: center; }

    .section-title { font-size: clamp(2rem, 7vw, 3rem); letter-spacing: -1.5px; }
    .section { padding: 80px 0; }

    .rb-footer-links { gap: 24px; flex-wrap: wrap; }
    .rb-footer-links a { font-size: 0.75rem; }
}

/* ============================================
   Newsletter Signup Section
   ============================================ */

.newsletter-section {
    background: #1C1C1C;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 80px 0;
}

.newsletter-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    padding: 0 24px;
}

.newsletter-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.newsletter-eyebrow::before,
.newsletter-eyebrow::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--accent);
    opacity: 0.5;
}

.newsletter-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 16px;
}

.newsletter-sub {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 36px;
}

.newsletter-form {
    width: 100%;
}

.newsletter-fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
}

.newsletter-input {
    width: 100%;
    background: #1C1C1C;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem; /* 16px minimum prevents iOS Safari auto-zoom on focus */
    padding: 14px 18px;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.newsletter-input::placeholder {
    color: var(--text-dim);
}

.newsletter-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(200, 169, 106, 0.12);
}

.newsletter-btn {
    width: 100%;
    padding: 15px 24px;
    font-size: 1rem;
    font-weight: 700;
    justify-content: center;
    letter-spacing: 0.5px;
}

.newsletter-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.newsletter-legal {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: 4px;
}

.newsletter-success {
    padding: 28px;
    background: rgba(6, 214, 160, 0.06);
    border: 1px solid rgba(6, 214, 160, 0.2);
    border-radius: var(--radius);
    text-align: center;
}

.newsletter-success-icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 10px;
}

.newsletter-success strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 6px;
}

.newsletter-success p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.newsletter-error {
    padding: 12px 16px;
    background: rgba(200, 169, 106, 0.08);
    border: 1px solid rgba(200, 169, 106, 0.2);
    border-radius: var(--radius-sm);
    color: #EAEAEA;
    font-size: 0.9rem;
    margin-top: 8px;
}

@media (min-width: 560px) {
    .newsletter-fields {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }
    .newsletter-email {
        /* name + email on row 1, button spans full width on row 2 */
    }
    .newsletter-btn {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .newsletter-section { padding: 60px 0; }
    .newsletter-title { letter-spacing: -1px; }
}

/* ============================================
   PREMIUM SPOTLIGHT SHOP — 2026
   Black textured backgrounds, soft spotlight glow,
   product images as the hero, info below the card
   ============================================ */

.spotlight-shop-section {
    background: #000;
    border-top: 1px solid #000000;
    padding: 100px 0;
}

.spotlight-section-header {
    text-align: center;
    margin-bottom: 64px;
}

.spotlight-section-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    padding: 7px 18px;
    border: 1px solid rgba(200, 169, 106, 0.35);
    border-radius: 100px;
}

.spotlight-section-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -3px;
    color: #fff;
    line-height: 1.0;
    margin-bottom: 16px;
}

.spotlight-section-sub {
    color: #666;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

/* Category dividers inside spotlight grid */
.spotlight-category-label {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
    margin-bottom: 4px;
}

.spotlight-category-label span {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    white-space: nowrap;
}

.spotlight-category-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #1C1C1C;
}

/* ---- GRID ---- */
.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
}

/* ---- CARD ---- */
.spotlight-card {
    display: flex;
    flex-direction: column;
    position: relative;
}

/* ---- IMAGE WRAP ---- */
.spotlight-img-wrap {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 14px;
    overflow: hidden;
    /* Eye of Horus loading placeholder */
    background-color: #1C1C1C;
    background-image: url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/company_64525/images/746bacdc-41b0-4b04-8ee7-92ab5d550114.png');
    background-size: 55%;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

/* Subtle noise/grain texture layer */
.spotlight-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    background-size: 250px 250px;
    pointer-events: none;
    z-index: 1;
}

/* Soft spotlight glow behind product */
.spotlight-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 68% 58% at 50% 38%,
            rgba(255, 255, 240, 0.12) 0%,
            rgba(220, 200, 160, 0.05) 40%,
            transparent 68%
        );
    pointer-events: none;
    z-index: 2;
}

/* Product image — sits above texture and spotlight */
.spotlight-product-img {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    display: block;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.65));
}

.spotlight-card:hover .spotlight-product-img {
    transform: scale(1.04) translateY(-5px);
}

/* Flip hint — "⟳ View back" / "⟳ View front" badge */
.spotlight-flip-hint {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.72);
    color: #f0f0f0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.flip-icon {
    font-size: 0.75rem;
    line-height: 1;
}

.flip-text {
    letter-spacing: 0.3px;
}

/* Show hint on hover of cards with front/back images */
.spotlight-img-wrap[data-back] .spotlight-flip-hint,
.spotlight-img-wrap.showing-back .spotlight-flip-hint {
    opacity: 1;
}

/* When showing back, change icon rotation */
.spotlight-img-wrap.showing-back .flip-icon {
    display: inline-block;
    transform: scaleX(-1);
}

/* For mockup images that need top-cropping (front+back layout with text below) */
.spotlight-product-img.crop-top {
    object-fit: cover;
    object-position: top center;
    padding: 0;
}

/* ---- COMING SOON (no image yet) ---- */
.spotlight-img-wrap.is-coming-soon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.spotlight-coming-inner {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 32px 24px;
}

.spotlight-coming-name {
    font-family: var(--font-display);
    font-size: clamp(0.9rem, 1.8vw, 1.15rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.spotlight-coming-slash {
    display: block;
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 3px;
    margin: 8px 0;
    font-weight: 400;
}

.spotlight-coming-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    padding: 5px 14px;
    border: 1px solid rgba(200, 169, 106, 0.35);
    border-radius: 100px;
}

/* ---- INFO BELOW CARD ---- */
.spotlight-info {
    padding: 14px 2px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.spotlight-product-title {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 600;
    color: #ddd;
    line-height: 1.35;
}

.spotlight-product-desc {
    font-size: 0.78rem;
    color: #555;
    line-height: 1.55;
    display: block;
    overflow: visible;
}

.spotlight-tagline {
    font-size: 0.75rem;
    font-style: italic;
    color: #666;
    line-height: 1.4;
    margin-bottom: 6px;
    border-left: 2px solid #333;
    padding-left: 8px;
}

.spotlight-buy-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
    gap: 8px;
}

.spotlight-price {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.spotlight-buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 9px 18px;
    background: #fff;
    color: #000;
    font-family: var(--font-display), 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
    text-decoration: none;
    white-space: nowrap;
    min-height: 38px;
    letter-spacing: 0.3px;
    -webkit-appearance: none;
    appearance: none;
}

.spotlight-buy-btn:hover {
    background: #C8A96A;
    color: #000;
    transform: translateY(-1px);
}

.spotlight-buy-btn.is-coming {
    background: transparent;
    color: #444;
    border: 1px solid #1C1C1C;
    cursor: default;
    pointer-events: none;
}

.spotlight-ship {
    font-size: 0.7rem;
    color: #333;
    font-style: italic;
    margin-top: 2px;
}

/* ---- SHOP NOTE ---- */
.spotlight-shop-note {
    text-align: center;
    margin-top: 48px;
    padding: 20px 24px;
    border: 1px dashed #1C1C1C;
    border-radius: var(--radius);
    color: #444;
    font-size: 0.9rem;
}

.spotlight-shop-note a {
    color: var(--accent);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .spotlight-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px 16px;
    }
}

@media (max-width: 820px) {
    .spotlight-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 14px;
    }
    .spotlight-section-title { letter-spacing: -2px; }
}

@media (max-width: 480px) {
    .spotlight-shop-section { padding: 64px 0; }
    .spotlight-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px 10px;
    }
    .spotlight-section-header { margin-bottom: 40px; }
    .spotlight-product-img { padding: 14px; }
    .spotlight-product-title { font-size: 0.78rem; }
    .spotlight-buy-btn { padding: 8px 12px; font-size: 0.7rem; }
    .spotlight-price { font-size: 0.9rem; }
    .spotlight-buy-row { gap: 6px; }
    .spotlight-info { padding: 10px 1px 0; gap: 4px; }
}

@media (max-width: 340px) {
    .spotlight-grid { grid-template-columns: 1fr; }
}

/* ============================================
   HOMEPAGE REDESIGN 2026 — 7-Section Layout
   Mobile-first, clean, emotionally-driven
   ============================================ */

/* ---- SECTION 1: HERO ---- */
.hj-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    background: #000;
    position: relative;
}

.hj-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 20%, rgba(200, 169, 106, 0.12), transparent);
    pointer-events: none;
}

.hj-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.hj-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 8vw, 5.5rem);
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.05;
    color: #fff;
    margin: 0;
}

.hj-hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #888;
    line-height: 1.75;
    max-width: 480px;
    margin: 0;
}

.hj-hero-btn {
    min-width: 180px;
    min-height: 52px;
    justify-content: center;
}

/* ---- SECTION 2 & 4 & 6: PRODUCT SECTIONS ---- */
.hj-products-section {
    padding: 96px 0;
    background: #000;
    border-top: 1px solid #1C1C1C;
}

.hj-products-dark {
    background: #0a0a0a;
}

.hj-section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -1.5px;
    color: #fff;
    margin: 0 0 48px;
    line-height: 1.0;
}

/* 2-per-row product grid */
.hj-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
}

/* Odd card that centers when alone on a row */
.hj-card-centered {
    /* By default in a 2-col grid, this naturally aligns left.
       On desktop with 3 items, the 3rd sits in col 1.
       We use auto placement — it's clean enough. */
}

/* ---- SECTION 3: BRAND STATEMENT ---- */
.hj-statement {
    padding: 112px 0;
    background: #000;
    border-top: 1px solid #1C1C1C;
    border-bottom: 1px solid #1C1C1C;
}

.hj-statement-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    padding: 0 24px;
}

.hj-statement-lead {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
    margin: 0 0 36px;
    line-height: 1.2;
}

.hj-statement-body {
    font-size: clamp(1.05rem, 2.5vw, 1.25rem);
    color: #777;
    line-height: 2.0;
    margin: 0;
}

/* ---- SECTION 5: SIGNATURE OPTION ---- */
.hj-signature {
    padding: 100px 0;
    background: #0a0a0a;
    border-top: 1px solid #1C1C1C;
    border-bottom: 1px solid #1C1C1C;
}

.hj-signature-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hj-signature-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -1px;
    color: #fff;
    margin: 0;
    line-height: 1.1;
}

.hj-signature-body {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #777;
    line-height: 1.85;
    margin: 0;
}

.hj-signature-note {
    color: #555;
    font-style: italic;
}

/* ---- SECTION 7: FINAL CTA ---- */
.hj-final-cta {
    padding: 120px 0;
    background: #000;
    border-top: 1px solid #1C1C1C;
    text-align: center;
}

.hj-final-cta-inner {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hj-final-cta-text {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: -1px;
    color: #fff;
    margin: 0;
    line-height: 1.1;
}

.hj-final-cta-sub {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #666;
    margin: 0 0 16px;
    font-style: italic;
}

.hj-final-cta-inner .btn {
    min-width: 160px;
    min-height: 52px;
    justify-content: center;
}

/* ---- RESPONSIVE: HOMEPAGE ---- */
@media (max-width: 640px) {
    .hj-hero {
        padding: 100px 20px 64px;
        min-height: 90vh;
    }

    .hj-hero-title { letter-spacing: -1.5px; }
    .hj-hero-btn { width: 100%; max-width: 320px; }

    .hj-products-section { padding: 72px 0; }
    .hj-section-title { margin-bottom: 36px; letter-spacing: -1px; }

    .hj-grid-2col {
        gap: 16px 12px;
    }

    .hj-statement { padding: 80px 0; }
    .hj-signature { padding: 72px 0; }

    .hj-final-cta { padding: 88px 0; }
    .hj-final-cta-inner .btn { width: 100%; max-width: 320px; }
    .hj-final-cta-text { letter-spacing: -0.5px; }
}

@media (max-width: 400px) {
    .hj-grid-2col {
        grid-template-columns: 1fr;
    }
}
