/* ==========================================================
   HERO
========================================================== */

.hero,
.heroSwiper,
.swiper-wrapper {
    width: 100%;
    height: 100svh;
}

.hero {
    position: relative;
    overflow: hidden;
}

.swiper-slide {
    position: relative;
    width: 100% !important;
    height: 100svh !important;
    overflow: hidden;
    background: #111;
}


.hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


.swiper-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.48);
}


.hero-slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    z-index: 2;

    width: min(760px, calc(100% - 48px));
    margin: 0;
    padding: 0;

    text-align: center;
    transform: translate(-50%, -50%);
}

.hero-title {
    margin-bottom: 24px;
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.01;
    letter-spacing: -0.03em;
}

.hero-text {
    max-width: 610px;
    margin: 0 auto 36px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    line-height: 1.55;
}

.hero-button {
    display: inline-block;
    padding: 16px 34px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease;
}

.hero-button:hover {
    background: #8177e4;
    background-color: #8177e4;
    color: #ffffff;
}

/* Swiper */
.swiper-button-next,
.swiper-button-prev {
    z-index: 3;
    color: #fff !important;
}

.swiper-pagination {
    z-index: 3;
    bottom: 30px !important;
}

.swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: #fff;
    opacity: 0.55;
}

.swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1;
}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 991px) {
    .hero-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .hero-slide-content {
        width: calc(100% - 40px);
    }

    .hero-title {
        font-size: 28px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}
/* ========================================================== */

.site {
    min-height: 100svh;
}

.header {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;

    z-index: 100 !important;

    width: 100% !important;
    height: 120px !important;
    margin: 0 !important;
    padding: 28px 56px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    background: transparent !important;
    box-shadow: none !important;
}

.logo {
    position: relative;
    z-index: 101;
}

.logo img {
    display: block;
    width: 120px;
    height: auto;
}

/* Header  */
main,
main > .neos-contentcollection,
.hero {
    margin-top: 0 !important;
    padding-top: 0 !important;
}


html,
body {
    width: 100% !important;
    min-height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
}

body {
    background: #111 !important;
}

.site,
main,
main > .neos-contentcollection,
.hero {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}
/* ==========================================================
   LOGO: RMW&C
========================================================== */

.wordmark {
    position: relative;
    z-index: 101;

    display: inline-block;

    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-align: center;
}

.wordmark:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .wordmark {
        font-size: 1.7rem;
    }
}

/* ==========================================================
   MENU TAB
========================================================== */

.menu-tab {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 400;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 150px;
    height: 100svh;

    background: #7e78db;
    border-top-left-radius: 250px;

    cursor: pointer;
    overflow: hidden;
    transition: opacity 0.3s ease;
}

.menu-tab-label {
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: lowercase;

    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.menu-tab.is-hidden {
    opacity: 0;
    pointer-events: none;
}

/* ==========================================================
   MENU OVERLAY
========================================================== */

.menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 500;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    width: 80%;
    height: 100svh;
    padding: 90px 72px 48px;

    overflow-y: auto;
    background: #7e78db;
    transition: right 0.5s ease;
}

.menu-overlay.is-open {
    right: 0;
}

.menu-close {
    position: absolute;
    top: 28px;
    right: 42px;

    border: 0;
    background: transparent;
    color: #fff;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
}

.menu-links {
    width: 100%;
}

.menu-links ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 60px;

    width: 100%;
    margin: 0;
    padding: 0;

    list-style: none;
}


.menu-links li {
    min-width: 0;
    margin: 0;
    padding: 0;
}

