/* SCROLLYTELLING HERO */
.hero-scrolly {
    position: relative;
    height: 100vh;
    
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.2);
    transition: transform var(--transition-slow);
}

.hero-parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(139,0,0,0.2) 100%);
}

.hero-content-scrolly {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 48px;
    max-width: 1600px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: transparent;
    backdrop-filter: none;
    border: none;
    color: var(--white);
    padding: 0;
    border-radius: 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 24px;
    width: fit-content;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    box-shadow: none;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-content-scrolly h1 {
    font-size: clamp(56px, 8vw, 120px);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 24px;
    letter-spacing: -2px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.5s forwards;
    background: linear-gradient(135deg, var(--white) 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content-scrolly p {
    font-size: 18px;
    max-width: 700px;
    margin-bottom: 40px;
    font-weight: 500;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.7s forwards;
    color: var(--white);
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.9s forwards;
}

.btn-primary {
    background: var(--maroon);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    border: 2px solid var(--maroon);
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    transition: transform var(--transition-base);
}

.btn-primary:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.btn-primary:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-3px);
}

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

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    border: 2px solid var(--white);
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* JBL MACRO TEXTURE SHOWCASE - LIGHT THEME */
.macro-showcase {
    padding: 120px 48px;
    max-width: 1600px;
    margin: 0 auto;
    background: var(--white);
}

.macro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.macro-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.macro-image-container.animate {
    opacity: 1;
    transform: translateX(0);
}

.macro-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--off-white);
}

.macro-image-container:hover .macro-image {
    transform: scale(1.1);
}

.macro-content {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease 0.2s;
}

.macro-content.animate {
    opacity: 1;
    transform: translateX(0);
}

.macro-content h2 {
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--black);
}

.macro-content p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.macro-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.macro-feature {
    background: var(--off-white);
    padding: 24px;
    border-radius: 8px;
    border: 2px solid var(--light-gray);
    transition: all 0.3s;
}

.macro-feature:hover {
    border-color: var(--maroon);
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: 0 8px 24px rgba(139,0,0,0.12);
}

.macro-feature h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--maroon);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.macro-feature p {
    font-size: 14px;
    color: var(--dark-gray);
}

/* JBL-STYLE CATEGORY GRID */
.category-grid-section {
    padding: 120px 48px;
    background: var(--white);
    width: 100vw;
    max-width: none;
    margin-left: calc(-50vw + 50%);
    position: relative;
    overflow: hidden;
    --parallax-offset: 0px;
}

/* DIAGONAL BACKGROUND BLOCK WITH PARALLAX */
.category-grid-section::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.03) 0%, rgba(139, 0, 0, 0.08) 100%);
    transform: rotate(-8deg) translateY(var(--parallax-offset));
    z-index: 0;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.category-grid-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.category-grid-header h2 {
    font-family: 'Anton', sans-serif;
    font-size: 56px;
    color: var(--black);
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.category-grid-header p {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 20px;
    color: var(--dark-gray);
    font-weight: 500;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    position: relative;
    z-index: 1;
    max-width: 1600px;
    margin: 0 auto;
}

.category-card {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 8px;
    text-decoration: none;
    display: block;
    cursor: pointer;
    background: var(--black);
}

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

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
    transition: background var(--transition-base);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    z-index: 2;
}

.category-content h3 {
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: 2px;
    transform: translateY(0);
    transition: transform var(--transition-base);
}

.category-content p {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
    opacity: 0.9;
    transform: translateY(10px);
    transition: all var(--transition-base);
}

.category-card:hover .category-image img {
    transform: scale(1.08);
}

