/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 04 2026 | 13:04:34 */
/* =========================
   GSO HEADER
   ========================= */

.gso-site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 14px 0 0;
  background: linear-gradient(to bottom, rgba(243, 241, 236, 0.92), rgba(243, 241, 236, 0.78));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.gso-site-header__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 72px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 2px solid #111;
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.08);
}

.gso-site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #111;
  min-width: 0;
}

.gso-site-header__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 42px;
  padding: 0 12px;
  border: 2px solid #111;
  border-radius: 999px;
  background: #f5cb17;
  color: #111;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  box-shadow: 3px 3px 0 rgba(17, 17, 17, 0.1);
}

.gso-site-header__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.gso-site-header__brand-text strong {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #111;
}

.gso-site-header__brand-text small {
  margin-top: 4px;
  font-size: 11px;
  color: #6a6259;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.gso-site-header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.gso-site-header__nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  color: #111;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.gso-site-header__nav a:hover {
  background: rgba(17, 17, 17, 0.06);
}

.gso-site-header__nav a.gso-site-header__cta {
  border: 2px solid #111;
  background: #f5cb17;
  box-shadow: 3px 3px 0 rgba(17, 17, 17, 0.1);
}

.gso-site-header__nav a.gso-site-header__cta:hover {
  background: #111;
  color: #fffdf8;
}

/* Tablet / small desktop */
@media (max-width: 860px) {
  .gso-site-header {
    padding-top: 10px;
  }

  .gso-site-header__inner {
    width: min(1180px, calc(100% - 28px));
    min-height: auto;
    padding: 12px 14px;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 14px;
  }

  .gso-site-header__brand {
    width: 100%;
  }

  .gso-site-header__brand-text small {
    display: none;
  }

  .gso-site-header__brand-text strong {
    font-size: 14px;
  }

  .gso-site-header__logo {
    min-width: 52px;
    height: 38px;
    font-size: 18px;
  }

  .gso-site-header__nav {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
    padding-top: 4px;
  }

  .gso-site-header__nav a {
    min-height: 40px;
    padding: 0 12px;
    background: #f7f4ee;
  }

  .gso-site-header__nav a.gso-site-header__cta {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 560px) {
  .gso-site-header__inner {
    border-radius: 18px;
  }

  .gso-site-header__nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .gso-site-header__nav a {
    width: 100%;
    min-height: 42px;
    padding: 0 10px;
    text-align: center;
    font-size: 13px;
  }

  .gso-site-header__nav a.gso-site-header__cta {
    box-shadow: 2px 2px 0 rgba(17, 17, 17, 0.1);
  }
}