@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;
        }

        /* ── Accessibility: Skip Link ── */
        .skip-link {
            position: absolute;
            left: -9999px;
            top: 0;
            z-index: 9999;
            padding: 12px 24px;
            background: var(--gold);
            color: var(--black);
            font-family: 'Lato', sans-serif;
            font-size: 13px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 400;
        }

        .skip-link:focus {
            left: 50%;
            transform: translateX(-50%);
        }

        /* ── Accessibility: Global Focus Styles ── */
        a:focus-visible,
        button:focus-visible,
        select:focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: 2px;
        }

        /* ── 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;
        }

        /* ── 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);
            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 */
        .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;
        }

        /* 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); }

        /* ── Hero Section ── */
        .hero {
            min-height: 70vh;
            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: 13px;
            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: 15px;
            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;
        }

        .scroll-hint {
            position: absolute;
            bottom: 5px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            opacity: 0;
            animation: fadeIn 1s ease forwards 1.4s;
        }

        .scroll-hint-line {
            width: 1px;
            height: 40px;
            background: linear-gradient(to bottom, var(--gold), transparent);
            animation: scrollPulse 2s ease-in-out infinite;
        }

        /* ── Category Navigation ── */
        .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);
            padding: 0 20px;
            transition: box-shadow 0.3s ease, top 0.3s ease;
        }

        .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;
            gap: 0;
        }

        .category-nav-inner a {
            padding: 14px 18px;
            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: 18px;
            right: 18px;
            height: 1px;
            background: var(--gold);
        }

        /* ── Main Content ── */
        .content {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 30px;
        }

        /* ── Category Section ── */
        .category-section { padding: 80px 0 40px; }

        .category-header {
            display: flex;
            align-items: center;
            gap: 30px;
            margin-bottom: 50px;
        }

        .category-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 64px;
            font-weight: 300;
            color: rgba(217,191,156,0.15);
            line-height: 1;
            min-width: 70px;
        }

        .category-header-text h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(24px, 3.5vw, 36px);
            font-weight: 300;
            letter-spacing: 6px;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 8px;
        }

        .category-header-text .section-desc {
            font-size: 13px;
            letter-spacing: 1px;
            color: var(--grey);
            font-weight: 300;
            line-height: 1.7;
        }

        .category-line {
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, rgba(217,191,156,0.2), transparent);
        }

        /* ── Book Cards ── */
        .books-container {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .book-card {
            background: var(--dark);
            border: 1px solid rgba(217,191,156,0.08);
            padding: 32px 36px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0, 0, 1);
        }

        .book-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 100%;
            background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
            transform: scaleY(0);
            transform-origin: top;
            transition: transform 0.4s cubic-bezier(0.25, 0, 0, 1);
        }

        .book-card:hover {
            border-color: rgba(217,191,156,0.15);
            background: var(--charcoal);
            transform: translateX(4px);
        }

        .book-card:hover::before { transform: scaleY(1); }

        .book-meta {
            font-size: 10px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gold-dark);
            margin-bottom: 12px;
            font-weight: 400;
        }

        .book-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px;
            font-weight: 400;
            color: #fff;
            letter-spacing: 1px;
            line-height: 1.3;
            margin-bottom: 6px;
        }

        .book-author {
            font-family: 'Cormorant Garamond', serif;
            font-size: 16px;
            font-weight: 300;
            font-style: italic;
            color: var(--gold-light);
            letter-spacing: 0.5px;
            margin-bottom: 14px;
        }

        .book-desc {
            font-size: 14px;
            color: var(--grey);
            line-height: 1.85;
            font-weight: 300;
        }

        /* ── Footer ── */
        .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 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; font-family: inherit; padding: 0;
        }
        .scroll-top.visible { opacity: 1; visibility: visible; }
        .scroll-top:hover { background: rgba(217,191,156,0.2); transform: translateY(-2px); }
        .scroll-top:focus-visible { opacity: 1; visibility: visible; }

        /* ── 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; } }
        @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(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
        .js-enabled .reveal.visible { opacity: 1; transform: translateY(0); }

        /* ── Accessibility: Reduced Motion ── */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
        }

        /* ── Responsive ── */
        @media (max-width: 768px) {
            .category-number { display: none; }
            .hero { min-height: 60vh; padding: 100px 20px 50px; }
            .hero-logo { height: 90px; margin-bottom: 30px; }
            .category-section { padding: 60px 0 30px; }
            .book-card { padding: 24px 20px; }
        }

        @media (max-width: 480px) {
            .hero-title { letter-spacing: 5px; }
            .hero-logo { height: 70px; }
            .content { padding: 0 16px; }
            .category-nav-inner a { padding: 12px 10px; font-size: 10px; letter-spacing: 2px; }
        }

        @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: 12px; 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-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: 23px; 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: 13px; 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; } .nav-search-trigger span { display: none; } }
        @media (max-width: 480px) { .search-input { font-size: 24px; } .result-title { font-size: 18px; } }