:root {
  --navy: #0d1b2e;
  --navy-light: #132340;
  --gold: #f0b429;
  --gold-light: #f9d675;
  --gold-dim: rgba(240,180,41,0.15);
  --white: #f5f0e8;
  --gray: #8a9ab5;
  --border: rgba(240,180,41,0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 60px;
  background: rgba(13,27,46,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo img { height: 42px; width: auto; }
.nav-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 3px;
  color: var(--gold); text-transform: uppercase; line-height: 1.4;
}

.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--gray); text-decoration: none;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 500; transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  padding: 8px 22px;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  border-radius: 2px;
  transition: background 0.3s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }

/* BUTTONS */
.btn-primary {
  padding: 13px 34px;
  background: var(--gold); color: var(--navy);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600;
  border-radius: 2px; display: inline-block;
  transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  padding: 13px 34px;
  border: 1px solid rgba(240,180,41,0.4); color: var(--gold);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600;
  border-radius: 2px; display: inline-block;
  transition: border-color 0.3s, background 0.3s, transform 0.2s;
}
.btn-outline:hover {
  border-color: var(--gold); background: rgba(240,180,41,0.08); transform: translateY(-2px);
}

/* SECTION LABELS */
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::after {
  content: ''; display: block; height: 1px; width: 40px;
  background: var(--gold); opacity: 0.5;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 300; line-height: 1.15; margin-bottom: 28px;
}
.section-title span { color: var(--gold); }

/* DIVIDER */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 30%, var(--border) 70%, transparent);
  margin: 0 60px;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,20,36,0.9);
}
.footer-left { display: flex; align-items: center; gap: 28px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img { height: 30px; }
.footer-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 3px; color: var(--gray); text-transform: uppercase;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray); text-decoration: none; transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 11px; color: rgba(138,154,181,0.6); letter-spacing: 1px; }

/* FADE IN */
.fade-in {
  opacity: 0; transform: translateY(20px);
  animation: fadeIn 0.7s ease forwards;
}
.fade-in:nth-child(2) { animation-delay: 0.12s; }
.fade-in:nth-child(3) { animation-delay: 0.24s; }
.fade-in:nth-child(4) { animation-delay: 0.36s; }
.fade-in:nth-child(5) { animation-delay: 0.48s; }

@keyframes fadeIn { to { opacity: 1; transform: translateY(0); } }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .divider { margin: 0 20px; }
  footer { padding: 20px; flex-direction: column; gap: 14px; text-align: center; }
  .footer-left { flex-direction: column; gap: 12px; }
}