:root {
  --navy: #0a1628;
  --navy-mid: #12234a;
  --navy-light: #1a3060;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --white: #f8f4ee;
  --grey: #8a9ab5;
  --text: #e8e4dc;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--text);
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem; letter-spacing: 3px;
  color: var(--gold); text-decoration: none;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--grey); text-decoration: none;
  font-family: 'Crimson Pro', serif; font-size: 0.95rem;
  letter-spacing: 1px; transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--gold); color: var(--navy);
  font-family: 'Bebas Neue', sans-serif; letter-spacing: 2px;
  font-size: 1rem; padding: 0.9rem 2rem; text-decoration: none;
  transition: all 0.25s; cursor: pointer; border: none;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-primary:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: 1px solid var(--gold); color: var(--gold);
  font-family: 'Bebas Neue', sans-serif; letter-spacing: 2px;
  font-size: 1rem; padding: 0.9rem 2rem; text-decoration: none;
  transition: all 0.25s; cursor: pointer; background: transparent;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-secondary:hover { background: rgba(201,168,76,0.1); transform: translateY(-2px); }
.section-label {
  font-family: 'Bebas Neue', sans-serif; letter-spacing: 5px;
  font-size: 0.8rem; color: var(--gold); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 1rem;
}
.section-label::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent); opacity: 0.4;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700;
  color: var(--white); line-height: 1.2; margin-bottom: 1.5rem;
}
.section-title em { color: var(--gold); font-style: italic; }
.gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 4rem; opacity: 0.3;
}
footer {
  background: rgba(0,0,0,0.4);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 3rem 6rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem; letter-spacing: 3px; color: var(--gold);
}
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: var(--grey); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { color: var(--grey); font-size: 0.85rem; }
@media (max-width: 768px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  footer { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
}
