* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    height: 100%;
    width: 100%;
    color: #1a1a1a;
    line-height: 1.6;
}

/* Text Highlight */
.text-highlight {
    color: goldenrod;
}

/* Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Wenn Admin Bar aktiv ist */
.admin-bar .site-header {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

.mainnav {
    width: 100%;
}

.navinner {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.navtitle {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 0.1em;
}

.navlist,
.navlist ul {
    list-style: none !important;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 40px;
    align-items: center;
}

.navlist li {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.navlist li a {
    font-size: 15px;
    font-weight: 500;
    color: #444;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.navlist li a:hover,
.navlist li.current-menu-item a {
    color: goldenrod;
}

.navlist li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: goldenrod;
    transition: width 0.3s ease;
}

.navlist li a:hover::after,
.navlist li.current-menu-item a::after {
    width: 100%;
}


/* Mobile Menu Button */
.mobilemenu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: #1a1a1a;
}

.mobilemenu:hover {
    color: goldenrod;
}

@media (max-width: 900px) {
    .mobilemenu {
        display: block;
        z-index: 1001;
    }

    .navlist {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        transition: right 0.3s ease;
        gap: 30px;
    }

    .navlist.active {
        right: 0;
    }

    .navlist li a {
        font-size: 24px;
    }

    .navlist li.menu-item-cta a,
    .navlist li:last-child a {
        padding: 15px 30px;
    }
}

/* Body offset for fixed header */
body {
    padding-top: 80px;
}

.hero {
    min-height: 90vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.heroinner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}
.herocontent {
    max-width: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 40px 50px;
    border-radius: 20px;
}
.herocontent .pill {
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.15) 0%, rgba(218, 165, 32, 0.25) 100%);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    color: #1a1a1a;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2);
    border: 1px solid rgba(218, 165, 32, 0.3);
    transition: all 0.3s ease;
}
.herocontent .pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.3);
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.2) 0%, rgba(218, 165, 32, 0.35) 100%);
}
.herocontent .title {
    display: block;
    font-size: 64px;
    font-weight: 300;
    line-height: 1.1;
    margin: 25px 0;
}
.herocontent .subtitle {
    display: block;
    font-size: 24px;
    margin-bottom: 10px;
}
.herocontent .text {
    font-size: 18px;
    color: rgb(113, 113, 113);
    line-height: 1.6;
}
.herocontent .buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}
.herocontent .buttons .button {
    border: 1px solid;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
}
.herocontent .buttons .button.primary {
    background-color: goldenrod;
    color: white;
    border-color: goldenrod;
}
.herocontent .buttons .button.seccondary {
    border-color: goldenrod;
    color: black;
    background: transparent;
}

