      /* CSS CORE ARCHITECTURE & VARIABLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Montserrat Alternates', sans-serif;
}

:root {
    --burgundy: #3A0519;
    --coral: #F7374F;
    --gold: #DCA06D;
    --forest-slate: #2C3930;
    --bg-dark-editorial: #150209;
    --off-white-editorial: #FAF5F2;
    --glass-backdrop: rgba(58, 5, 25, 0.4);
}

body {
    background-color: var(--bg-dark-editorial);
    color: var(--off-white-editorial);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background-color: var(--coral);
    color: var(--off-white-editorial);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

p {
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.5px;
    color: rgba(250, 245, 242, 0.85);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 4%;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    background: linear-gradient(to bottom, rgba(21, 2, 9, 0.8), transparent);
    backdrop-filter: blur(0px);
}

header.scrolled {
    background: rgba(58, 5, 25, 0.9);
    padding: 15px 4%;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(220, 160, 109, 0.15);
}

.logo-container {
    font-size: 3.0rem;
    font-weight: 1000;
    text-transform: uppercase;
    text-decoration: dotted;
    letter-spacing: -1px;
    color: var(--off-white-editorial);
    text-decoration: none;
    cursor: pointer;
}

.logo-container span {
    color: var(--coral);
}

.nav-center, .nav-right {
    display: flex;
    gap: 30px;
    align-items: center;
}

.editorial-nav-link {
    text-decoration: none;
    color: var(--off-white-editorial);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding: 5px 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.editorial-nav-link:hover, .editorial-nav-link.active {
    color: var(--gold);
}

.editorial-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-nav-link:hover::after, .editorial-nav-link.active::after {
    width: 100%;
}

.hamburger-editorial {
    display: none;
    flex-direction: column;
    gap: 7px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2500;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.hamburger-editorial span {
    display: block;
    width: 32px;
    height: 2px;
    background-color: var(--off-white-editorial);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.hamburger-editorial.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--gold);
}
.hamburger-editorial.open span:nth-child(2) {
    opacity: 0;
}
.hamburger-editorial.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--gold);
}

.mobile-magazine-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--burgundy);
    z-index: 2100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

.mobile-magazine-overlay.open {
    transform: translateY(0);
}

body.menu-open {
    overflow: hidden;
}

main {
    min-height: 100vh;
    width: 100%;
}

.section-hero-five-col {
    height: 100vh;
    width: 100%;
    display: flex;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--bg-dark-editorial), var(--burgundy));
}

.hero-col {
    height: 100%;
    position: relative;
    border-right: 1px solid rgba(220, 160, 109, 0.1);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-col-1 { width: 12%; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.vertical-marquee {
    display: flex;
    flex-direction: column;
    gap: 50px;
    animation: scrollUpMarquee 20s linear infinite;
}
.vertical-marquee span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.85rem;
    letter-spacing: 6px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.4;
}
@keyframes scrollUpMarquee {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.hero-col-2 { width: 28%; overflow: hidden; }
.lifestyle-video-alternative {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, var(--burgundy), rgba(247, 55, 79, 0.3)), url('https://i.pinimg.com/1200x/d3/b7/b1/d3b7b1859552b88ede66c590078e4f9a.jpg');
    background-size: cover;
    background-position: center;
    filter: grayscale(30%);
    transition: transform 1.2s ease;
}
.hero-col-2:hover .lifestyle-video-alternative { transform: scale(1.05); }

.hero-col-3 { width: 20%; padding: 40px 20px; display: flex; flex-direction: column; justify-content: center; background: rgba(21, 2, 9, 0.5); }
.category-mini-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--coral);
    font-weight: 700;
    margin-bottom: 20px;
}
.massive-hero-title {
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}
.cycling-subtitle-container { height: 35px; overflow: hidden; margin-bottom: 30px; }
.cycling-text {
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 600;
    line-height: 35px;
    animation: cyclicText 12s infinite cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes cyclicText {
    0%, 18% { transform: translateY(0); }
    20%, 38% { transform: translateY(-35px); }
    40%, 58% { transform: translateY(-70px); }
    60%, 78% { transform: translateY(-105px); }
    80%, 98% { transform: translateY(-140px); }
    100% { transform: translateY(0); }
}
.live-counter-box { font-size: 0.8rem; letter-spacing: 1px; color: rgba(250, 245, 242, 0.6); margin-bottom: 30px; border-left: 2px solid var(--coral); padding-left: 10px; }
.explore-editorial-btn {
    align-self: flex-start;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--off-white-editorial);
    padding: 12px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}
.explore-editorial-btn:hover { background-color: var(--gold); color: var(--burgundy); }

.hero-col-4 { width: 25%; overflow: hidden; position: relative; }
.crossfade-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    opacity: 0; animation: crossfadeAnimation 12s infinite ease-in-out;
}
.slide-a { background-image: url('https://i.pinimg.com/736x/30/c2/f6/30c2f6c5eccaca811bf0248597dbc211.jpg'); animation-delay: 0s; }
.slide-b { background-image: url('https://i.pinimg.com/736x/f2/24/c1/f224c1a7178a05304ebc2d3224db9e60.jpg'); animation-delay: 4s; }
.slide-c { background-image: url('https://i.pinimg.com/736x/77/9f/8f/779f8f5841ceaa3b6eb8cf99b69948c3.jpg'); animation-delay: 8s; }
@keyframes crossfadeAnimation {
    0%, 33% { opacity: 1; transform: scale(1); }
    36%, 97% { opacity: 0; transform: scale(1.05); }
    100% { opacity: 1; }
}

.hero-col-5 { width: 15%; overflow: hidden; display: flex; flex-direction: column; justify-content: space-around; background: rgba(58, 5, 25, 0.2); }
.floating-promo-tile {
    width: 80%; margin: 0 auto; padding: 15px 10px;
    background: rgba(44, 57, 48, 0.6);
    border: 1px solid rgba(220, 160, 109, 0.2);
    backdrop-filter: blur(5px); text-align: center;
    font-weight: 700; font-size: 0.75rem; color: var(--gold);
    animation: floatTiles 8s infinite ease-in-out alternate;
}
.floating-promo-tile:nth-child(2) { animation-delay: 2s; color: var(--coral); }
.floating-promo-tile:nth-child(3) { animation-delay: 4s; }
@keyframes floatTiles {
    0% { transform: translateY(10px); }
    100% { transform: translateY(-10px); }
}

.section-islands {
    background-color: var(--forest-slate);
    padding: 140px 6%;
    position: relative;
}
.islands-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px 60px;
    max-width: 1400px; margin: 0 auto;
}
.editorial-island {
    display: flex; flex-direction: column;
    transition: transform 0.4s ease;
}
.island-img-wrap { width: 100%; height: 480px; overflow: hidden; margin-bottom: 25px; border: 1px solid rgba(220, 160, 109, 0.1); }
.island-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.editorial-island:hover .island-img-wrap img { transform: scale(1.04); }
.island-tag { font-size: 0.7rem; font-weight: 700; color: var(--gold); text-transform: uppercase; margin-bottom: 10px; letter-spacing: 2px; }
.island-title { font-size: 1.8rem; margin-bottom: 15px; line-height: 1.2; }
.island-para { max-width: 500px; font-size: 0.95rem; opacity: 0.85; }
.island-1 { transform: translateY(0px); }
.island-2 { transform: translateY(80px); }
.island-3 { transform: translateY(-40px); }
.island-4 { transform: translateY(40px); }

.section-ribbon {
    height: 60vh; background: linear-gradient(180deg, var(--burgundy) 0%, var(--bg-dark-editorial) 100%);
    display: flex; flex-direction: column; justify-content: center; overflow: hidden; position: relative;
    border-top: 1px solid rgba(247, 55, 79, 0.2);
}
.ribbon-marquee-track {
    display: flex; width: max-content; gap: 40px;
    animation: horizontalMarquee 35s linear infinite;
}
.ribbon-marquee-track:hover { animation-play-state: paused; }
@keyframes horizontalMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); }
}
.ribbon-banner-card {
    width: 520px; height: 320px; position: relative;
    overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end;
    padding: 35px; border: 1px solid rgba(220, 160, 109, 0.15);
    transition: transform 0.5s ease; cursor: pointer;
}
.ribbon-banner-card:hover { transform: scale(1.02); }
.ribbon-bg-img { position: absolute; top:0; left:0; width:100%; height:100%; object-fit:cover; z-index:1; opacity: 0.5; transition: opacity 0.3s; }
.ribbon-banner-card:hover .ribbon-bg-img { opacity: 0.8; }
.ribbon-overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: linear-gradient(to top, var(--bg-dark-editorial) 30%, transparent 100%); z-index:2; }
.ribbon-content { position: relative; z-index:3; }
.ribbon-metrics { font-size: 1.8rem; font-weight: 900; color: var(--coral); margin-bottom: 5px; }

.section-giant-type {
    min-height: 100vh; width: 100%; display: flex; background-color: var(--bg-dark-editorial);
    border-bottom: 1px solid rgba(220, 160, 109, 0.1);
}
.giant-type-left {
    width: 50%; display: flex; align-items: center; justify-content: center;
    padding: 40px; position: sticky; top: 0; height: 100vh; overflow: hidden;
}
.morphing-word {
    font-size: 8rem; font-weight: 900; color: rgba(247, 55, 79, 0.08);
    letter-spacing: -5px; text-transform: uppercase; text-align: center;
    user-select: none; border: 1px dashed rgba(220,160,109,0.05); padding: 20px;
}
.giant-type-right {
    width: 50%; padding: 120px 8%; display: flex; flex-direction: column; justify-content: center;
    border-left: 1px solid rgba(220, 160, 109, 0.1);
}
.stat-announcement { font-size: 4rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 15px; }

.section-cubes {
    background: linear-gradient(135deg, var(--forest-slate), var(--burgundy));
    padding: 120px 6%; text-align: center;
}
.cubes-grid-canvas {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px;
    max-width: 1200px; margin: 60px auto 0 auto; persist-3d: preserve-3d;
}
.cube-container {
    height: 200px; perspective: 1000px; cursor: pointer;
}
.cube-structure {
    width: 100%; height: 100%; position: relative; transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.cube-container:hover .cube-structure { transform: rotateY(180deg); }
.cube-face {
    position: absolute; width: 100%; height: 100%; backface-visibility: hidden;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    padding: 20px; border: 1px solid rgba(220, 160, 109, 0.3);
}
.cube-face-front { background: rgba(58, 5, 25, 0.85); color: var(--off-white-editorial); backdrop-filter: blur(5px); }
.cube-face-back { background: var(--gold); color: var(--burgundy); transform: rotateY(180deg); font-weight: 700; }

.section-diagonal {
    position: relative; width: 100%; background-color: var(--bg-dark-editorial); overflow: hidden; padding: 100px 0;
}
.diagonal-strip {
    width: 120%; transform: rotate(-3deg) translateX(-5%);
    background: rgba(58, 5, 25, 0.9); margin-bottom: 40px;
    display: flex; align-items: center; gap: 40px; padding: 40px 8%;
    border-top: 1px solid var(--coral); border-bottom: 1px solid var(--coral);
    transition: background 0.3s;
}
.diagonal-strip:nth-child(even) {
    transform: rotate(2deg) translateX(-5%); background: rgba(44, 57, 48, 0.9); border-color: var(--gold);
}

.section-tunnel {
    background-color: var(--bg-dark-editorial); padding: 120px 6%; text-align: center;
    position: relative; overflow: hidden;
}
.tunnel-display-track {
    display: flex; flex-direction: column; gap: 40px; max-width: 800px; margin: 60px auto 0 auto;
    perspective: 800px;
}
.tunnel-panel-card {
    background: linear-gradient(135deg, rgba(58, 5, 25, 0.6), rgba(21, 2, 9, 0.8));
    border: 1px solid rgba(220, 160, 109, 0.2); padding: 40px;
    transform: translateZ(-50px); transition: transform 0.5s ease, border-color 0.3s;
    display: flex; justify-content: space-between; align-items: center; text-align: left;
}
.tunnel-panel-card:hover { transform: translateZ(0px); border-color: var(--coral); }

.section-number-wall {
    background-color: var(--forest-slate); padding: 120px 6%;
}
.number-wall-layout {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px; max-width: 1200px; margin: 0 auto;
}
.number-wall-item {
    display: flex; gap: 25px; border-bottom: 1px solid rgba(250, 245, 242, 0.1); padding-bottom: 30px;
}
.giant-transparent-num {
    font-size: 5rem; font-weight: 900; color: transparent;
    -webkit-text-stroke: 1px var(--gold); opacity: 0.5; line-height: 1;
}

.section-mosaic {
    background-color: var(--bg-dark-editorial); padding: 120px 6%; text-align: center;
}
.mosaic-gallery-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1200px; margin: 50px auto 0 auto;
}
.mosaic-tile {
    height: 300px; overflow: hidden; cursor: pointer; border: 1px solid rgba(220,160,109,0.1);
    position: relative; transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.mosaic-tile img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(40%); transition: all 0.6s; }
.mosaic-tile.dominant { grid-column: span 2; grid-row: span 2; height: 620px; border-color: var(--coral); }
.mosaic-tile.dominant img { filter: grayscale(0%); }
.mosaic-label { position: absolute; bottom: 20px; left: 20px; background: var(--burgundy); padding: 5px 15px; font-size: 0.75rem; font-weight: 700; }

.section-testimonials {
    background: linear-gradient(180deg, var(--bg-dark-editorial) 0%, var(--burgundy) 100%);
    padding: 140px 6%; text-align: center; position: relative;
}
.giant-quote-mark {
    position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
    font-size: 15rem; font-weight: 900; color: rgba(247, 55, 79, 0.04); line-height: 1; pointer-events: none;
}
.testimonial-carousel { max-width: 750px; margin: 0 auto; min-height: 150px; position: relative; }
.testimonial-unit {
    display: none; font-size: 1.4rem; font-weight: 300; line-height: 1.8; color: var(--off-white-editorial);
}
.testimonial-unit.active { display: block; animation: fadeInTestimonial 0.8s ease forwards; }
@keyframes fadeInTestimonial { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.carousel-dot-navigation { display: flex; justify-content: center; gap: 12px; margin-top: 40px; }
.navigation-dot { width: 10px; height: 10px; background: rgba(250,245,242,0.3); border-radius: 50%; cursor: pointer; transition: background 0.3s; }
.navigation-dot.active { background: var(--gold); }

.section-magazine-layout {
    background-color: var(--off-white-editorial); color: var(--burgundy); padding: 120px 6%;
}
.section-magazine-layout h2 { color: var(--burgundy); }
.magazine-row {
    display: grid; gap: 40px; max-width: 1200px; margin: 50px auto 0 auto; align-items: center;
}
.mag-col-3 { grid-template-columns: 1fr 2fr 1fr; }
.mag-col-2 { grid-template-columns: 3fr 2fr; }
.magazine-text-block { font-size: 0.95rem; line-height: 1.8; text-align: justify; color: rgba(58,5,25,0.9); }
.magazine-pull-quote { font-size: 1.8rem; font-weight: 900; border-left: 4px solid var(--coral); padding-left: 20px; line-height: 1.3; color: var(--burgundy); }
.magazine-img { width: 100%; height: 350px; object-fit: cover; filter: sepia(10%); }

.section-newsletter-glass {
    padding: 140px 6%; background-image:url('https://i.pinimg.com/1200x/78/7e/1f/787e1f5c0493eca624fd4a97b129e13a.jpg');
    background-size: cover; background-position: center; display: flex; justify-content: center;
}
.floating-glass-panel {
    background: rgba(58, 5, 25, 0.5); border: 1px solid rgba(250, 245, 242, 0.2);
    backdrop-filter: blur(15px); width: 100%; max-width: 650px; padding: 60px 40px; text-align: center;
}
.glass-headline { font-size: 2.6rem; margin-bottom: 15px; letter-spacing: -1px; }
.editorial-form-input {
    width: 100%; padding: 18px; margin-bottom: 20px; background: rgba(21, 2, 9, 0.6);
    border: 1px solid rgba(220, 160, 109, 0.4); color: var(--off-white-editorial);
    font-size: 1rem; outline: none; transition: border-color 0.3s;
}
.editorial-form-input:focus { border-color: var(--coral); }
.form-btn-row { display: flex; gap: 20px; }
.btn-glass-action {
    flex: 1; padding: 16px; background: transparent; border: 1px solid var(--gold);
    color: var(--off-white-editorial); font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; cursor: pointer; transition: all 0.3s;
}
.btn-glass-action:hover { background-color: var(--gold); color: var(--burgundy); }

.fullscreen-footer {
    min-height: 100vh; background-color: var(--bg-dark-editorial); padding: 100px 6% 40px 6%;
    display: flex; flex-direction: column; justify-content: space-between; position: relative;
    border-top: 1px solid rgba(220,160,109,0.15);
}
.footer-center-branding { text-align: center; padding: 60px 0; }
.footer-giant-logo { font-size: 5rem; font-weight: 900; color: rgba(250, 245, 242, 0.05); letter-spacing: -3px; }
.footer-split-links { display: flex; justify-content: space-between; align-items: flex-start; margin-top: 40px; }
.footer-vertical-nav { display: flex; flex-direction: column; gap: 15px; }
.footer-nav-link { color: var(--gold); text-decoration: none; font-size: 1rem; font-weight: 600; cursor: pointer; }
.footer-nav-link:hover { color: var(--coral); }
.social-circle-layout { display: flex; gap: 20px; }
.social-icon-btn {
    width: 45px; height: 45px; border: 1px solid rgba(220,160,109,0.3); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: var(--off-white-editorial);
    text-decoration: none; font-size: 0.85rem; font-weight: 700; transition: all 0.3s;
}
.social-icon-btn:hover { background-color: var(--coral); border-color: var(--coral); }
.footer-animated-timeline-container { width: 100%; height: 1px; background: rgba(250,245,242,0.1); margin: 60px 0 30px 0; position: relative; }
.footer-drawing-line {
    position: absolute; top:0; left:0; height: 100%; width: 35%; background: var(--coral);
    animation: moveTimeline 6s linear infinite alternate;
}
@keyframes moveTimeline { 0% { left: 0; } 100% { left: 65%; } }
.footer-copyright-row { display: flex; justify-content: space-between; font-size: 0.85rem; color: rgba(250,245,242,0.5); }

.inner-page-editorial-wrapper { padding-top: 120px; }
.subpage-hero-banner { padding: 80px 6% 60px 6%; border-bottom: 1px solid rgba(220,160,109,0.15); }
.subpage-hero-banner h1 { font-size: 4.5rem; line-height: 1; margin-bottom: 20px; background: linear-gradient(to right, var(--off-white-editorial), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.subpage-hero-banner p { font-size: 1.3rem; max-width: 750px; color: rgba(250,245,242,0.75); }

/* === RESPONSIVE DESIGN === */

