:root {
    --bg: #101113;
    --surface: rgba(28, 30, 34, 0.92);
    --surface-soft: rgba(18, 19, 22, 0.82);
    --text: #efe4bb;
    --muted: #bba96e;
    --line: rgba(212, 174, 84, 0.18);
    --accent: #c69a39;
    --accent-dark: #e1b85f;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
    --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--text);
    background: #101113;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.65;
}

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

a {
    color: var(--accent-dark);
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(760px, 100%); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(18px);
    background: rgba(13, 14, 16, 0.84);
    border-bottom: 1px solid var(--line);
}

.nav-shell, .hero-grid, .intro-grid, .contact-grid, .checklist-grid, .footer-grid {
    display: grid;
    gap: 24px;
}

.nav-shell {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 14px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: inherit;
    text-decoration: none;
}

.brand img {
    width: 62px;
    height: 62px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.3);
}

.brand span { display: grid; }
.brand strong { font-size: 1.45rem; letter-spacing: 0.02em; }
.brand small, .meta, .eyebrow { color: var(--muted); }

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.nav-links a {
    padding: 8px 12px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
}

.nav-links a.active,
.nav-links a:hover {
    background: rgba(198, 154, 57, 0.12);
}

.hero, .page-hero { padding: 52px 0 24px; }
.hero-grid { grid-template-columns: 1.4fr 0.9fr; align-items: center; }

.hero-copy h1, .page-hero h1, .section-heading h2, .prose h2, .panel h2, .card h3 {
    line-height: 1.1;
    margin: 0 0 14px;
}

.hero-copy h1, .page-hero h1 {
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    max-width: 12ch;
}

.lead { font-size: 1.14rem; color: #d6c28d; }

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    font-size: 0.78rem;
    margin-bottom: 12px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
}

.button-primary {
    background: linear-gradient(135deg, #8f6820, #d4aa4d);
    color: #161616;
    box-shadow: var(--shadow);
}

.button-secondary {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
}

.hero-card, .panel, .card, .prose, .section-soft .wrap, .site-footer { border: 1px solid var(--line); }

.hero-card, .panel, .card, .section-soft .wrap {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-card, .panel, .card, .prose { padding: 24px; }
.hero-card img { width: min(100%, 360px); margin: 0 auto 20px; border-radius: 28px; }
.hero-note { padding: 18px; border-radius: 20px; background: rgba(255, 255, 255, 0.04); }

.trust-list, .feature-list, .simple-list, .site-footer ul { margin: 0; padding-left: 18px; }
.section { padding: 24px 0 40px; }
.section-soft { padding: 28px 0 42px; }

.intro-grid, .contact-grid, .footer-grid, .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards { display: grid; gap: 22px; }
.card h3 { font-size: 1.5rem; }
.text-link { font-weight: 700; }
.section-heading { margin-bottom: 22px; }
.checklist-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; }

.prose {
    background: var(--surface-soft);
    border-radius: var(--radius);
}

.prose h2 { margin-top: 28px; font-size: 1.7rem; }

.site-footer {
    margin-top: 30px;
    background: #0b0c0d;
    color: #e8dab0;
}

.site-footer a { color: #e1b85f; }
.footer-grid { padding: 34px 0; }
.footer-bottom { padding: 0 0 26px; }

@media (max-width: 900px) {
    .hero-grid, .intro-grid, .cards, .contact-grid, .checklist-grid, .footer-grid, .nav-shell {
        grid-template-columns: 1fr;
    }

    .hero-copy h1, .page-hero h1 { max-width: none; }
}

@media (max-width: 640px) {
    .wrap { width: min(100% - 20px, 1120px); }
    .brand { align-items: flex-start; }
    .brand img { width: 54px; height: 54px; }
    .nav-links {
        gap: 8px;
    }
    .nav-links a {
        padding: 7px 10px;
        font-size: 0.92rem;
    }
    .hero, .page-hero {
        padding-top: 28px;
        padding-bottom: 18px;
    }
    .hero-copy h1, .page-hero h1 {
        font-size: clamp(2rem, 11vw, 3rem);
    }
    .hero-card, .panel, .card, .prose { padding: 20px; }
    .site-footer {
        margin-top: 18px;
    }
}
