/* Reset and Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #0f0f0f;
    --accent-orange: #ff5714;
    --text-muted: #666666;
    --bg-light: #f7f8fa;
    --bg-dark: #0d0d0f;
    --border-color: #eaeaea;
    --white: #ffffff;
    --font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    font-family: var(--font-family);
    background-color: var(--white);
    color: var(--primary-color);
    overflow-x: hidden;
}

/* Hide scrollbars for a premium feel */
::-webkit-scrollbar {
    display: none !important;
}
html, body {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}

/* Header Navigation (Sticky) */
.header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    height: 72px;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 21px;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--primary-color);
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 36px;
}

.nav-link {
    font-size: 13px;
    font-weight: 700;
    color: #333333;
    text-decoration: none;
    letter-spacing: 0.05em;
    position: relative;
    padding: 4px 0;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-orange);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.nav-link:hover {
    color: var(--accent-orange);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.icon-btn:hover {
    background-color: var(--bg-light);
}

.icon-btn:active {
    transform: scale(0.95);
}

.menu-toggle {
    display: none;
}

/* Hero Section - Fullscreen */
.hero {
    position: relative;
    background-color: #f0f0f0;
    width: 100%;
    height: calc(100vh - 72px);
    height: calc(100dvh - 72px);
    min-height: 600px;
    overflow: hidden;
}

/* 3D Layered Sandwich Container */
.hero-sandwich {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    container-type: inline-size;
}

/* Base Background Image */
.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

/* Middle Text Layer */
.hero-text-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 6vh 8% 10vh 8%;
}

/* Giant FLOW title styling & alignment */
.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 26cqw;
    font-weight: 900;
    font-style: italic;
    line-height: 0.8;
    letter-spacing: -0.05em;
    color: var(--primary-color);
    text-align: center;
    margin-top: 1vh;
    user-select: none;
    transform: scaleY(0.92);
}

/* Tagline, CTAs and lower text overlay */
.hero-content-overlay {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    max-width: 450px;
    z-index: 4;
}

.hero-tagline {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--primary-color);
    line-height: 1.25;
}

.cta-btn {
    display: inline-block;
    background-color: var(--accent-orange);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 4px;
    transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 14px rgba(255, 87, 20, 0.3);
}

.cta-btn:hover {
    background-color: #e04400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 20, 0.4);
}

.cta-btn:active {
    transform: translateY(0) scale(0.98);
}

/* Foreground Skater (Cutout Overlay) */
.hero-fg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 3;
    pointer-events: none;
}

/* Hero Footer Area */
.hero-footer {
    background-color: transparent;
    position: absolute;
    bottom: 5vh;
    left: 0;
    width: 100%;
    z-index: 5;
    padding: 0 8%;
}

.hero-footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Partner Logos */
.partners {
    display: flex;
    align-items: center;
    gap: 20px;
}

.partners-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(15, 15, 15, 0.6);
}

.partners-logos {
    display: flex;
    align-items: center;
    gap: 24px;
}

.partner-svg-logo {
    height: 18px;
    color: rgba(15, 15, 17, 0.7);
    display: flex;
    align-items: center;
    transition: color 0.3s ease, transform 0.2s;
    cursor: pointer;
}

.partner-svg-logo svg {
    height: 100%;
    width: auto;
}

.partner-svg-logo:hover {
    color: var(--accent-orange);
    transform: translateY(-1px);
}

/* Stats Pill Badge */
.stats-badge {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 6px;
}

.stats-badge .star {
    color: var(--accent-orange);
    font-size: 15px;
}

/* Generic Section Styles */
.section {
    padding: 120px 5%;
    width: 100%;
}

.section.bg-light {
    background-color: var(--bg-light);
}

.section-container {
    max-width: 1300px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.section-description {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.6;
}

/* Asymmetric Manifesto Section */
.manifesto-section {
    background-color: var(--white);
}

.split-layout {
    display: grid;
    grid-template-cols: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.editorial-title {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.highlight-text {
    color: var(--accent-orange);
}

.manifesto-lead {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 550px;
}

.manifesto-card {
    border-left: 2px solid var(--primary-color);
    padding-left: 28px;
    margin-bottom: 40px;
}

.manifesto-card:last-child {
    margin-bottom: 0;
}

.card-number {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-orange);
    display: block;
    margin-bottom: 8px;
}

.manifesto-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
}

.manifesto-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Bento Grid System */
.bento-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: repeat(2, minmax(280px, auto));
    gap: 24px;
}

