/* =========================================================
   HERO CONTAINER (INSIDE THEME HEADER)
   ========================================================= */
.site-header .mlark-wrap {
	max-width:100vw;
}

.site-header {
  position: relative;
  background: transparent;
	 min-height: 568px;
  height: auto;
	
}


.site-header--hero {
  position: absolute;
  inset: 0;
  
  overflow: hidden;
  z-index: 0;
	max-width:100vw;
}


/* =========================================================
   BACKGROUND + OVERLAY
   ========================================================= */
.site-header-bg {
  position: absolute;
  inset: 0;
   
    background-image:
    radial-gradient(
      55.45% 117.91% at 52.92% -26.28%,
      rgba(1, 26, 54, 0.4) 58%,
      rgba(1, 26, 54, 0.99) 97%
    ),
    var(--site-header-bg);

	background-size: cover;
  background-position: center;
  z-index: 0;
}



/* =========================================================
   UTILITY BAR
   ========================================================= */
.site-header-utility {
  position: relative;
  z-index: 2;
border-bottom: 1px solid #fff;
  font-size: 0.75rem;
}

.site-header-utility,
.site-header-bar {
  position: relative;
  z-index: 2;
	max-width:1200px;
	margin:0 auto;
}


.site-header-utility .utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
}

.site-header-utility a {
  color: #fff;
  text-decoration: none;
  margin-left: 1.25rem;
  opacity: 0.85;
}

.site-header-utility a:hover {
  opacity: 1;
}

/* =========================================================
   MAIN HEADER BAR
   ========================================================= */
.site-header-bar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
}

.utility-left {
	color:white;
}
/* =========================================================
   LOGO
   ========================================================= */
.site-logo img {
  display: block;
  max-height: 100px;
  width: auto;
 background: rgba(7, 28, 56, 0.65);
  padding: 0.4rem 0.6rem;
  border-radius: 4px;

}



/* =========================================================
   NAVIGATION
   ========================================================= */
.site-nav {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.site-nav a:hover {
  text-decoration: underline;
}

/* =========================================================
   CTA
   ========================================================= */
.site-nav .nav-cta {
  border: 1px solid rgba(255,255,255,0.9);
  padding: 0.45rem 0.85rem;
  border-radius: 2px;
  font-weight: 600;
}

.site-nav .nav-cta:hover {
  background: #fff;
  color: #071c38;
}


/* =========================================================
   Footer Card
   ========================================================= */


.site-footer .mlark-wrap{
	max-width:100vw;
	
}


.site-footer-card {
  position: relative;
  padding: 5rem 0 0 0; /* remove bottom padding */
  background: #f7f7f7;
  overflow: visible;
	max-width:100%;
	margin:0 auto;
}

.foot-bar {
  position: relative;
  height: 96px;                 /* thickness of blue bar */
  background: #bfe6fb;
  margin-top: -48px;            /* pull bar upward */
  z-index: 1;
	  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
	width:100%;
	
}


.site-footer-inner {
  position: relative;
  z-index: 2;                   /* sits ABOVE blue bar */
  max-width:1200px!important;
	background: #071c38;
  color: #fff;
  border-radius: 12px;
  padding: 3rem;
  margin-bottom: -48px;         /* pushes card into blue bar */
  box-shadow: 0 30px 60px rgba(7, 28, 56, 0.35);
}

@media (max-width: 900px) {
  .site-footer-inner {
    margin-bottom: -32px;
  }

  .foot-bar {
    height: 64px;
    margin-top: -32px;
  }
}

/* Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Brand */
.footer-logo {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-brand img {
  width: 100%;
  border-radius: 8px;
}

/* Links */
.footer-links h4 {
  margin-top: 0;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Meta */
.footer-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1.5rem;
}

.footer-meta ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.footer-meta a {
  color: #fff;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    flex-direction: column;
    gap: 1rem;
  }
}



/*********************DYNAMIC HERO*/
/* ================================
   Page Hero Header
================================ */
/* ================================
   Page Hero (Refined)
================================ */

.page-hero, .archive-hero{
     position: absolute;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
    align-content: flex-start;
    flex-wrap: wrap;
    flex-direction: column-reverse;

}

.page-hero {
  top: -200px;
		
}

.archive-hero {
  top: 400px;

}


/* Background image */
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02); /* subtle richness */
}

/* Overlay gradient */
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;

  z-index: 1;
}

/* Inner content     padding: 5rem 1.5rem 3.5rem; */
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;

	width:100%
}

/* Breadcrumbs */
.breadcrumbs {
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  opacity: 0.85;
}

.breadcrumbs a {
  color: #fff;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs span {
  margin: 0 0.35rem;
}

/* Title */
.page-title {
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
  max-width: 18ch;
}

/* Mobile tuning */
@media (max-width: 768px) {
  .page-hero {
    min-height: 420px;
  }

  .page-hero-inner {
    padding: 4rem 1.25rem 3rem;
  }

  .page-title {
    font-size: 2.1rem;
  }
}






