@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Lato:wght@300;400;700&display=swap');

        * { margin: 0; padding: 0; box-sizing: border-box; }
        a { color: inherit; text-decoration: none; }

        :root {
            --gold: #D9BF9C;
            --gold-light: #E8D5B8;
            --gold-dark: #B8976A;
            --black: #0A0A0A;
            --dark: #141414;
            --charcoal: #1A1A1A;
            --grey: #888;
            --light-grey: #ccc;
        }

        body {
            font-family: 'Lato', sans-serif;
            background: var(--black);
            color: #fff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ── Scroll Progress ── */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
            z-index: 1000;
            transition: width 0.1s linear;
        }

        /* ═══ Mega Menu Navigation ═══ */
        .main-nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 500;
            background: rgba(10,10,10,1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            transition: all 0.4s ease;
            padding: 0 20px;
        }

        .main-nav.scrolled {
            background: rgba(10,10,10,1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 4px 30px rgba(0,0,0,0.5);
            border-bottom: 1px solid rgba(217,191,156,0.08);
        }

        .nav-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0;
            position: relative;
        }

        .nav-item {
            position: relative;
        }

        .nav-item > a {
            display: block;
            padding: 18px 16px;
            font-family: 'Lato', sans-serif;
            font-size: 12px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.5);
            white-space: nowrap;
            transition: color 0.3s ease;
            position: relative;
            cursor: pointer;
        }

        .main-nav.scrolled .nav-item > a { color: #888; }
        .nav-item > a:hover, .nav-item > a.active { color: #D9BF9C; }

        .nav-item > a.active::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 16px;
            right: 16px;
            height: 1px;
            background: #D9BF9C;
        }

        .mega-dropdown {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(14,14,14,0.98);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            border: 1px solid rgba(217,191,156,0.1);
            border-top: 2px solid rgba(217,191,156,0.3);
            padding: 28px 32px 24px;
            min-width: auto;
            opacity: 0;
            visibility: hidden;
            transform: translateX(-50%) translateY(8px);
            transition: all 0.3s cubic-bezier(0.25, 0, 0, 1);
            pointer-events: none;
            box-shadow: 0 20px 60px rgba(0,0,0,0.6);
            z-index: 600;
        }

        .nav-item:hover .mega-dropdown,
        .nav-item:focus-within .mega-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
            pointer-events: auto;
        }

        .mega-columns { display: flex; gap: 36px; }
        .mega-column { min-width: 140px; }

        .mega-column-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 14px;
            padding-bottom: 8px;
            border-bottom: 1px solid rgba(217,191,156,0.12);
        }

        .mega-column a {
            display: block;
            font-family: 'Lato', sans-serif;
            font-size: 12px;
            font-weight: 300;
            color: rgba(255,255,255,0.55);
            padding: 5px 0;
            transition: color 0.2s ease, padding-left 0.2s ease;
            letter-spacing: 0.5px;
        }

        .mega-column a:hover {
            color: var(--gold-light);
            padding-left: 6px;
        }

        .mega-hub-link {
            display: block;
            margin-top: 16px;
            padding-top: 12px;
            border-top: 1px solid rgba(217,191,156,0.08);
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold-dark);
            transition: color 0.2s ease;
        }

        .mega-hub-link:hover { color: var(--gold); }
        .small-dropdown {
            min-width: 220px !important;
        }
        .small-dropdown .mega-column {
            min-width: 180px;
        }
        .etiquette-dropdown {
            min-width: 640px !important;
        }

        .nav-hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 15px;
            z-index: 501;
        }

        .nav-hamburger span {
            display: block;
            width: 22px;
            height: 1px;
            background: var(--gold);
            transition: all 0.3s ease;
        }

        .nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
        .nav-hamburger.open span:nth-child(2) { opacity: 0; }
        .nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

        .nav-search-trigger {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 18px 16px;
            cursor: pointer;
            transition: color 0.3s ease;
            color: rgba(255,255,255,0.5);
        }
        .nav-search-trigger:hover { color: var(--gold); }
        .nav-search-trigger svg {
            width: 14px; height: 14px;
            stroke: currentColor; fill: none;
            stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
        }
        .nav-search-trigger span {
            font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
        }

        /* ── Hero Section ── */
        .hero {
            min-height: 65vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 120px 20px 60px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background:
                radial-gradient(ellipse at 20% 50%, rgba(217,191,156,0.03) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(217,191,156,0.03) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 0%, rgba(217,191,156,0.05) 0%, transparent 40%);
            pointer-events: none;
        }

        .hero-logo {
            height: 120px;
            margin-top: 30px; margin-bottom: 50px;
            opacity: 0;
            animation: fadeDown 1s ease forwards 0.2s;
        }

        .hero-divider {
            width: 60px;
            height: 1px;
            background: var(--gold);
            margin: 0 auto 40px;
            opacity: 0;
            animation: fadeIn 1s ease forwards 0.3s;
        }

        .hero-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(32px, 5vw, 60px);
            font-weight: 300;
            letter-spacing: 10px;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 20px;
            opacity: 0;
            animation: fadeUp 1s ease forwards 0.5s;
        }

        .hero-subtitle {
            font-size: 15px;
            letter-spacing: 6px;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 300;
            margin-bottom: 30px;
            opacity: 0;
            animation: fadeUp 1s ease forwards 0.7s;
        }

        .hero-intro {
            font-size: 17px;
            color: var(--grey);
            line-height: 1.9;
            max-width: 700px;
            font-weight: 300;
            margin-bottom: 40px;
            opacity: 0;
            animation: fadeUp 1s ease forwards 0.9s;
        }

        .hero-stats {
            display: flex;
            align-items: center;
            gap: 40px;
            opacity: 0;
            animation: fadeUp 1s ease forwards 1.1s;
        }

        .hero-stat-line {
            width: 60px;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(217,191,156,0.4));
        }

        .hero-stat-line:last-child {
            background: linear-gradient(90deg, rgba(217,191,156,0.4), transparent);
        }

        .hero-stat { text-align: center; }

        .hero-stat-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 42px;
            font-weight: 300;
            color: var(--gold);
        }

        .hero-stat-label {
            font-size: 11px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--grey);
            margin-top: -4px;
        }

        /* ── Bundle Banner ── */
        .bundle-banner {
            max-width: 1100px;
            margin: 0 auto 60px;
            padding: 0 30px;
        }

        .bundle-inner {
            background: linear-gradient(135deg, rgba(217,191,156,0.06) 0%, rgba(217,191,156,0.02) 100%);
            border: 1px solid rgba(217,191,156,0.15);
            padding: 50px 50px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .bundle-inner::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }

        .bundle-diamond {
            color: var(--gold);
            font-size: 20px;
            margin-bottom: 20px;
        }

        .bundle-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(22px, 3vw, 34px);
            font-weight: 300;
            letter-spacing: 6px;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 12px;
        }

        .bundle-subtitle {
            font-size: 15px;
            color: var(--grey);
            font-weight: 300;
            line-height: 1.8;
            max-width: 600px;
            margin: 0 auto 30px;
        }

        .bundle-pricing {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .bundle-original {
            font-family: 'Cormorant Garamond', serif;
            font-size: 28px;
            font-weight: 300;
            color: var(--grey);
            text-decoration: line-through;
            text-decoration-color: rgba(255,255,255,0.25);
        }

        .bundle-arrow {
            color: var(--gold-dark);
            font-size: 18px;
        }

        .bundle-price {
            font-family: 'Cormorant Garamond', serif;
            font-size: 48px;
            font-weight: 300;
            color: #fff;
        }

        .bundle-savings {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(217,191,156,0.1);
            border: 1px solid rgba(217,191,156,0.2);
            font-size: 10px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
        }

        .bundle-button {
            display: inline-block;
            padding: 18px 60px;
            background: var(--gold);
            color: var(--black);
            font-size: 11px;
            letter-spacing: 4px;
            text-transform: uppercase;
            font-weight: 700;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            margin-top: 25px;
        }

        .bundle-button:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(217,191,156,0.2);
        }

        .bundle-note {
            font-size: 11px;
            color: rgba(255,255,255,0.3);
            margin-top: 18px;
            letter-spacing: 1px;
        }

        /* ── Category Dividers ── */
        .store-category {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 30px 60px;
        }

        .store-category-header {
            display: flex;
            align-items: center;
            gap: 24px;
            margin-bottom: 36px;
        }

        .store-category-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(20px, 3vw, 30px);
            font-weight: 300;
            letter-spacing: 6px;
            text-transform: uppercase;
            color: #fff;
            white-space: nowrap;
        }

        .store-category-line {
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, rgba(217,191,156,0.2), transparent);
        }

        /* ── Booklet Cards Grid ── */
        .booklet-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
            gap: 24px;
        }

        .booklet-card {
            background: var(--dark);
            border: 1px solid rgba(217,191,156,0.08);
            padding: 36px 32px 32px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0, 0, 1);
            display: flex;
            flex-direction: column;
        }

        .booklet-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 2px;
            background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s cubic-bezier(0.25, 0, 0, 1);
        }

        .booklet-card:hover {
            border-color: rgba(217,191,156,0.18);
            background: var(--charcoal);
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(0,0,0,0.4);
        }

        .booklet-card:hover::before {
            transform: scaleX(1);
        }

        .booklet-category-tag {
            font-size: 10px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold-dark);
            margin-bottom: 14px;
            font-weight: 400;
        }

        .booklet-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 24px;
            font-weight: 400;
            color: #fff;
            letter-spacing: 1px;
            line-height: 1.3;
            margin-bottom: 12px;
        }

        .booklet-desc {
            font-size: 13px;
            color: var(--grey);
            line-height: 1.75;
            font-weight: 300;
            margin-bottom: 24px;
            flex: 1;
        }

        .booklet-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
            padding-top: 18px;
            border-top: 1px solid rgba(217,191,156,0.06);
        }

        .booklet-meta-item {
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.35);
        }

        .booklet-meta-divider {
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: rgba(217,191,156,0.2);
        }

        .booklet-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .booklet-price {
            font-family: 'Cormorant Garamond', serif;
            font-size: 32px;
            font-weight: 300;
            color: #fff;
        }

        .booklet-button {
            display: inline-block;
            padding: 12px 28px;
            border: 1px solid var(--gold);
            color: var(--gold);
            font-size: 10px;
            letter-spacing: 3px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            cursor: pointer;
            font-weight: 400;
        }

        .booklet-button:hover {
            background: var(--gold);
            color: var(--black);
        }

        .booklet-preview-link {
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold-dark);
            transition: color 0.3s ease;
            display: inline-block;
            margin-top: 14px;
        }

        .booklet-preview-link:hover {
            color: var(--gold);
        }

        /* ── Booklet Cover Visual (miniature A5 cover) ── */
        .booklet-cover-wrap {
            position: relative;
            width: 100%;
            aspect-ratio: 1 / 1.4142;
            margin-bottom: 24px;
            perspective: 800px;
        }

        .booklet-card:hover .booklet-cover-wrap .booklet-cover {
            transform: rotateY(-2deg) rotateX(1deg) translateY(-4px);
            box-shadow:
                0 4px 10px rgba(0,0,0,0.5),
                0 20px 50px rgba(0,0,0,0.6),
                inset -1px 0 0 rgba(217,191,156,0.1);
        }

        .booklet-cover {
            position: absolute;
            inset: 0;
            background: #0a0a0a;
            border-radius: 2px 6px 6px 2px;
            overflow: hidden;
            box-shadow:
                0 2px 6px rgba(0,0,0,0.4),
                0 12px 40px rgba(0,0,0,0.5),
                inset -1px 0 0 rgba(217,191,156,0.08);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        }

        /* Spine edge */
        .booklet-cover::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 4px; height: 100%;
            background: linear-gradient(
                to right,
                rgba(0,0,0,0.5) 0%,
                rgba(217,191,156,0.12) 60%,
                transparent 100%
            );
            z-index: 5;
        }

        /* Page-edge shimmer */
        .booklet-cover::after {
            content: '';
            position: absolute;
            top: 3%; right: 0;
            width: 3px; height: 94%;
            background: linear-gradient(
                to bottom,
                transparent 0%,
                rgba(245,240,232,0.15) 20%,
                rgba(245,240,232,0.2) 50%,
                rgba(245,240,232,0.15) 80%,
                transparent 100%
            );
            z-index: 5;
            border-radius: 0 2px 2px 0;
        }

        .booklet-cover-inner {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 12%;
            background: linear-gradient(145deg, rgba(18,16,12,1) 0%, rgba(10,10,10,1) 100%);
        }

        /* Corner brackets */
        .booklet-cover-inner::before,
        .booklet-cover-inner::after {
            content: '';
            position: absolute;
            width: 20px; height: 20px;
            border-color: rgba(217,191,156,0.2);
            border-style: solid;
        }
        .booklet-cover-inner::before {
            top: 7%; left: 7%;
            border-width: 1px 0 0 1px;
        }
        .booklet-cover-inner::after {
            bottom: 7%; right: 7%;
            border-width: 0 1px 1px 0;
        }

        .booklet-cover-logo {
            width: 44%;
            max-width: 140px;
            opacity: 0.85;
            margin-bottom: 8%;
        }

        .booklet-cover-rule {
            width: 18%;
            height: 1px;
            background: var(--gold);
            opacity: 0.5;
            margin-bottom: 8%;
        }

        .booklet-cover-title {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 400;
            font-size: clamp(15px, 3.8vw, 22px);
            color: #f0e8d8;
            letter-spacing: 0.5px;
            line-height: 1.2;
            margin-bottom: 4%;
        }

        .booklet-cover-subtitle {
            font-family: 'Lato', sans-serif;
            font-weight: 400;
            font-size: clamp(7px, 1.6vw, 9px);
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 6%;
        }

        .booklet-cover-desc {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            font-weight: 300;
            font-size: clamp(9px, 2.2vw, 12px);
            line-height: 1.5;
            color: var(--gold-dark);
            max-width: 85%;
        }

        .booklet-cover-edition {
            position: absolute;
            bottom: 6%;
            left: 0; right: 0;
            text-align: center;
            font-family: 'Lato', sans-serif;
            font-size: clamp(6px, 1.2vw, 8px);
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            opacity: 0.7;
        }

        /* Fact badge */
        .booklet-fact-badge {
            position: absolute;
            top: 10px; right: 10px;
            z-index: 10;
            background: rgba(10,10,10,0.85);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(217,191,156,0.25);
            border-radius: 3px;
            padding: 5px 8px;
            text-align: center;
            line-height: 1;
        }

        .booklet-fact-badge .badge-num {
            font-family: 'Lato', sans-serif;
            font-weight: 700;
            font-size: 15px;
            color: var(--gold-light);
            display: block;
        }

        .booklet-fact-badge .badge-label {
            font-family: 'Lato', sans-serif;
            font-weight: 400;
            font-size: 7px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold-dark);
            margin-top: 2px;
            display: block;
        }

        /* Card with cover - adjust padding */
        .booklet-card.has-cover {
            padding-top: 0;
            padding-left: 0;
            padding-right: 0;
            overflow: hidden;
        }

        .booklet-card.has-cover .booklet-cover-wrap {
            margin-bottom: 0;
        }

        .booklet-card.has-cover .booklet-card-body {
            padding: 24px 32px 32px;
        }

        .booklet-card.has-cover .booklet-category-tag {
            margin-bottom: 10px;
        }

        /* ── Footer ── */
        .site-footer {
            text-align: center;
            padding: 80px 24px 50px;
            border-top: 1px solid rgba(217,191,156,0.08);
            margin-top: 60px;
        }

        .footer-back {
            display: block;
            width: fit-content;
            margin: 0 auto 40px;
            font-size: 12px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gold-dark);
            padding: 12px 30px;
            border: 1px solid rgba(217,191,156,0.2);
            transition: all 0.3s ease;
        }

        .footer-back:hover {
            border-color: var(--gold);
            color: var(--gold);
            background: rgba(217,191,156,0.05);
        }

        .footer-logo {
            display: block;
            height: 80px;
            margin: 0 auto 30px;
            opacity: 0.6;
        }

        .footer-nav {
            display: flex; justify-content: center; flex-wrap: wrap;
            gap: 8px 30px; margin-bottom: 30px;
        }
        .footer-nav a {
            font-size: 12px; letter-spacing: 3px;
            text-transform: uppercase; color: var(--grey); transition: color 0.3s ease;
        }
        .footer-nav a:hover { color: var(--gold); }
        .footer-divider {
            width: 40px; height: 1px;
            background: rgba(217,191,156,0.15); margin: 0 auto 20px;
        }
        .footer-legal {
            display: flex; justify-content: center; flex-wrap: wrap; gap: 6px 20px;
        }
        .footer-legal a {
            font-size: 12px; letter-spacing: 2px;
            color: rgba(255,255,255,0.18); transition: color 0.3s ease;
        }
        .footer-legal a:hover { color: var(--gold-dark); }
        .footer-tagline {
            font-size: 12px;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: var(--grey);
            margin-bottom: 12px;
        }
        .footer-copy {
            font-size: 12px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.25);
        }

        /* ── Scroll to Top ── */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 48px;
            height: 48px;
            background: rgba(217,191,156,0.1);
            border: 1px solid rgba(217,191,156,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            color: var(--gold);
            font-size: 18px;
            z-index: 99;
        }

        .scroll-top.visible { opacity: 1; visibility: visible; }
        .scroll-top:hover { background: rgba(217,191,156,0.2); transform: translateY(-2px); }

        /* ── Animations ── */
        @keyframes fadeDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .js-enabled .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .js-enabled .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ── Responsive ── */
        @media (max-width: 900px) {
            .nav-hamburger {
                display: flex;
                position: absolute;
                right: 0;
                top: 4px;
            }

            .nav-inner {
                flex-direction: column;
                align-items: flex-start;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease;
                width: 100%;
            }

            .nav-inner.open {
                max-height: 2000px;
                padding-bottom: 20px;
            }

            .nav-item { width: 100%; }
            .nav-item > a { padding: 12px 16px; }

            .mega-dropdown {
                position: static;
                transform: none;
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
                min-width: 100%;
                border: none;
                border-top: none;
                border-left: 2px solid rgba(217,191,156,0.15);
                margin-left: 16px;
                padding: 10px 16px;
                background: rgba(20,20,20,0.95);
                box-shadow: none;
                display: none;
                transform: none !important;
            }

            .nav-item.mobile-open .mega-dropdown { display: block; }
            .mega-columns { flex-direction: column; gap: 16px; }
        }

        @media (max-width: 768px) {
            .hero {
                min-height: 55vh;
                padding: 100px 20px 50px;
            }
            .hero-logo { height: 90px; margin-bottom: 30px; }
            .hero-stats { gap: 20px; }
            .hero-stat-line { width: 30px; }
            .booklet-grid { grid-template-columns: 1fr; }
            .bundle-inner { padding: 36px 24px; }
            .bundle-pricing { gap: 16px; }
            .store-category { padding: 0 20px 50px; }
            .bundle-banner { padding: 0 20px; }
        }

        @media (max-width: 480px) {
            .hero-title { letter-spacing: 5px; }
            .hero-logo { height: 70px; }
            .booklet-card { padding: 28px 22px 24px; }
            .booklet-card.has-cover { padding: 0; }
            .booklet-card.has-cover .booklet-card-body { padding: 20px 22px 24px; }
            .booklet-cover-inner { padding: 10%; }
        }

        /* ═══ Search Overlay ═══ */
        .search-overlay {
            position: fixed;
            inset: 0;
            z-index: 1000;
            background: rgba(7,7,7,0.97);
            backdrop-filter: blur(40px);
            -webkit-backdrop-filter: blur(40px);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s cubic-bezier(0.25,0,0,1), visibility 0.4s cubic-bezier(0.25,0,0,1);
            display: flex;
            flex-direction: column;
        }
        .search-overlay.active { opacity: 1; visibility: visible; }

        .search-close {
            position: absolute; top: 24px; right: 32px;
            width: 44px; height: 44px;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; color: var(--grey);
            transition: color 0.3s ease, transform 0.3s ease; z-index: 10;
        }
        .search-close:hover { color: var(--gold); transform: rotate(90deg); }
        .search-close svg {
            width: 20px; height: 20px; stroke: currentColor; fill: none;
            stroke-width: 1.5; stroke-linecap: round;
        }

        .search-header {
            padding: 80px 40px 0;
            max-width: 800px; width: 100%; margin: 0 auto;
        }
        .search-label {
            font-family: 'Cormorant Garamond', serif;
            font-size: 13px; letter-spacing: 5px; text-transform: uppercase;
            color: var(--gold-dark); margin-bottom: 20px;
            opacity: 0; transform: translateY(10px); transition: all 0.4s ease 0.1s;
        }
        .search-overlay.active .search-label { opacity: 1; transform: translateY(0); }

        .search-input-wrap {
            position: relative; border-bottom: 1px solid rgba(217,191,156,0.2);
            padding-bottom: 12px;
            opacity: 0; transform: translateY(10px); transition: all 0.4s ease 0.2s;
        }
        .search-overlay.active .search-input-wrap { opacity: 1; transform: translateY(0); }
        .search-input {
            width: 100%; background: transparent; border: none; outline: none;
            font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 4vw, 48px);
            font-weight: 300; color: #fff; letter-spacing: 2px;
        }
        .search-input::placeholder { color: rgba(255,255,255,0.15); }

        .search-results {
            padding: 30px 40px; max-width: 800px; width: 100%;
            margin: 0 auto; flex: 1; overflow-y: auto;
        }
        .search-result-item {
            display: block; padding: 16px 0;
            border-bottom: 1px solid rgba(255,255,255,0.04); transition: all 0.2s ease;
        }
        .search-result-item:hover { padding-left: 8px; }
        .search-result-section {
            font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
            color: var(--gold-dark); margin-bottom: 4px;
        }
        .search-result-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px; font-weight: 400; color: #fff; margin-bottom: 4px;
        }
        .search-result-snippet {
            font-size: 13px; color: var(--grey); font-weight: 300; line-height: 1.5;
        }
        .search-no-results {
            text-align: center; padding: 60px 20px; color: var(--grey);
            font-size: 14px; font-weight: 300;
        }