/**
 * Critical CSS – Above‑the‑fold styles to improve LCP.
 * Minimal, inlined.
 */

/* Reset / base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #FAFAFA;
    color: #0A0A0A;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a {
    color: #D4AF37;
    text-decoration: none;
}
a:hover {
    color: #b8962f;
}
img {
    max-width: 100%;
    height: auto;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Header */
.site-header {
    padding: 20px 0;
    background: #0A0A0A;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background 0.3s, box-shadow 0.3s;
}
.site-header.transparent {
    background: transparent;
    box-shadow: none;
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-branding {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}
.site-branding img {
    max-height: 40px;
    width: auto;
}
/* Navigation */
.nav-primary ul {
    list-style: none;
    display: flex;
    gap: 30px;
}
.nav-primary a {
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
}
.nav-primary a:hover {
    color: #D4AF37;
}
/* CTA button in header */
.cta-button {
    background: #D4AF37;
    color: #0A0A0A;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.3s;
}
.cta-button:hover {
    background: #c4a032;
}
/* Mobile menu toggle (hidden on desktop) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}