@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Oswald:wght@600;700&family=Big+Shoulders+Display:wght@900&family=Caveat:wght@700&display=swap');

:root {
  --mt-blue:        #0099FF;
  --mt-blue-dark:   #0066cc;
  --mt-blue-glow:   rgba(0,153,255,0.35);
  --mt-bg:          #060c18;
  --mt-bg-page:     #0a1020;
  --mt-border:      #1e2a3d;
  --mt-text-muted:  #6b7fa0;
  --mt-text-light:  #b0bdd2;
  --mt-red:         #d91600;
  --mt-font-nav:    'Oswald', Arial, sans-serif;
  --mt-font-body:   'Open Sans', Arial, sans-serif;
  --mt-font-heading:'Big Shoulders Display', 'Arial Narrow', sans-serif;
}

/* ===== NAV ===== */
#site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #060c18;
  border-bottom: 1px solid #1e2a3d;
}
#site-nav .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 48px;
}
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 4px;
  background: linear-gradient(160deg, #1c3050 0%, #0d1e38 100%);
  border: 1px solid rgba(0,153,255,0.25);
  box-shadow: 0 2px 8px rgba(0,102,204,0.35);
  transition: background 0.2s;
}
.nav-links a:hover {
  background: linear-gradient(160deg, #0099FF 0%, #0066cc 100%);
}

/* ===== SITE HEADER ===== */
#site-header {
  background: #0a1020;
  padding: 9px 0 10px;
  height: 186px;
  box-sizing: border-box;
  overflow: hidden;
}
#site-header .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
#site-header .logo img { width: 513px; max-width: 100%; margin-left: -34px; }
#site-header h1 {
  font-family: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
  font-weight: 900;
  font-size: 2.0rem;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-transform: uppercase;
  background: linear-gradient(160deg, #e8edf5 0%, #c8d5ec 45%, #a0b4cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: -5px;
}

/* ===== LAYOUT ===== */
body {
  margin: 0;
  background: #080d18;
  font-family: 'Open Sans', Arial, sans-serif;
}
html, body { min-height: 100vh; }
.page-container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ===== FOOTER ===== */
#site-footer {
  background: #080c14;
  padding: 48px 0 14px;
  border-top: 1px solid #1e2a3d;
  font-family: 'Open Sans', Arial, sans-serif;
}
.footer-grid {
  display: grid;
  grid-template-columns: max-content 1fr 2fr auto;
  align-items: start;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-col h3 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #b0bdd2;
  margin-top: 0;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: #6b7fa0; font-size: 14px; text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: #44ccff; }
.contact-item { margin-bottom: 12px; }
.contact-item .label {
  font-size: 12px;
  font-weight: 700;
  color: #4d88bb;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}
.contact-item .value { color: #b0bdd2; font-size: 14px; line-height: 1.6; }
.footer-logo-col { display: flex; justify-content: flex-end; align-items: center; align-self: stretch; margin-top: -20px; }
.footer-logo-wrap { width: 155px; height: 155px; transform: translateX(-20px); }
.footer-logo-wrap img { width: 100%; height: 100%; object-fit: contain; opacity: 0.92; display: block; }
.footer-divider { border: none; border-top: 1px solid #1a2438; margin-bottom: 10px; }
.footer-copy { font-size: 11px; color: #6b7fa0; margin: 0; text-align: right; }
.footer-col:nth-child(3) { padding-left: 98px; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col:nth-child(3) { padding-left: 0; }
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 600px) {
  #site-nav .inner { flex-wrap: wrap; height: auto; padding: 10px 16px; gap: 8px; }
  .nav-links { gap: 10px; }
  .nav-links a { font-size: 12px; padding: 6px 10px; }
  #site-header { height: auto; padding: 14px 0; }
  #site-header .logo img { width: 280px; }
  #site-header h1 { font-size: 1.2rem; }
}
