/* ============================================================
   LUXORA NAV — Shared across all pages
   ============================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background: #111110;
    color: #F2EDE6;
    font-family: 'DM Sans', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 24px 48px;
    display: flex; align-items: center; justify-content: space-between;
    transition: background 0.4s, padding 0.4s, border-color 0.4s;
    background: transparent;
    border-bottom: 0.5px solid transparent;
}
.nav.scrolled {
    background: #1A1A18;
    border-bottom-color: #2A2A26;
    padding: 16px 48px;
}

.nav-brand {
    display: flex; align-items: center; gap: 14px;
    text-decoration: none;
}
.nav-brand-primary {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px; font-weight: 600;
    color: #D4A86A; letter-spacing: 0.03em;
}
.nav-brand-rule {
    width: 0.5px; height: 40px; background: #4A4A42;
}
.nav-brand-right {
    display: flex; flex-direction: column; gap: 2px;
}
.nav-brand-secondary {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; font-weight: 300; letter-spacing: 0.25em;
    text-transform: uppercase; color: #A0A098;
}
.nav-brand-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px; font-weight: 400; font-style: italic;
    color: #807E74; letter-spacing: 0.02em;
}

.nav-links {
    display: flex; gap: 36px; list-style: none;
}
.nav-links a {
    font-size: 10px; font-weight: 400; letter-spacing: 0.25em;
    text-transform: uppercase; color: #7A7A72;
    text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #D4A86A; }

.nav-cta {
    font-size: 10px; font-weight: 500; letter-spacing: 0.2em;
    text-transform: uppercase; color: #C4924A;
    border: 1px solid #C4924A; padding: 10px 24px;
    text-decoration: none; transition: all 0.25s;
}
.nav-cta:hover {
    background: #C4924A; color: #111110;
}

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 1px; background: #C4924A; margin: 5px 0; }

/* Page hero (shorter, for inner pages) */
.page-hero {
    height: 45vh; min-height: 320px;
    display: flex; align-items: flex-end;
    padding: 0 48px 60px;
    position: relative; overflow: hidden;
}
.page-hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
}
.page-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, #111110 0%, rgba(17,17,16,0.4) 40%, transparent 100%);
}
.page-hero-content {
    position: relative; z-index: 2; max-width: 600px;
}
.page-hero-tag {
    display: inline-block; font-size: 10px; letter-spacing: 0.3em;
    text-transform: uppercase; color: #C4924A; margin-bottom: 16px;
}
.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 400;
    color: #F2EDE6; line-height: 1.15;
}
.page-hero h1 em { font-style: italic; color: #D4A86A; }

/* Footer brand override */
.footer .nav-brand-primary { font-size: 26px; }

@media (max-width: 768px) {
    .nav { padding: 18px 24px; }
    .nav.scrolled { padding: 14px 24px; }
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .nav-links.open {
        display: flex; flex-direction: column; gap: 16px;
        position: absolute; top: 100%; left: 0; right: 0;
        background: #1A1A18; padding: 24px 24px 28px;
        border-bottom: 0.5px solid #2A2A26;
    }
    .nav-brand-rule, .nav-brand-right { display: none; }
    .page-hero { padding: 0 24px 48px; }
}