.menu-links a {
    color: rgba(255, 255, 255, 0.88);
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(1.7rem, 3vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    text-decoration: none;
    transition: color 0.25s ease;
}

.menu-links a:hover,
.menu-links a.current {
    color: #fff;
}

/* ==========================================================
   FOOTER — structure
========================================================== */

.site-footer {
    display: grid;
    grid-template-columns: 1.15fr repeat(3, minmax(0, 1fr));
    gap: 48px;

    width: 100%;
    box-sizing: border-box;
}

.footer-col {
    min-width: 0;
}

.footer-heading {
    margin: 0 0 12px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.25;
}

.footer-spacer {
    margin-top: 32px;
}

.footer-body {
    display: block;
    margin: 0 0 8px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.92rem;
    line-height: 1.55;
    overflow-wrap: anywhere;
    text-decoration: none;
}

.footer-social-icon {
    display: inline-flex;
    margin-right: 10px;
}

.footer-bottom {
    grid-column: 1 / -1;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-bottom p {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.82rem;
}

/* ==========================================================
   FOOTER purple 
========================================================== */

.menu-footer {
    width: 100%;
    margin-top: 78px;
}

.menu-footer .site-footer {
    padding: 0;
}

.menu-footer .footer-heading {
    color: #342d62 !important;
}

.menu-footer .footer-body {
    color: #fff !important;
}

.menu-footer .footer-body:hover {
    color: rgba(255, 255, 255, 0.72) !important;
}

.menu-footer .footer-social-icon {
    color: #fff;
}

.menu-footer .footer-bottom p {
    color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================
   FOOTER black
========================================================== */

.page-footer {
    width: 100%;
    background: #111;
}

.page-footer .site-footer {
    padding: 64px 56px 28px;
}

.page-footer .footer-heading {
    color: #fff !important;
}

.page-footer .footer-body {
    color: rgba(245, 227, 200, 0.753) !important;
}

.page-footer .footer-body:hover {
    color: #fff !important;
}

.page-footer .footer-social-icon {
    color: #fff;
}

.page-footer .footer-bottom p {
    color: rgba(255, 255, 255, 0.65);
}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 991px) {
    .menu-overlay {
        width: calc(100% - 90px);
        padding: 80px 40px 40px;
    }

    .menu-tab {
        width: 90px;
    }

    .menu-links ul,
    .site-footer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .menu-tab {
        width: 76px;
    }

    .menu-overlay {
        width: 100%;
        padding: 78px 28px 36px;
    }

    .menu-links ul,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .menu-links a {
        font-size: 2rem;
    }

    .menu-footer {
        margin-top: 54px;
    }

    .page-footer .site-footer {
        padding: 48px 28px 24px;
    }
}
.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    text-decoration: none;
}

.footer-social-icon:hover {
    color: rgba(255, 255, 255, 0.7);
}
/* ==========================================================
   FOOTER QUICK NAVIGATION
========================================================== */

.footer-quick-nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 36px;

    width: 100%;
    padding: 72px 180px 48px 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);

    background: #111;
}

.footer-quick-links {
    min-width: 0;
}

.footer-quick-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px 42px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-quick-links li {
    margin: 0;
    padding: 0;
}

.footer-quick-links a {
    color: rgba(255, 255, 255, 0.9);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.05rem;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.footer-quick-links a:hover,
.footer-quick-links a.current {
    color: #fff;
}

.back-to-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 72px;
    height: 72px;

    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;

    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2rem;
    line-height: 1;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease;
}

.back-to-top:hover {
    background: #fff;
    color: #111;
}

@media (max-width: 768px) {
    .footer-quick-nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 48px 28px 32px;
    }

    .footer-quick-links {
        margin-left: 0;
    }

    .footer-quick-links ul {
        justify-content: flex-start;
        gap: 18px 28px;
    }

    .back-to-top {
        width: 58px;
        height: 58px;
        margin: 36px 0 0;
    }
}
/* eslah Footer */
.footer-quick-nav {
    box-sizing: border-box !important;
    max-width: 100% !important;
    padding-right: 56px !important;
}

.back-to-top {
    margin: 0 !important;
    justify-self: end !important;
    flex: none !important;
}
.footer-body.footer-address {
    font-weight: 700;
}

/* ==========================================================
   LANGUAGE SWITCHER — ONLY INSIDE OPEN MENU
========================================================== */

.menu-overlay {
    z-index: 2000 !important;
}

.menu-overlay .language-switcher {
    position: absolute;
    top: 42px;
    left: 72px;
    z-index: 2010;
    display: flex;
    align-items: center;
    gap: 18px;
}

.menu-overlay .language-link {
    display: block;
    color: #ffffff !important;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.menu-overlay .language-link:hover {
    color: #ffffff !important;
    opacity: 1;
}

@media (max-width: 768px) {
    .menu-overlay .language-switcher {
        top: 28px;
        left: 24px;
        gap: 12px;
    }

    .menu-overlay .language-link {
        font-size: 12px;
    }
}
/* ==========================================================
   COOKIE CONSENT
========================================================== */

