/* =========================
   ONLINE FONT IMPORT
========================= */

@import url("https://db.onlinewebfonts.com/c/e4a906026ad88beb89cc167a859f9083?family=BloggerSans-Medium");


/* =========================
   ROOT VARIABLES
========================= */

:root {
    --color-bg: #F6F1EB;
    --color-bg-light: #FFFFFF;

    --color-text-primary: #393939;
    --color-text-secondary: #929292;

    --color-accent: #949E45;
    --color-accent-hover: #A3AA5E;

    --container-width: 1440px;
    --container-padding: 20px;

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;

    --transition: 0.3s ease;
}


/* =========================
   FONTS
========================= */

@font-face {
    font-family: "Garamond";
    src:
        local("Garamond Italic"),
        url("./fonts/garamond-italic.woff2") format("woff2");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Blogger Sans";
    src:
        local("Blogger Sans"),
        local("BloggerSans"),
        url("./fonts/blogger-sans.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Blogger Sans";
    src:
        local("Blogger Sans Medium"),
        local("BloggerSans-Medium"),
        url("./fonts/blogger-sans.woff2") format("woff2"),
        url("https://db.onlinewebfonts.com/t/e4a906026ad88beb89cc167a859f9083.woff2") format("woff2"),
        url("https://db.onlinewebfonts.com/t/e4a906026ad88beb89cc167a859f9083.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Blogger Sans";
    src:
        local("Blogger Sans Bold"),
        local("BloggerSans-Bold"),
        url("./fonts/blogger-sans-bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--color-bg);
    color: var(--color-text-primary);
    font-family: "Blogger Sans", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea {
    font-family: inherit;
    border: none;
    outline: none;
    background: none;
}

ul,
ol {
    list-style: none;
}


/* =========================
   CONTAINER
========================= */

.container {
    width: 100%;
    max-width: calc(var(--container-width) + (var(--container-padding) * 2));
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}


/* =========================
   TYPOGRAPHY
========================= */

h1,
.heading-xl {
    font-family: "Garamond", serif;
    font-size: 64px;
    line-height: 1.1;
    font-style: italic;
    font-weight: 400;
}

h2,
.heading-lg {
    font-family: "Garamond", serif;
    font-size: 36px;
    line-height: 1.2;
    font-style: italic;
    font-weight: 400;
}

h3,
.heading-md {
    font-family: "Blogger Sans", sans-serif;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
}

.text-base {
    font-family: "Blogger Sans", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}

.button-text {
    font-family: "Blogger Sans", sans-serif;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
}

.caption {
    font-size: 14px;
    line-height: 1.4;
    color: var(--color-text-secondary);
}


/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--color-accent);
    color: #fff;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background: var(--color-accent-hover);
}


/* =========================
   HEADER DESKTOP
========================= */


.site-header::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -34px;

    width: 100%;
    height: 58px;

    background-image: url('/wp-content/uploads/2026/05/background-semiz.png');
    background-repeat: repeat-x;
    background-position: bottom center;
    background-size: auto 58px;

    pointer-events: none;
    z-index: 1;
}
.site-header::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;

    width: 100%;
    height: 58px;

    background-repeat: repeat-x;
    background-position: bottom center;
    background-size: auto 58px;

    pointer-events: none;
    z-index: 1;
}
.site-header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;


      position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
    /* position: relative; */
    width: 100%;
    background-image: url('/wp-content/uploads/2026/05/union-one.png');
    background-repeat: repeat-x;
    background-size:auto 100px;
    z-index: 20;
}


.header-inner {
    width: 100%;
    max-width: 1328px;
    min-height: 88px;
    margin: 0 auto;
    padding: 18px 20px 38px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 42px;
    position: relative;
    z-index: 2;
}

.header-nav,
.header-menu,
.header-right {
    display: flex;
    align-items: center;
}

.header-nav-left {
    justify-content: flex-start;
}

.header-right {
    justify-content: center;
    gap: 30px;
}

