.header-menu-overlay {
position: fixed;
left: 0;
right: 0;
bottom: 0;
z-index: 999;
background: rgba(51, 51, 51, 0.4);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
display: none;
cursor: pointer;
}

.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 0;
position: relative;
}

.site-branding {
display: flex;
justify-content: center;
flex: 0 0 auto;
}

.header-nav__mail-btn {
display: flex;
align-items: center;
justify-content: center;
padding: 0;
color: #0f0f0f;
text-decoration: none;
transition: color 0.3s ease;
position: relative;
z-index: 9997;
}

.header-nav__mail-btn:hover {
color: #0f0f0f;
opacity: 0.7;
}

.header-nav__mail-btn--current {
color: #adadad;
pointer-events: none;
cursor: default;
}

.header-nav__mail-btn--current:hover {
opacity: 1;
}

.header-nav__mail-btn svg {
width: 1.5rem;
height: 1.5rem;
fill: currentColor;
stroke: none;
flex-shrink: 0;
shape-rendering: geometricPrecision;
}

@media (min-width: 768px) {
.header-nav__mail-btn svg {
width: 1.5rem;
height: 1.5rem;
}
}

@media (min-width: 1025px) {
.header-nav__mail-btn svg {
width: 1.75rem;
height: 1.75rem;
}
}

.hamburger-menu-toggle {
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
background: none;
border: none;
cursor: pointer;
padding: 1.5rem;
position: relative;
z-index: 9997;
}

.hamburger-menu-toggle svg {
width: 1.5rem;
height: 1.5rem;
color: #0f0f0f;
flex-shrink: 0;
transition: color 0.3s ease;
}

@media (min-width: 768px) {
.hamburger-menu-toggle svg {
width: 1.5rem;
height: 1.5rem;
}
}

@media (min-width: 1025px) {
.hamburger-menu-toggle svg {
width: 1.75rem;
height: 1.75rem;
}
}

.hamburger-icon-menu {
display: block;
}

.hamburger-icon-close {
display: none;
}

.hamburger-menu-toggle[aria-expanded="true"] .hamburger-icon-menu {
display: none;
}

.hamburger-menu-toggle[aria-expanded="true"] .hamburger-icon-close {
display: block;
}

.hamburger-menu-toggle[aria-expanded="true"] {
background-color: #f5f5f5;
}

.mobile-menu {
display: block;
position: fixed;
right: -100%;
left: auto;
width: 100%;
background: #f5f5f5;
z-index: 10001;
transition: right 0.3s ease;
overflow-y: auto;
padding: 0;
pointer-events: none;
}

.mobile-menu.active {
right: 0;
pointer-events: auto;
}

body.header-menu-resizing .mobile-menu {
transition: none;
}

@media (min-width: 769px) {
.mobile-menu {
max-width: 400px;
width: 100%;
}
}

.mobile-menu-content {
padding: 2rem;
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100%;
overflow-y: auto;
}

.mobile-menu ul {
list-style: none;
margin: 0;
padding: 0;
}

.mobile-menu li {
margin: 0;
border-bottom: 1px solid #9b9b9b;
}

.mobile-menu li:first-child {
border-top: 1px solid #9b9b9b;
}

.mobile-menu a {
display: block;
text-decoration: none;
color: #0f0f0f;
font-weight: 500;
padding: 1rem 0;
transition: color 0.3s ease;
}

.mobile-menu a:hover {
color: #80C476;
}

.menu-link-text {
display: inline-block;
position: relative;
}

.menu-link-text::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 0;
height: 2px;
background: #25af82;
transition: width 0.3s ease;
}

.mobile-menu .menu-link-text::after {
display: none;
}

.mobile-menu .current-menu-item > a,
.mobile-menu .current_page_item > a {
color: #adadad;
pointer-events: none;
cursor: default;
}

.mobile-menu .current-menu-item > a .menu-link-text::after,
.mobile-menu .current_page_item > a .menu-link-text::after {
display: none;
}


