@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  --navy: #0F2B3C;
  --ocean: #1B4965;
  --sky: #5FA8D3;
  --gold: #C8956C;
  --gold-light: #E8C9A8;
  --cream: #FBF8F4;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --radius: 10px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(15,43,60,0.08);
  --shadow-lg: 0 12px 40px rgba(15,43,60,0.12);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-700);
  background: white;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* NAVIGATION */
.site-nav {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0 32px;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-nav .logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.05em;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.3px;
}
.site-nav .nav-links {
  display: flex;
  gap: 2px;
  align-items: center;
}
.site-nav .nav-links a {
  color: var(--gray-500);
  text-decoration: none;
  font-size: 0.8em;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 6px;
  transition: all var(--transition);
  letter-spacing: -0.1px;
}
.site-nav .nav-links a:hover {
  color: var(--navy);
  background: var(--gray-100);
}
.site-nav .nav-links a.active {
  color: var(--navy);
  background: var(--gray-100);
  font-weight: 600;
}
.site-nav .nav-cta {
  background: var(--navy) !important;
  color: white !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  padding: 8px 18px !important;
  transition: all var(--transition) !important;
}
.site-nav .nav-cta:hover {
  background: var(--ocean) !important;
}

/* PAGE CONTENT */
.page-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 32px 64px;
}

/* TYPOGRAPHY */
h1, h2, h3 { color: var(--navy); }
.serif { font-family: 'Playfair Display', serif; }

/* CARDS */
.card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all var(--transition);
  overflow: hidden;
}
.card:hover {
  border-color: var(--gray-200);
  box-shadow: var(--shadow-md);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9em;
  transition: all var(--transition);
  letter-spacing: -0.1px;
}
.btn-primary {
  background: var(--navy);
  color: white;
}
.btn-primary:hover {
  background: var(--ocean);
}
.btn-secondary {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}
.btn-gold {
  background: var(--gold);
  color: white;
}
.btn-gold:hover {
  background: #b8854f;
}

/* BADGE */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 5px;
  font-size: 0.7em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.badge-gold { background: rgba(200,149,108,0.15); color: var(--gold); }
.badge-blue { background: rgba(95,168,211,0.12); color: var(--ocean); }

/* STAT */
.stat-number {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  color: var(--gray-400);
  font-size: 0.78em;
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: -0.1px;
}

/* IMAGES */
.zoomable {
  cursor: zoom-in;
  transition: all var(--transition);
}
.zoomable:hover {
  box-shadow: var(--shadow-lg);
}

/* ZOOM OVERLAY */
.zoom-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  cursor: zoom-out;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s ease;
}
.zoom-overlay img {
  max-width: 92%;
  max-height: 92%;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* SLIDESHOW */
.slideshow {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  background: var(--gray-50);
}
.slideshow img {
  width: 100%;
  max-height: 440px;
  object-fit: contain;
  display: none;
  background: var(--gray-50);
}
.slideshow img.active { display: block; }
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  border: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 1.1em;
  cursor: pointer;
  color: var(--navy);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  z-index: 10;
  transition: all var(--transition);
}
.slide-btn:hover { background: white; box-shadow: var(--shadow-md); }
.slide-prev { left: 12px; }
.slide-next { right: 12px; }
.slide-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.slide-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.slide-dot.active { background: white; transform: scale(1.2); }

/* FOOTER */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  padding: 48px 32px 32px;
  font-size: 0.82em;
  letter-spacing: -0.1px;
  margin-top: 48px;
}
.site-footer a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
.site-footer a:hover { color: var(--gold-light); }
.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.footer-brand {
  color: rgba(255,255,255,0.5);
}
.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15em;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}
.footer-brand p {
  line-height: 1.6;
  max-width: 280px;
}
.footer-col h4 {
  color: white;
  font-size: 0.82em;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 12px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.5);
  padding: 3px 0;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 960px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.92em;
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
}

/* FORM INPUTS */
input, textarea {
  font-family: 'Inter', sans-serif;
  transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus, textarea:focus {
  border-color: var(--sky) !important;
  box-shadow: 0 0 0 3px rgba(95,168,211,0.15);
  outline: none;
}

/* ANIMATIONS */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeIn 0.5s ease; }
.fade-in-up { animation: fadeInUp 0.5s ease; }

/* DIVIDER */
.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 1;
}
.reveal.visible {
  opacity: 1;
}

/* TIMELINE */
.timeline {
  position: relative;
  padding-left: 28px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}
.timeline-item {
  position: relative;
  margin-bottom: 24px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid white;
  box-shadow: 0 0 0 3px rgba(200,149,108,0.2);
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-year {
  font-size: 0.72em;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.timeline-text {
  font-size: 0.9em;
  color: var(--gray-700);
  line-height: 1.55;
}
.timeline-text strong { color: var(--navy); }

/* PARTNER STRIP */
.partner-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all var(--transition);
}
.partner-strip:hover {
  opacity: 1;
  filter: grayscale(0%);
}
.partner-strip img {
  height: 28px;
  object-fit: contain;
}

/* HAMBURGER */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  position: relative;
  z-index: 110;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.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);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .site-nav {
    padding: 0 16px;
    height: 54px;
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .site-nav .logo { font-size: 0.95em; }
  .hamburger { display: block; }

  .site-nav .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 100;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }
  .site-nav .nav-links.open {
    visibility: visible;
    opacity: 1;
  }
  .site-nav .nav-links a {
    display: block !important;
    font-size: 1.15em;
    padding: 12px 24px;
    border-radius: 10px;
    color: #0F2B3C;
    font-weight: 500;
  }
  .site-nav .nav-links a:hover,
  .site-nav .nav-links a.active {
    background: #F3F4F6;
  }
  .site-nav .nav-links .nav-cta {
    margin-top: 8px;
    font-size: 1.05em !important;
    padding: 14px 32px !important;
    background: #0F2B3C !important;
    color: #ffffff !important;
  }
  .page-content { padding: 24px 16px 48px; }
  .two-col { grid-template-columns: 1fr 1fr !important; }
  .hero-flex { flex-direction: column !important; }
  .hero-flex img { width: 100% !important; }
}
@media (max-width: 480px) {
  .two-col { grid-template-columns: 1fr !important; }
}