.heroimg {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.heroimg img {
    display: block;
    width: auto;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
}

.scrollformore {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    letter-spacing: 0.2em;
    color: #888;
    font-weight: 600;
    animation: bounce 2s infinite;
    z-index: 10;
}

/* Scroll indicator relativ zum Hero, nicht zum Grid */
.hero .scrollformore {
    position: absolute;
    bottom: 30px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Hero Image Left Variant */
.hero.hero-image-left .heroimg {
    right: auto;
    left: 0;
}




.inner {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 80px 0;
}


.eyebrow {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: goldenrod;
    width: 100%;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.eyebrow.center {
    text-align: center;
}
.eyebrow.left {
    text-align: left;
}

.sectiontitle {
    display: block;
    font-size: 42px;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.2;
}
.sectiontitle.center {
    text-align: center;
}
.sectiontitle.left {
    text-align: left;
}

.sectionsubtitle {
    display: block;
    font-size: 20px;
    color: #666;
    margin: 15px 0;
    line-height: 1.5;
}
.sectionsubtitle.center {
    text-align: center;
}
.sectionsubtitle.left {
    text-align: left;
}

.sectiontext {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin: 20px 0;
}




.bekanntaus {
    background-color: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.bekanntaus .inner {
    padding: 40px 0;
}
.bekanntaus .eyebrow {
    font-size: 11px;
    color: #aaa;
    margin-bottom: 20px;
}
.bekanntaus ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px 50px;
}
.bekanntaus ul li {
    font-size: 14px;
    font-weight: 500;
    color: #bbb;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wasanderesagen {
    background-color: white;
}
.wasanderesagen .inner {
    max-width: 900px;
}

.quote-swiper {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.quote-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.quote-track::-webkit-scrollbar {
    display: none;
}

.quote-card {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    background: white;
    border-radius: 24px;
    padding: 50px 45px;
    display: grid;
    gap: 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(218, 165, 32, 0.15);
    min-height: 320px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.quote-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, goldenrod 0%, #DAA520 100%);
}

.quote-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
}

.quote-card blockquote {
    margin: 0;
    font-size: 20px;
    line-height: 1.8;
    color: #2c2c2c;
    font-style: normal;
    position: relative;
    padding-left: 30px;
    font-weight: 400;
}

.quote-card blockquote::before {
    content: '"';
    font-size: 120px;
    color: goldenrod;
    opacity: 0.15;
    position: absolute;
    top: -45px;
    left: -15px;
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
}

.quote-card figcaption {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    padding-top: 0;
    border-top: none;
}

.quote-card figcaption::before {
    content: '';
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(218,165,32,0.2) 0%, rgba(218,165,32,0.35) 100%);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-name {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 17px;
    line-height: 1.3;
}

.quote-role {
    color: #888;
    font-size: 14px;
    line-height: 1.4;
}

.quote-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.quote-btn {
    border: 2px solid #e0d7c9;
    background: white;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}
.quote-btn:hover {
    border-color: goldenrod;
    background: goldenrod;
    color: white;
    transform: translateY(-2px);
}

.quote-dots {
    display: flex;
    gap: 10px;
}

.quote-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #d0c7b9;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.quote-dots button:hover {
    border-color: goldenrod;
}
.quote-dots button[aria-current="true"] {
    background: goldenrod;
    border-color: goldenrod;
    transform: scale(1.2);
}

.ueberwerner {
    background-color: white;
}
.ueberwerner .inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.ueberwernercontent {
    display: flex;
    flex-direction: column;
}
.wernerzitat {
    display: block;
    font-size: 20px;
    font-weight: 600;
    font-style: italic;
    color: goldenrod;
    margin-top: 30px;
    padding-left: 20px;
    border-left: 4px solid goldenrod;
}
.ueberwernerbild {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(218,165,32,0.1) 0%, rgba(218,165,32,0.3) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ueberwernerbild img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.leistungen {
    background-color: rgb(248, 250, 252);
}
.leistungen .inner {
    text-align: center;
}

.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(218, 165, 32, 0.1);
    transition: all 0.3s ease;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: rgba(218, 165, 32, 0.3);
}

.service-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1) 0%, rgba(218, 165, 32, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: goldenrod;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.service-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #444;
    font-weight: 500;
}

.service-features li svg {
    color: goldenrod;
    flex-shrink: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: goldenrod;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    margin-top: auto;
    transition: all 0.3s ease;
    width: fit-content;
}

.service-link:hover {
    gap: 12px;
    color: #B8941E;
}

.service-link svg {
    transition: transform 0.3s ease;
}

.service-link:hover svg {
    transform: translateX(4px);
}

.newsletter {
    background-color: white;
    padding: 80px 0;
}
.newslettercard {
    width: 90%;
    max-width: 800px;
    margin: auto;
    background: linear-gradient(135deg, goldenrod 0%, #DAA520 100%);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(218, 165, 32, 0.2);
}
.newslettertitle {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}
.newslettersubtitle {
    display: block;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 35px;
}

.newsletter-form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-wrapper {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.newsletter-input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
    transform: translateY(-2px);
}

.newsletter-button {
    padding: 16px 32px;
    border: 2px solid white;
    border-radius: 50px;
    background: white;
    color: goldenrod;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.newsletter-button:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.newsletter-button svg {
    transition: transform 0.3s ease;
}

.newsletter-button:hover svg {
    transform: translateX(4px);
}

.kontakt {
    background-color: rgb(248, 250, 252);
}
.kontakt .inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.kontaktcontent {
    display: flex;
    flex-direction: column;
}
.kontaktcards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

.kontaktcard {
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    text-decoration: none;
    border: 2px solid #e5e5e5;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.kontaktcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: currentColor;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.kontaktcard:hover::before {
    transform: scaleX(1);
}

.kontaktcard:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: currentColor;
}

.kontaktcard-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.kontaktcard-icon svg {
    width: 28px;
    height: 28px;
}

.kontaktcard:hover .kontaktcard-icon {
    background: currentColor;
    transform: scale(1.1);
}

.kontaktcard:hover .kontaktcard-icon svg {
    color: white !important;
}

.kontaktcard-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 5px;
}

.kontaktcard-text {
    font-size: 14px;
    color: #666;
}

.kontaktcard.whatsapp {
    color: #25D366;
}

.kontaktcard.linkedin {
    color: #0077B5;
}

.kontaktcard.instagram {
    color: #E4405F;
}

.kontaktcard.email {
    color: goldenrod;
}

footer {
    background-color: rgb(234, 237, 241);
}
footer .inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}
.footertitle {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #333;
}
.footernav {
    list-style: none !important;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}