.cookie-banner,
.cookie-modal {
    font-family: Arial, Helvetica, sans-serif;
}

.cookie-banner {
    position: fixed;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 4000;

    max-width: 760px;
    margin: 0 auto;
    padding: 28px 30px;

    border: 1px solid rgba(255, 255, 255, 0.3);
    background: #171717;
    color: #fff;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
}

.cookie-banner h2,
.cookie-modal h2 {
    margin: 0 0 12px;
    font-size: 1.35rem;
    font-weight: 500;
}

.cookie-banner p,
.cookie-modal-intro {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    line-height: 1.55;
}

.cookie-policy-link {
    color: #fff;
    font-size: 0.9rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-banner-actions,
.cookie-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.cookie-button {
    min-height: 42px;
    padding: 10px 16px;

    border: 1px solid #fff;
    border-radius: 0;
    background: transparent;
    color: #fff;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.cookie-button:hover {
    background: #fff;
    color: #111;
}

.cookie-button-primary {
    border-color: #7e78db;
    background: #7e78db;
}

.cookie-button-primary:hover {
    border-color: #fff;
    background: #fff;
    color: #111;
}

.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 4100;

    display: grid;
    place-items: center;
    padding: 24px;

    background: rgba(0, 0, 0, 0.7);
}

.cookie-modal-panel {
    position: relative;

    width: min(100%, 620px);
    padding: 34px;

    background: #171717;
    color: #fff;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.cookie-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;

    border: 0;
    background: transparent;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    margin-top: 18px;
    padding-top: 18px;

    border-top: 1px solid rgba(255, 255, 255, 0.18);
    cursor: pointer;
}

.cookie-option input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #7e78db;
}

.cookie-option strong,
.cookie-option small {
    display: block;
}

.cookie-option strong {
    margin-bottom: 4px;
    font-size: 1rem;
    font-weight: 500;
}

.cookie-option small {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    line-height: 1.45;
}

.cookie-settings-button {
    position: fixed;
    right: 18px;
    bottom: 16px;
    z-index: 3900;

    border: 0;
    background: rgba(17, 17, 17, 0.82);
    color: rgba(255, 255, 255, 0.78);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.74rem;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .cookie-banner {
        right: 12px;
        bottom: 12px;
        left: 12px;
        padding: 22px;
    }

    .cookie-banner-actions,
    .cookie-modal-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .cookie-button {
        width: 100%;
    }

    .cookie-modal {
        padding: 12px;
    }

    .cookie-modal-panel {
        padding: 28px 22px;
    }
}
.cookie-banner[hidden],
.cookie-modal[hidden] {
    display: none !important;
}
/* Cookie banner: bottom right, white */
.cookie-banner {
    right: 24px !important;
    bottom: 24px !important;
    left: auto !important;

    width: min(440px, calc(100% - 48px)) !important;
    margin: 0 !important;

    border: 1px solid rgba(0, 0, 0, 0.16) !important;
    background: #ffffff !important;
    color: #171717 !important;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25) !important;
}

.cookie-banner h2 {
    color: #171717 !important;
}

.cookie-banner p {
    color: rgba(23, 23, 23, 0.76) !important;
}

.cookie-policy-link {
    color: #171717 !important;
}

.cookie-button-secondary {
    border-color: #171717 !important;
    color: #171717 !important;
}

.cookie-button-secondary:hover {
    background: #171717 !important;
    color: #ffffff !important;
}

.cookie-button-primary {
    border-color: #7e78db !important;
    background: #7e78db !important;
    color: #ffffff !important;
}
 
@media (max-width: 768px) {
    .cookie-banner {
        right: 12px !important;
        bottom: 12px !important;
        width: calc(100% - 24px) !important;
    }
}
/* Hide the small Cookie settings button while the main banner is open */
#cookieBanner:not([hidden]) ~ .cookie-settings-button {
    display: none !important;
}
.cookie-policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.legal-text {
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
    padding: 160px 40px 80px;
    line-height: 1.7;
    min-height: 400px;
    cursor: text;
}
.legal-text h1,
.legal-text h2,
.legal-text h3 {
    margin-top: 32px;
    margin-bottom: 12px;
}
.legal-text p {
    margin-bottom: 16px;
}

/* ==========================================================
   GOOGLE MAP
========================================================== */

.contact-map {
    width: 100%;
    padding: 80px 56px;
    background: #111;
}

