.res-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
    animation: resOverlayIn 0.25s ease;
    font-family: 'Poppins', sans-serif;
}
@keyframes resOverlayIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.res-container {
    background: #791023;
    color: #fff;
    width: 100%;
    max-width: 520px;
    border-radius: 3px;
    padding: 44px 40px;
    position: relative;
    animation: resContainerIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    font-family: 'Poppins', sans-serif;
}
@keyframes resContainerIn {
    from { transform: translateY(24px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}
.res-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    opacity: 0.75;
    transition: opacity 0.2s;
}
.res-close:hover { opacity: 1; }
.res-container h2 {
    margin: 0 0 30px;
    font-size: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}
.res-field { margin-bottom: 18px; }
.res-field label {
    display: block;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 7px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}
.res-field input,
.res-field textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid #ffffff;
    color: #000000;
    padding: 12px 14px;
    font-size: 14px;
    border-radius: 2px;
    outline: none;
    transition: box-shadow 0.2s;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.res-field input:focus,
.res-field textarea:focus {
    box-shadow: 0 0 0 3px rgba(255,255,255,0.35);
}
.res-field textarea {
    resize: vertical;
    min-height: 100px;
}
.res-submit-field { margin-top: 12px; }
button.button-link-wrap.res-submit {
    -webkit-appearance: none;
    appearance: none;
    display: inline-block;
    width: auto;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    letter-spacing: 2.5px;
    text-align: left;
    background: none;
    border: none;
    padding: 0;
    color: #ffffff !important;
}
button.button-link-wrap.res-submit::before,
button.button-link-wrap.res-submit::after {
    color: #ffffff !important;
}
button.button-link-wrap.res-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}
#res-feedback {
    margin-top: 18px;
    font-size: 14px;
    text-align: center;
    min-height: 20px;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}
#res-feedback.success { color: #d4f7e0; }
#res-feedback.error   { color: #ffd5d5; }
@media (max-width: 540px) {
    .res-container { padding: 30px 20px; }
    .res-container h2 { font-size: 17px; }
}

/* INFO Modal */
.info-container { max-width: 520px; }
.info-content {
    width: 100%;
    overflow: hidden;
    border-radius: 2px;
}
.info-iframe {
    width: 100%;
    height: 480px;
    border: none;
    display: block;
    background: transparent;
}
@media (max-width: 540px) {
    .info-iframe { height: 320px; }
}

/* ABOUT Modal */
.about-container { max-width: 520px; }
.about-iframe {
    width: 100%;
    height: 480px;
    border: none;
    display: block;
    background: transparent;
}
@media (max-width: 540px) {
    .about-iframe { height: 320px; }
}

/* ═══════════════════════════════════════
   BURGER BUTTON
════════════════════════════════════════ */
#burger-btn {
    display: none;
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 99998;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: #791023;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    padding: 8px;
}
#burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
#burger-btn[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
#burger-btn[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
#burger-btn[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 1024px) {
    #burger-btn { display: flex; }
}

/* ═══════════════════════════════════════
   MOBILE NAV OVERLAY
════════════════════════════════════════ */
#mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 99997;
    background: #791023;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    animation: resOverlayIn 0.25s ease;
}
#mobile-nav-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 6px 10px;
    font-family: 'Poppins', sans-serif;
    opacity: 0.8;
    transition: opacity 0.2s;
}
#mobile-nav-close:hover { opacity: 1; }
#mobile-nav nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}
#mobile-nav nav a {
    color: #fff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: opacity 0.2s;
}
#mobile-nav nav a:hover { opacity: 0.75; }


/* ── Contact SEND button (gleiche Styles wie res-submit) ── */
.res-submit-field,
.con-submit-field { margin-top: 12px; }

button.button-link-wrap.con-submit {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 900 !important;
    color: #fff !important;
    background: transparent !important;
    border: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    cursor: pointer;
}
button.button-link-wrap.con-submit::before,
button.button-link-wrap.con-submit::after {
    border-color: #fff !important;
}
button.button-link-wrap.con-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ── #buttons Grid: auf Tablet + Mobile ausblenden ── */
@media (max-width: 1024px) {
    #buttons { display: none !important; }
}

/* ── Info-Seite: störende Elemente ausblenden (nur in Iframe-Kontext) ── */
body.page-id-150 #burger-btn,
body.page-id-150 .elementor-element-9bb552a,
body.page-id-150 .cookieadmin_re_consent {
    display: none !important;
}

/* ── About-Seite: störende Elemente ausblenden (nur in Iframe-Kontext) ── */
body.page-id-350 #burger-btn,
body.page-id-350 .elementor-element-9bb552a,
body.page-id-350 .cookieadmin_re_consent {
    display: none !important;
}
