.op-site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    width: 100%;
    border-bottom: 1px solid rgba(223, 230, 225, 0.68);
    background: rgba(248, 250, 248, 0.78);
    box-shadow: 0 8px 30px rgba(46, 68, 56, 0.04);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
    backdrop-filter: blur(22px) saturate(150%);
}

.op-site-header .op-container {
    width: min(calc(100% - 2rem), 78rem);
    margin-inline: auto;
}

.op-header-inner {
    display: flex;
    min-height: 4.75rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.op-site-header .op-brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    text-decoration: none;
}

.op-site-header .op-brand img {
    display: block;
    width: auto;
    height: 2.45rem;
}

.op-desktop-nav {
    display: none;
    align-items: center;
    gap: 0.35rem;
}

.op-nav-link {
    position: relative;
    display: inline-flex;
    min-height: 2.85rem;
    align-items: center;
    padding: 0.55rem 0.95rem;
    color: var(--op-color-forest-900, #2e4438);
    border-radius: 999px;
    font-weight: 720;
    text-decoration: none;
    transition: background 180ms ease, transform 180ms ease;
}

.op-nav-link::after {
    position: absolute;
    right: 0.95rem;
    bottom: 0.35rem;
    left: 0.95rem;
    height: 2px;
    border-radius: 999px;
    background: var(--op-color-forest-900, #2e4438);
    content: "";
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity 180ms ease, transform 180ms ease;
}

.op-nav-link:hover {
    background: rgba(164, 183, 171, 0.16);
}

.op-nav-link:hover::after {
    opacity: 0.8;
    transform: scaleX(1);
}

.op-header-account {
    display: inline-flex;
    min-height: 2.95rem;
    align-items: center;
    gap: 0.7rem;
    margin-left: 0.25rem;
    padding: 0.65rem 1rem;
    color: #fff;
    border-radius: 999px;
    background: var(--op-color-forest-900, #2e4438);
    box-shadow: 0 10px 24px rgba(46, 68, 56, 0.16);
    font-weight: 780;
    text-decoration: none;
    transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.op-header-account svg {
    width: 1.05rem;
    height: 1.05rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    transition: transform 180ms ease;
}

.op-header-account:hover {
    color: #fff;
    background: var(--op-color-forest-700, #466353);
    box-shadow: 0 13px 28px rgba(46, 68, 56, 0.2);
    transform: translateY(-1px);
}

.op-header-account:hover svg {
    transform: translateX(2px);
}

.op-public-menu-toggle {
    display: inline-grid;
    width: 2.9rem;
    height: 2.9rem;
    place-content: center;
    gap: 0.28rem;
    padding: 0;
    border: 1px solid rgba(223, 230, 225, 0.88);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 7px 20px rgba(46, 68, 56, 0.08);
    cursor: pointer;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.op-public-menu-toggle span {
    display: block;
    width: 1.15rem;
    height: 2px;
    border-radius: 10px;
    background: var(--op-color-forest-900, #2e4438);
}

.op-drawer-overlay {
    position: fixed;
    z-index: 1190;
    inset: 0;
    visibility: hidden;
    background: rgba(18, 29, 23, 0.42);
    opacity: 0;
    transition: opacity 240ms ease, visibility 240ms ease;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}

.op-mobile-drawer--public {
    position: fixed;
    z-index: 1200;
    inset: 0 auto 0 0;
    display: flex;
    width: min(88vw, 24rem);
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    overflow-y: auto;
    padding: 1.15rem 1.15rem 1.35rem;
    border-right: 1px solid rgba(255, 255, 255, 0.55);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.89), rgba(239, 245, 241, 0.82)),
        rgba(248, 250, 248, 0.82);
    box-shadow: 20px 0 60px rgba(26, 43, 34, 0.18);
    -webkit-backdrop-filter: blur(28px) saturate(150%);
    backdrop-filter: blur(28px) saturate(150%);
    overscroll-behavior: contain;
    transform: translateX(-105%);
    transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.op-drawer-open {
    overflow: hidden;
}

body.op-drawer-open .op-drawer-overlay {
    visibility: visible;
    opacity: 1;
}

body.op-drawer-open .op-mobile-drawer--public {
    transform: translateX(0);
}

.op-mobile-drawer--public .op-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(223, 230, 225, 0.78);
}

.op-drawer-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.op-drawer-brand img {
    display: block;
    width: auto;
    height: 2.25rem;
}

.op-mobile-drawer--public .op-drawer-close {
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    place-content: center;
    flex: 0 0 auto;
    padding: 0;
    border: 1px solid rgba(223, 230, 225, 0.75);
    border-radius: 50%;
    color: var(--op-color-forest-900, #2e4438);
    background: rgba(255, 255, 255, 0.58);
    cursor: pointer;
}

.op-mobile-drawer--public .op-drawer-close svg {
    width: 1.2rem;
    height: 1.2rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 2;
}

.op-drawer-intro {
    padding: 1.25rem 0 0.85rem;
}

.op-drawer-kicker {
    display: inline-block;
    margin-bottom: 0.35rem;
    color: var(--op-color-sage-600, #6f8a79);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.op-drawer-intro p {
    max-width: 18rem;
    margin: 0;
    color: var(--op-color-muted, #68776d);
    font-size: 0.92rem;
    line-height: 1.55;
}

.op-mobile-drawer--public .op-drawer-nav {
    display: grid;
    gap: 0.2rem;
    padding-block: 0.55rem 1rem;
}

.op-mobile-drawer--public .op-drawer-nav a {
    display: flex;
    min-height: 3.25rem;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.72rem 0.8rem;
    color: var(--op-color-forest-900, #2e4438);
    border-radius: 0.9rem;
    font-weight: 760;
    text-decoration: none;
    transition: background 180ms ease, padding 180ms ease;
}

.op-mobile-drawer--public .op-drawer-nav a svg {
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
    fill: none;
    stroke: var(--op-color-sage-600, #6f8a79);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    transition: transform 180ms ease;
}

.op-mobile-drawer--public .op-drawer-nav a:hover,
.op-mobile-drawer--public .op-drawer-nav a[aria-current="page"] {
    background: rgba(164, 183, 171, 0.18);
    padding-left: 1rem;
}

.op-mobile-drawer--public .op-drawer-nav a:hover svg {
    transform: translateX(2px);
}

.op-drawer-account {
    display: grid;
    gap: 0.65rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(223, 230, 225, 0.78);
}

.op-drawer-account form {
    margin: 0;
}

.op-drawer-user {
    display: grid;
    gap: 0.1rem;
    min-width: 0;
    margin-bottom: 0.35rem;
}

.op-drawer-user-label {
    color: var(--op-color-muted, #68776d);
    font-size: 0.76rem;
    font-weight: 760;
    text-transform: uppercase;
}

.op-drawer-user strong {
    overflow: hidden;
    color: var(--op-color-forest-900, #2e4438);
    font-size: 0.9rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.op-mobile-drawer--public .op-button {
    display: inline-flex;
    width: 100%;
    min-height: 2.9rem;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 1rem;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    font-weight: 760;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
}

.op-mobile-drawer--public .op-button--primary {
    color: #fff;
    background: var(--op-color-forest-900, #2e4438);
    box-shadow: 0 8px 22px rgba(46, 68, 56, 0.14);
}

.op-mobile-drawer--public .op-button--secondary {
    color: var(--op-color-forest-900, #2e4438);
    border-color: rgba(207, 217, 210, 0.95);
    background: rgba(255, 255, 255, 0.72);
}

.op-mobile-drawer--public .op-button--ghost {
    color: var(--op-color-forest-900, #2e4438);
    border-color: rgba(207, 217, 210, 0.8);
    background: transparent;
}

.op-drawer-organizer-link {
    display: inline-flex;
    justify-content: center;
    padding: 0.45rem;
    color: var(--op-color-muted, #68776d);
    font-size: 0.84rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
}

@media (max-width: 31rem) {
    .op-header-inner {
        min-height: 4.25rem;
    }

    .op-site-header .op-brand img {
        height: 2.1rem;
    }

    .op-mobile-drawer--public {
        width: 92vw;
    }
}

@media (min-width: 52rem) {
    .op-desktop-nav {
        display: flex;
    }

    .op-public-menu-toggle,
    .op-mobile-drawer--public,
    .op-drawer-overlay {
        display: none !important;
    }

    body.op-drawer-open {
        overflow: auto;
    }
}

