body {
    font-family: "AbdoMaster", sans-serif;
    background: #efece7;
    color: #2c231c;
    line-height: 1.6;
}

/* -------------------------------------------------------------------------- */
/* Interactive states                                                         */
/* -------------------------------------------------------------------------- */

.link-hover {
    position: relative;
    opacity: 0.86;
    transition: color 160ms ease, opacity 180ms ease;
}

.link-hover::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: -4px;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
    opacity: 0.4;
}

.link-hover:hover {
    color: #f6f0e4;
    opacity: 1;
}

.link-hover:hover::after {
    transform: scaleX(1);
}


.button-hover:hover {
    opacity: 1;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 255, 255, 0.7);
}

.button-hover:focus-visible,
.link-hover:focus-visible {
    outline: 2px solid #f5d7a1;
    outline-offset: 2px;
}

.mobile-menu-backdrop {
    background: linear-gradient(180deg, rgba(32, 32, 32, 0.9) 0%, rgba(32, 32, 32, 0.8) 100%),
    url("../images/header0.png") center/cover no-repeat;
}

.mobile-menu-link {
    opacity: 0.9;
    transition: opacity 180ms ease, box-shadow 200ms ease, border-color 180ms ease,
    background-color 180ms ease;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.mobile-menu-link:hover {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.7);
    background-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

@media (max-width: 1023px) {
    .mobile-menu-scroll {
        max-height: min(640px, 80vh);
        overflow-y: auto;
    }
}
