@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Cinzel:wght@400;500;600;700;800;900&family=Raleway:wght@200;300;400;500&display=swap');

:root {
  --black: #0a0a0a;
  --black-rich: #050505;
  --black-soft: #111111;
  --black-mid: #1a1a1a;
  --black-light: #222222;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-bright: #f5d98a;
  --gold-dark: #8a6a1e;
  --gold-pale: #2a2010;
  --white: #f5f0e8;
  --white-soft: #ede8dc;
  --text-muted: #888880;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background-color: var(--black-rich);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* === NAVIGATION === */
nav {
  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.5s ease;
}
nav.scrolled {
  background: rgba(5,5,5,0.96);
  backdrop-filter: blur(20px);
  padding: 18px 60px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.nav-logo span { color: var(--white); }
.nav-links {
  display: flex;
  gap: 44px;
  list-style: none;
}
.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white-soft);
  position: relative;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 12px 28px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold-bright);
  transition: left 0.3s ease;
}
.nav-cta:hover::before { left: 0; }
.nav-cta span { position: relative; z-index: 1; }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
  transition: all 0.3s ease;
}

/* === SHARED ELEMENTS === */
.gold-line {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px auto;
}
.gold-line-left {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px 0;
}
.section-label {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
}
.section-title em { font-style: italic; color: var(--gold-light); }
.section-subtitle {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  letter-spacing: 0.5px;
}
.ornament {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.ornament-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark));
  max-width: 80px;
}
.ornament-diamond {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.ornament-line.right { background: linear-gradient(270deg, transparent, var(--gold-dark)); }

/* === BUTTONS === */
.btn-gold {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 16px 40px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn-gold::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold-bright);
  transition: left 0.35s ease;
}
.btn-gold:hover::before { left: 0; }
.btn-gold span { position: relative; z-index: 1; }
.btn-outline {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  padding: 15px 40px;
  text-decoration: none;
  border: 1px solid var(--gold);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-outline::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  transition: left 0.35s ease;
}
.btn-outline:hover { color: var(--black); }
.btn-outline:hover::before { left: 0; }
.btn-outline span { position: relative; z-index: 1; }

/* === ANIMATIONS === */
.reveal {
  opacity: 1;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0; transform: scale(0.93);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* === PAGE HERO === */
.page-hero {
  min-height: 46vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 140px 60px 80px;
  background: radial-gradient(ellipse at 50% 60%, rgba(201,168,76,0.05) 0%, transparent 60%), var(--black-rich);
  text-align: center;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.5) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 2; max-width: 700px; }
.page-hero-content .section-title { margin-bottom: 16px; }

/* === FOOTER === */
footer {
  background: var(--black-rich);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 60px 60px 36px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.footer-brand .nav-logo { display: block; margin-bottom: 16px; font-size: 20px; }
.footer-desc { font-size: 13px; color: var(--text-muted); line-height: 1.9; max-width: 300px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
  font-family: 'Cinzel', serif;
}
.footer-social a:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--text-muted); letter-spacing: 0.5px; }
.footer-bottom a { font-size: 12px; color: var(--text-muted); text-decoration: none; transition: color 0.3s ease; }
.footer-bottom a:hover { color: var(--gold); }

/* === PARTICLES === */
#particles-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black-rich); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(5,5,5,0.98); flex-direction: column; align-items: center; justify-content: center; gap: 36px; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 16px; letter-spacing: 4px; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; z-index: 1001; }
  .nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  footer { padding: 50px 24px 30px; }
  .footer-inner { flex-direction: column; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero { padding: 120px 24px 60px; }
}
