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

:root {
  --navy: #0B1C3D;
  --navy-mid: #142347;
  --navy-light: #1e3260;
  --gold: #C4A84F;
  --gold-light: #dcc87a;
  --cream: #F4EFE6;
  --cream-dark: #E8E0D0;
  --white: #FDFCFA;
  --text-dark: #0B1C3D;
  --text-mid: #3a4d6b;
  --text-light: #8a9ab8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  font-weight: 300;
  line-height: 1.7;
  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: 0 4rem;
  height: 80px;
  background: rgba(11, 28, 61, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 168, 79, 0.2);
}

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

.nav-logo .wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.05em;
}

.nav-logo .sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.75);
  transition: color 0.25s;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 8rem 4rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -60%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(196,168,79,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.page-hero .gold-rule {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
}

.page-hero p {
  color: var(--text-light);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ── SECTIONS ── */
section {
  padding: 6rem 4rem;
}

.section-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.2;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(244,239,230,0.5);
  text-align: center;
  padding: 3rem 4rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  border-top: 1px solid rgba(196,168,79,0.15);
}

footer .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1.5rem 0;
  list-style: none;
}

footer .footer-links a {
  text-decoration: none;
  color: rgba(244,239,230,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196,168,79,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(196,168,79,0.5);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ── DIVIDER ── */
.gold-divider {
  width: 50px; height: 1px;
  background: var(--gold);
  margin: 2rem 0;
}

.gold-divider.center { margin: 2rem auto; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 1.5rem; }
  .nav-links { gap: 1.2rem; }
  .nav-links a { font-size: 0.65rem; }
  section { padding: 4rem 1.5rem; }
  .page-hero { padding: 7rem 1.5rem 3rem; }
  footer { padding: 2rem 1.5rem; }
  footer .footer-links { flex-wrap: wrap; gap: 1rem; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.8s ease forwards;
}

.fade-up-delay-1 { animation-delay: 0.15s; opacity: 0; }
.fade-up-delay-2 { animation-delay: 0.3s; opacity: 0; }
.fade-up-delay-3 { animation-delay: 0.45s; opacity: 0; }
.fade-up-delay-4 { animation-delay: 0.6s; opacity: 0; }
