/**
 * Path: public_html/assets/css/main.css
 */

@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --ink: #101820;
    --ink-soft: #182534;
    --gold: #C89B3C;
    --gold-soft: rgba(200, 155, 60, 0.16);
    --parchment: #F4EBD0;
    --burgundy: #5A1E2B;
    --white-soft: #FAF7EF;
    --text: #1c2330;
    --muted: #6d6254;
    --border: rgba(16, 24, 32, 0.12);
    --shadow: 0 24px 70px rgba(16, 24, 32, 0.18);
    --radius: 22px;
    --font-heading: 'Marcellus', serif;
    --font-body: 'Poppins', sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background:
        radial-gradient(circle at top left, rgba(200, 155, 60, 0.16), transparent 34%),
        linear-gradient(180deg, var(--white-soft), var(--parchment));
    color: var(--text);
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(16, 24, 32, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(200, 155, 60, 0.24);
}

.site-header-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white-soft);
    font-weight: 800;
}

.site-logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--ink);
    background: linear-gradient(135deg, var(--gold), #f2d08a);
    box-shadow: 0 12px 28px rgba(200, 155, 60, 0.28);
}

.site-logo-text {
    font-family: var(--font-heading);
    font-size: 25px;
    letter-spacing: 0.3px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-nav a {
    color: rgba(250, 247, 239, 0.78);
    font-size: 14px;
    font-weight: 700;
    transition: color 0.2s ease;
}

.site-nav a:hover {
    color: var(--gold);
}

.site-header-button {
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(200, 155, 60, 0.12);
    border: 1px solid rgba(200, 155, 60, 0.38);
    color: var(--gold);
    font-size: 14px;
    font-weight: 800;
}

.site-main {
    min-height: 60vh;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--ink);
    background: linear-gradient(135deg, var(--gold), #f2d08a);
    box-shadow: 0 18px 40px rgba(200, 155, 60, 0.26);
}

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

.site-footer {
    background: var(--ink);
    color: var(--white-soft);
    margin-top: 90px;
}

.site-footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 60px 0 42px;
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr;
    gap: 46px;
}

.site-footer h3,
.site-footer h4 {
    margin: 0 0 16px;
    font-family: var(--font-heading);
    color: var(--gold);
}

.site-footer h3 {
    font-size: 30px;
}

.site-footer p {
    max-width: 440px;
    margin: 0;
    color: rgba(250, 247, 239, 0.72);
    line-height: 1.8;
}

.site-footer a {
    display: block;
    margin-bottom: 10px;
    color: rgba(250, 247, 239, 0.72);
    font-size: 14px;
    font-weight: 600;
}

.site-footer a:hover {
    color: var(--gold);
}

.site-footer-bottom {
    border-top: 1px solid rgba(250, 247, 239, 0.1);
    padding: 18px 16px;
    text-align: center;
}

.site-footer-bottom p {
    margin: 0;
    color: rgba(250, 247, 239, 0.58);
    font-size: 13px;
}

@media (max-width: 900px) {
    .site-header-inner {
        min-height: auto;
        padding: 18px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .site-nav {
        width: 100%;
        flex-wrap: wrap;
        gap: 12px;
    }

    .site-nav a {
        padding: 8px 0;
    }

    .site-footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}