/* HEADER WRAPPER */
.site-header {
  background: #ffffff;        /* WHITE BG */
  color: #B04837;             /* MAROON TEXT */
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 9999;
  border-bottom: 1px solid #E6D5D2; /* light maroon tint line */
}

.wrap {
  width: 95%;
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  height: 70px;
}

/* BRAND — LEFT */
.brand {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  color: #B04837; /* MAROON */
  text-decoration: none;
  white-space: nowrap;
}

.logo {
  width: 42px;
  height: 42px;
  object-fit: cover;
}

.brand-text h1 {
  font-size: 18px;
  margin: 0;
  color: #B04837; /* MAROON */
}

.subtitle {
  margin: 0;
  font-size: 11px;
  color: #B04837; /* MAROON */
  opacity: .8;
}

/* NAV — RIGHT */
.main-nav {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.main-nav ul {
  display: flex;
  gap: 0; /* forced no gap */
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
}

.main-nav a {
  color: #B04837; /* MAROON */
  text-decoration: none;
  font-size: 15px;
  padding: 0 10px;
}

.main-nav a:hover {
  color: #8E3A30; /* darker maroon */
}

/* DONATE BUTTON */
.donate-cta {
  background: #C89B5A;
  padding: 6px 12px;
  border-radius: 6px;
  color: #3b1d20 !important;
  font-weight: 700;
}

/* MOBILE */
.hamburger {
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  background: none;
  border: none;
  color: #B04837; /* MAROON */
}

@media (max-width: 1000px) {

  .hamburger {
    display: block;
  }

  .main-nav {
    position: fixed;
    right: -100%;
    top: 70px;
    width: 70%;
    height: calc(100vh - 70px);
    background: #ffffff;
    padding: 30px 20px;
    transform: none;
    transition: .3s;
    border-left: 2px solid #E6D5D2;
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0px;
  }

  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid #F5ECEA;
  }
}

/* FORCE remove gaps */
.site-header .main-nav ul {
  gap: 0 !important;
}
