/* Notification toast (shared across site pages) */
.contact-notification {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 2000;
    pointer-events: none;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-notification.is-visible {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
}

.contact-notification__panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 340px;
    max-width: 420px;
    padding: 1.4rem;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(171, 152, 90, 0.2);
    box-shadow: 0 20px 48px rgba(9, 18, 13, 0.2);
    position: relative;
}

.contact-notification__close {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    width: 1.8rem;
    height: 1.8rem;
    border: 0;
    background: transparent;
    color: #6f7f76;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.contact-notification__close:hover {
    color: #173325;
}

.contact-notification__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    background: rgba(171, 152, 90, 0.12);
}

.contact-notification.is-success .contact-notification__icon-wrap {
    background: rgba(76, 175, 80, 0.12);
}

.contact-notification.is-error .contact-notification__icon-wrap {
    background: rgba(244, 67, 54, 0.12);
}

.contact-notification__icon {
    width: 1.4rem;
    height: 1.4rem;
    color: #ab985a;
}

.contact-notification.is-success .contact-notification__icon {
    color: #4caf50;
}

.contact-notification.is-error .contact-notification__icon {
    color: #f44336;
}

.contact-notification__content {
    flex: 1;
}

.contact-notification__eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ab985a;
    margin: 0;
}

.contact-notification.is-success .contact-notification__eyebrow {
    color: #4caf50;
}

.contact-notification.is-error .contact-notification__eyebrow {
    color: #f44336;
}

.contact-notification__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #173325;
    margin: 0.3rem 0 0;
}

.contact-notification__message {
    font-size: 0.9rem;
    color: #6f7f76;
    line-height: 1.5;
    margin: 0.4rem 0 0;
}

.contact-notification__action {
    align-self: flex-start;
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(171, 152, 90, 0.2);
    border-radius: 8px;
    background: rgba(171, 152, 90, 0.08);
    color: #173325;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.contact-notification__action:hover {
    background: rgba(171, 152, 90, 0.14);
    border-color: rgba(171, 152, 90, 0.35);
}

@media (max-width: 640px) {
    .contact-notification {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }

    .contact-notification__panel {
        min-width: 0;
        max-width: none;
        width: 100%;
    }
}