.footernav li {
    list-style: none !important;
    margin: 0;
    padding: 0;
}
.footernav li a {
    font-size: 15px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footernav li a:hover {
    color: goldenrod;
}
.copyright {
    text-align: right;
    font-size: 14px;
    color: #888;
}


/* Responsive Design */
@media (max-width: 900px) {
    .inner {
        padding: 60px 0;
    }

    .heroinner {
        padding-top: 40px;
        align-items: flex-end;
        padding-bottom: 80px;
    }

    .herocontent {
        max-width: 500px;
        padding: 30px 35px;
    }

    .heroimg img {
        max-height: 75vh;
    }

    .herocontent .title {
        font-size: 42px;
    }

    .herocontent .subtitle {
        font-size: 18px;
    }

    .sectiontitle {
        font-size: 32px;
    }

    .sectionsubtitle {
        font-size: 18px;
    }

    .quote-card {
        padding: 40px 35px;
        min-height: 300px;
    }

    .quote-card blockquote {
        font-size: 19px;
        padding-left: 25px;
    }

    .quote-card blockquote::before {
        font-size: 100px;
        top: -35px;
    }

    .ueberwerner .inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ueberwernerbild {
        height: 400px;
    }

    .wernerzitat {
        font-size: 24px;
    }

    .newslettertitle {
        font-size: 28px;
    }

    .newslettersubtitle {
        font-size: 16px;
    }

    .newslettercard {
        padding: 40px 30px;
    }

    .newsletter-input-wrapper {
        flex-direction: column;
    }

    .newsletter-button {
        width: 100%;
        justify-content: center;
    }

    .kontakt .inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    footer .inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .copyright {
        text-align: center;
    }

    .footernav {
        justify-content: center;
    }

    .leistungen-grid {
        gap: 24px;
        margin-top: 50px;
    }

    .service-card {
        padding: 35px;
    }

    .service-title {
        font-size: 22px;
    }
}

@media (max-width: 600px) {
    .inner {
        padding: 50px 0;
    }

    .heroinner {
        padding-top: 20px;
        align-items: flex-end;
        padding-bottom: 60px;
    }

    .herocontent {
        max-width: 95%;
        padding: 25px 20px;
        margin: 0 10px;
    }

    .heroimg img {
        max-height: 67vh;
    }

    .herocontent .title {
        font-size: 32px;
        margin: 15px 0;
    }

    .herocontent .subtitle {
        font-size: 16px;
    }

    .herocontent .text {
        font-size: 15px;
    }

    .herocontent .buttons {
        flex-direction: column;
        width: 100%;
    }

    .herocontent .buttons .button {
        text-align: center;
        width: 100%;
    }

    .sectiontitle {
        font-size: 28px;
    }

    .bekanntaus .inner {
        padding: 30px 0;
    }

    .bekanntaus ul {
        gap: 20px 30px;
    }

    .bekanntaus ul li {
        font-size: 12px;
    }

    .quote-card {
        padding: 35px 25px;
        min-height: 280px;
    }

    .quote-card blockquote {
        font-size: 18px;
        padding-left: 20px;
    }

    .quote-card blockquote::before {
        font-size: 80px;
        top: -28px;
    }

    .quote-card figcaption::before {
        width: 40px;
        height: 40px;
    }

    .quote-btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    .wernerzitat {
        font-size: 20px;
    }

    .newslettertitle {
        font-size: 24px;
    }

    .newslettercard {
        padding: 30px 20px;
    }

    .kontaktcards {
        grid-template-columns: 1fr;
    }

    .leistungen-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .service-card {
        padding: 30px;
    }

    .service-icon {
        width: 64px;
        height: 64px;
    }

    .service-icon svg {
        width: 36px;
        height: 36px;
    }

    .service-title {
        font-size: 20px;
    }

    .service-description {
        font-size: 15px;
    }

    .service-features li {
        font-size: 14px;
    }
}


/* ========================================
   GALERIE BLOCK
======================================== */
.galerie {
    background-color: white;
}

.galerie-grid {
    display: grid;
    grid-template-columns: repeat(var(--columns, 4), 1fr);
    gap: 15px;
}

.galerie-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.galerie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1;
    display: block;
}

.galerie-item a {
    display: block;
}

/* Editor-only styles */
.galerie-placeholder {
    width: 100%;
    min-height: 250px;
    border: 2px dashed #ccc;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
    background: #fafafa;
    color: #888;
}

.galerie-placeholder:hover {
    border-color: goldenrod;
    color: goldenrod;
}

.galerie-placeholder p {
    font-size: 16px;
    font-weight: 500;
}

.galerie-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.galerie-item:hover .galerie-remove {
    opacity: 1;
}

/* Responsive Galerie */
@media (max-width: 900px) {
    .galerie-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .galerie-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}


/* ========================================
   PAGE TITLE BLOCK
======================================== */
.pagetitle {
    background-color: rgb(248, 250, 252);
    padding: 40px 0 0;
}

.pagetitle-content {
    max-width: 800px;
}

.pagetitle-content.align-center {
    margin: 0 auto;
    text-align: center;
}

.pagetitle-content.align-left {
    text-align: left;
}

.pagetitle-content.align-right {
    margin-left: auto;
    text-align: right;
}

.pagetitle-content .eyebrow {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: goldenrod;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.pagetitle-heading {
    font-size: 52px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0 0 20px;
}

.pagetitle-subtitle {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Page Title */
@media (max-width: 900px) {
    .pagetitle-heading {
        font-size: 42px;
    }

    .pagetitle-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .pagetitle {
        padding: 30px 0 0;
    }

    .pagetitle-heading {
        font-size: 32px;
    }

    .pagetitle-subtitle {
        font-size: 16px;
    }

    .pagetitle-content .eyebrow {
        font-size: 12px;
    }
}