@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;
            --nav-height: 46px;
        }

        body {
            font-family: 'Lato', sans-serif;
            background: var(--black);
            color: #fff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .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;
        }

        /* ═══ MAIN 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);
        }
        .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: 10px;
            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: var(--gold); }
        .nav-item > a.active::after {
            content: ''; position: absolute; bottom: 8px; left: 16px; right: 16px;
            height: 1px; background: var(--gold);
        }

        .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); }

        /* ═══ HERO ═══ */
        .hero {
            min-height: 100vh; display: flex; flex-direction: column;
            align-items: center; justify-content: center; text-align: center;
            padding: 110px 24px 64px; position: relative; overflow: hidden;
        }
        .hero::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
            background:
                radial-gradient(ellipse at 20% 30%, rgba(217,191,156,0.04) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 40%, rgba(217,191,156,0.03) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 0%, rgba(217,191,156,0.06) 0%, transparent 35%);
            pointer-events: none;
        }
        .hero::after {
            content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
            background-image:
                radial-gradient(1px 1px at 10% 20%, rgba(217,191,156,0.3), transparent),
                radial-gradient(1px 1px at 30% 65%, rgba(217,191,156,0.2), transparent),
                radial-gradient(1px 1px at 55% 15%, rgba(217,191,156,0.25), transparent),
                radial-gradient(1px 1px at 70% 75%, rgba(217,191,156,0.15), transparent),
                radial-gradient(1px 1px at 85% 35%, rgba(217,191,156,0.2), transparent),
                radial-gradient(1px 1px at 45% 85%, rgba(217,191,156,0.15), transparent);
            animation: shimmer 12s ease-in-out infinite alternate;
            pointer-events: none;
        }
        @keyframes shimmer {
            0%   { opacity: 0.4; transform: translateY(0); }
            100% { opacity: 0.9; transform: translateY(-8px); }
        }

        .hero-logo {
            display: block; height: 120px; margin: 30px auto 50px;
            opacity: 0; animation: fadeDown 1.2s ease forwards 0.3s;

        }
        .hero-ornament {
            display: flex; align-items: center; gap: 20px;
            margin-bottom: 45px; opacity: 0; animation: fadeIn 1s ease forwards 0.7s;
        }
        .hero-ornament-line {
            width: 60px; height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold));
        }
        .hero-ornament-line:last-child {
            background: linear-gradient(90deg, var(--gold), transparent);
        }
        .hero-ornament-diamond {
            width: 6px; height: 6px; background: var(--gold);
            transform: rotate(45deg); opacity: 0.8;
        }
        .hero-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(13px, 2.2vw, 18px); font-weight: 300;
            letter-spacing: 12px; text-transform: uppercase;
            color: var(--gold); margin-bottom: 30px;
            opacity: 0; animation: fadeUp 1s ease forwards 0.9s;
        }
        .hero-headline {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(32px, 5.5vw, 64px); font-weight: 300;
            line-height: 1.2; color: #fff; max-width: 800px;
            margin: 0 auto 35px; opacity: 0; animation: fadeUp 1s ease forwards 1.1s;
        }
        .hero-headline em { font-style: italic; color: var(--gold-light); }
        .hero-description {
            font-size: 16px; color: rgba(255,255,255,0.5);
            max-width: 560px; margin: 0 auto 55px; line-height: 2;
            font-weight: 300; letter-spacing: 0.3px;
            opacity: 0; animation: fadeUp 1s ease forwards 1.3s;
        }
        .hero-new-visitor {
            display: inline-block; margin-bottom: 32px;
            font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
            color: var(--gold); opacity: 0.55; transition: opacity 0.3s;
            border-bottom: 1px solid rgba(217,191,156,0.2);
            padding-bottom: 2px;
        }
        .hero-new-visitor:hover { opacity: 0.9; border-bottom-color: var(--gold); }
        .hero-cta {
            display: inline-flex; align-items: center; gap: 12px;
            padding: 16px 42px; border: 1px solid rgba(217,191,156,0.25);
            font-size: 11px; letter-spacing: 5px; text-transform: uppercase;
            color: var(--gold); transition: all 0.4s ease;
            opacity: 0; animation: fadeUp 1s ease forwards 1.5s;
        }
        .hero-cta:hover {
            background: rgba(217,191,156,0.08); border-color: rgba(217,191,156,0.5);
            transform: translateY(-2px); box-shadow: 0 10px 40px rgba(217,191,156,0.08);
        }
        .hero-cta svg {
            width: 14px; height: 14px; stroke: currentColor; fill: none;
            stroke-width: 1.5; transition: transform 0.3s ease;
        }
        .hero-cta:hover svg { transform: translateY(3px); }

        .scroll-hint {
            position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%);
            display: flex; flex-direction: column; align-items: center; gap: 8px;
            opacity: 0; animation: fadeIn 1s ease forwards 2s;
        }
        .scroll-hint-line {
            width: 1px; height: 40px;
            background: linear-gradient(to bottom, var(--gold), transparent);
            animation: scrollPulse 2s ease-in-out infinite;
        }

        /* ═══ STATS RIBBON ═══ */
        .stats-ribbon {
            border-top: 1px solid rgba(217,191,156,0.06);
            border-bottom: 1px solid rgba(217,191,156,0.06);
            background: linear-gradient(180deg, rgba(217,191,156,0.02) 0%, transparent 100%);
            padding: 38px 24px;
        }
        .stats-inner {
            max-width: 1000px; margin: 0 auto;
            display: flex; justify-content: center; gap: 80px;
        }
        .stat-item { text-align: center; }
        .stat-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(36px, 5vw, 52px); font-weight: 300;
            color: var(--gold); line-height: 1; margin-bottom: 8px;
        }
        .stat-label {
            font-size: 10px; letter-spacing: 4px;
            text-transform: uppercase; color: var(--grey);
        }

        /* ═══ SECTION HEADERS ═══ */
        .section-header { text-align: center; margin-bottom: 44px; }
        .section-label {
            font-size: 10px; letter-spacing: 5px;
            text-transform: uppercase; color: var(--gold-dark); margin-bottom: 20px;
        }
        .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(32px, 4.5vw, 50px); font-weight: 300;
            color: #fff; margin-bottom: 20px;
        }
        .section-rule {
            width: 50px; height: 1px; background: var(--gold);
            margin: 0 auto 24px;
        }
        .section-subtitle {
            font-size: 15.5px; color: var(--grey); max-width: 520px;
            margin: 0 auto; line-height: 1.95; font-weight: 300;
        }

        /* ═══ PILLAR GRID ═══ */
        .pillars { padding: 72px 24px; }
        .pillar-grid {
            max-width: 1100px; margin: 0 auto;
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
        }
        .pillar-card {
            display: flex; flex-direction: column;
            position: relative; padding: 50px 36px 44px;
            background: rgba(255,255,255,0.015);
            border: 1px solid rgba(217,191,156,0.06);
            transition: all 0.5s cubic-bezier(0.25, 0, 0, 1);
            overflow: hidden;
        }
        .pillar-card::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            opacity: 0; transition: opacity 0.5s ease;
        }
        .pillar-card:hover {
            background: rgba(217,191,156,0.03);
            border-color: rgba(217,191,156,0.12);
            transform: translateY(-4px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }
        .pillar-card:hover::before { opacity: 1; }

        .pillar-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 32px; font-weight: 400; color: var(--gold-light);
            margin-bottom: 10px; letter-spacing: 1px;
        }
        .pillar-tagline {
            font-size: 12px; letter-spacing: 3px;
            text-transform: uppercase; color: var(--gold-dark); margin-bottom: 22px;
        }
        .pillar-desc {
            font-size: 17px; color: rgba(255,255,255,0.45);
            line-height: 1.95; font-weight: 300; margin-bottom: 30px; flex: 1;
        }
        .pillar-links {
            display: flex; flex-wrap: wrap; gap: 0;
            margin-bottom: 24px;
        }
        .pillar-links a {
            font-size: 13px; color: rgba(255,255,255,0.35);
            letter-spacing: 0.5px; transition: color 0.3s ease; font-weight: 300;
        }
        .pillar-links a:hover { color: var(--gold); }
        .pillar-links .sep {
            color: rgba(255,255,255,0.12); font-size: 13px;
            margin: 0 10px;
        }
        .pillar-explore {
            font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
            color: var(--gold-dark); display: inline-flex; align-items: center;
            gap: 8px; transition: all 0.3s ease;
        }
        .pillar-card:hover .pillar-explore { color: var(--gold); }
        .pillar-explore svg {
            width: 14px; height: 14px; stroke: currentColor;
            fill: none; stroke-width: 1.5; transition: transform 0.3s ease;
        }
        .pillar-card:hover .pillar-explore svg { transform: translateX(4px); }

        /* ═══ QUOTE BAND ═══ */
        .quote-band {
            padding: 60px 24px; text-align: center; position: relative;
            border-top: 1px solid rgba(217,191,156,0.06);
            border-bottom: 1px solid rgba(217,191,156,0.06);
            background: linear-gradient(135deg, rgba(217,191,156,0.02) 0%, transparent 50%, rgba(217,191,156,0.015) 100%);
        }
        .quote-mark {
            font-family: 'Cormorant Garamond', serif;
            font-size: 80px; color: rgba(217,191,156,0.12);
            line-height: 1; margin-bottom: 10px;
        }
        .quote-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(22px, 3.5vw, 36px); font-weight: 300; font-style: italic;
            color: var(--light-grey); max-width: 800px;
            margin: 0 auto 30px; line-height: 1.6;
        }
        .quote-source {
            font-size: 11px; letter-spacing: 4px;
            text-transform: uppercase; color: var(--gold-dark);
        }

        /* ═══ FEATURED GUIDES ═══ */
        .featured { padding: 72px 24px; }
        .featured-grid {
            max-width: 1100px; margin: 0 auto;
            display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
        }
        .featured-card {
            display: block; position: relative; padding: 48px 40px;
            background: rgba(255,255,255,0.012);
            border: 1px solid rgba(217,191,156,0.05);
            transition: all 0.5s ease; overflow: hidden;
        }
        .featured-card:hover {
            background: rgba(217,191,156,0.025);
            border-color: rgba(217,191,156,0.1);
        }
        .featured-card.span-full {
            grid-column: 1 / -1;
            display: block;
        }
        .featured-columns {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 50px; margin-bottom: 24px;
        }
        .featured-badge {
            font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
            padding: 4px 12px; border-radius: 2px;
            display: inline-block; margin-bottom: 20px; font-weight: 700;
        }
        .badge-guide {
            background: rgba(217,191,156,0.1); color: var(--gold);
            border: 1px solid rgba(217,191,156,0.15);
        }
        .badge-howto {
            background: rgba(156,200,217,0.08); color: #9CC8D9;
            border: 1px solid rgba(156,200,217,0.12);
        }
        .badge-trivia {
            background: rgba(200,170,217,0.08); color: #C8AAD9;
            border: 1px solid rgba(200,170,217,0.12);
        }
        .badge-etiquette {
            background: rgba(217,180,156,0.08); color: #D9B49C;
            border: 1px solid rgba(217,180,156,0.12);
        }
        .featured-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 30px; font-weight: 400; color: #fff;
            margin-bottom: 18px; transition: color 0.3s ease; letter-spacing: 0.5px;
        }
        .featured-card:hover .featured-title { color: var(--gold-light); }
        .featured-excerpt {
            font-size: 17px; color: rgba(255,255,255,0.4);
            line-height: 1.95; font-weight: 300; margin-bottom: 28px;
        }
        .featured-link {
            font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
            color: var(--gold-dark); display: inline-flex; align-items: center;
            gap: 8px; transition: color 0.3s ease;
        }
        .featured-card:hover .featured-link { color: var(--gold); }
        .featured-link svg {
            width: 14px; height: 14px; stroke: currentColor;
            fill: none; stroke-width: 1.5; transition: transform 0.3s ease;
        }
        .featured-card:hover .featured-link svg { transform: translateX(4px); }

        /* ═══ TRIVIA BAND ═══ */
        .trivia-band {
            padding: 64px 24px;
            border-top: 1px solid rgba(217,191,156,0.06);
            border-bottom: 1px solid rgba(217,191,156,0.06);
            background: linear-gradient(180deg, rgba(217,191,156,0.015) 0%, transparent 100%);
        }
        .trivia-inner {
            max-width: 1100px; margin: 0 auto;
            display: flex; align-items: center; gap: 80px;
        }
        .trivia-content { flex: 1; text-align: center; }
        .trivia-label {
            font-size: 10px; letter-spacing: 5px;
            text-transform: uppercase; color: #C8AAD9; margin-bottom: 20px;
        }
        .trivia-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(28px, 3.5vw, 40px); font-weight: 300;
            color: #fff; margin-bottom: 20px; line-height: 1.3;
        }
        .trivia-desc {
            font-size: 17px; color: rgba(255,255,255,0.45);
            line-height: 1.95; font-weight: 300; margin: 0 auto 32px; max-width: 520px;
        }
        .trivia-topics { display: flex; flex-wrap: wrap; gap: 10px; }
        .trivia-topic {
            font-size: 11px; letter-spacing: 1px;
            color: rgba(200,170,217,0.6); padding: 8px 18px;
            border: 1px solid rgba(200,170,217,0.12);
            border-radius: 2px; transition: all 0.3s ease;
        }
        .trivia-topic:hover {
            color: #C8AAD9; border-color: rgba(200,170,217,0.3);
            background: rgba(200,170,217,0.05);
        }

        /* ═══ CONTENT TYPES ═══ */
        .content-types { padding: 72px 24px; }
        .types-grid {
            max-width: 640px; margin: 0 auto;
            display: grid; grid-template-columns: repeat(2, 1fr); gap: 50px;
        }
        .type-item { text-align: center; }
        .type-badge-big {
            display: inline-block; font-size: 10px; letter-spacing: 3px;
            text-transform: uppercase; padding: 6px 16px;
            border-radius: 2px; margin-bottom: 20px; font-weight: 700;
        }
        .type-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 28px; font-weight: 400; color: #fff; margin-bottom: 14px;
        }
        .type-desc {
            font-size: 16px; color: rgba(255,255,255,0.4);
            line-height: 1.9; font-weight: 300;
        }

        /* ═══ FOOTER ═══ */
        .site-footer {
            text-align: center; padding: 80px 24px 50px;
            border-top: 1px solid rgba(217,191,156,0.08);
        }
        .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-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); margin-bottom: 16px;
        }
        .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); }

        .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 fadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeDown {
            from { opacity: 0; transform: translateY(-20px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
        @keyframes scrollPulse {
            0%, 100% { opacity: 0.3; transform: scaleY(1); }
            50%      { opacity: 0.8; transform: scaleY(1.2); }
        }

        .js-enabled .reveal {
            opacity: 0; transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .js-enabled .reveal.visible { opacity: 1; transform: translateY(0); }

        .reveal-stagger > * {
            opacity: 0; transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
        .reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
        .reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.08s; }
        .reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.16s; }
        .reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.24s; }
        .reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.24s; }
        .reveal-stagger.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-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; }

            .pillar-grid { grid-template-columns: 1fr; }
            .featured-grid { grid-template-columns: 1fr; }
            .featured-card.span-full {
                grid-column: auto;
            }
            .featured-columns {
                grid-template-columns: 1fr; gap: 0;
            }
            .trivia-inner { flex-direction: column; gap: 50px; }
            .types-grid { grid-template-columns: 1fr; gap: 40px; }
            .stats-inner { gap: 40px; flex-wrap: wrap; }
        }
        @media (max-width: 768px) {
            .hero { min-height: 90vh; }
            .hero-logo { height: 90px; margin-bottom: 30px; }
            .pillar-card { padding: 36px 28px 32px; }
            .featured-card { padding: 36px 28px; }
            .nav-search-trigger span { display: none; }
        }
        @media (max-width: 480px) {
            .hero-ornament-line { width: 40px; }
            .stats-inner { flex-direction: column; gap: 24px; }
        }

        /* ═══ 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);
            opacity: 0; transform: translateY(15px); transition: all 0.5s ease 0.15s;
        }
        .search-overlay.active .search-input-wrap { opacity: 1; transform: translateY(0); }
        .search-input-wrap::after {
            content: ''; position: absolute; bottom: -1px; left: 0;
            width: 0; height: 1px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold-dark));
            transition: width 0.6s cubic-bezier(0.25,0,0,1);
        }
        .search-input-wrap.focused::after { width: 100%; }
        .search-input {
            width: 100%; background: none; border: none; outline: none;
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(28px,5vw,48px); font-weight: 300;
            color: #fff; padding: 16px 50px 20px 0;
            letter-spacing: 2px; caret-color: var(--gold);
        }
        .search-input::placeholder { color: rgba(255,255,255,0.12); }
        .search-icon-inline {
            position: absolute; right: 0; top: 50%; transform: translateY(-50%);
            color: rgba(217,191,156,0.3); transition: color 0.3s ease;
        }
        .search-input-wrap.focused .search-icon-inline { color: var(--gold); }
        .search-icon-inline svg {
            width: 24px; height: 24px; stroke: currentColor; fill: none;
            stroke-width: 1.5; stroke-linecap: round;
        }
        .search-hint {
            display: flex; align-items: center; gap: 20px; margin-top: 16px;
            opacity: 0; transform: translateY(10px); transition: all 0.4s ease 0.25s;
        }
        .search-overlay.active .search-hint { opacity: 1; transform: translateY(0); }
        .search-hint span { font-size: 11px; letter-spacing: 2px; color: rgba(255,255,255,0.2); }
        .search-hint kbd {
            display: inline-flex; align-items: center; justify-content: center;
            min-width: 24px; height: 22px; padding: 0 6px;
            background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
            border-radius: 4px; font-family: 'Lato', sans-serif;
            font-size: 10px; color: rgba(255,255,255,0.3); letter-spacing: 0;
        }
        .search-results {
            flex: 1; overflow-y: auto; padding: 32px 40px 60px;
            max-width: 800px; width: 100%; margin: 0 auto;
        }
        .search-results::-webkit-scrollbar { width: 3px; }
        .search-results::-webkit-scrollbar-thumb { background: rgba(217,191,156,0.15); border-radius: 3px; }
        .results-count {
            font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
            color: var(--grey); margin-bottom: 32px; padding-bottom: 16px;
            border-bottom: 1px solid rgba(255,255,255,0.04);
        }
        .results-count strong { color: var(--gold); font-weight: 400; }
        .search-result {
            display: block; padding: 24px 0;
            border-bottom: 1px solid rgba(255,255,255,0.04);
            transition: all 0.3s ease; cursor: pointer;
        }
        .search-result:hover { padding-left: 12px; }
        .search-result:hover .result-title { color: var(--gold); }
        .result-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
        .result-badge {
            font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
            padding: 3px 10px; border-radius: 2px; font-weight: 700;
        }
        .result-badge.guide { background: rgba(217,191,156,0.1); color: var(--gold); border: 1px solid rgba(217,191,156,0.15); }
        .result-badge.howto { background: rgba(156,200,217,0.08); color: #9CC8D9; border: 1px solid rgba(156,200,217,0.12); }
        .result-badge.trivia { background: rgba(200,170,217,0.08); color: #C8AAD9; border: 1px solid rgba(200,170,217,0.12); }
        .result-badge.etiquette { background: rgba(217,180,156,0.08); color: #D9B49C; border: 1px solid rgba(217,180,156,0.12); }
        .result-category { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.25); }
        .result-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 21px; font-weight: 400; color: #fff;
            letter-spacing: 0.5px; margin-bottom: 8px; transition: color 0.3s ease;
        }
        .result-excerpt { font-size: 14px; color: rgba(255,255,255,0.35); line-height: 1.7; font-weight: 300; }
        .result-excerpt mark { background: none; color: var(--gold-light); font-weight: 400; }
        .search-empty { text-align: center; padding: 80px 20px; }
        .search-empty-icon { width: 48px; height: 48px; margin: 0 auto 24px; color: rgba(217,191,156,0.12); }
        .search-empty-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1; stroke-linecap: round; }
        .search-empty p { font-size: 14.5px; color: rgba(255,255,255,0.2); letter-spacing: 1px; line-height: 1.8; }
        .search-recent { padding: 48px 0; }
        .search-recent-title { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: rgba(217,191,156,0.3); margin-bottom: 20px; }
        .search-recent-tags { display: flex; flex-wrap: wrap; gap: 10px; }
        .search-recent-tag {
            font-size: 12px; letter-spacing: 1px; color: rgba(255,255,255,0.3);
            padding: 8px 18px; border: 1px solid rgba(255,255,255,0.06);
            border-radius: 2px; cursor: pointer; transition: all 0.3s ease;
        }
        .search-recent-tag:hover {
            color: var(--gold); border-color: rgba(217,191,156,0.2);
            background: rgba(217,191,156,0.04);
        }
        .nav-search-trigger {
            display: flex; align-items: center; padding: 18px 16px;
            cursor: pointer; transition: color 0.3s ease; color: #888;
        }
        .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; margin-left: 8px;
        }
        @media (max-width: 900px) { .nav-search-trigger { padding: 12px 16px; } }
        @media (max-width: 768px) {
            .search-header { padding: 70px 24px 0; }
            .search-results { padding: 24px 24px 60px; }
            .search-close { top: 18px; right: 18px; }
            .search-hint { display: none; }
        }
        @media (max-width: 480px) { .search-input { font-size: 24px; } .result-title { font-size: 18px; } }
    
/* ═══ IMAGE STYLES ═══ */
/* Hero Banner */
.hero-banner {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    margin-bottom: 2rem;
}
.hero-banner img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(10,10,10,0.7));
    pointer-events: none;
}

/* Pillar Thumbnail Cards */
.thumb-card {
    display: block;
    width: 100%;
    margin-bottom: 0.8rem;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
}
.thumb-card img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: brightness(0.85);
}
.pillar-card:hover .thumb-card img {
    transform: scale(1.03);
    filter: brightness(1);
}

@media (max-width: 768px) {
    .hero-banner { height: 280px; }
}