/* =========================================================
   Header / Navigation
========================================================= */
.site-header,
.owner-site-header {
    z-index: 80;
    min-height: 64px;
    padding: 6px var(--page-pad);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(239, 216, 204, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(173, 122, 99, 0.18);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background: rgba(255, 250, 246, 0.9);
}

.owner-site-header {
    position: sticky;
    top: 0;
}

.logo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-wrap img,
.owner-logo img {
    height: 46px;
    width: auto;
    display: block;
    mix-blend-mode: multiply;
}

.logo-text {
    font-family: Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--deep-brown);
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-decoration: none;
    text-transform: none;
}

.logo-wrap:hover .logo-text {
    text-decoration: none;
}

.main-nav,
.owner-top-nav {
    display: flex;
    align-items: center;
}

.main-nav {
    gap: 30px;
}

.owner-top-nav {
    gap: 12px;
}

.main-nav a {
    text-decoration: none;
    color: var(--espresso);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.nav-button,
.owner-link,
.contact-form button {
    background: var(--rose) !important;
    color: var(--deep-brown) !important;
    border: 1px solid rgba(173, 122, 99, 0.18);
}

.nav-button:hover,
.owner-link:hover,
.contact-form button:hover {
    background: var(--nude) !important;
}

.site-header .main-nav .owner-link {
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    color: var(--espresso) !important;
    opacity: 0.8;
}

.site-header .main-nav .nav-button {
    padding: 10px 20px !important;
    border-radius: 999px;
}

.owner-top-nav a,
.owner-sticky-nav button {
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--rose);
    color: var(--deep-brown);
    text-decoration: none;
    font-weight: 900;
    border: 1px solid rgba(173, 122, 99, 0.18);
    cursor: pointer;
}

.owner-top-nav a:hover,
.owner-sticky-nav button:hover {
    background: var(--nude);
}

.owner-top-nav .owner-logout-link {
    width: 34px;
    height: 34px;
    min-height: 34px;
    padding: 0 !important;
    display: grid;
    place-items: center;
    border-radius: 50%;
}

.logout-icon svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mobile-menu-btn {
    display: none;
}