    /* =========================
    Layout (Structure)
    ========================= */

    .skip-link{
    position: absolute;
    left: -999px;
    top: 10px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    z-index: 9999;
    }
    .skip-link:focus{
    left: 12px;
    }

    /* ---- Header ---- */

    .site-header{
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 12, 15, 0.75);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .header-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    padding: 14px 0;
    }

    .brand{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 220px;
    }
    .brand-mark{
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--color-accent), rgba(255,255,255,0.22));
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    }
    .brand-name{
    font-weight: 600;
    letter-spacing: -0.01em;
    }

    .site-nav{
    display: inline-flex;
    align-items: center;
    gap: 18px;
    }
    .site-nav a{
    color: var(--color-text-muted);
    font-size: 0.95rem;
    transition: color 0.2s ease;
    }
    .site-nav a:hover{
    color: var(--color-text);
    }

    .nav-cta{
    margin-left: 8px;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(20,22,27,0.6);
    color: var(--color-text);
    }
    .nav-cta:hover{
    border-color: rgba(198,167,94,0.55);
    color: var(--color-accent);
    }

    /* ---- Main ---- */

    main{
    overflow-x: clip;
    }

    /* ---- Hero base structure ---- */

    .hero{
    position: relative;
    min-height: 90vh;
    display: grid;
    align-items: center;
    }

    .hero-bg{
    position: absolute;
    inset: 0;
    z-index: 0;
    /* The background image will be set in hero.css */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    }

    .hero-overlay{
    position: absolute;
    inset: 0;
    z-index: 1;
    /* Overlay gradient will be set in hero.css */
    }

    .hero-inner{
    position: relative;
    z-index: 2;
    padding: var(--space-8) 0;
    }

    .hero-content{
    max-width: 640px;
    }

    /* ---- Footer placeholder ---- */

    .site-footer{
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: var(--space-5) 0;
    }
    .site-footer p{
    color: var(--color-text-muted);
    font-size: 0.95rem;
    }

    /* ---- Responsive: collapse nav on small screens (simple for now) ---- */

    @media (max-width: 860px){
    .site-nav{
        display: none;
    }
    .brand{
        min-width: auto;
    }
    .hero-inner{
        padding: var(--space-7) 0;
    }
    .hero-content{
        max-width: 560px;
    }
    }
