/* ── SHARED FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Merriweather:ital,wght@0,300;0,400;0,700;1,300;1,400&family=Barlow+Condensed:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --navy:        #0d1b2a;
  --navy-mid:    #1a2e44;
  --teal:        #14b8a6;
  --teal-bright: #0d9488;
  --white:       #ffffff;
}

/* ── NAVIGATION ── */
site-nav {
  display: block;
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(20, 184, 166, 0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 96px;
  width: auto;
  background: white;
  border-radius: 4px;
  padding: 2px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--teal); }

.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--teal);
  border: none;
  padding: 10px 22px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--teal-bright); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(20,184,166,0.35);
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

/* ── NAV RESPONSIVE ── */
@media (max-width: 1100px) {
  nav { padding: 10px 22px; }
  .nav-logo img { height: 72px; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 13px; }
  .nav-cta { padding: 9px 16px; }
}

@media (max-width: 900px) {
  nav { flex-wrap: wrap; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    order: 4;
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 0;
    margin-top: 12px;
    padding: 12px 0;
    border-top: 1px solid rgba(20,184,166,0.20);
    background: rgba(13,27,42,.98);
  }
  nav.is-open .nav-links { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 12px 4px;
    font-size: 16px;
  }
  .nav-cta { margin-left: auto; }
}

@media (max-width: 640px) {
  nav { padding: 8px 14px; }
  .nav-logo img { height: 56px; }
  .nav-cta { display: none; }
}

/* ── FOOTER ── */
site-footer {
  display: block;
}

footer {
  background: #060e17;
  padding: 60px 40px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

footer img {
  height: 120px;
  margin-bottom: 20px;
  background: white;
  border-radius: 4px;
  padding: 3px;
  opacity: 0.8;
}

footer p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.25);
  line-height: 1.8;
  text-transform: uppercase;
}

footer .footer-tagline {
  font-family: 'Merriweather', serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 20px;
}

footer .social-link {
  display: inline-block;
  margin-bottom: 16px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

footer .social-link:hover { opacity: 1; }
