.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: var(--nav-blur, blur(14px));
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.03);
}

/* --------- NAVBAR --------- */


.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  margin: 0 auto;
  padding-right:20px;
  padding-inline: 1rem;
}

  /* .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
} */

.site-nav {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.site-nav a {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  position: relative;
  padding-bottom: 0.25rem;
  transition: color .3s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transition: width var(--transition-fast, .0.2s ease);
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--nav-link-hover, var(--text));
}

.site-nav a:hover::after,
.site-nav a:focus::after {
  width: 100%;
}

/* ============================
   HAMBURGER BUTTON
============================ */

.nav-toggle {
  display: none;
  cursor: pointer;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  padding: 0.3rem 0.9rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: #ffffff;
  color: var(--text-main);
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--nav-bg);
  backdrop-filter: var(--nav-blur);
  padding: 1.5rem 1.25rem;
  display: none;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 9999;
  border-bottom:2px solid #103c58;
  text-align:center;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a{
  text-decoration: none;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color:black;
  text-transform:uppercase;
  font-weight:600;
}

.mobile-nav a:hover{
  color:#103c58;
}

.brand {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--text);
}


.brand {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-muted);

}

.brand-subtitle-2 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  display:none;
}

/* ============================
   TRUE INLINE PNG LOGO
============================ */

.brand {
  display: flex;
  flex-direction: column;
}

.brand-title {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}

.brand-mark {
  height:8em;           /* ties image to font size */
  width: auto;
  display: inline-block;
  vertical-align: baseline;
  border-radius:4px;
}

.brand-title {
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-start; /* 👈 important */
  text-align: left;
}
.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* 👈 force left */
}



/* MOBILE MEDIA QUERIES */
@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }
  .site-nav {
    display: none !important; /* hide desktop nav */
  }
  .brand-subtitle{
    display:none;
  }

  .brand-subtitle-2{
    display:block;
  }

  .brand-title img{
    display:none;
  }

}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none !important; /* hide desktop nav */
  }
}