.contact-map-frame {
    position: relative;
    width: min(1100px, 100%);
    min-height: 450px;
    margin: 0 auto;
    overflow: hidden;
    background: #242424;
}

.contact-map-frame iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
}

.contact-map-consent {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 450px;
    padding: 32px;

    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

.contact-map-consent p {
    max-width: 430px;
    margin: 0;
}

@media (max-width: 768px) {
    .contact-map {
        padding: 56px 20px;
    }

    .contact-map-frame,
    .contact-map-consent,
    .contact-map-frame iframe {
        min-height: 340px;
        height: 340px;
    }
}

.contact-map-consent {
    flex-direction: column;
    gap: 20px;
}

.contact-map-load-button {
    padding: 14px 24px;

    border: 1px solid #ffffff;
    background: transparent;
    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.contact-map-load-button:hover {
    background: #ffffff;
    color: #111111;
}

/* ==========================================================
   CONTACT – GOOGLE MAP
========================================================== */

.contact-map {
    width: 100%;
    padding: 80px 60px;
    background: #111111;
}

.contact-map-frame {
    width: min(1100px, 100%);
    min-height: 450px;
    margin: 0 auto;
    overflow: hidden;
    background: #252525;
}

.contact-map-frame iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
}

.contact-map-consent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 450px;
    padding: 32px;
    gap: 22px;
    text-align: center;
    color: #ffffff;
}

.contact-map-text {
    max-width: 450px;
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
}

.contact-map-load-button {
    padding: 15px 28px;
    border: 1px solid #ffffff;
    background: transparent;
    color: #ffffff;
    font: inherit;
    cursor: pointer;
    transition: 0.2s ease;
}

.contact-map-load-button:hover {
    background: #ffffff;
    color: #111111;
}

@media (max-width: 768px) {
    .contact-map {
        padding: 48px 20px;
    }

    .contact-map-frame,
    .contact-map-consent,
    .contact-map-frame iframe {
        min-height: 340px;
        height: 340px;
    }
}

.contact-map-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    width: min(1100px, 100%);
    margin: 20px auto 0;
}

.contact-map-action {
    display: inline-block;
    padding: 13px 22px;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    transition: 0.2s ease;
}

.contact-map-action:hover {
    background: #ffffff;
    color: #111111;
}
/* ==========================================================
   PAGE INTRO
========================================================== */

.page-intro {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 520px;
    overflow: hidden;
    background: #111111;
}

.page-intro::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
    z-index: 1;
}

.page-intro-media {
    position: absolute;
    inset: 0;
}

.page-intro-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-intro-content {
    position: relative;
    z-index: 2;
    width: min(1050px, calc(100% - 80%px));
    margin: 0 auto;
    color: #ffffff;
    text-align: center;
}

.page-intro-title {
    max-width: 1050px;
    margin: 0 auto 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 4vw, 60px);
    font-weight: 500;
    line-height: 1.08;
}

.page-intro-text {
    max-width: 680px;
    margin: 0 auto;
    font-size: 23px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .page-intro {
        min-height: 440px;
    }

    .page-intro-content {
        width: calc(100% - 48px)
    }

    .page-intro-title {
        font-size: 39px;
    }
    .page-intro-text {
        font-size: 20px;
    }
}

/* ==========================================================
   CONTACT ADDRESSES
========================================================== */

.contact-addresses {
    position: relative;
    z-index: 3;
    margin-top: -35px;
    padding: 115px 60px 105px;
    border-top-left-radius: min(105px, 9vw);
    background: #f1ebe6;
    color: #242424;
}

.contact-addresses-inner {
    width: min(1480px, 100%);
    margin: 0 auto;
}

.contact-addresses-heading {
    max-width: 850px;
    margin-bottom: 72px;
}

.contact-addresses-heading h2 {
    margin: 0 0 22px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(46px, 5vw, 76px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.04em;
}

.contact-addresses-intro {
    max-width: 650px;
    margin: 0;
    font-size: 21px;
    line-height: 1.55;
}

.contact-addresses-direct {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 28px;
}

.contact-addresses-direct a {
    color: #242424;
    text-decoration: none;
    border-bottom: 2px solid #8177e4;
    padding-bottom: 4px;
}

.contact-addresses-direct a:hover {
    color: #8177e4;
}

.contact-addresses-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 64px 76px;
}

