/* ── SHARED STYLES ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy: #0d2340;
  --blue: #1a4a8a;
  --sky: #3b82d4;
  --gold: #c9a84c;
  --cream: #f7f4ef;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-mid: #3d4a60;
  --text-light: #6b7a94;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text-dark); overflow-x: hidden; }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,35,64,0.97); backdrop-filter: blur(12px);
  padding: 0 2rem; display: flex; align-items: center;
  justify-content: space-between; height: 64px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--gold); letter-spacing: 0.05em; text-decoration: none; }
.nav-links { display: flex; gap: 1.8rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: rgba(255,255,255,0.8); border-radius: 2px; transition: 0.3s; }
.mobile-menu { display: none; position: fixed; top: 64px; left: 0; right: 0; background: rgba(13,35,64,0.98); padding: 1rem 2rem 1.5rem; z-index: 99; border-bottom: 1px solid rgba(201,168,76,0.2); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.9rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-menu a:last-child { border-bottom: none; }

.container { max-width: 860px; margin: 0 auto; }
.section-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sky); margin-bottom: 0.5rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,4vw,2.6rem); font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; line-height: 1.2; }
.divider { width: 48px; height: 3px; background: var(--gold); margin-bottom: 2.5rem; border-radius: 2px; }

footer { background: var(--navy); color: rgba(255,255,255,0.45); text-align: center; padding: 1.8rem; font-size: 0.82rem; }
footer span { color: var(--gold); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.1); opacity: 1; } }

@media (max-width: 700px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
