/* ========================================
   angelwings.com — Core shared styles
   Included on every page.
   ======================================== */

:root {
    --midnight:    #0b1026;
    --deep-navy:   #111836;
    --slate:       #1c2347;
    --soft-navy:   #2a3264;
    --gold:        #c9a96e;
    --gold-light:  #e0ca9e;
    --gold-dim:    #8a7346;
    --cream:       #f5f0e6;
    --cream-soft:  #faf7f0;
    --rose:        #c4918a;
    --lavender:    #a89bc9;
    --text-body:   #d6d3cc;
    --text-muted:  #8e8b84;
    --text-dark:   #2c2a26;
    --serif:       'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --sans:        'Libre Franklin', 'Helvetica Neue', Arial, sans-serif;
    --radius:      8px;
    --ease:        cubic-bezier(0.23, 1, 0.32, 1);
}

/* ── Reset ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-body);
    background: var(--midnight);
    overflow-x: hidden;
}

/* Noise texture */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px 256px;
    pointer-events: none;
    z-index: 9999;
}

a { color: var(--gold); text-decoration: none; transition: color 0.3s var(--ease); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; display: block; }

/* ── Navigation ────────────────────────── */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 32px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(11, 16, 38, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}

.nav-logo {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--cream);
}
.nav-logo span { color: var(--gold); }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.3s var(--ease);
}
.nav-links a:hover { color: var(--gold-light); }

.nav-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--cream);
    cursor: pointer;
    padding: 8px;
}
.nav-menu-btn svg { display: block; }

/* ── Mobile menu ───────────────────────── */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1500;
    background: rgba(11, 16, 38, 0.95);
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a { font-family: var(--serif); font-size: 28px; color: var(--cream); }
.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--cream);
    cursor: pointer;
    padding: 8px;
}

/* ── Footer ────────────────────────────── */
.site-footer {
    border-top: 1px solid rgba(201, 169, 110, 0.08);
    padding: 48px 32px;
    text-align: center;
}

.footer-logo {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 16px;
}
.footer-logo span { color: var(--gold); }

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    list-style: none;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.footer-links a { font-size: 13px; color: var(--text-muted); }

.footer-copy {
    font-size: 12px;
    color: var(--text-body);
}

/* ── Common elements ───────────────────── */
.gold-rule {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
    border: none;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--midnight);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    padding: 14px 28px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    text-decoration: none;
}
.btn-gold:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 32px rgba(201, 169, 110, 0.25);
    color: var(--midnight);
}

.btn-outline {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201, 169, 110, 0.25);
    padding: 13px 24px;
    border-radius: 6px;
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    background: none;
    cursor: pointer;
}
.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(201, 169, 110, 0.06);
    color: var(--gold-light);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.section-eyebrow {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

/* ── Alerts ────────────────────────────── */
.alert {
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.5;
}
.alert-error {
    background: rgba(196, 145, 138, 0.1);
    border: 1px solid rgba(196, 145, 138, 0.2);
    color: #e0a9a3;
}
.alert-success {
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.2);
    color: var(--gold-light);
}

/* ── Responsive ────────────────────────── */
@media (max-width: 960px) {
    .nav-links { display: none; }
    .nav-menu-btn { display: block; }
}
