.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 26px 0;
    background: transparent;
}

.header-inner {
    width: min(1380px, calc(100% - 80px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 240px 1fr 240px;
    align-items: center;
    gap: 32px;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    width: fit-content;
    color: #263028;
    text-decoration: none;
}

.brand-name {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.01em;
    font-style: italic;
}

.brand-profession {
    margin-top: 7px;
    padding-left: 2px;
    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.34em;
    color: #7d8578;
}

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(22px, 2.2vw, 42px);
}

.main-navigation a {
    position: relative;
    padding: 10px 0;
    color: #333a34;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition:
        color 280ms ease,
        opacity 280ms ease;
}

.main-navigation a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 0;
    height: 1px;
    background: #77816b;
    transform: translateX(-50%);
    transition: width 280ms ease;
}

.main-navigation a:hover {
    color: #6f7964;
}

.main-navigation a:hover::after {
    width: 18px;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.appointment-button {
    min-height: 46px;
    padding: 0 20px 0 23px;
    border: 1px solid rgba(104, 116, 94, 0.22);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: rgba(111, 124, 98, 0.92);
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(63, 72, 57, 0.08);
    transition:
        transform 280ms ease,
        background 280ms ease,
        box-shadow 280ms ease;
}

.appointment-button:hover {
    transform: translateY(-2px);
    background: #626e58;
    box-shadow: 0 12px 34px rgba(63, 72, 57, 0.14);
}

.appointment-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 300;
    transition: transform 280ms ease;
}

.appointment-button:hover .appointment-arrow {
    transform: translateX(3px);
}

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    width: 22px;
    height: 1px;
    margin: 6px auto;
    background: #303831;
}