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

:root {
  --navy:      #0B1D3A;
  --navy-mid:  #132546;
  --teal:      #1A9E8F;
  --teal-light:#22BFB0;
  --gold:      #C9A84C;
  --gold-light:#E2C46F;
  --cream:     #F7F4EE;
  --white:     #FFFFFF;
  --text-dark: #1a1a2e;
  --text-mid:  #3d4460;
  --text-muted:#7a8099;
  --border:    rgba(11,29,58,0.10);
  --shadow-sm: 0 2px 12px rgba(11,29,58,0.08);
  --shadow-md: 0 8px 32px rgba(11,29,58,0.13);
  --shadow-lg: 0 20px 60px rgba(11,29,58,0.18);
  --radius:    14px;
  --radius-lg: 24px;
  --transition: 0.32s cubic-bezier(.4,0,.2,1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── NAVBAR ─────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(11,29,58,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  padding: 0 2rem;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition);
}
.navbar.scrolled { height: 60px; background: rgba(11,29,58,0.99); }

.nav-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-brand-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: white; font-size: 16px;
}
.nav-brand-text {
  display: flex; flex-direction: column; line-height: 1.1;
}
.nav-brand-name { color: white; font-weight: 600; font-size: 0.92rem; letter-spacing: 0.02em; }
.nav-brand-title { color: var(--teal-light); font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 0.2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.78);
  text-decoration: none; font-size: 0.85rem; font-weight: 500;
  padding: 6px 14px; border-radius: 8px;
  transition: var(--transition); letter-spacing: 0.01em;
  position: relative;
}
.nav-links a:hover, .nav-links a.active {
  color: white; background: rgba(26,158,143,0.18);
}
.nav-links a.active::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--teal-light);
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px; background: white; border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
  background: rgba(11,29,58,0.98); backdrop-filter: blur(20px);
  z-index: 998; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: white; text-decoration: none; font-size: 1.5rem;
  font-family: var(--font-display); font-weight: 600;
  padding: 0.5rem 1rem; border-radius: 8px;
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--teal-light); }

/* ─── PAGE WRAPPER ───────────────────────────────── */
.page-wrapper { padding-top: 70px; min-height: 100vh; }

/* ─── SECTION HELPERS ────────────────────────────── */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 2rem; }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 1rem;
}
.section-tag::before {
  content: ''; width: 20px; height: 2px; background: var(--teal); border-radius: 2px;
}

.section-title {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--teal); }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; line-height: 1.75; }

/* ─── CARD ───────────────────────────────────────── */
.card {
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(26,158,143,0.2);
}

/* ─── BADGES ─────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600;
}
.badge-teal { background: rgba(26,158,143,0.1); color: var(--teal); border: 1px solid rgba(26,158,143,0.2); }
.badge-gold { background: rgba(201,168,76,0.1); color: #a07c2a; border: 1px solid rgba(201,168,76,0.25); }
.badge-navy { background: rgba(11,29,58,0.08); color: var(--navy); border: 1px solid var(--border); }

/* ─── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: 10px; font-size: 0.9rem; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none; transition: var(--transition);
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--teal); color: white;
  box-shadow: 0 4px 20px rgba(26,158,143,0.3);
}
.btn-primary:hover { background: var(--teal-light); box-shadow: 0 6px 28px rgba(26,158,143,0.45); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--navy);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); background: rgba(26,158,143,0.05); }
.btn-gold {
  background: var(--gold); color: white;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ─── STAT BOX ───────────────────────────────────── */
.stat-box {
  text-align: center; padding: 1.4rem 1rem;
}
.stat-num {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 700;
  color: var(--navy); line-height: 1;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; font-weight: 500; letter-spacing: 0.04em; }

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  background: var(--navy);
  padding: 56px 0 28px;
  color: rgba(255,255,255,0.65);
}
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 3rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-brand-name {
  font-family: var(--font-display); font-size: 1.3rem; color: white; font-weight: 700; margin-bottom: 0.5rem;
}
.footer-brand-desc { font-size: 0.85rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: white; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.88rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--teal-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: 0.8rem;
}
.footer-bottom a { color: var(--teal-light); text-decoration: none; }

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

/* ─── SCROLL ANIMATION ───────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