.bento-cell {
    background-color: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-cell:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.bento-image-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    background-color: #f0f0f0;
}

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

.bento-info {
    position: relative;
    margin-top: auto;
    padding: 30px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 70%, rgba(255, 255, 255, 0));
    z-index: 2;
}

.bento-hero {
    grid-row: span 2;
}

.bento-hero .bento-info {
    padding: 40px;
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0));
}

.bento-hero h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}

.bento-hero p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.bento-info h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 6px;
}

.bento-info p {
    font-size: 13px;
    color: var(--text-muted);
}

.badge {
    background-color: var(--accent-orange);
    color: var(--white);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 12px;
}

.inline-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.inline-link:hover {
    color: var(--accent-orange);
}

.bento-stats {
    background-color: var(--bg-dark);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
}

.bento-stats-content {
    max-width: 320px;
}

.stat-number {
    font-size: 72px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-style: italic;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.bento-stats p {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
}

/* Product Card Core Styling */
.product-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%; /* Force grid cells to align height */
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 150px; /* Locked height so products never look oversized */
    background-color: #f7f8fa;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.product-image {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    flex-grow: 1; /* Expand block to take up remaining vertical space */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Push price and cart btn to the bottom */
}

/* Curated Collection Bento Shop Grid */
.shop-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card.bento-wide {
    grid-column: span 2;
    border-radius: 12px;
}

.product-card.bento-compact {
    grid-column: span 1;
    border-radius: 12px;
}

.product-card.bento-wide .product-image-container {
    height: 240px; /* Slightly taller image container for large card */
}

.product-card.bento-compact .product-image-container {
    height: 160px; /* Bounded compact height */
}

/* Horizontal Info Block for Bento-Wide */
.product-info-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background-color: var(--white);
    gap: 24px;
}

.info-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-grow: 1;
}

.product-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: 8px;
    max-width: 450px;
}

.info-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    flex-shrink: 0;
}

.add-to-cart-btn-large {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 14px 28px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.25s, transform 0.2s;
}

.add-to-cart-btn-large:hover {
    background-color: var(--accent-orange);
    transform: translateY(-1px);
}

.add-to-cart-btn-large:active {
    transform: translateY(0) scale(0.97);
}

.product-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 3px;
    z-index: 2;
}

/* Interactive Map Spots Locator Layout */
.spots-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 36px;
}

.spot-item {
    display: flex;
    gap: 18px;
    padding: 18px;
    background-color: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}

.spot-item:hover {
    border-color: #c0c0c0;
    transform: translateX(4px);
}

.spot-item.active {
    border-color: var(--accent-orange);
    box-shadow: 0 10px 25px rgba(255, 87, 20, 0.06);
}

.spot-marker {
    font-size: 14px;
    font-weight: 800;
    color: var(--accent-orange);
    background-color: rgba(255, 87, 20, 0.1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.spot-item h4 {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 4px;
}

.spot-item p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

.stylized-map {
    background-color: var(--bg-dark);
    background-image: url('images/dark_map.jpg');
    background-size: cover;
    background-position: center;
    height: 480px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.8);
}

.map-grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

.map-pin {
    position: absolute;
    width: 36px;
    height: 36px;
    background-color: rgba(15, 15, 17, 0.8);
    border: 2px solid #555;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: border-color 0.3s, background-color 0.3s;
}

.map-pin.active {
    border-color: var(--accent-orange);
    background-color: var(--accent-orange);
}

.pin-number {
    font-size: 11px;
    font-weight: 800;
    color: var(--white);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--accent-orange);
    opacity: 0;
    pointer-events: none;
}

.map-pin.active .pulse-ring {
    animation: pinPulse 2s infinite;
}

@keyframes pinPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(2.2); opacity: 0; }
}

.map-label-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background-color: var(--white);
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
    z-index: 6;
}

.map-label-card.active {
    transform: translateY(0);
    opacity: 1;
}

.map-label-card h4 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 2px;
}

.map-label-card p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Riders Section Styling */
.riders-section {
    background-color: var(--bg-light);
}

.riders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.rider-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    background-color: var(--bg-dark);
}