@media (max-width: 1100px) {
    .section-hero-five-col { flex-direction: column; height: auto; }
    .hero-col { width: 100% !important; height: auto; border-right: none; border-bottom: 1px solid rgba(220,160,109,0.1); }
    .hero-col-1 { display: none; }
    .hero-col-2 { height: 300px; }
    .hero-col-3 { padding: 60px 6%; }
    .hero-col-4 { height: 350px; }
    .hero-col-5 { padding: 40px 0; flex-direction: row; }
    .islands-container { grid-template-columns: 1fr; gap: 60px; }
    .editorial-island { transform: none !important; }
    .island-img-wrap { height: 350px; }
    .section-giant-type { flex-direction: column; }
    .giant-type-left { width: 100%; height: auto; position: static; padding: 60px 0; }
    .giant-type-right { width: 100%; border-left: none; padding: 60px 6%; }
    .morphing-word { font-size: 4.5rem; }
    .diagonal-strip { width: 110%; transform: none !important; flex-direction: column; text-align: center; }
    .diagonal-strip:nth-child(even) { transform: none !important; }
    .tunnel-panel-card { flex-direction: column; gap: 20px; text-align: center; }
    .number-wall-layout { grid-template-columns: 1fr; }
    .mosaic-gallery-grid { grid-template-columns: 1fr 1fr; }
    .mosaic-tile.dominant { grid-column: span 2; grid-row: span 1; height: 300px; }
    .mag-col-3, .mag-col-2 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    /* Hide desktop navigation */
    header nav {
        display: none !important;
    }
    
    /* Show hamburger */
    .hamburger-editorial {
        display: flex !important;
    }
    
    header {
        padding: 15px 5%;
    }
    
    .subpage-hero-banner h1 { font-size: 2.8rem; }
    .footer-giant-logo { font-size: 2.5rem; }
    .footer-split-links { flex-direction: column; gap: 40px; }
    .form-btn-row { flex-direction: column; }
    
    .logo-container {
        font-size: 1.2rem;
    }
    
    .hero-col-3 {
        padding: 40px 5%;
    }
    
    .massive-hero-title {
        font-size: 1.8rem;
    }
    
    .glass-headline {
        font-size: 2rem;
    }
    
    .floating-glass-panel {
        padding: 40px 20px;
    }
    
    .section-islands {
        padding: 80px 4%;
    }
    
    .section-tunnel {
        padding: 80px 4%;
    }
    
    .section-number-wall {
        padding: 80px 4%;
    }
    
    .section-mosaic {
        padding: 80px 4%;
    }
    
    .section-testimonials {
        padding: 80px 4%;
    }
    
    .section-magazine-layout {
        padding: 80px 4%;
    }
    
    .section-newsletter-glass {
        padding: 80px 4%;
    }
    
    .fullscreen-footer {
        padding: 60px 4% 30px 4%;
        min-height: auto;
    }
    
    .footer-center-branding {
        padding: 30px 0;
    }
    
    .footer-giant-logo {
        font-size: 2rem;
    }
    
    .footer-split-links {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
    }
    
    .footer-vertical-nav {
        align-items: center;
    }
    
    .footer-copyright-row {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .mobile-magazine-overlay a {
        font-size: 1.5rem;
    }
    
    .mobile-magazine-overlay {
        gap: 20px;
    }
    
    .subpage-hero-banner {
        padding: 60px 5% 40px 5%;
    }
    
    .subpage-hero-banner h1 {
        font-size: 2.5rem;
    }
    
    .subpage-hero-banner p {
        font-size: 1rem;
    }
    
    .inner-page-editorial-wrapper {
        padding-top: 80px;
    }
}

@media (max-width: 480px) {
    .logo-container {
        font-size: 1rem;
    }
    
    .hero-col-3 {
        padding: 30px 4%;
    }
    
    .massive-hero-title {
        font-size: 1.4rem;
    }
    
    .cycling-text {
        font-size: 0.9rem;
    }
    
    .live-counter-box {
        font-size: 0.7rem;
    }
    
    .explore-editorial-btn {
        font-size: 0.65rem;
        padding: 10px 16px;
    }
    
    .glass-headline {
        font-size: 1.6rem;
    }
    
    .editorial-form-input {
        padding: 14px;
        font-size: 0.9rem;
    }
    
    .btn-glass-action {
        font-size: 0.7rem;
        padding: 14px;
    }
    
    .subpage-hero-banner h1 {
        font-size: 2rem;
    }
    
    .morphing-word {
        font-size: 3rem;
    }
    
    .stat-announcement {
        font-size: 2.5rem;
    }
}
