@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 {
            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-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;
        }

        .nav-inner a {
            padding: 18px 20px;
            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;
        }

        .main-nav.scrolled .nav-inner a {
            color: var(--grey);
        }

        .nav-inner a:hover,
        .nav-inner a.active {
            color: var(--gold);
        }

        .nav-inner a.active::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 20px;
            right: 20px;
            height: 1px;
            background: var(--gold);
        }

        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 60px 20px;
            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 {
            display: block;
            height: 120px;
            margin: 30px auto 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.6s;
        }

        .hero-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(36px, 6vw, 72px);
            font-weight: 300;
            letter-spacing: 12px;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 20px;
            opacity: 0;
            animation: fadeUp 1s ease forwards 0.8s;
        }

        .hero-subtitle {
            font-size: 15px;
            letter-spacing: 6px;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 300;
            margin-bottom: 50px;
            opacity: 0;
            animation: fadeUp 1s ease forwards 1s;
        }

        .hero-description {
            font-size: 16px;
            color: #aaa;
            max-width: 600px;
            margin: 0 auto 50px;
            line-height: 1.9;
            font-weight: 300;
            opacity: 0;
            animation: fadeUp 1s ease forwards 1.2s;
        }

        .scroll-hint {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            opacity: 0;
            animation: fadeIn 1s ease forwards 1.6s;
        }

        .scroll-hint-line {
            width: 1px;
            height: 40px;
            background: linear-gradient(to bottom, var(--gold), transparent);
            animation: scrollPulse 2s ease-in-out infinite;
        }

        /* ── Category Navigation (Sticky) ────────────── */
        .category-nav {
            position: sticky;
            top: var(--nav-height, 46px);
            z-index: 100;
            background: rgba(10,10,10,1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(217,191,156,0.1);
            border-top: 1px solid rgba(217,191,156,0.05);
            padding: 0 20px;
            transition: box-shadow 0.3s ease;
        }

        .category-nav::before {
            content: '';
            position: absolute;
            top: -30px;
            left: 0;
            right: 0;
            height: 30px;
            background: rgba(10,10,10,0.98);
            pointer-events: none;
        }

        .category-nav.scrolled {
            box-shadow: 0 4px 30px rgba(0,0,0,0.5);
        }

        .category-nav-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
        }

        .category-nav-inner a {
            padding: 14px 16px;
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--grey);
            white-space: nowrap;
            transition: color 0.3s ease;
            position: relative;
        }

        .category-nav-inner a:hover,
        .category-nav-inner a.active {
            color: var(--gold);
        }

        .category-nav-inner a.active::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 16px;
            right: 16px;
            height: 1px;
            background: var(--gold);
        }

        .content-wrapper {
            max-width: 900px;
            margin: 0 auto;
            padding: 80px 40px;
        }

        .intro-section {
            text-align: center;
            margin-bottom: 100px;
            padding: 60px 40px;
            background: linear-gradient(135deg, rgba(217,191,156,0.03) 0%, transparent 100%);
            border-radius: 4px;
            border-left: 3px solid var(--gold);
        }

        .intro-section p {
            font-size: 1.25rem;
            line-height: 2;
            color: var(--light-grey);
        }

        section {
            margin-bottom: 100px;
            scroll-margin-top: 160px;
        }

        h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            font-weight: 300;
            margin-bottom: 40px;
            color: var(--gold-light);
            letter-spacing: 1px;
            border-bottom: 1px solid rgba(217,191,156,0.2);
            padding-bottom: 20px;
        }

        h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            font-weight: 400;
            margin: 60px 0 30px;
            color: #fff;
        }

        p {
            margin-bottom: 1.5rem;
            font-size: 1.15rem;
            line-height: 1.9;
            color: var(--light-grey);
        }

        .timeline-item {
            padding-left: 40px;
            border-left: 2px solid rgba(217,191,156,0.3);
            margin: 40px 0;
            position: relative;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -6px;
            top: 5px;
            width: 10px;
            height: 10px;
            background: var(--gold);
            border-radius: 50%;
            box-shadow: 0 0 0 4px var(--dark);
        }

        .timeline-item h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.6rem;
            margin-bottom: 10px;
            font-weight: 500;
            color: var(--gold-light);
        }

        .timeline-item .period {
            color: var(--gold);
            font-style: italic;
            margin-bottom: 20px;
            display: block;
            font-size: 1.05rem;
        }

        .highlight-box {
            background: rgba(217,191,156,0.05);
            border-left: 3px solid var(--gold);
            padding: 30px;
            margin: 40px 0;
            border-radius: 4px;
        }

        .highlight-box h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--gold-light);
            font-weight: 500;
        }

        .highlight-box p {
            color: #ddd;
        }

        .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);
        }

        .site-footer {
            text-align: center;
            padding: 80px 24px 50px;
            border-top: 1px solid rgba(217,191,156,0.08);
            margin-top: 60px;
        }

        .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-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);
        }

        @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);
        }

        @media (max-width: 768px) {
            .nav-inner a {
                padding: 14px 12px;
                font-size: 10px;
                letter-spacing: 2px;
            }

            .hero {
                min-height: 90vh;
            }

            .hero-title {
                letter-spacing: 6px;
            }

            .category-nav-inner a {
                padding: 12px 12px;
                font-size: 10px;
                letter-spacing: 2px;
            }

            .content-wrapper {
                padding: 60px 20px;
            }

            h2 {
                font-size: 2.2rem;
            }

            h3 {
                font-size: 1.6rem;
            }

            .timeline-item {
                padding-left: 30px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                letter-spacing: 4px;
            }

            .content-wrapper {
                padding: 40px 16px;
            }
        }
    
        /* ═══ 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);
        }

        .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 */
        .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;
        }

        /* Hub link at bottom of dropdown */
        .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;
        }

        /* Mobile hamburger */
        .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);
        }

        @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;
            }
        }

    
        /* ═══ 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; }
        .search-results::-webkit-scrollbar-track { background: transparent; }

        .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: 14px; 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);
        }

        /* Search trigger in nav */
        .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; }
            .nav-search-trigger span { display: none; }
        }
        @media (max-width: 480px) {
            .search-input { font-size: 24px; }
            .result-title { font-size: 18px; }
        }