        body {
            font-family: 'Josefin Sans', sans-serif;
            background-color: #1a1714;
            color: #e8dfd0;
        }

        .nav-link {
            position: relative;
            letter-spacing: 0.12em;
            font-size: 0.7rem;
            text-transform: uppercase;
            color: #8a8278;
            transition: color 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: #C0622A;
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            color: #e8dfd0;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .logo-text {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            font-style: italic;
            letter-spacing: 0.05em;
        }

        .ember-divider {
            width: 40px;
            height: 1px;
            background: #C0622A;
            margin: 1.5rem 0;
        }

        footer a {
            color: #8a8278;
            transition: color 0.3s;
            font-size: 0.7rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        footer a:hover {
            color: #C0622A;
        }

        /* Subtle grain overlay */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            pointer-events: none;
            opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            background-size: 256px 256px;
            z-index: 9999;
        }

        /* Flash messages */
        .message-success { background: #1e2e1e; border-left: 3px solid #4a7c4a; color: #a3c9a3; }
        .message-error { background: #2e1e1e; border-left: 3px solid #7c4a4a; color: #c9a3a3; }
        .message-info { background: #1e231e; border-left: 3px solid #C0622A; color: #d4a882; }