.category-card:hover .category-overlay {
    background: linear-gradient(180deg, rgba(139,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
}

.category-card:hover .category-content h3 {
    transform: translateY(-4px);
}

.category-card:hover .category-content p {
    transform: translateY(0);
    opacity: 1;
}

/* Responsive - 3 columns on tablets */
@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Responsive - 2 columns on mobile */
@media (max-width: 640px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-grid-header h2 {
        font-size: 40px;
    }
}

/* NIKE BENTO GRID - BEST SELLERS */
.bento-section {
    padding: 120px 48px;
    max-width: 1600px;
    margin: 0 auto;
    background: var(--deep-gray);
}

.bento-header {
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.bento-header.animate {
    opacity: 1;
    transform: translateY(0);
}

.bento-header h2 {
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.bento-header p {
    font-size: 20px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
}

.bento-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-base);
    opacity: 0;
    transform: scale(0.9);
    border: 1px solid var(--glass-border);
}

.bento-item.animate {
    animation: scaleIn 0.6s ease forwards;
}

.bento-item:nth-child(1) { animation-delay: 0.1s; }
.bento-item:nth-child(2) { animation-delay: 0.2s; }
.bento-item:nth-child(3) { animation-delay: 0.3s; }
.bento-item:nth-child(4) { animation-delay: 0.4s; }
.bento-item:nth-child(5) { animation-delay: 0.5s; }
.bento-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.bento-item:hover {
    transform: scale(1.02) translateY(-8px);
    z-index: 10;
    box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 1px var(--maroon);
    border-color: var(--maroon);
}

.bento-item:nth-child(1) {
    grid-column: span 4;
    grid-row: span 2;
}

.bento-item:nth-child(2) {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-item:nth-child(3) {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-item:nth-child(4) {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item:nth-child(5) {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item:nth-child(6) {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
    /* AI PROMPTS:
    CORE Pro Carbon: Athlete's hand gripping dumbbell, matte black ring visible, gym background
    CORE Bulk Jet Black: CrossFit athlete doing pull-up, close-up of hand with black ring
    CORE Lean Plush Pink: Female athlete's hand on yoga mat, soft pink ring, natural lighting
    CORE Pro Mercury: Male hand on barbell, silver metallic ring catching light, dramatic
    CORE Bulk Rugged Ore: Outdoor climber's hand, bronze/brown textured ring, mountain backdrop
    CORE Lean Ocean Teal: Female surfer's hand on board, teal ring, ocean spray background */
}

.bento-item:hover .bento-image {
    transform: scale(1.1);
}

.bento-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.bento-badge {
    display: inline-block;
    background: var(--maroon);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--white);
}

.bento-overlay h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--white);
}

.bento-overlay p {
    font-size: 14px;
    color: var(--white);
}

.bento-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    margin-top: 8px;
}

/* VIDEO SHOWCASE */
.video-showcase {
    position: relative;
    height: 85vh;
    min-height: 650px;
    overflow: hidden;
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    /* AI PROMPT: Slow-motion cinematic footage of silicone ring being tested - 
    underwater, dropped from height, crushed by weight, still intact, 
    4K quality, dramatic lighting */
}

.video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
    opacity: 0;
    transition: opacity 1s ease;
}

.video-content.animate {
    opacity: 1;
}

.video-content h2 {
    font-size: clamp(56px, 8vw, 96px);
    margin-bottom: 30px;
    letter-spacing: 2px;
    font-weight: 900;
    text-shadow: 0 6px 40px rgba(0, 0, 0, 0.8);
}

.video-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
}

/* UGC BENTO SECTION */
.ugc-bento {
    padding: 120px 48px;
    background: var(--black);
    max-width: 1600px;
    margin: 0 auto;
}

.ugc-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.ugc-header.animate {
    opacity: 1;
    transform: translateY(0);
}

.ugc-header h2 {
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.ugc-header p {
    font-size: 20px;
    color: rgba(255,255,255,0.7);
}

.ugc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 320px;
    gap: 16px;
}

.ugc-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s;
    opacity: 0;
    transform: scale(0.9);
}

.ugc-item.animate {
    animation: scaleIn 0.5s ease forwards;
}

.ugc-item:nth-child(1) { 
    grid-column: span 2;
    grid-row: span 2;
    animation-delay: 0.1s;
}

.ugc-item:nth-child(2) { animation-delay: 0.15s; }
.ugc-item:nth-child(3) { animation-delay: 0.2s; }
.ugc-item:nth-child(4) { 
    grid-column: span 2;
    animation-delay: 0.25s;
}
.ugc-item:nth-child(5) { animation-delay: 0.3s; }
.ugc-item:nth-child(6) { animation-delay: 0.35s; }
.ugc-item:nth-child(7) { 
    grid-row: span 2;
    animation-delay: 0.4s;
}
.ugc-item:nth-child(8) { animation-delay: 0.45s; }
.ugc-item:nth-child(9) { 
    grid-column: span 2;
    animation-delay: 0.5s;
}