.contact-office h3 {
    margin: 0 0 18px;
    color: #564ca9;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.2;
}

.contact-office-company,
.contact-office-address,
.contact-office-phone {
    margin: 0;
    color: #2b2b2b;
    font-size: 18px;
    line-height: 1.55;
}

.contact-office-company {
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-office-address {
    margin-bottom: 18px;
    white-space: pre-line;
}

.contact-office-phone {
    font-weight: 500;
}

@media (max-width: 900px) {
    .contact-addresses {
        padding: 82px 32px;
    }

    .contact-addresses-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 48px 38px;
    }
}

@media (max-width: 600px) {
    .contact-addresses {
        margin-top: -30px;
        padding: 68px 24px;
        border-top-left-radius: 80px;
    }

    .contact-addresses-heading {
        margin-bottom: 48px;
    }

    .contact-addresses-intro {
        font-size: 18px;
    }

    .contact-addresses-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }
}

/* Fix Neos ContentCollection grid for Contact Offices */

.contact-addresses-grid {
    display: block;
}

.contact-addresses-grid > .neos-contentcollection {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 64px 76px;
}

@media (max-width: 900px) {
    .contact-addresses-grid > .neos-contentcollection {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 48px 38px;
    }
}

@media (max-width: 600px) {
    .contact-addresses-grid > .neos-contentcollection {
        grid-template-columns: 1fr;
        gap: 38px;
    }
}

/* ==========================================================
   CONTACT MAP
========================================================== */

.contact-map {
    position: relative;
    z-index: 4;
    margin-top: -55px;
    padding: 150px 60px 120px;
    border-top-left-radius: min(150px, 12vw);
    background: #151515;
}

.contact-map-frame {
    width: min(1100px, 100%);
    height: 560px;
    margin: 0 auto;
    background: #292929;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.contact-map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-map-consent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 40px;
    color: #ffffff;
    text-align: center;
}

.contact-map-text {
    max-width: 500px;
    margin: 0 0 24px;
    font-size: 20px;
    line-height: 1.55;
}

.contact-map-load-button,
.contact-map-action {
    display: inline-block;
    padding: 15px 26px;
    border: 1px solid #ffffff;
    background: transparent;
    color: #ffffff;
    font: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.contact-map-load-button:hover,
.contact-map-action:hover {
    background: #ffffff;
    color: #151515;
}

.contact-map-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 25px;
}

@media (max-width: 768px) {
    .contact-map {
        margin-top: -30px;
        padding: 100px 24px 80px;
        border-top-left-radius: 80px;
    }

    .contact-map-frame {
        height: 390px;
    }

    .contact-map-text {
        font-size: 17px;
    }

    .contact-map-load-button,
    .contact-map-action {
        width: 100%;
        text-align: center;
    }
}

.contact-map-actions {
    gap: 16px;
}

.contact-map-action {
    min-width: 195px;
    padding: 16px 28px;
    border: 1px solid #d9cec6;
    color: #f1ebe6;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-align: center;
}

/* Open in Google Maps */
.contact-map-action:first-child {
    border-color: #8177e4;
    background: #8177e4;
    color: #ffffff;
}

/* Get directions */
.contact-map-action:last-child {
    background: transparent;
    color: #f1ebe6;
}

.contact-map-action:first-child:hover {
    border-color: #a29aef;
    background: #a29aef;
    color: #ffffff;
}

.contact-map-action:last-child:hover {
    border-color: #f1ebe6;
    background: #f1ebe6;
    color: #151515;
}


.contact-map-load-button {
    border-color: #8177e4;
    background: #8177e4;
    color: #ffffff;
    font-weight: 600;
}

.contact-map-load-button:hover {
    border-color: #a29aef;
    background: #a29aef;
    color: #ffffff;
}

/* ==========================================================
   HERO TEXT: LEFT ALIGN + SLIDE IN ANIMATION
========================================================== */

.hero-slide-content {
    position: absolute;
    top: 50%;
    left: 11%;
    width: min(760px, calc(100% - 160px));
    max-width: none;
    margin: 0;
    padding: 20px;
    transform: translateY(-50%);
    text-align: left;
    z-index: 10;
}

.heroSwiper .hero-title,
.heroSwiper .hero-text,
.heroSwiper .hero-button {
    opacity: 0;
    transform: translateX(-45px);
}


