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

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

:root {
  --dark:     #0F2347;
  --blue:     #1B3A6B;
  --mid:      #2E5BA8;
  --light:    #5B8DD9;
  --pale:     #DCE8F8;
  --palest:   #F0F5FC;
  --white:    #ffffff;
  --text:     #0F2347;
  --text-mid: #3A5275;
  --radius:   8px;
  --radius-lg:12px;
}

/* ── BASE ──────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
body {
  font-family: 'Instrument Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.15;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── SCROLL REVEAL ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.34s; }

/* ── NAV ───────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  height: 64px;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s;
}
.logo-wrap { display: flex; align-items: center; gap: 2px; }
.nav-logo-img { height: 30px; width: auto; display: block; }
.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
.logo-wave { display: block; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.52);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.lang-switch { display: flex; gap: 4px; margin-left: 8px; }
.lang-btn {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  background: none;
  transition: all 0.2s;
  font-family: 'Instrument Sans', sans-serif;
}
.lang-btn.active,
.lang-btn:hover {
  border-color: rgba(255,255,255,0.55);
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.nav-cta {
  font-size: 13px;
  font-weight: 500;
  background: var(--mid);
  color: #fff;
  padding: 8px 22px;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--light); transform: translateY(-1px); }

/* ── FOOTER ────────────────────────────────────────────── */
footer {
  background: var(--dark);
  padding: 48px 64px 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 36px;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-top: 12px;
  line-height: 1.7;
  max-width: 200px;
}
.footer-logo-img { height: 34px; width: auto; display: block; }
.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 14px;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 500;
}
.footer-col a,
.footer-col p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  display: block;
  margin-bottom: 8px;
  line-height: 1.6;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ── UTILS ─────────────────────────────────────────────── */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 12px;
  font-family: 'Instrument Sans', sans-serif;
}
.section-eyebrow.light { color: rgba(255,255,255,0.4); }
.section-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
.section-title {
  font-size: 36px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-title.light { color: #fff; }
.section-sub {
  font-size: 15px;
  color: var(--text-mid);
  max-width: 520px;
  line-height: 1.8;
}
.section-sub.light { color: rgba(255,255,255,0.55); }

/* Buttons */
.btn-primary {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  background: var(--mid);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  font-family: 'Instrument Sans', sans-serif;
  letter-spacing: 0.01em;
}
.btn-primary:hover { background: var(--light); transform: translateY(-1px); }
.btn-outline {
  display: inline-block;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.22);
  background: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Instrument Sans', sans-serif;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.55); color: #fff; }
.btn-outline-dark {
  display: inline-block;
  font-size: 13px;
  color: var(--mid);
  padding: 10px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--pale);
  background: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Instrument Sans', sans-serif;
  white-space: nowrap;
}
.btn-outline-dark:hover { border-color: var(--mid); background: var(--palest); }

/* ── MOBILE MENU ───────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 22px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  z-index: 99;
  padding: 40px 28px;
  flex-direction: column;
  gap: 28px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 28px;
  color: rgba(255,255,255,0.75);
  font-family: 'Cormorant Garamond', serif;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: #fff; }
.mobile-menu .lang-switch { margin-left: 0; margin-top: 12px; }

/* ── SHARED PAGE HERO ──────────────────────────────────── */
.page-hero {
  background: var(--blue);
  padding: 80px 64px 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}
.page-hero .section-eyebrow { color: rgba(255,255,255,0.45); }
.page-hero h1 { font-size: 52px; color: #fff; max-width: 640px; margin-bottom: 16px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.65); max-width: 520px; line-height: 1.8; }

/* ── IMAGE HELPERS ─────────────────────────────────────── */
.img-cover { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-placeholder {
  background: var(--pale);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: 13px;
  border: 1px dashed var(--mid);
}

/* ── MOBILE FOOTER ─────────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  footer { padding: 40px 24px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .page-hero { padding: 56px 24px 48px; }
  .page-hero h1 { font-size: 36px; }
}
