:root{
    --bg:#0d0908;
    --bg-soft:#16100e;
    --panel:#1b1311;
    --panel-2:#211715;
    --border:#3a2620;
    --border-light:#5a3a30;
    --primary:#7e1f1a;
    --primary-hover:#9d2a22;
    --gold:#c69a57;
    --gold-soft:#e0bb82;
    --text:#f4ece6;
    --muted:#b9a79c;
    --danger:#b43b31;
    --shadow:0 10px 30px rgba(0,0,0,.35);
    --radius:18px;
    --container:1280px;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

html,
body{
    min-height:100%;
}

body{
    margin:0;
    font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top, rgba(126, 41, 26, 0.22), transparent 35%),
        linear-gradient(180deg, #120c0b 0%, #201715 100%);
    color:var(--text);
    min-height:100vh;
}

.site-shell{
    min-height:100vh;
    display:flex;
    flex-direction:column;
}

.site-content{
    flex:1;
}

.site-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13, 9, 8, .92) 0%, rgba(13, 9, 8, .72) 45%, rgba(13, 9, 8, .88) 100%), url(/assets/img/home-bg-alt.webp) center / cover no-repeat;
    opacity: .04;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0, rgba(0, 0, 0, 1) calc(100% - 90px), rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0, rgba(0, 0, 0, 1) calc(100% - 90px), rgba(0, 0, 0, 0) 100%);
}

a{
    color:inherit;
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:min(var(--container), calc(100% - 32px));
    margin:0 auto;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    border:none;
    border-radius:14px;
    padding:13px 20px;
    font-weight:700;
    cursor:pointer;
    transition:.2s ease;
}

.btn-primary{
    background:linear-gradient(180deg, var(--primary-hover), var(--primary));
    color:#fff;
    box-shadow:0 10px 24px rgba(126,31,26,.28);
}

.btn-primary:hover{
    transform:translateY(-1px);
    filter:brightness(1.05);
}

.btn-secondary{
    background:rgba(255,255,255,.03);
    border:1px solid var(--border);
    color:var(--text);
}

.btn-secondary:hover{
    background:rgba(255,255,255,.06);
}

.muted{
    color:var(--muted);
}