        /* CSS Reset & Variables */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --color-navy: #0A2947;
            --color-bg: #ebd58b;
            --color-aqua: #8FDDDF;
            --color-surface: #DDEEEA;
            --color-white: #FFFFFF;
            --font-main: 'Nunito Sans', sans-serif;
            --transition-smooth: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
            --transition-fast: all 0.3s ease;
        }

        body {
            background-color: var(--color-bg);
            color: var(--color-navy);
            font-family: var(--font-main);
            overflow-x: hidden;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* Utility Layouts & Typography */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.03em;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-fast);
        }

        img {
            max-width: 100%;
            height: auto;
            object-fit: cover;
            display: block;
        }

        button {
            font-family: var(--font-main);
            background: none;
            border: none;
            cursor: pointer;
            outline: none;
        }

        .btn-editorial {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.05em;
            transition: var(--transition-smooth);
            border: 1px solid var(--color-navy);
            background: transparent;
            color: var(--color-navy);
        }

        .btn-editorial:hover {
            background: var(--color-navy);
            color: var(--color-bg);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(10, 41, 71, 0.1);
        }

        .btn-editorial.inverted {
            border-color: var(--color-bg);
            color: var(--color-bg);
        }

        .btn-editorial.inverted:hover {
            background: var(--color-bg);
            color: var(--color-navy);
        }

        /* Global Header Framework */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            height: 100px;
            padding: 2.5rem 4rem;
            transition: var(--transition-smooth);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        header.scrolled {
            padding: 1.2rem 4rem;
            background-color: var(--color-bg);
            box-shadow: 0 10px 30px rgba(10, 41, 71, 0.05);
        }

        header .logo {
            font-size: 1.5rem;
            font-weight: 900;
            letter-spacing: -0.05em;
            color: inherit;
        }

        header nav {
            display: flex;
            gap: 3rem;
        }

        header nav a {
            font-size: 0.95rem;
            font-weight: 600;
            position: relative;
        }

        header nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: currentColor;
            transition: var(--transition-fast);
        }

        header nav a:hover::after, header nav a.active::after {
            width: 100%;
        }

        header .actions {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        header .actions button {
            color: inherit;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        header .badge {
            position: absolute;
            top: -6px;
            right: -8px;
            background-color: var(--color-navy);
            color: var(--color-bg);
            font-size: 0.7rem;
            font-weight: 800;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        header.scrolled .badge {
            background-color: var(--color-navy);
            color: var(--color-bg);
        }

        /* Mobile Hamburger System */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger span {
            display: block;
            width: 28px;
            height: 2px;
            background-color: currentColor;
            transition: var(--transition-smooth);
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background-color: var(--color-navy);
            color: var(--color-bg);
            z-index: 999;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 4rem;
            gap: 2rem;
            transition: var(--transition-smooth);
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu a {
            font-size: 2.5rem;
            font-weight: 800;
        }

        /* Search Overlay System */
        .search-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: rgba(10, 41, 71, 0.98);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 4rem;
        }

        .search-container {
            width: 100%;
            max-width: 800px;
            position: relative;
        }

        .search-input {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 3px solid var(--color-bg);
            font-family: var(--font-main);
            font-size: 3rem;
            font-weight: 700;
            color: var(--color-bg);
            padding: 1rem 0;
            outline: none;
        }

        .search-close {
            position: absolute;
            top: -4rem;
            right: 0;
            color: var(--color-bg);
            font-size: 1.5rem;
        }

        /* Side Cart Panel */
        .cart-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(10, 41, 71, 0.4);
            z-index: 2000;
            display: none;
            justify-content: flex-end;
        }

        .cart-panel {
            width: 100%;
            max-width: 450px;
            height: 100%;
            background: var(--color-bg);
            box-shadow: -10px 0 40px rgba(0,0,0,0.1);
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(10, 41, 71, 0.1);
            padding-bottom: 1.5rem;
        }

        .cart-items {
            flex-grow: 1;
            overflow-y: auto;
            margin: 2rem 0;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .cart-item {
            display: flex;
            gap: 1rem;
            align-items: center;
            background: var(--color-white);
            padding: 1rem;
            border-radius: 12px;
        }

        .cart-item img {
            width: 70px;
            height: 70px;
            border-radius: 8px;
            object-fit: cover;
        }

        .cart-item-details {
            flex-grow: 1;
        }

        .cart-item-title {
            font-weight: 700;
            font-size: 0.95rem;
        }

        .cart-item-price {
            font-weight: 800;
            color: var(--color-navy);
            margin-top: 0.2rem;
        }

        /* App Main Engine Container */
        main {
            margin-top: 0;
        }

        section {
            position: relative;
            padding: 8rem 4rem;
            overflow: hidden;
        }

        /* HOMEPAGE SECTIONS */
        #sec-1 {
            height: 100vh;
            background-color: var(--color-navy);
            color: var(--color-bg);
            display: flex;
            align-items: center;
            padding-top: 8rem;
        }

        .opening-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            width: 100%;
            height: 100%;
            align-items: center;
            gap: 4rem;
        }

        .opening-left {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .opening-left h1 {
            font-size: 5.5rem;
            margin-bottom: 2rem;
        }

        .opening-left p {
            font-size: 1.2rem;
            max-width: 500px;
            opacity: 0.8;
            margin-bottom: 3.5rem;
        }

        .tags-row {
            display: flex;
            gap: 1rem;
        }

        .tag-pill {
            padding: 0.6rem 1.8rem;
            border: 1px solid rgba(247, 241, 222, 0.3);
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .opening-right {
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-img-wrap {
            width: 80%;
            height: 80%;
            border-radius: 40px 40px 200px 40px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
        }

        .hero-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .floating-label {
            position: absolute;
            background: var(--color-white);
            color: var(--color-navy);
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            font-weight: 800;
            font-size: 0.8rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            animation: floatingNodes 6s ease-in-out infinite alternate;
        }

        @keyframes floatingNodes {
            0% { transform: translateY(0px) translateX(0px); }
            100% { transform: translateY(-15px) translateX(10px); }
        }

        /* Section 2: Oversized Editorial Strip */
        #sec-2 {
            background-color: var(--color-bg);
            padding: 10rem 0;
        }

        .giant-strip-text {
            font-size: 10rem;
            font-weight: 900;
            text-transform: uppercase;
            white-space: nowrap;
            letter-spacing: -0.04em;
            line-height: 0.8;
            opacity: 0.08;
            margin-bottom: -4rem;
            user-select: none;
        }

        .overlapping-photos {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            padding: 0 4rem;
            height: 600px;
        }

        .photo-block {
            position: absolute;
            box-shadow: 0 30px 60px rgba(10, 41, 71, 0.15);
            border-radius: 24px;
            overflow: hidden;
            transition: var(--transition-smooth);
        }

        .photo-block:hover {
            transform: scale(1.03) translateY(-10px) !important;
            z-index: 10 !important;
        }

        .pb-1 { width: 350px; height: 450px; left: 10%; top: 10%; transform: rotate(-4deg); z-index: 1;}
        .pb-2 { width: 420px; height: 550px; left: 35%; top: 0%; transform: rotate(2deg); z-index: 3;}
        .pb-3 { width: 320px; height: 480px; right: 10%; top: 15%; transform: rotate(-2deg); z-index: 2;}

        .editorial-quote {
            position: absolute;
            font-size: 1.1rem;
            font-style: italic;
            max-width: 220px;
            font-weight: 600;
            line-height: 1.4;
        }

        .q-1 { left: 5%; bottom: 10%; }
        .q-2 { right: 5%; top: 10%; text-align: right; }

        /* Section 3: Floating Marketplace */
        #sec-3 {
            background-color: var(--color-aqua);
            padding: 8rem 4rem;
        }

        .section-title-editorial {
            font-size: 3.5rem;
            margin-bottom: 4rem;
            text-transform: uppercase;
            letter-spacing: -0.02em;
        }

        .island-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 6rem 4rem;
            padding-top: 4rem;
        }

        .product-island {
            background: var(--color-white);
            padding: 2.5rem;
            border-radius: 32px;
            box-shadow: 0 20px 50px rgba(10, 41, 71, 0.06);
            transition: var(--transition-smooth);
        }

        .product-island:nth-child(even) {
            transform: translateY(50px);
        }

        .product-island:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 30px 60px rgba(10, 41, 71, 0.12);
        }

        .island-img-wrap {
            width: 100%;
            height: 300px;
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 1.5rem;
        }

        .island-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .island-meta {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1rem;
        }

        .island-title {
            font-size: 1.3rem;
            font-weight: 800;
        }

        .island-price {
            font-size: 1.2rem;
            font-weight: 900;
            color: var(--color-navy);
        }

        .island-desc {
            font-size: 0.9rem;
            opacity: 0.7;
            margin-bottom: 1.5rem;
        }

        /* Section 4: Split Story */
        #sec-4 {
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            height: 100vh;
        }

        .split-left img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .split-right {
            background-color: var(--color-navy);
            color: var(--color-bg);
            padding: 6rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .split-right h2 {
            font-size: 3.5rem;
            margin-bottom: 2rem;
        }

        .split-right p {
            font-size: 1.1rem;
            opacity: 0.8;
            margin-bottom: 1.5rem;
        }

        .split-quote {
            font-size: 1.5rem;
            font-style: italic;
            border-left: 3px solid var(--color-aqua);
            padding-left: 1.5rem;
            margin: 2rem 0;
        }

        /* Section 5: Editorial Product Wall */
        #sec-5 {
            background-color: var(--color-surface);
        }

        .masonry-wall {
            columns: 3 300px;
            column-gap: 2.5rem;
        }

        .masonry-item {
            break-inside: avoid;
            background: var(--color-white);
            margin-bottom: 2.5rem;
            border-radius: 24px;
            overflow: hidden;
            padding: 1.5rem;
            box-shadow: 0 15px 40px rgba(10, 41, 71, 0.04);
            position: relative;
            transition: var(--transition-smooth);
        }

        .masonry-item img {
            border-radius: 16px;
            width: 100%;
            margin-bottom: 1rem;
        }

        .masonry-hover-actions {
            position: absolute;
            top: 2rem;
            right: 2rem;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            opacity: 0;
            transform: translateX(10px);
            transition: var(--transition-fast);
        }

        .masonry-item:hover .masonry-hover-actions {
            opacity: 1;
            transform: translateX(0);
        }

        .action-icon-btn {
            background: var(--color-white);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            color: var(--color-navy);
            transition: var(--transition-fast);
        }

        .action-icon-btn:hover {
            background: var(--color-navy);
            color: var(--color-bg);
        }

        /* Section 6: Manifesto */
        #sec-6 {
            background-color: var(--color-navy);
            color: var(--color-bg);
            text-align: center;
            padding: 12rem 4rem;
        }

        .manifesto-wrap h2 {
            font-size: 4.5rem;
            max-width: 1100px;
            margin: 0 auto 3rem auto;
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.2;
        }

        .manifesto-wrap p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.7;
        }

        /* Section 7: Collection Journey */
        #sec-7 {
            padding: 6rem 0;
            background-color: var(--color-bg);
        }

        .horizontal-scroll-container {
            display: flex;
            gap: 3rem;
            overflow-x: auto;
            padding: 2rem 4rem;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
        }

        .horizontal-scroll-container::-webkit-scrollbar {
            display: none;
        }

        .journey-card {
            flex: 0 0 500px;
            scroll-snap-align: start;
            background: var(--color-white);
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 20px 45px rgba(10, 41, 71, 0.06);
        }

        .journey-img-wrap {
            height: 400px;
            overflow: hidden;
        }

        .journey-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-smooth);
        }

        .journey-card:hover .journey-img-wrap img {
            transform: scale(1.05);
        }

        .journey-meta {
            padding: 2.5rem;
        }

        /* Section 8: Curated Objects */
        .curated-magazine-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 4rem;
        }

        .magazine-block {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .magazine-block img {
            border-radius: 24px;
            height: 450px;
            width: 100%;
            object-fit: cover;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }

        /* Section 9: Interactive Shopping Table */
        .designer-table {
            background: var(--color-white);
            border-radius: 40px;
            padding: 4rem;
            box-shadow: 0 30px 70px rgba(10, 41, 71, 0.05);
            margin-top: 2rem;
        }

        .table-row-item {
            display: grid;
            grid-template-columns: 80px 2fr 1fr 1fr auto;
            align-items: center;
            padding: 1.5rem 0;
            border-bottom: 1px solid rgba(10, 41, 71, 0.08);
            transition: var(--transition-fast);
        }

        .table-row-item:hover {
            transform: translateX(10px);
        }

        .table-row-item img {
            width: 50px;
            height: 50px;
            border-radius: 8px;
        }

        /* Section 11: Today's Selection */
        #sec-11 {
            background-color: var(--color-aqua);
        }

        .rotated-cards-container {
            display: flex;
            justify-content: center;
            gap: 3rem;
            padding: 4rem 0;
        }

        .rotated-card {
            background: var(--color-white);
            padding: 2rem;
            border-radius: 24px;
            width: 320px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            transition: var(--transition-smooth);
            position: relative;
        }

        .rotated-card:nth-child(1) { transform: rotate(-3deg); }
        .rotated-card:nth-child(2) { transform: rotate(2deg); }
        .rotated-card:nth-child(3) { transform: rotate(-1deg); }

        .rotated-card:hover {
            transform: rotate(0deg) translateY(-30px);
            z-index: 5;
        }

        .editorial-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: var(--color-navy);
            color: var(--color-bg);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        /* Section 14: Infinite Ribbon */
        .marquee-ribbon {
            background: var(--color-navy);
            color: var(--color-bg);
            padding: 2.5rem 0;
            overflow: hidden;
            display: flex;
            white-space: nowrap;
        }

        .marquee-content {
            display: inline-flex;
            gap: 4rem;
            animation: marqueeTrack 25s linear infinite;
            font-size: 2rem;
            font-weight: 800;
            text-transform: uppercase;
            align-items: center;
        }

        @keyframes marqueeTrack {
            0% { transform: translateX(0%); }
            100% { transform: translateX(-50%); }
        }

        /* Section 15: Subscription Lounge */
        #sec-15 {
            background-color: var(--color-navy);
            display: flex;
            justify-content: center;
            padding: 10rem 4rem;
        }

        .subscription-lounge-card {
            background: var(--color-white);
            border-radius: 40px;
            padding: 5rem;
            max-width: 900px;
            width: 100%;
            text-align: center;
            box-shadow: 0 40px 80px rgba(0,0,0,0.2);
        }

        .subscription-lounge-card h2 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }

        .subscription-form {
            display: flex;
            gap: 1rem;
            max-width: 600px;
            margin: 3rem auto 1.5rem auto;
            background: var(--color-bg);
            padding: 0.5rem;
            border-radius: 50px;
        }

        .subscription-form input {
            flex-grow: 1;
            background: transparent;
            border: none;
            padding: 0 2rem;
            font-family: var(--font-main);
            font-size: 1rem;
            outline: none;
            color: var(--color-navy);
        }

        /* INNER PAGES ARCHITECTURE */
        .inner-page-hero {
            padding: 12rem 4rem 6rem 4rem;
            background: var(--color-surface);
            border-bottom: 1px solid rgba(10, 41, 71, 0.05);
        }

        .inner-page-hero h1 {
            font-size: 5rem;
            max-width: 900px;
        }

        .inner-content-block {
            padding: 6rem 4rem;
        }

        /* Product Detail Layout */
        .product-detail-layout {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 6rem;
        }

        .product-gallery-stack {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .product-gallery-stack img {
            border-radius: 24px;
            width: 100%;
            box-shadow: 0 15px 35px rgba(0,0,0,0.04);
        }

        .product-info-panel {
            position: sticky;
            top: 8rem;
            height: fit-content;
        }

        .product-info-panel h2 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        .product-info-panel .price-tag {
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 2rem;
            color: var(--color-navy);
        }

        /* Global Footer Architecture */
        footer {
            background-color: var(--color-navy);
            color: var(--color-bg);
            padding: 8rem 4rem 4rem 4rem;
            border-top: 1px solid rgba(247, 241, 222, 0.1);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 4rem;
            margin-bottom: 6rem;
        }

        .footer-col h4 {
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 2rem;
            color: var(--color-aqua);
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-col ul a {
            opacity: 0.7;
        }

        .footer-col ul a:hover {
            opacity: 1;
            color: var(--color-aqua);
        }

        .footer-bottom {
            border-top: 1px solid rgba(247, 241, 222, 0.1);
            padding-top: 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            opacity: 0.6;
        }

        .footer-bottom-links {
            display: flex;
            gap: 2rem;
        }

        /* Responsive Architecture Breakpoints */
        @media (max-width: 1100px) {
            header nav { display: none; }
            .hamburger { display: flex; }
            .opening-grid, #sec-4, .curated-magazine-grid, .product-detail-layout {
                grid-template-columns: 1fr;
            }
            .opening-left h1 { font-size: 3.5rem; }
            .overlapping-photos { height: 400px; }
            .pb-1, .pb-2, .pb-3 { position: relative; left: auto; top: auto; transform: none; width: 100%; height: 300px; }
            .overlapping-photos { display: flex; flex-direction: column; gap: 2rem; }
            .island-grid { grid-template-columns: 1fr 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 650px) {
            header { padding: 1.5rem 2rem; }
            section, .inner-content-block, .inner-page-hero { padding: 4rem 2rem; }
            .island-grid, .footer-grid { grid-template-columns: 1fr; }
            .subscription-lounge-card { padding: 2.5rem; }
            .subscription-form { flex-direction: column; border-radius: 20px; p: 1rem; }
            .table-row-item { grid-template-columns: 1fr; gap: 1rem; text-align: center; justify-items: center; }
        }
