/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: #080F1E; color: #F5F0E8; font-family: 'Cormorant Garamond', serif; overflow-x: hidden; }
a { text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeUp   { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes shimmer  { 0% { background-position:-200% center; } 100% { background-position:200% center; } }

/* ── NAVBAR ───────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 48px;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(8,15,30,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo img { width:46px; height:46px; border-radius:50%; border:2px solid rgba(201,168,76,0.6); object-fit:cover; }
.nav-logo-text-main { font-family:'Cinzel',serif; font-size:16px; font-weight:600; color:#C9A84C; letter-spacing:.08em; line-height:1.1; }
.nav-logo-text-sub  { font-family:'Cormorant Garamond',serif; font-size:10px; color:rgba(245,240,232,0.55); letter-spacing:.2em; text-transform:uppercase; }
.nav-links { display:flex; align-items:center; gap:40px; }
.nav-links a {
  font-family:'Jost',sans-serif; font-size:12px; color:rgba(245,240,232,0.75);
  letter-spacing:.18em; text-transform:uppercase; transition:color .2s;
}
.nav-links a:hover, .nav-links a.active { color:#C9A84C; }
.nav-cta {
  font-family:'Jost',sans-serif; font-size:11px; font-weight:500;
  color:#080F1E; background:#C9A84C; padding:10px 24px;
  letter-spacing:.18em; text-transform:uppercase; transition:background .2s;
}
.nav-cta:hover { background:#b8973d; }
.nav-hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:4px; }
.nav-hamburger span { display:block; width:24px; height:2px; background:#C9A84C; transition:.3s; }
.nav-mobile { display:none; flex-direction:column; gap:20px; padding:24px 48px; background:#080F1E; border-top:1px solid rgba(201,168,76,0.15); }
.nav-mobile a { font-family:'Jost',sans-serif; font-size:13px; color:rgba(245,240,232,0.75); letter-spacing:.18em; text-transform:uppercase; }
.nav-mobile.open { display:flex; }

/* ── PAGE HERO ────────────────────────────────────────────── */
.page-hero {
  min-height: 55vh; display:flex; align-items:flex-end;
  padding: 0 48px 80px; position:relative; overflow:hidden;
  background: linear-gradient(160deg,#0A1628 0%,#080F1E 70%);
}
.page-hero-inner { max-width:1280px; margin:0 auto; width:100%; position:relative; }
.eyebrow { display:flex; align-items:center; gap:16px; margin-bottom:28px; }
.eyebrow-line { width:40px; height:1px; background:#C9A84C; flex-shrink:0; }
.eyebrow-text { font-family:'Jost',sans-serif; font-size:11px; color:#C9A84C; letter-spacing:.3em; text-transform:uppercase; }
.page-title { font-family:'Cinzel',serif; font-size:clamp(36px,5vw,72px); font-weight:400; color:#F5F0E8; line-height:1.1; }
.page-subtitle { font-family:'Cormorant Garamond',serif; font-size:20px; font-style:italic; color:rgba(245,240,232,0.5); margin-top:20px; max-width:500px; line-height:1.6; }

/* ── SECTION HEADER ───────────────────────────────────────── */
.section-header { text-align:center; margin-bottom:72px; }
.section-header h2 { font-family:'Cinzel',serif; font-size:clamp(28px,3vw,46px); font-weight:400; color:#F5F0E8; }
.section-eyebrow { display:flex; align-items:center; justify-content:center; gap:16px; margin-bottom:24px; }

/* ── GOLD DIVIDER ─────────────────────────────────────────── */
.gold-line { width:40px; height:1px; background:#C9A84C; }
.gold-line-sm { width:32px; height:1px; background:#C9A84C; margin-bottom:16px; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-gold {
  display:inline-block; font-family:'Jost',sans-serif; font-size:12px; font-weight:500;
  letter-spacing:.2em; text-transform:uppercase; color:#080F1E;
  background:#C9A84C; padding:16px 40px; transition:background .25s,transform .2s;
}
.btn-gold:hover { background:#b8973d; transform:translateY(-2px); }
.btn-gold-sm { padding:14px 40px; font-size:11px; }
.btn-outline {
  display:inline-block; font-family:'Jost',sans-serif; font-size:12px;
  letter-spacing:.2em; text-transform:uppercase; color:#C9A84C;
  border:1px solid rgba(201,168,76,0.4); padding:16px 40px;
  transition:border-color .25s,background .25s;
}
.btn-outline:hover { border-color:#C9A84C; background:rgba(201,168,76,0.05); }
.btn-outline-sm { padding:14px 40px; font-size:11px; }

/* ── CTA SECTION ──────────────────────────────────────────── */
.cta-section { padding:80px 48px; background:#050C1A; border-top:1px solid rgba(201,168,76,0.1); text-align:center; }
.cta-section h3 { font-family:'Cinzel',serif; font-size:clamp(22px,2.5vw,34px); font-weight:400; color:#F5F0E8; margin-bottom:20px; }
.cta-section p { font-family:'Cormorant Garamond',serif; font-size:18px; font-style:italic; line-height:1.8; color:rgba(245,240,232,0.5); margin-bottom:40px; max-width:600px; margin-left:auto; margin-right:auto; }

/* ── FOOTER ───────────────────────────────────────────────── */
footer { background:#050C1A; border-top:1px solid rgba(201,168,76,0.2); padding:80px 48px 40px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.5fr; gap:60px; margin-bottom:64px; max-width:1280px; margin-left:auto; margin-right:auto; }
.footer-brand-logo { display:flex; align-items:center; gap:14px; margin-bottom:24px; }
.footer-brand-logo img { width:50px; height:50px; border-radius:50%; border:2px solid rgba(201,168,76,0.5); object-fit:cover; }
.footer-brand-name { font-family:'Cinzel',serif; font-size:18px; font-weight:600; color:#C9A84C; }
.footer-brand-sub  { font-family:'Cormorant Garamond',serif; font-size:10px; color:rgba(245,240,232,0.4); letter-spacing:.2em; text-transform:uppercase; }
.footer-tagline { font-family:'Cormorant Garamond',serif; font-size:16px; line-height:1.8; color:rgba(245,240,232,0.5); font-style:italic; max-width:320px; }
.footer-col h4 { font-family:'Cinzel',serif; font-size:11px; color:#C9A84C; letter-spacing:.2em; text-transform:uppercase; margin-bottom:24px; }
.footer-col a, .footer-col span, .footer-col p { font-family:'Jost',sans-serif; font-size:13px; color:rgba(245,240,232,0.5); display:block; margin-bottom:14px; line-height:1.7; transition:color .2s; }
.footer-col a:hover { color:#C9A84C; }
.footer-bottom { max-width:1280px; margin:0 auto; border-top:1px solid rgba(201,168,76,0.1); padding-top:32px; display:flex; align-items:center; justify-content:space-between; }
.footer-bottom p { font-family:'Jost',sans-serif; font-size:12px; color:rgba(245,240,232,0.3); }
.footer-bottom span { font-family:'Cormorant Garamond',serif; font-size:13px; color:rgba(245,240,232,0.3); font-style:italic; }

/* ── UTILITIES ────────────────────────────────────────────── */
.container { max-width:1280px; margin:0 auto; }
.text-gold  { color:#C9A84C; }
.italic     { font-style:italic; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width:900px) {
  .nav-links { display:none; }
  .nav-hamburger { display:flex; }
  .nav { padding:0 24px; }
  .page-hero, .footer-grid { padding-left:24px; padding-right:24px; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:40px; }
}
@media (max-width:600px) {
  .footer-grid { grid-template-columns:1fr; }
  .page-hero { padding:0 24px 60px; }
}