.heroSwiper .swiper-slide-active .hero-title {
    animation: heroTextSlideIn 0.8s 0.15s ease-out forwards;
}


.heroSwiper .swiper-slide-active .hero-text {
    animation: heroTextSlideIn 0.8s 0.35s ease-out forwards;
}


.heroSwiper .swiper-slide-active .hero-button {
    animation: heroTextSlideIn 0.8s 0.55s ease-out forwards;
}

@keyframes heroTextSlideIn {
    from {
        opacity: 0;
        transform: translateX(-45px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .hero-slide-content {
        left: 24px;
        width: calc(100% - 48px);
        padding: 10px;
    }
}

.hero-slide-content .hero-title,
.hero-slide-content .hero-text {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
}

.hero-slide-content .hero-button {
    text-align: left;
}

/* ==========================================================
   CONTACT FORM
========================================================== */

.contact-form-section {
    position: relative;
    isolation: isolate;
    padding: 0 60px 120px;
    background: #151515;
}

.contact-form-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 52%;
    background: #f1ebe6;
    z-index: 0;
}

.contact-form-card {
    position: relative;
    z-index: 1;
    width: min(930px, 100%);
    margin: 0 auto;
    padding: 72px 84px;
    border-top-right-radius: min(150px, 13vw);
    background: #d9d4fa;
    color: #242424;
}

.contact-form-heading {
    max-width: 620px;
    margin-bottom: 48px;
}

.contact-form-heading h2 {
    margin: 0 0 16px;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1;
}

.contact-form-heading p {
    margin: 0;
    font-size: 19px;
    line-height: 1.55;
}

.contact-form {
    display: grid;
    gap: 28px;
}

.contact-form-field {
    display: grid;
    gap: 10px;
}

.contact-form-field label {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-style: italic;
}

.contact-form-field input,
.contact-form-field textarea {
    width: 100%;
    padding: 9px 0;
    border: 0;
    border-bottom: 1px solid #353238;
    outline: none;
    background: transparent;
    color: #242424;
    font: inherit;
    font-size: 18px;
}

.contact-form-field textarea {
    resize: vertical;
    min-height: 115px;
}

.contact-form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.45;
    cursor: pointer;
}

.contact-form-privacy input {
    width: 17px;
    height: 17px;
    margin-top: 2px;
    accent-color: #564ca9;
}

.contact-form-submit {
    width: fit-content;
    margin-top: 12px;
    padding: 17px 34px;
    border: 1px solid #242424;
    background: #242424;
    color: #ffffff;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.contact-form-submit:hover {
    border-color: #564ca9;
    background: #564ca9;
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 0 24px 80px;
    }

    .contact-form-section::before {
        height: 48%;
    }

    .contact-form-card {
        padding: 52px 28px;
        border-top-right-radius: 85px;
    }

    .contact-form-heading h2 {
        font-size: 44px;
    }

    .contact-form-heading p {
        font-size: 17px;
    }

    .contact-form-submit {
        width: 100%;
    }
}

/* ==========================================================
   COOKIE SETTINGS BUTTON
========================================================== */

.cookie-settings-button {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 10001;

    width: 58px;
    height: 58px;
    padding: 0;

    border: 1px solid rgba(241, 235, 230, 0.42);
    border-radius: 50%;
    background: rgba(36, 36, 36, 0.34);
    color: rgba(241, 235, 230, 0.70);

    font-size: 0;
    cursor: pointer;
    opacity: 0.62;
    box-shadow: none;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        opacity 0.2s ease,
        transform 0.2s ease;
}


.cookie-settings-button::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 50%;

    width: 18px;
    height: 14px;

    border: 1.7px solid currentColor;
    border-radius: 2px;
    transform: translateX(-50%);
    box-sizing: border-box;
}


.cookie-settings-button::after {
    content: "";
    position: absolute;
    top: 16px;
    left: 50%;

    width: 11px;
    height: 14px;

    border: 1.7px solid currentColor;
    border-bottom: 0;
    border-radius: 9px 9px 0 0;
    transform: translateX(-50%);
    box-sizing: border-box;
}

