/* ============================
   RESET & VARIABLES
============================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --navy:       #0D1B2A;
    --navy-mid:   #152236;
    --navy-light: #1E3050;
    --gold:       #B8975A;
    --gold-light: #D4B483;
    --gold-pale:  rgba(184,151,90,0.12);
    --white:      #FFFFFF;
    --off-white:  #F8F5F0;
    --cream:      #F2EDE5;
    --border:     #E5E0D8;
    --gray:       #9CA3AF;
    --gray-mid:   #6B7280;
    --gray-dark:  #4A5568;
    --serif:      'Playfair Display', Georgia, serif;
    --sans:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    color: var(--navy);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }
button { font-family: var(--sans); cursor: pointer; }

/* ============================
   NAVIGATION
============================ */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 28px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
}

#navbar.scrolled {
    background: rgba(13,27,42,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 18px 60px;
    box-shadow: 0 1px 0 rgba(184,151,90,0.15);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-svg { width: 48px; height: 48px; flex-shrink: 0; }

.logo-text { display: flex; flex-direction: column; line-height: 1; }

.logo-name {
    font-family: var(--serif);
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.05em;
}

.logo-sub {
    font-size: 9px;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.72);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color 0.3s;
}

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

.nav-cta {
    border: 1px solid var(--gold) !important;
    color: var(--gold) !important;
    padding: 10px 26px;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--navy) !important;
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
    font-family: var(--serif);
    font-size: 28px;
    color: var(--white);
    transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--gold); }

.mobile-close {
    position: absolute;
    top: 28px; right: 28px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

/* ============================
   PAGE HEADER (interior pages)
============================ */
.page-header {
    background: var(--navy);
    padding: 140px 60px 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 50%, #1a2e45 0%, var(--navy) 70%);
}

.page-header-inner {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-family: var(--serif);
    font-size: clamp(36px, 4.5vw, 64px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.1;
    margin-top: 14px;
}

.page-header h1 em {
    font-style: italic;
    color: var(--gold);
}

/* ============================
   FOOTER
============================ */
footer {
    background: var(--navy);
    border-top: 1px solid rgba(184,151,90,0.12);
    padding: 52px 60px;
}

.footer-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
}

.footer-left { display: flex; flex-direction: column; gap: 6px; }

.footer-name {
    font-family: var(--serif);
    font-size: 16px;
    color: var(--white);
}

.footer-lic {
    font-size: 10px;
    color: rgba(255,255,255,0.28);
    letter-spacing: 0.1em;
}

.footer-nav {
    display: flex;
    gap: 28px;
    list-style: none;
}

.footer-nav a {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.3s;
}

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

.footer-right {
    font-size: 10px;
    color: rgba(255,255,255,0.2);
    line-height: 1.8;
    text-align: right;
    max-width: 280px;
}

/* ============================
   SHARED UTILITIES
============================ */
.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.eyebrow span {
    font-size: 10.5px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }

.eyebrow.light span { color: var(--gold); }

h2.section-title {
    font-family: var(--serif);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 400;
    line-height: 1.18;
    color: var(--navy);
    margin-bottom: 20px;
}

h2.section-title em { font-style: italic; color: var(--gold); }
h2.section-title.light { color: var(--white); }

.btn-gold {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 16px 38px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: all 0.3s;
    border: none;
}

.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.65);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.btn-outline-white::after { content: '→'; transition: transform 0.3s; }
.btn-outline-white:hover { color: var(--gold); }
.btn-outline-white:hover::after { transform: translateX(5px); }

.btn-outline-navy {
    display: inline-block;
    border: 1px solid var(--navy);
    color: var(--navy);
    padding: 15px 34px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(184,151,90,0.3);
    padding-bottom: 2px;
    transition: all 0.3s;
}

.text-link::after { content: '→'; transition: transform 0.3s; }
.text-link:hover::after { transform: translateX(4px); }

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 1100px) {
    #navbar, #navbar.scrolled { padding-left: 36px; padding-right: 36px; }
    .page-header { padding: 120px 36px 64px; }
    footer { padding: 44px 36px; }
}

@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .page-header { padding: 100px 24px 56px; }
}

@media (max-width: 600px) {
    #navbar, #navbar.scrolled { padding-left: 20px; padding-right: 20px; }
    footer { padding: 40px 20px; }
    .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
    .footer-right { text-align: left; max-width: 100%; }
    .footer-nav { flex-wrap: wrap; gap: 16px; }
    .page-header { padding: 88px 20px 48px; }
}
