body{
	padding-top: 64px;
}
body.home {
	padding-top: 0px;
}
@media (max-width: 1024px) {
	body{
		padding-top: 0px;
	}	
}
/* Default header (inner pages): simple fixed bar, primary bg, light text, white logo */
.site-header--default {
  position: relative;
  width: 100%;
  max-width: 1277px;
  margin: 0 auto;
  padding: 12px var(--container-padding);
  box-sizing: border-box;
  background-color: transparent;
  z-index: 110;
}

/* Desktop: fixed header on inner pages (home keeps its own fixed + scroll behavior) */
@media (min-width: 1025px) {
  .site-header--default:not(.site-header--home) {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1277px;
    margin: 0;
  }
}

/* Homepage: header hidden until scroll, then slides down from top */
.site-header--home {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  width: 100%;
  max-width: 1277px;
  margin: 0 auto;
  box-sizing: border-box;
}

.site-header--home.site-header--visible {
  transform: translate(-50%, 0);
}

.site-header--default::before {
  content: '';
  position: absolute;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  top: 0;
  bottom: 0;
  background-color: var(--color-primary);
  z-index: -1;
}

.site-header--default .container {
  max-width: none;
  width: 100%;
  padding: 0;
}

.site-header--default .header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  flex-direction: row-reverse;
}

[dir="rtl"] .site-header--default .header-inner {
  flex-direction: row;
}

.site-header--default .site-logo {
  display: none;
}

.site-header__logo-bar {
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.site-header__logo-bar img {
  height: 100%;
  width: auto;
  max-height: 40px;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: brightness(0) invert(1);
}

.site-header--default .main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.site-header--default .main-menu a {
  color: var(--color-bg);
  text-decoration: none;
  font-family: var(--font-ibm);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
	    transition: transform 0.25s ease, color 0.25s ease;
    display: inline-block; /* Important for transform */
	transition: font-weight 0.3s ease;
}

.site-header--default .main-menu a:hover {
transform: scale(1.05);
}

/* Hamburger: hidden on desktop, shown at 1024px and below (same as hero) */
.site-header__hamburger {
  display: none;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  line-height: 0;
}

.site-header__hamburger img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Contact us link: hidden on desktop, shown on tablet/mobile (≤1024px) on the left */
.site-header__contact-link {
  display: none;
  align-items: center;
  gap: 8px;
  color: var(--color-bg);
  text-decoration: none;
  font-family: var(--font-ibm, inherit);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  transition: opacity 0.2s ease;
}

.site-header__contact-link:hover {
  opacity: 0.9;
  color: var(--color-bg);
}

.site-header__contact-icon {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

/* Fullscreen menu overlay – same design as hero block */
.site-header__fullscreen-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

body.site-header--menu-open .site-header__fullscreen-menu {
  opacity: 1;
  visibility: visible;
}

.site-header__fullscreen-menu-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: 3rem 2rem;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

body.site-header--menu-open .site-header__fullscreen-menu-inner {
  opacity: 1;
  transform: translateY(0);
}

.site-header__close-menu {
  display: none;
}

.site-header__close-menu:hover {
  opacity: 0.85;
}

.site-header__close-menu img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.site-header__fullscreen-menu-logo {
  max-width: 200px;
  height: auto;
  object-fit: contain;
}

.site-header__fullscreen-nav {
  width: 100%;
}

.site-header__fullscreen-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.site-header__fullscreen-menu-list a {
  color: var(--color-bg);
  text-decoration: none;
  font-family: var(--font-ibm);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  display: block;
  padding: 0.25rem 0;
  transition: opacity 0.2s;
}

.site-header__fullscreen-menu-list a:hover {
  opacity: 0.85;
}

/* ==========================================================================
   max-width 1024px – hide desktop nav, show hamburger (same breakpoint as hero)
   ========================================================================== */
@media (max-width: 1024px) {
	.site-header__logo-bar img{
		min-height: 100%;
	}
	.site-header--default .header-inner{
		min-height: auto;
		justify-content: space-between;
	}
	.site-header__logo-bar{
		padding: 0;
		height: 40px;
	}
  .site-header--default .main-menu {
    display: none;
  }

  /* Show contact us link on the left (tablet/mobile) */
  .site-header__contact-link {
    display: flex;
	  flex-direction: column;
  }

  .site-header__fullscreen-menu-inner {
    width: 100%;
  }
	.site-header--default{
		padding: 16px var(--container-padding) 16px;
	}
	/* 1024 and below: header static (not fixed) on inner pages */
	.site-header--default:not(.site-header--home) {
		position: relative;
		left: auto;
		transform: none;
	}
  .site-header.site-header--default.site-header--home.site-header--visible{
    display: none;
  }
}

@media (max-width: 768px) {
	.site-header--default{
		padding: 16px 24px;
	}
}