.header-menu {
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-menu li {
    margin: 0;
    padding: 0;
}

.header-menu a {
    font-family: "Blogger Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--transition);
}

.header-menu a:hover {
    color: #F6F1EB;
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo img,
.custom-logo-link img {
    width: auto;
    max-width: 118px;
    height: auto;
    display: block;
    margin-bottom: 15px;
}

.header-phone {
    font-family: "Blogger Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
    white-space: nowrap;
}

.header-btn {
    width: 154px;
    height: 39px;
    border-radius: 999px;
    background: #F6F1EB;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Blogger Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #949E45;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
}

.header-btn:hover {
    background: #ffffff;
}


/* =========================
   MOBILE MENU BUTTONS
========================= */

.mobile-menu-toggle,
.mobile-menu-close {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    position: relative;
    cursor: pointer;
    z-index: 5;
}

.mobile-menu-toggle span,
.mobile-menu-close span {
    position: absolute;
    left: 6px;
    width: 30px;
    height: 2px;
    background: #949E45;
    border-radius: 2px;
}

.mobile-menu-toggle span:first-child {
    top: 14px;
}

.mobile-menu-toggle span:last-child {
    bottom: 11px;
}

.mobile-menu-close span:first-child {
    top: 20px;
    transform: rotate(45deg);
}

.mobile-menu-close span:last-child {
    top: 20px;
    transform: rotate(-45deg);
}


/* =========================
   MOBILE MENU
========================= */

.mobile-menu {
    display: none;
}


/* =========================
   TABLET / MOBILE
========================= */

@media (max-width: 1024px) {

    
.site-header {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        min-height: 74px;
        background-image:
            url('/wp-content/uploads/2026/05/union2.png');

        background-repeat: repeat, repeat;
        background-size: auto, 4px 4px;

        z-index: 100;
        overflow: visible;
    }

 .site-header::after {
        display: none;
    }

    .header-inner {
        min-height: 92px;
        padding: 18px 20px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .header-nav,
    .header-right {
        display: none;
    }

    .header-logo {
        justify-content: flex-start;
    }

    .header-logo img,
    .custom-logo-link img {
        max-width: 88px;
        margin-bottom: 0;
    }

    .mobile-menu-toggle {
        display: block;
        margin-left: auto;
    }

.mobile-menu {
    display: flex;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    z-index: 999;

    background: #949E45;

    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        transform .35s ease,
        opacity .35s ease,
        visibility .35s ease;

    flex-direction: column;
    overflow-y: auto;

    isolation: isolate;
}

    body.menu-open .mobile-menu {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-menu-top {
        height: 104px;
        min-height: 104px;
        background: #F6F1EB;
        position: relative;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        padding: 18px 20px 0;
        flex-shrink: 0;
        overflow: hidden;
    }

    /* .mobile-menu-top::after {
        content: "";
        position: absolute;
        left: -41px;
        right: 0;
        bottom: -1px;
        width: calc(100% + 82px);
        height: 36px;
        background: radial-gradient(circle at 50% 100%, #949E45 30px, transparent 31px);
        background-size: 82px 36px;
        background-repeat: repeat-x;
        pointer-events: none;
        z-index: 1;
    } */

    .mobile-menu-logo {
        position: relative;
        z-index: 2;
    }

    .mobile-menu-logo img,
    .mobile-menu-logo .custom-logo-link img {
        max-width: 88px;
        width: auto;
        height: auto;
        display: block;
        margin: 0;
    }

    .mobile-menu-close {
        display: block;
        position: relative;
        z-index: 2;
    }

    .mobile-menu-content {
        flex: 1;
        min-height: calc(100dvh - 104px);
        padding: 88px 20px 32px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mobile-menu-list {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 38px;
    }

    .mobile-menu-list + .mobile-menu-list {
        margin-top: 38px;
    }

    .mobile-menu-list li {
        margin: 0;
        padding: 0;
    }

    .mobile-menu-list a {
        font-family: "Blogger Sans", sans-serif;
        color: #F6F1EB;
        font-size: 24px;
        line-height: 1.2;
        font-weight: 500;
        text-align: center;
        text-decoration: none;
        letter-spacing: .2px;
    }

    .mobile-menu-phone {
        margin-top: auto;
        padding-top: 76px;
        color: #F6F1EB;
        font-family: "Blogger Sans", sans-serif;
        font-size: 18px;
        line-height: 1.2;
        font-weight: 500;
        text-decoration: underline;
        text-underline-offset: 4px;
        white-space: nowrap;
    }

    .mobile-menu-btn {
        width: 100%;
        max-width: 335px;
        min-height: 48px;
        margin-top: 50px;
        border-radius: 999px;
        background: #F6F1EB;
        color: #949E45;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-family: "Blogger Sans", sans-serif;
        font-size: 16px;
        line-height: 1;
        font-weight: 500;
        text-decoration: none;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {



    h1,
    .heading-xl {
        font-size: 32px;
    }

    h2,
    .heading-lg {
        font-size: 24px;
    }

    h3,
    .heading-md {
        font-size: 18px;
    }

    body,
    .text-base,
    .button-text {
        font-size: 16px;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 480px) {
    .header-inner {
        min-height: 74px;
        padding: 18px 20px;
    }

    .site-header {
        min-height: 74px;
    }

    .mobile-menu-top {
        height: 104px;
        min-height: 104px;
    }

    .mobile-menu-content {
        padding-top: 82px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 38px;
    }

    .mobile-menu-list {
        gap: 34px;
    }

    .mobile-menu-list + .mobile-menu-list {
        margin-top: 34px;
    }

    .mobile-menu-list a {
        font-size: 23px;
    }

    .mobile-menu-phone {
        padding-top: 74px;
        font-size: 17px;
    }

    .mobile-menu-btn {
        max-width: 335px;
        min-height: 48px;
        margin-top: 50px;
    }
}


.desktop-logo {
    display: block;
}

.mobile-logo {
    display: none;
}

@media (max-width: 1024px) {
   

    .desktop-logo {
        display: none;
    }

    .mobile-logo {
        display: block;
    }

    .mobile-logo img {
        width: auto;
        max-width: 92px;
        height: auto;
        display: block;
    }

}



.desktop-logo {
    display: block;
}

.mobile-logo {
    display: none;
}

@media (max-width: 1024px) {
    .site-header {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        min-height: 78px;
        background-image:
            var(--mobile-header-bg);
        /* background-repeat: repeat-x; */
        background-size: cover;
        z-index: 100;
        overflow: visible;
    }

    .site-header::after {
        display: none;
    }

    .header-inner {
        min-height: 74px;
        padding: 11px 20px;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }

    .desktop-logo {
        display: none;
    }

    .mobile-logo {
        display: block;
    }

    .mobile-logo img {
        width: auto;
        max-width: 92px;
        height: auto;
        display: block;
        margin: 0;
    }

    .header-logo img,
    .custom-logo-link img {
        margin-bottom: 0;
    }

    .mobile-menu-toggle {
        display: block;
        margin-left: auto;
    }

    .mobile-menu-toggle span {
        background: #ffff;
    }

    .mobile-menu {
        display: flex;
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100dvh;
        z-index: 999;
        background: #949E45;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform .35s ease, opacity .35s ease, visibility .35s ease;
        flex-direction: column;
        overflow-y: auto;
        isolation: isolate;
    }

    /* .mobile-menu::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(255,255,255,0.12) 0.7px, transparent 0.7px);
        background-size: 4px 4px;
        opacity: .35;
        pointer-events: none;
        z-index: -1;
    } */

    body.menu-open .mobile-menu {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-menu-top {
        height: 104px;
        min-height: 104px;
         background-image: url("/wp-content/uploads/2026/05/union30.png");
        position: relative;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        padding: 18px 20px 0;
        flex-shrink: 0;
        background-color: #949E45;
        overflow: hidden;
        background-size: cover;
    }


    .mobile-menu-logo {
        display: block;
        position: relative;
        z-index: 2;
    }

    .mobile-menu-logo img {
        width: auto;
        max-width: 92px;
        height: auto;
        display: block;
        margin: 0;
    }

    .mobile-menu-close {
        display: block;
        position: relative;
        z-index: 2;
    }

    .mobile-menu-close span {
        background: #949E45;
    }
}

@media (max-width: 1024px) {
    .header-logo .desktop-logo {
        display: block;
    }

    .header-logo .mobile-logo {
        display: none;
    }

    .header-logo .desktop-logo img,
    .header-logo .custom-logo-link img {
        max-width: 92px;
        margin: 0;
    }

    .mobile-menu-logo {
        display: block;
    }

    .mobile-menu-logo img {
        max-width: 92px;
        height: auto;
        display: block;
        margin: 0;
    }
}


.hero,
.site-wrapper,
main {
  overflow: visible;
}






/* test */


