body {
    font-family: "Be Vietnam Pro", sans-serif;
}

.material-symbols-outlined {
    font-variation-settings:
        "FILL" 0,
        "wght" 400,
        "GRAD" 0,
        "opsz" 24;
}

.icon-size-20 {
    font-size: 20px;
}

.contact-pattern {
    background-image: radial-gradient(#ffffff 1px, transparent 1px);
    background-size: 32px 32px;
}

.prose ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.prose ol {
    list-style: decimal;
    padding-left: 1.5rem;
}

.prose li {
    margin: 0.25rem 0;
}

.mobile-menu-panel {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-8px);
    border-top: 0;
    padding-top: 0;
    pointer-events: none;
    transition:
        max-height 0.35s ease,
        opacity 0.25s ease,
        transform 0.35s ease,
        padding-top 0.35s ease;
}

.mobile-menu-panel.is-open {
    border-top: 1px solid #f3f4f6;
    max-height: 28rem;
    opacity: 1;
    transform: translateY(0);
    padding-top: 0.75rem;
    pointer-events: auto;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-menu-link {
    display: block;
    border-radius: 0.75rem;
    padding: 0.55rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #101419;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-menu-link:hover {
    background: #f6f7f8;
    color: #2c6195;
}

.mobile-menu-cta {
    margin-top: 0.75rem;
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: #2c6195;
    padding: 0.65rem 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.mobile-menu-cta:hover {
    background: #24537f;
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    transition: transform 0.25s ease, color 0.2s ease;
}

.mobile-menu-toggle .material-symbols-outlined {
    display: block;
    transition: opacity 0.16s ease, transform 0.2s ease;
}

.mobile-menu-toggle.is-open {
    transform: rotate(90deg);
}

.mobile-menu-toggle.is-open .material-symbols-outlined {
    transform: scale(1.05);
}

.mobile-menu-toggle.is-switching .material-symbols-outlined {
    opacity: 0;
    transform: scale(0.88);
}

.lightbox-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 12, 16, 0.88);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 60;
    padding: 1.5rem;
}

.lightbox-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 1.5rem;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    transform: scale(0.98);
    transition: transform 0.2s ease;
}

.lightbox-overlay.is-open .lightbox-image {
    transform: scale(1);
}

.lightbox-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-button:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-50%) scale(1.05);
}

.lightbox-button.prev {
    left: 20px;
}

.lightbox-button.next {
    right: 20px;
}

@media (min-width: 768px) {
    .mobile-menu-panel {
        display: none !important;
    }
}