.cookie-settings-button:hover {
    border-color: rgba(129, 119, 228, 0.95);
    background: rgba(129, 119, 228, 0.78);
    color: #ffffff;
    opacity: 1;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-settings-button {
        bottom: 18px;
        left: 18px;
        width: 52px;
        height: 52px;
    }

    .cookie-settings-button::before {
        top: 25px;
    }

    .cookie-settings-button::after {
        top: 13px;
    }
}

/* Menu on inner pages */
.menu-button {
    position: fixed;
    top: 34px;
    right: 42px;
    left: auto;
    z-index: 1000;

    appearance: none;
    -webkit-appearance: none;
    padding: 0 0 5px;
    border: 0;
    border-bottom: 2px solid currentColor;
    border-radius: 0;
    outline: 0;

    background: transparent;
    color: #f1ebe6;
    font: inherit;
    font-size: 21px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.02em;
    cursor: pointer;

    transition: color .2s ease, border-color .2s ease;
}

.menu-button:hover,
.menu-button:focus-visible {
    color: #8177e4;
    border-bottom-color: #8177e4;
}

@media (max-width: 768px) {
    .menu-button {
        top: 22px;
        right: 22px;
        font-size: 18px;
    }
}

/* ==========================================================
   MOBILE – GLOBAL
   ========================================================== */
@media (max-width: 768px) {
    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    .header {
        top: 0;
        left: 0;
        right: 0;
        padding: 20px;
    }

    .wordmark {
        font-size: 28px;
        line-height: .9;
    }

    /* ==========================================================
       MOBILE – MENU
       ========================================================== */
    .menu-tab,
    .menu-button {
        top: 22px;
        right: 22px;
        left: auto;
        z-index: 1002;
    }

    .menu-tab {
        width: auto;
        height: auto;
        padding: 0 0 5px;
        border: 0;
        border-bottom: 2px solid currentColor;
        border-radius: 0;
        background: transparent;
    }

    .menu-overlay {
        position: fixed;
        inset: 0;
        width: 100vw;
        min-height: 100dvh;
        padding: 100px 26px 40px;
        overflow-y: auto;
        box-sizing: border-box;
    }

    .menu-close {
        top: 20px;
        right: 22px;
    }

    .language-switcher {
        position: static;
        display: flex;
        justify-content: flex-start;
        gap: 16px;
        margin-bottom: 42px;
    }

    .menu-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .menu-links a {
        font-size: 30px;
        line-height: 1.1;
    }

    .menu-footer {
        margin-top: 50px;
    }

    /* ==========================================================
       MOBILE – HOME HERO
       ========================================================== */
    .heroSwiper,
    .heroSwiper .swiper-slide {
        min-height: 720px;
    }

    .hero-slide-content {
        top: auto;
        bottom: 88px;
        left: 24px;
        width: calc(100% - 48px);
        max-width: none;
        margin: 0;
        padding: 0;
        transform: none;
        text-align: left;
        box-sizing: border-box;
    }

    .hero-slide-content .hero-title {
        margin: 0 0 16px;
        font-size: clamp(34px, 10vw, 48px);
        line-height: 1.04;
        text-align: left;
    }

    .hero-slide-content .hero-text {
        max-width: 100%;
        margin: 0 0 24px;
        font-size: 16px;
        line-height: 1.55;
        text-align: left;
    }

    .hero-slide-content .hero-button {
        min-width: 145px;
        padding: 13px 20px;
        font-size: 15px;
    }

    .heroSwiper .swiper-button-prev,
    .heroSwiper .swiper-button-next {
        transform: scale(.72);
    }

    /* ==========================================================
       MOBILE – CONTACT PAGE
       ========================================================== */
    .contact-addresses {
        padding: 70px 24px;
        border-top-left-radius: 80px;
    }

    .contact-addresses-title {
        font-size: 42px;
    }

    .contact-offices {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .contact-form-section {
        padding: 0 16px 80px;
    }

    .contact-form-section::before {
        height: 45%;
    }

    .contact-form-card {
        padding: 48px 26px;
        border-top-right-radius: 80px;
    }

    .contact-form-title {
        font-size: 38px;
    }

    .contact-map {
        margin-top: -25px;
        padding: 90px 16px 70px;
        border-top-left-radius: 80px;
    }

    .contact-map-frame {
        height: 350px;
    }

    .contact-map-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .contact-map-action {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }

    /* Cookie icon */
    .cookie-settings-button {
        bottom: 18px;
        left: 18px;
        right: auto;
    }
}