.rider-image-wrap {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.rider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.rider-card:hover .rider-image {
    transform: scale(1.06);
    filter: brightness(0.7) contrast(1.1);
}

.rider-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(13, 13, 15, 0.95) 60%, rgba(13, 13, 15, 0));
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
    transform: translateY(12px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.rider-card:hover .rider-overlay {
    transform: translateY(0);
}

.rider-tag {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-orange);
    display: inline-block;
}

.rider-card h3 {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.rider-bio {
    font-size: 13px;
    color: #b4b4b8;
    line-height: 1.5;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.rider-card:hover .rider-bio {
    opacity: 1;
    max-height: 100px;
}

.rider-setup {
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 10px;
    margin-top: 6px;
    letter-spacing: 0.05em;
}

/* Reviews Section Styling */
.reviews-section {
    background-color: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 36px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.review-stars {
    color: var(--accent-orange);
    font-size: 14px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
    font-style: italic;
}

.review-author {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.review-author strong {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-color);
}

.review-author span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

@media (max-width: 992px) {
    .riders-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

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

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Section */
.footer {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 100px 8% 40px 8%;
    border-top: 1px solid #1c1c1f;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-cols: 1.2fr 1fr;
    gap: 100px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-newsletter h3 {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--white);
}

.footer-newsletter p {
    font-size: 14px;
    color: #88888b;
    line-height: 1.5;
    max-width: 400px;
}

.newsletter-form {
    display: flex;
    position: relative;
    max-width: 420px;
    margin-top: 12px;
}

.newsletter-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #27272a;
    padding: 12px 40px 12px 0;
    color: var(--white);
    font-family: var(--font-family);
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    border-color: var(--accent-orange);
}

.newsletter-input::placeholder {
    color: #4b5563;
}

.newsletter-submit-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #88888b;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.25s ease, transform 0.2s ease;
}

.newsletter-submit-btn:hover {
    color: var(--accent-orange);
    transform: translateY(-50%) translateX(2px);
}

.footer-nav-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: space-between;
}

.footer-links-row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-link {
    font-size: 14px;
    font-weight: 600;
    color: #88888b;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--white);
}

.footer-socials-row {
    display: flex;
    gap: 40px;
}

.footer-social-link {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #88888b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-social-link:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid #1c1c1f;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.copyright {
    font-size: 12px;
    color: #4b5563;
}

.footer-big-text {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Montserrat', sans-serif;
    font-size: 15.5vw;
    font-weight: 900;
    font-style: italic;
    color: rgba(255, 255, 255, 0.015);
    line-height: 0.75;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
}

/* GSAP Reveal State */
.scroll-reveal {
    opacity: 1; /* Handled dynamically by GSAP */
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 1100px) {
    .shop-bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .split-layout {
        grid-template-cols: 1fr;
        gap: 40px;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bento-hero {
        grid-row: auto;
    }

    .shop-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-cols: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0 20px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--border-color);
        z-index: 99;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    .nav.active {
        display: flex;
    }

    .hero {
        height: auto;
        min-height: auto;
        aspect-ratio: 1024 / 559;
    }

    .hero-sandwich {
        aspect-ratio: 1024 / 559;
        height: auto;
    }

    .hero-text-layer {
        padding: 3% 6% 4% 6%;
    }

    .hero-title {
        font-size: 26cqw;
        margin-top: 0;
    }

    .hero-tagline {
        font-size: 14px;
    }

    .cta-btn {
        padding: 12px 24px;
        font-size: 12px;
    }

    .hero-footer {
        position: relative;
        bottom: auto;
        background-color: var(--white);
        padding: 24px 20px;
        border-top: 1px solid var(--border-color);
    }

    .hero-footer-container {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .partners {
        flex-direction: column;
        gap: 12px;
    }

    .section {
        padding: 60px 20px;
    }

    .editorial-title {
        font-size: 32px;
    }

    .shop-bento-grid {
        grid-template-columns: 1fr;
    }

    .product-card.bento-wide {
        grid-column: span 1;
    }

    .product-info-horizontal {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .info-right {
        align-items: flex-start;
        width: 100%;
    }

    .add-to-cart-btn-large {
        width: 100%;
        text-align: center;
    }

    .footer-container {
        grid-template-cols: 1fr;
        gap: 30px;
    }
}