.ugc-item:hover {
    transform: scale(1.03);
    z-index: 10;
}

.ugc-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
    /* AI PROMPTS: User-generated style photos -
    Athletes wearing rings in various settings: gym, outdoors, sports,
    Real people aesthetic, Instagram quality, authentic lighting,
    Mix of male/female, different activities, rings clearly visible */
}

.ugc-item:hover .ugc-image {
    transform: scale(1.1);
}

.ugc-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139,0,0,0.9);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.ugc-item:hover .ugc-hover-overlay {
    opacity: 1;
}

/* CTA BANNER */
.cta-banner {
    background: linear-gradient(135deg, var(--maroon) 0%, var(--dark-maroon) 100%);
    padding: 100px 48px;
    text-align: center;
}

.cta-banner h2 {
    font-size: clamp(48px, 6vw, 96px);
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.cta-banner p {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* FOOTER */
footer {
    background: var(--black);
    padding: 80px 48px 40px;
    border-top: 1px solid rgba(139,0,0,0.2);
}

.footer-grid {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    color: var(--maroon);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 16px;
}

.footer-column a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

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

.footer-bottom {
    max-width: 1600px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4),
    .bento-item:nth-child(5),
    .bento-item:nth-child(6) {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
    
    .ugc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ugc-item:nth-child(1),
    .ugc-item:nth-child(4),
    .ugc-item:nth-child(7),
    .ugc-item:nth-child(9) {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
    
    .macro-grid {
        grid-template-columns: 1fr;
    }
    
    .story-circles {
        gap: 20px;
    }
    
    .story-icon {
        width: 100px;
        height: 100px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-content-scrolly {
        padding: 0 20px;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}
/* ============================================
   NEW HOMEPAGE SECTIONS
   Reviews, Newsletter, Articles, Instagram, Footer CTA
============================================ */

/* REVIEWS SECTION */
.reviews-section {
    padding: 120px 48px;
    background: var(--off-white);
    width: 100vw;
    max-width: none;
    margin-left: calc(-50vw + 50%);
}

.reviews-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-header h2 {
    font-family: 'Anton', sans-serif;
    font-size: 56px;
    color: var(--black);
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.reviews-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.reviews-rating .stars {
    font-size: 28px;
    color: var(--maroon);
}

.reviews-rating p {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 18px;
    color: var(--dark-gray);
    font-weight: 600;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1600px;
    margin: 0 auto;
}

.review-card {
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
    border: 2px solid var(--light-gray);
    transition: all var(--transition-base);
}

.review-card:hover {
    border-color: var(--maroon);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(139,0,0,0.12);
}

.review-stars {
    font-size: 18px;
    color: var(--maroon);
    margin-bottom: 20px;
}

.review-text {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 16px;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-author strong {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 14px;
    color: var(--black);
    font-weight: 800;
}

.review-author span {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 12px;
    color: var(--mid-gray);
    font-weight: 500;
}

/* NEWSLETTER SECTION */
.newsletter-section {
    padding: 100px 48px;
    background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.newsletter-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 100px;
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.newsletter-text h2 {
    font-family: 'Anton', sans-serif;
    font-size: 56px;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.newsletter-text p {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 40px;
}

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

.newsletter-input {
    flex: 1;
    padding: 18px 24px;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: all var(--transition-base);
}

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

.newsletter-input:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255,255,255,0.2);
}

.newsletter-btn {
    padding: 18px 40px;
    border-radius: 8px;
    border: 2px solid var(--white);
    background: var(--white);
    color: var(--maroon);
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-base);
}

.newsletter-btn:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.newsletter-disclaimer {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

/* ARTICLES SECTION */
.articles-section {
    padding: 120px 48px;
    background: var(--white);
    max-width: 1600px;
    margin: 0 auto;
}

.articles-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.articles-header h2 {
    font-family: 'Anton', sans-serif;
    font-size: 56px;
    color: var(--black);
    letter-spacing: 2px;
}

.articles-view-all {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 16px;
    color: var(--maroon);
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-base);
}

.articles-view-all:hover {
    color: var(--black);
    transform: translateX(4px);
}

.articles-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
}

.article-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--light-gray);
    transition: all var(--transition-base);
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    border-color: var(--maroon);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(139,0,0,0.12);
}

.article-featured {
    grid-row: span 2;
}

.article-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.article-featured .article-image {
    height: 400px;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.article-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--maroon);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 8px;
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-content h3 {
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    color: var(--black);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.article-featured .article-content h3 {
    font-size: 32px;
}

.article-content p {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: auto;
}

.article-meta {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--light-gray);
}

.article-date,
.article-read-time {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 12px;
    color: var(--mid-gray);
    font-weight: 600;
}

/* INSTAGRAM FEED */
.instagram-feed {
    padding: 100px 48px;
    background: var(--white);
    max-width: 1600px;
    margin: 0 auto;
}

.instagram-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.instagram-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.instagram-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.instagram-title h2 {
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    color: var(--black);
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.instagram-title p {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 16px;
    color: var(--dark-gray);
    font-weight: 600;
}

.instagram-follow {
    padding: 14px 32px;
    background: var(--black);
    color: var(--white);
    border-radius: 8px;
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all var(--transition-base);
}

.instagram-follow:hover {
    background: var(--maroon);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139,0,0,0.2);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.instagram-post {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    text-decoration: none;
    display: block;
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

.instagram-post:hover img {
    transform: scale(1.1);
}

.instagram-likes {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 14px;
    color: var(--white);
    font-weight: 700;
}

/* FOOTER CTA */
.footer-cta {
    padding: 120px 48px;
    background: var(--black);
    width: 100vw;
    max-width: none;
    margin-left: calc(-50vw + 50%);
}

.footer-cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1600px;
    margin: 0 auto;
}

.footer-cta-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-cta-badge {
    display: inline-block;
    width: fit-content;
    background: var(--maroon);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 100px;
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.footer-cta-content h2 {
    font-family: 'Anton', sans-serif;
    font-size: 56px;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: 2px;
    line-height: 1.1;
}

.footer-cta-content p {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 40px;
}

.footer-cta-buttons {
    display: flex;
    gap: 16px;
}

.footer-cta-features {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
}

.footer-feature {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-feature-icon {
    font-size: 40px;
    margin-bottom: 8px;
}

.footer-feature strong {
    font-family: 'Anton', sans-serif;
    font-size: 20px;
    color: var(--white);
    letter-spacing: 1px;
}

.footer-feature p {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-cta-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 640px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ============================================
   FOOTER - REIMAGINED
   Bold statement, organized navigation, clean bottom
============================================ */

/* MAIN FOOTER CONTAINER */
.main-footer {
    background: var(--black);
    color: var(--white);
    width: 100vw;
    max-width: none;
    margin-left: calc(-50vw + 50%);
}

/* FOOTER STATEMENT - HERO SECTION */
.footer-statement {
    background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
    padding: 100px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-statement::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.footer-statement h2 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(48px, 6vw, 80px);
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 2px;
    line-height: 1.1;
    position: relative;
    z-index: 2;
}

.footer-statement p {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* FOOTER CONTENT - NAVIGATION GRID */
.footer-content {
    padding: 80px 48px;
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
}

/* FOOTER BRAND SECTION */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    font-family: 'Anton', sans-serif;
    font-size: 48px;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.footer-tagline {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--maroon);
    transform: translateY(-4px);
}

/* FOOTER LINKS GRID */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-family: 'Anton', sans-serif;
    font-size: 16px;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column ul li a {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all var(--transition-base);
    font-weight: 600;
}

.footer-column ul li a:hover {
    color: var(--white);
    padding-left: 4px;
}

/* FOOTER BOTTOM - LEGAL */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 32px 48px;
}

.footer-bottom-content {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
}

.footer-legal-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-legal-links a {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color var(--transition-base);
    font-weight: 600;
}

.footer-legal-links a:hover {
    color: rgba(255,255,255,0.9);
}

.footer-legal-links span {
    color: rgba(255,255,255,0.3);
    font-size: 13px;
}

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

.footer-copyright p {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
}

.footer-country {
    text-align: right;
}

.footer-country span {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-bottom-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-legal-links,
    .footer-country {
        justify-content: center;
    }
    
    .footer-country {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .footer-statement {
        padding: 60px 24px;
    }
    
    .footer-content {
        padding: 60px 24px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        padding: 24px;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-legal-links span {
        display: none;
    }
}
