:root {
    --bg-main: #020202;
    --bg-surface: #0a0a0a;
    --bg-panel: #111111;
    --text-primary: #f0e6d2;
    --text-muted: #a39c8e;
    
    /* Metallic Gold Palette */
    --gold-light: #fef0bc;
    --gold-base: #d4af37;
    --gold-dark: #8c7322;
    --gold-deep: #4d3f11;
    
    --metallic-gradient: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 40%, var(--gold-base) 60%, var(--gold-deep) 100%);
    --metallic-border: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.6), rgba(212, 175, 55, 0.1));
    
    --shadow-gold: 0 4px 25px rgba(212, 175, 55, 0.15);
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.8);
    
    --transit: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    background-image: radial-gradient(circle at 15% 0%, rgba(212,175,55,0.05) 0%, transparent 40%),
                      radial-gradient(circle at 85% 100%, rgba(212,175,55,0.04) 0%, transparent 40%);
}

a {
    color: var(--gold-base);
    text-decoration: none;
    transition: var(--transit);
}
a:hover {
    color: var(--gold-light);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Nav */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(2, 2, 2, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.brand-mark {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--bg-main);
    background: var(--metallic-gradient);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.brand-text {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: var(--metallic-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.main-nav a:hover, .main-nav a.is-active {
    color: var(--gold-light);
}

.main-nav a.is-active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--metallic-gradient);
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transit);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-gold {
    background: var(--metallic-gradient);
    color: #111;
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.3);
    color: #000;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold-base);
    color: var(--gold-base);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.05);
    color: var(--gold-light);
    border-color: var(--gold-light);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    width: 44px;
    height: 44px;
    border-radius: 6px;
    cursor: pointer;
    padding: 0 10px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--gold-base);
    margin: 6px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero, .page-hero {
    padding: 6rem 0 4rem;
    text-align: center;
}

.hero h1, .page-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--metallic-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero p, .page-hero p, .section-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Sections */
.section {
    padding: 3rem 0;
}

.section-cta {
    padding-top: 1rem;
    padding-bottom: 1.25rem;
}

.section-cta .cta-band {
    width: 100%;
    margin: 0 auto;
}

.section h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--gold-light);
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: var(--bg-surface);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transit);
    box-shadow: var(--shadow-dark);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--metallic-gradient);
    opacity: 0;
    transition: var(--transit);
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: var(--shadow-gold), var(--shadow-dark);
}

.card:hover::before {
    opacity: 1;
}

.card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* CTA Band */
.cta-band {
    background: linear-gradient(135deg, rgba(10,10,10,0.95), rgba(20,20,20,0.95)), url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPjxyZWN0IHdpZHRoPSI0IiBoZWlnaHQ9IjQiIGZpbGw9IiMxYTFhMWEiLz48cmVjdCB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSIjMjIyMiIvc3ZnPg==');
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 2.2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    box-shadow: var(--shadow-gold), inset 0 0 50px rgba(212, 175, 55, 0.05);
    position: relative;
    overflow: hidden;
}

.cta-band::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transform: rotate(45deg);
    pointer-events: none;
}

.cta-band > div:first-child {
    flex: 1;
    min-width: 300px;
}

.cta-band h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--gold-base);
    margin-bottom: 0.5rem;
}

.cta-band p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Forms */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-box, .contact-form {
    background: var(--bg-surface);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 2.5rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.2rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 6px;
    color: var(--text-primary);
    font-family: inherit;
    transition: var(--transit);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--gold-base);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

/* Footer Fix & Corporate Styling */
.site-footer {
    position: relative;
    margin-top: 1rem;
    background: #020202;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/* We use a pseudo-element for the top glowing line */
.site-footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--metallic-border);
}

/* Perfect alignment for footer content */
.footer-wrap {
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
    min-width: 260px;
}

.footer-col h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--gold-base);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--metallic-gradient);
}

.footer-col p {
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.footer-col a {
    color: var(--text-muted);
}

.footer-col a:hover {
    color: var(--gold-light);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: rgba(163, 156, 142, 0.6);
    font-size: 0.9rem;
}

.reveal {
    animation: fadeUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Handling */
@media (max-width: 991px) {
    .main-nav {
        display: none; /* Add JS toggle logic integration here, simplest approach for css fix block */
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(2, 2, 2, 0.98);
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }
    .main-nav.is-open {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
    .btn-client {
        display: none;
    }
    .cta-band {
        padding: 2rem;
        flex-direction: column;
        text-align: center;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        gap: 2.5rem;
    }
    .footer-col {
        width: 100%;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero-actions {
        flex-direction: column;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
