/* ── FONTS ── */
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 300; font-display: swap; src: url('fonts/outfit-latin-300-normal.woff2') format('woff2'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/outfit-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 500; font-display: swap; src: url('fonts/outfit-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 600; font-display: swap; src: url('fonts/outfit-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 700; font-display: swap; src: url('fonts/outfit-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 900; font-display: swap; src: url('fonts/outfit-latin-900-normal.woff2') format('woff2'); }
@font-face { font-family: 'Hanuman'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/hanuman-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Hanuman'; font-style: normal; font-weight: 700; font-display: swap; src: url('fonts/hanuman-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'Hanuman'; font-style: normal; font-weight: 900; font-display: swap; src: url('fonts/hanuman-latin-900-normal.woff2') format('woff2'); }

/* ── VARIABLES ── */
:root {
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-secondary: 'Hanuman', serif;
  --blue: #5A82A5;
  --charcoal: #3D3B3C;
  --navy: #1A2B3C;
  --blue-dark: #3D6585;
  --blue-light: #7A9BB5;
  --slate: #5F6570;
  --silver: #D8DCE0;
  --cool-white: #F2F4F6;
  --field-tan: #B07D4A;
  --warm-white: #F8F0E4;
  --pig-brig: #799D4B;
  --ink: #3D3B3C;
  --bg: #F2F4F6;
  --bg-dark: #1A2B3C;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0.75rem 2.5rem;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; overflow: hidden;
  background: rgba(242,244,246,0.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26,43,60,0.06);
  transition: background 0.4s;
}
.nav-logo { text-decoration: none; }
.nav-logo img, .nav-logo picture img { height: 70px; width: auto; display: block; max-width: 60vw; object-fit: contain; }
.nav-links { display: flex; gap: 2.25rem; align-items: center; flex-shrink: 0; }
.nav-links a {
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--slate); text-decoration: none; transition: color 0.3s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--blue) !important; color: var(--bg) !important;
  padding: 0.6rem 1.5rem !important; border-radius: 2px;
  transition: background 0.3s !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 201;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 1px;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(242,244,246,0.98);
  backdrop-filter: blur(20px);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink);
  text-decoration: none;
  padding: 1rem 2rem;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--blue); }
.mobile-menu .mobile-cta {
  margin-top: 1.5rem;
  background: var(--blue);
  color: var(--bg) !important;
  padding: 0.85rem 2.5rem;
  border-radius: 2px;
  font-size: 0.9rem;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── FOOTER ── */
footer {
  background: #3a3a37;
  color: rgba(245,241,235,0.6);
  padding: 3.5rem 0 2.5rem;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 1.5rem;
}
.footer-logo a { display: inline-block; }
.footer-logo img {
  height: 46px;
  width: auto;
  opacity: 0.7;
}
.footer-links { display: flex; gap: 2rem; }
.footer-links a {
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(245,241,235,0.7); text-decoration: none; transition: color 0.3s;
}
.footer-links a:hover { color: rgba(245,241,235,0.9); }
.footer-contact a {
  color: rgba(245,241,235,0.7); text-decoration: none; font-size: 0.85rem;
}
.footer-linkedin {
  margin-left: 1rem;
}
.footer-linkedin svg {
  vertical-align: middle;
  transition: fill 0.3s;
}
.footer-wosb {
  text-align: center; font-size: 0.82rem;
  color: rgba(245,241,235,0.65); letter-spacing: 0.04em;
  padding-bottom: 1.5rem; margin-bottom: 1.5rem;
}
.footer-legal {
  text-align: center; font-size: 0.78rem; margin-bottom: 0.75rem;
}
.footer-legal a {
  color: rgba(245,241,235,0.65); text-decoration: none;
}
.footer-legal .sep {
  color: rgba(245,241,235,0.35); margin: 0 0.5rem;
}
.footer-copy {
  font-size: 0.88rem; color: rgba(245,241,235,0.65); text-align: center;
}

/* ── RESPONSIVE ── */
/* Progressively tighten nav before collapsing to hamburger */
@media (max-width: 1200px) {
  nav { padding: 0.75rem 1.75rem; }
  .nav-links { gap: 1.5rem; }
  .nav-links a { font-size: 0.75rem; letter-spacing: 0.1em; }
}
@media (max-width: 1050px) {
  .nav-links a:not(.nav-cta) { font-size: 0.72rem; letter-spacing: 0.08em; }
  .nav-links { gap: 1.1rem; }
}
@media (max-width: 960px) {
  nav { padding: 0.75rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: block; }
}
@media (max-width: 900px) {
  .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .footer-contact { display: flex; justify-content: center; align-items: center; }
}
@media (max-width: 600px) {
  .nav-logo img { height: 44px !important; }
  .nav-cta { padding: 0.5rem 1rem !important; font-size: 0.75rem !important; }
}
@media (max-width: 400px) {
  .nav-logo img { height: 36px !important; }
  .nav-cta { padding: 0.45rem 0.75rem !important; font-size: 0.75rem !important; letter-spacing: 0.08em !important; }
}
