﻿:root {
    --container: 1200px;
    --gap: 24px;
    --text: #666666;
    --accent: #f59e0b;
    --accent_h: #d97706;
    --cta: #bd0e0e;
    --radius-hero: 22px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    color: var(--text);
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #000;
}

.header-inner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    background-color: #fff;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: var(--gap);
    width: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.075);
    padding: 0 24px;
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
}

.header-inner.shrink {
    height: 56px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 auto;
    min-width: 0;
}

.hamb-icon-open {
    display: none;
    flex: 0 0 auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    z-index: 110;
}

.hamb-bar {
    display: block;
    width: 26px;
    height: 3px;
    background: #111;
    border-radius: 2px;
    pointer-events: none;
}

.site-logo img,
.site-logo svg {
    height: 60px;
    width: auto;
    display: block;
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-logo.shrink img,
.site-logo.shrink svg {
    height: 40px;
}

.site-nav .menu-item-has-children {
    position: relative;
}

.site-nav .menu-item-has-children .sub-menu {
    display: none;
    position: absolute;
    top: 50px;
    left: 32px;
    min-width: 200px;
    background: #fff;
    border: 1px solid #dedede;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    padding: 12px 16px;
    list-style: none;
    transition: 0.2s ease;
}

.site-nav .menu-item-has-children .sub-menu li {
    margin-bottom: 6px;
}

.site-nav .menu-item-has-children .sub-menu li a {
    font-family: "Poppins", sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em !important;
    font-size: 16px !important;
    color: #000;
    transition: color 0.15s ease !important;
}

.site-nav .menu-item-has-children .sub-menu li a:hover,
.site-nav .menu-item-has-children .sub-menu li.current-menu-item a,
.site-nav .menu-item-has-children .sub-menu li.current-menu-page a {
    color: var(--accent);
}

.site-nav .menu-item-has-children .sub-menu li:last-child {
    margin-bottom: 0;
}

.site-nav .menu-item-has-children:hover .sub-menu {
    display: block;
}

.menu {
    list-style: none;
    margin: 0;
    padding: 8px 16px;
    display: flex;
    height: 100%;
}

.menu > li {
    padding: 8px 24px;
}

.menu > li > a {
    font-family: "Poppins", sans-serif;
    display: inline-block;
    color: #000 !important;
    padding: 10px 8px;
    font-weight: 600;
    letter-spacing: 0.02em;
    font-size: 16px;
    transition: color 0.15s ease;
    position: relative;
}

.menu > li > a::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 0;
    height: 4px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.menu > li > a:hover {
    color: var(--accent) !important;
}

.menu > li > a:hover::after {
    width: 100%;
}

.menu > li.current-menu-item > a,
.menu > li.current-menu-ancestor > a,
.menu > li.current_page_item > a,
.menu > li > a[aria-current="page"] {
    color: var(--accent) !important;
}

.menu > li.current-menu-item > a::after,
.menu > li.current-menu-ancestor > a::after {
    width: 100%;
}

.cover-hero-home {
    position: relative;
    background: center/cover no-repeat var(--cover-url);
    height: 700px;
    display: grid;
    place-items: center;
    padding: 72px 16px;
    color: #fff;
}

.cover-hero-home::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-home-card {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: min(1100px, calc(100% - 32px));
    background: rgba(255, 255, 255, 0.8);
    color: #111;
    border-radius: var(--radius-hero);
    padding: 40px 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(4px);
}

.hero-home-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    margin: 0 0 14px 0;
}

.hero-home-title span {
    color: var(--accent);
}

.hero-home-text {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    color: #333;
    margin: 18px 0 24px;
    padding-left: 24px;
}

.hero-home-close {
    padding-inline-start: 0 !important;
    margin: 0;
}

.hero-home-close li {
    font-family: "Montserrat", sans-serif;
    position: relative;
    padding: 0 0 8px 44px;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.45;
    text-decoration: underline;
    list-style: none;
    color: var(--cta);
}

.hero-home-close li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 28px;
    height: 28px;
    background: url("/brands/shared/img/hand-icon.png") no-repeat center/contain;
}

.hero-home-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.12s ease;
}

.btn-primary {
    background: var(--accent);
    color: #111;
    padding: 14px 40px !important;
    line-height: 1.35 !important;
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.25);
    border: 1px solid #000;
}

.btn-primary:hover {
    color: #ffffff;
    background: var(--accent_h);
    transform: translateY(-1px);
    box-shadow: 0 7px 10px rgba(0, 0, 0, 0.45);
}

.btn-ghost {
    background: #fff;
    color: #111;
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.25);
    border: 1px solid #ccc;
}

.btn-ghost:hover {
    color: var(--accent);
    border-color: #cfcfcf;
    transform: translateY(-1px);
    box-shadow: 0 7px 10px rgba(0, 0, 0, 0.45);
}

@media (max-width: 1300px) {
    .site-nav {
        display: none !important;
    }

    .header-inner .hamb-icon-open {
        display: flex !important;
    }

    .site-logo svg {
        max-width: calc(100vw - 88px);
    }
}

@media (min-width: 1301px) {
    .site-nav {
        position: static;
        display: block;
        border: 0;
    }

    .menu > li > a {
        padding: 8px 0;
    }
}

@media (max-width: 640px) {
    .hero-home-card {
        padding: 28px 22px;
    }
}

@media (max-width: 600px) {
    .header-inner {
        height: 56px;
        padding: 0 20px 0 16px;
    }

    .header-inner.shrink {
        height: 45px;
    }

    .hamb-icon-open {
        width: 40px;
        height: 40px;
    }

    .hamb-bar {
        width: 24px;
    }

    .site-logo img,
    .site-logo svg {
        height: 45px;
    }

    .site-logo.shrink img,
    .site-logo.shrink svg {
        height: 30px;
    }
}

@media (max-width: 385px) {
    .cover-hero-home {
        height: 880px !important;
    }
}
