/*
Theme Name: START.N
Theme URI: https://start-n.at
Author: START.N
Author URI: https://start-n.at
Description: Custom WordPress theme for START.N Coworking Space in Kitzbuehel, Austria.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: startn
*/

/* ============================================
   CSS RESET & BASE
   ============================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
    width: 100%;
}

html {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul, ol {
    list-style: none;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

/* ============================================
   VARIABLES
   ============================================ */

:root {
    --color-primary: #E5007D;
    --color-primary-hover: #c80069;
    --color-primary-light: rgba(229, 0, 125, 0.1);
    --color-text-dark: #1a1a1a;
    --color-text-light: #ffffff;
    --color-text-muted: #666666;
    --color-bg-light: #f5f5f5;
    --color-bg-dark: #1a1a1a;
    --color-bg-dark-alt: #2a2a2a;
    --color-bg-gray: #f0f0f0;
    --color-border: #e0e0e0;
    --color-border-light: rgba(255, 255, 255, 0.15);
    --section-padding: clamp(2.5rem, 2rem + 2.5vw, 5rem);
    --container-width: 75rem;
    --container-padding: clamp(1rem, 0.5rem + 1.5vw, 2rem);
    --header-height: clamp(3rem, 2.5rem + 1.5vw, 4.5rem); /* compact header */
    --header-bg: #403F3F;
    --radius: 12px;
    --radius-lg: 18px;
    --radius-pill: 999px;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition: 0.3s ease;
}

/* ============================================
   TERRAZZO / SPECKLE PATTERN BACKGROUND
   ============================================ */

.bg-terrazzo {
    background-color: #f2f0ed;
    background-image:
        radial-gradient(circle, #c4bfb8 1px, transparent 1px),
        radial-gradient(circle, #d1ccc5 0.8px, transparent 0.8px),
        radial-gradient(circle, #b8b3ab 0.6px, transparent 0.6px),
        radial-gradient(circle, #cdc7bf 1.2px, transparent 1.2px),
        radial-gradient(circle, #a9a39b 0.5px, transparent 0.5px);
    background-size:
        47px 53px,
        31px 37px,
        67px 71px,
        23px 29px,
        83px 89px;
    background-position:
        0 0,
        15px 20px,
        35px 10px,
        5px 40px,
        50px 30px;
}

/* ============================================
   UTILITY / LAYOUT
   ============================================ */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

.section-padding {
    padding: var(--section-padding) 0;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.2rem, 1.4rem + 3vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    text-transform: none;
    letter-spacing: -0.01em;
    margin-bottom: clamp(1.5rem, 1rem + 1.5vw, 2.5rem);
    text-align: center;
    color: #403F3F; /* Standard-Grau wie bei allen Überschriften; dunkle Sections überschreiben mit Weiß */
}

.section-title em {
    font-style: italic;
    color: #E71A80;
    font-weight: 800;
}

/* Caveat handwritten kicker above every section headline */
.section-kicker {
    display: block;
    text-align: center;
    font-family: 'Caveat', cursive;
    font-size: clamp(1.7rem, 1.2rem + 1.3vw, 2.6rem); /* etwas größer, bleibt unter der Headline */
    line-height: 1;
    color: #E71A80;
    transform: rotate(-2deg);
    margin-bottom: 6px;
}

.section-title--light {
    color: var(--color-text-light);
}

.section-title--dark {
    color: var(--color-text-dark);
}

/* Brighter pink for kicker + em accents on dark backgrounds (better contrast) */
.section-events .section-kicker,
.section-presse .section-kicker,
.eg-cta .section-kicker,
.eg-hero .section-kicker,
.section-events .section-title em,
.section-presse .section-title em {
    color: #ff5aa8;
}

.section-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.section-icon svg {
    width: 3.75rem;
    height: 3.75rem;
    fill: var(--color-text-dark);
    opacity: 0.7;
}

.section-icon__img {
    width: clamp(5rem, 4rem + 3vw, 8rem);
    height: auto;
}

.section-icon--light svg {
    fill: var(--color-text-light);
}

.section-icon--pink svg {
    fill: var(--color-primary);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: clamp(0.625rem, 0.5rem + 0.3vw, 0.875rem) clamp(1.25rem, 1rem + 1vw, 2.25rem);
    font-size: clamp(0.75rem, 0.7rem + 0.15vw, 0.85rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.09375rem;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    border: 0.125rem solid transparent;
}

.btn--primary {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    border-color: var(--color-primary);
}

.btn--primary:hover {
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(229, 0, 125, 0.35);
}

.btn--outline {
    background-color: transparent;
    color: var(--color-text-light);
    border-color: var(--color-text-light);
}

.btn--outline:hover {
    background-color: var(--color-text-light);
    color: var(--color-text-dark);
    transform: translateY(-2px);
}

.btn--outline-dark {
    background-color: transparent;
    color: var(--color-text-dark);
    border-color: var(--color-text-dark);
}

.btn--outline-dark:hover {
    background-color: var(--color-text-dark);
    color: var(--color-text-light);
    transform: translateY(-2px);
}

.btn--small {
    padding: 10px 24px;
    font-size: 0.75rem;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--header-bg);
    height: var(--header-height);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 0.125rem 1.25rem rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.site-logo {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.site-logo__img {
    height: clamp(1.5rem, 1.25rem + 0.75vw, 2.25rem);
    width: auto;
}

/* Desktop nav */
.main-nav {
    display: none;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 0.5rem + 1.5vw, 1.75rem);
}

.main-nav a {
    color: #FFFFFF;
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(0.75rem, 0.55rem + 0.4vw, 0.9375rem); /* ~15px at 1366 */
    font-weight: 400;
    letter-spacing: 0.076rem;
    line-height: 1.33;
    text-align: center;
    position: relative;
    padding: 0.25rem 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0.125rem;
    background: var(--color-primary);
    transition: width var(--transition);
}

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

.main-nav a:hover {
    color: var(--color-primary);
}

/* Desktop-Dropdown "Über uns" */
.main-nav .has-dropdown {
    position: relative;
}

.main-nav .sub-menu {
    display: block; /* überschreibt das flex der Eltern-ul */
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 180px;
    padding: 12px 0;
    margin-top: 6px;
    background: var(--header-bg, #2a2a2a);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 1002;
}

.main-nav .has-dropdown:hover > .sub-menu,
.main-nav .has-dropdown:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.main-nav .sub-menu li {
    display: block;
    width: 100%;
}

.main-nav .sub-menu a {
    display: block;
    padding: 8px 22px;
    text-align: left;
    white-space: nowrap;
}

.main-nav .sub-menu a::after { display: none; }

/* kleiner Indikator am Eltern-Punkt */
.main-nav .has-dropdown > a::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    vertical-align: middle;
    transition: transform 0.25s ease;
}
.main-nav .has-dropdown:hover > a::before {
    transform: translateY(0) rotate(225deg);
}

/* Mobile hamburger */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.3125rem;
    width: 1.75rem;
    height: 1.75rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 1.75rem;
    height: 0.125rem;
    background: var(--color-text-light);
    transition: all var(--transition);
    border-radius: 0.125rem;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--header-bg);
    z-index: 999;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav ul {
    text-align: center;
}

.mobile-nav li {
    margin-bottom: 24px;
}

.mobile-nav a {
    color: var(--color-text-light);
    font-family: 'Inter Tight', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.076rem;
    transition: color var(--transition);
}

.mobile-nav a:hover {
    color: var(--color-primary);
}

/* Mobile: "Über uns" Unterpunkte direkt sichtbar, eingerückt */
.mobile-nav .has-dropdown > a {
    font-weight: 600;
}
.mobile-nav .sub-menu {
    margin-top: 14px;
}
.mobile-nav .sub-menu li {
    margin-bottom: 14px;
}
.mobile-nav .sub-menu a {
    font-size: 1.05rem;
    opacity: 0.85;
}

/* ============================================
   SOCIAL SIDEBAR
   ============================================ */

.social-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: none; /* ab Tablet sichtbar (siehe Media Query) */
    flex-direction: column;
    align-items: center;
    gap: clamp(0.5rem, 0.3rem + 0.6vw, 0.85rem);
    padding: clamp(0.6rem, 0.4rem + 0.6vw, 1rem) clamp(0.4rem, 0.3rem + 0.4vw, 0.7rem);
    background: var(--color-primary);
    border-radius: 0.75rem 0 0 0.75rem;
    box-shadow: -4px 4px 16px rgba(0, 0, 0, 0.18);
}

.social-sidebar__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(2.1rem, 1.7rem + 1.2vw, 2.85rem);
    height: clamp(2.1rem, 1.7rem + 1.2vw, 2.85rem);
    border-radius: 50%;
    background: #ffffff;
    transition: transform var(--transition), box-shadow var(--transition);
}

.social-sidebar__link:hover,
.social-sidebar__link:focus-visible {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.social-sidebar__icon {
    width: 58%;
    height: 58%;
    fill: var(--color-primary);
    display: block;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    margin-top: var(--header-height);
    height: clamp(20rem, 30vw + 10rem, 37.8125rem); /* 605px at 1366px */
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-text-light);
    overflow: clip;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.1);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.hero__layout {
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 1rem + 1vw, 2rem);
}

/* Mobile ticker bar */
.hero-ticker {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1.75rem; /* 28px */
    background: #E71A80;
    z-index: 5;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-ticker__track {
    display: inline-flex;
    white-space: nowrap;
    animation: ticker-scroll 12s linear infinite;
}

.hero-ticker__item {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.9375rem; /* 15px */
    line-height: 1.25rem; /* 20px */
    color: #FFFFFF;
    letter-spacing: 0;
    padding-right: 3rem;
    flex-shrink: 0;
}

.hero-ticker__item strong {
    font-weight: 700;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Hide ticker on desktop, hide badge on mobile */
@media (min-width: 768px) {
    .hero-ticker {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero__badge-wrap {
        display: none;
    }

    /* Font sizes handled by clamp() — no overrides needed */

    .newsletter-input {
        height: 56px;
        font-size: 16px;
    }

    .newsletter-hint {
        font-size: 14px;
    }

    .newsletter-btn {
        font-size: 18px;
    }

    .footer-social__link {
        width: 44px;
        height: 44px;
    }

    /* Slider-Pfeile auf Mobile komplett ausblenden — Navigation per Swipe */
    .bueros-slider__arrow,
    .features-slider__arrow,
    .mieter-slider__arrow,
    .team-slider__arrow,
    .kooperation-slider__arrow,
    .presse-slider__arrow,
    .buero-hero-slider__arrow {
        display: none !important;
    }

    /* Büro Detail: mobile adjustments */
    .buero-hero {
        min-height: auto;
    }

    .buero-hero-slider__slide {
        flex: 0 0 85%;
    }

    .buero-leistungen {
        min-height: auto;
        padding: 2rem 0;
    }

    .buero-leistungen__title {
        font-size: 1.25rem;
    }

    .buero-leistungen__text {
        font-size: 1rem;
    }

    .buero-lage {
        min-height: auto;
        padding: 2.5rem 0;
    }

    .buero-lage__title {
        font-size: 2rem;
    }

    .buero-lage__text {
        font-size: 1rem;
    }

    .buero-anfrage {
        min-height: auto;
        padding: 2.5rem 0;
    }

    .buero-anfrage__title {
        font-size: 2rem;
    }

    .buero-anfrage__field {
        height: 56px;
        font-size: 16px;
        border-radius: 20px;
        padding: 0 20px;
    }

    .buero-anfrage__field--textarea {
        height: 180px;
        padding: 16px 20px;
    }

    .buero-anfrage__hint {
        font-size: 14px;
    }

    .buero-anfrage__btn {
        width: 100%;
        max-width: 300px;
        height: 48px;
        font-size: 18px;
    }

    .buero-weitere {
        min-height: auto;
        padding: 2.5rem 0;
    }

    .buero-weitere__title {
        font-size: 2rem;
    }

    /* Card image heights: reduce on mobile */
    .team-card__image {
        height: 200px;
    }

    .team-card__body {
        min-height: auto;
        padding: 16px;
    }


    .mieter-card__image {
        height: 200px;
    }

    .mieter-card__body {
        padding: 16px;
    }


    .mieter-card__btn {
        font-size: 16px;
        padding: 8px 20px;
    }

    /* Presse slide image: reduce on mobile */
    .presse-slide__image {
        height: 220px;
    }

    .presse-slide__content {
        padding: 16px;
    }


    .presse-slide__btn {
        font-size: 16px;
        padding: 8px 20px;
    }

    .section-title--presse {
        font-size: 40px;
    }

    /* Event cards: proper stacking */
    .event-card__body {
        min-height: auto;
    }

    .event-card__btn {
        font-size: 13px;
        padding: 6px 16px;
    }

    /* Gastro: reduce image height on mobile */
    .gastro-image img {
        min-height: 200px;
        max-height: 300px;
    }

    .gastro-content {
        padding: 20px;
    }

    .gastro-content__btn {
        font-size: 16px;
        padding: 8px 20px;
    }

    /* Partner logos: smaller on mobile */
    .partner-logo {
        width: 110px;
        height: 44px;
        margin-right: 28px;
    }

    .partner-logo img {
        max-width: 110px;
        max-height: 44px;
    }

    /* Newsletter: tighter on mobile */
    .newsletter-input {
        padding: 0 20px;
    }

    /* Footer logo smaller on mobile */
    .footer-logo img {
        width: 180px;
    }
}

/* Pink badge "Buch jetzt deinen Space" */
.hero__badge-wrap {
    position: relative;
    width: clamp(8rem, 6rem + 7vw, 20rem);
    height: clamp(8rem, 6rem + 7vw, 20rem);
    transform: matrix(0.98, -0.21, 0.21, 0.98, 0, 0); /* ~-12deg rotation from XD */
}

.hero__badge-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero__badge-text {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #FFFFFF;
    text-align: center;
    font-family: 'Inter Tight', sans-serif;
    font-style: italic;
    /* ~15% inset on each side to stay inside the wavy edges */
    padding: 15%;
}

.hero__badge-title {
    font-size: clamp(0.8rem, 0.5rem + 0.7vw, 1.375rem);
    font-weight: 700;
    font-style: italic;
    line-height: 1.2;
    letter-spacing: 0.083rem;
    margin-bottom: clamp(0.125rem, 0.1rem + 0.15vw, 0.25rem);
}

.hero__badge-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero__badge-list li {
    font-size: clamp(0.65rem, 0.4rem + 0.55vw, 1.125rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
    letter-spacing: 0;
    padding: 0;
}


/* Hero marquee — straddles hero / description edge */
.hero-marquee {
    position: relative;
    z-index: 10;
    height: 0;
    overflow: visible;
    white-space: nowrap;
    pointer-events: none;
    text-align: center; /* statisch zentriert, keine Bewegung */
}

.hero-marquee__track {
    position: relative;
    display: inline-block;
    transform: translateY(-50%);
}

.hero-marquee__img {
    display: block;
    height: clamp(2rem, 1rem + 2.5vw, 4.5rem);
    width: auto;
    margin: 0 auto;
}

@keyframes marquee-scroll {
    0% {
        transform: translateY(-50%) translateX(0);
    }
    100% {
        transform: translateY(-50%) translateX(-50%);
    }
}

/* Hero description below image — 481px at 1366 */
.hero__description {
    position: relative;
    z-index: 2;
    min-height: clamp(15rem, 10rem + 15vw, 30.0625rem); /* 240px mobile → 481px desktop */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(3rem, 2rem + 3vw, 5rem) var(--container-padding);
}

.hero__description-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    text-align: center;
}

.hero__description-inner p {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(0.9375rem, 0.5rem + 1.2vw, 2.5rem);
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0;
    color: #FFFFFF;
}

.hero__description-btn {
    display: inline-flex;
    align-items: center;
    margin-top: clamp(1.5rem, 1rem + 2vw, 2.5rem);
    padding: 0.85rem 2.2rem;
    background: var(--color-primary);
    color: #ffffff;
    border-radius: var(--radius-pill);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: clamp(1rem, 0.85rem + 0.4vw, 1.2rem);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.hero__description-btn:hover {
    transform: translateY(-2px);
    background: var(--color-primary-hover);
    box-shadow: 0 16px 34px rgba(231, 26, 128, 0.4);
}

.hero__text-col p.hero__text {
    font-size: 0.95rem;
    line-height: 1.9;
    opacity: 0.95;
    max-width: 650px;
    margin-bottom: 24px;
}

.hero__btn {
    display: inline-block;
}

.hero__badges-col {
    display: flex;
    gap: 16px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--color-primary);
    border-radius: var(--radius-lg);
    color: var(--color-text-light);
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
}

.hero__badge svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* ============================================
   INKLUSIVE LEISTUNGEN (Homepage)
   ============================================ */

.section-leistungen-home {
    background: #ffffff;
    padding: 48px 0;
    border-bottom: 1px solid var(--color-border);
}

.leistungen-home-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.leistungen-home-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text-dark);
}

.leistungen-home-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

/* ============================================
   BÜROS SECTION
   ============================================ */

/* Die Büros heading */
.section-title--bueros {
    color: #403F3F;
    margin-bottom: clamp(2rem, 1.5rem + 3vw, 6rem);
}

/* Büros slider */
.bueros-slider {
    position: relative;
}

.bueros-slider__track {
    display: flex;
    align-items: flex-start;
    gap: clamp(1rem, 0.5rem + 1.5vw, 2rem);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 1rem;
    cursor: grab;
}

.bueros-slider__track:active {
    cursor: grabbing;
}

.bueros-slider__track::-webkit-scrollbar {
    display: none;
}

.bueros-slider__slide {
    flex: 0 0 clamp(14rem, 10rem + 12vw, 21.75rem); /* 348px at 1366 */
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

/* Zigzag: odd slides up, even slides down */
.bueros-slider__slide:nth-child(odd) {
    align-self: flex-start;
}

.bueros-slider__slide:nth-child(even) {
    align-self: flex-end;
    margin-top: clamp(3rem, 2rem + 3vw, 6rem);
}

/* Büro card */
.buero-card {
    position: relative;
    display: block;
    text-decoration: none;
}

.buero-card__image {
    position: relative;
    width: 100%;
    aspect-ratio: 348 / 492; /* XD ratio */
    overflow: hidden;
    border: clamp(0.125rem, 0.1rem + 0.05vw, 0.1875rem) solid #403F3F; /* 3px at 1366 */
    border-radius: var(--radius-lg);
}

.buero-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.buero-card:hover .buero-card__image img {
    transform: scale(1.05);
}

/* "Derzeit verfügbar" badge — full width, top edge */
.buero-card__status {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #E71A80;
    color: #FFFFFF;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(0.8rem, 0.5rem + 0.8vw, 1.6875rem); /* 27px at 1366 */
    font-weight: 500;
    line-height: 1.148;
    letter-spacing: 0.05rem;
    padding: clamp(0.5rem, 0.3rem + 0.5vw, 1.125rem) clamp(0.75rem, 0.5rem + 0.75vw, 1.5rem);
    z-index: 2;
}

/* "Zum Büro" button */
.buero-card__link {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    padding: clamp(0.5rem, 0.3rem + 0.5vw, 1.125rem) clamp(0.75rem, 0.5rem + 0.75vw, 1.5rem);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(0.8rem, 0.5rem + 0.8vw, 1.6875rem); /* 27px at 1366 */
    font-weight: 500;
    line-height: 1.148;
    letter-spacing: 0.05rem;
    color: #FFFFFF;
    background: #E71A80;
    transition: background var(--transition);
    white-space: nowrap;
    z-index: 2;
}

.buero-card:hover .buero-card__link {
    background: var(--color-primary-hover);
}

/* Arrow buttons */
.bueros-slider__arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-75%);
    width: clamp(2.5rem, 2rem + 1vw, 3.5rem);
    height: clamp(2.5rem, 2rem + 1vw, 3.5rem);
    border-radius: 50%;
    background: #403F3F;
    color: #FFFFFF;
    font-size: clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
    border: none;
    cursor: pointer;
    z-index: 5;
    transition: background var(--transition), transform var(--transition);
    align-items: center;
    justify-content: center;
}

.bueros-slider__arrow:hover {
    background: #E71A80;
}

.bueros-slider__arrow--prev {
    left: -50px;
}

.bueros-slider__arrow--next {
    right: -50px;
}

@media (min-width: 768px) {
    .bueros-slider__arrow {
        display: flex;
    }
}

/* Progress bar — pink start, dark end */
.bueros-slider__progress {
    width: 100%;
    height: 0.25rem;
    background: #403F3F;
    margin-top: clamp(1rem, 0.5rem + 1vw, 1.5rem);
    border-radius: 0.125rem;
    overflow: hidden;
}

.bueros-slider__progress-bar {
    height: 100%;
    background: #E71A80;
    width: 0%;
    border-radius: 0.125rem;
    transition: width 0.15s linear;
}

.buero-card__caption {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(0.75rem, 0.5rem + 0.5vw, 1rem);
    font-weight: 400;
    color: #403F3F;
    margin-top: clamp(0.375rem, 0.25rem + 0.25vw, 0.625rem);
    text-align: center;
}

/* ============================================
   BÜRO SHOWCASE — zwei große Bilder statt Slider
   ============================================ */
.buero-showcase {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 0.5rem + 2vw, 2rem);
    margin-top: clamp(1.5rem, 1rem + 2vw, 3rem);
}

/* pinker Deko-Glow dahinter */
.buero-showcase::before {
    content: '';
    position: absolute;
    z-index: 0;
    top: -6%;
    left: 50%;
    width: 72%;
    height: 80%;
    transform: translateX(-50%);
    background: radial-gradient(closest-side, rgba(231, 26, 128, 0.32), transparent 72%);
    filter: blur(46px);
    pointer-events: none;
}

.buero-showcase__item {
    position: relative;
    z-index: 1;
    display: block;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 4 / 5;
    text-decoration: none;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.buero-showcase__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(231, 26, 128, 0.30);
}

.buero-showcase__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.buero-showcase__item:hover .buero-showcase__img {
    transform: scale(1.07);
}

.buero-showcase__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 0.35rem;
    padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
    background: linear-gradient(to top, rgba(18, 16, 17, 0.94) 0%, rgba(18, 16, 17, 0.78) 32%, rgba(18, 16, 17, 0.4) 60%, rgba(18, 16, 17, 0) 100%);
    color: #ffffff;
}

.buero-showcase__kicker {
    font-family: 'Caveat', cursive;
    font-size: clamp(1.4rem, 1rem + 1vw, 2.1rem);
    line-height: 1;
    color: #ff5aa8;
}

.buero-showcase__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 1rem + 1.6vw, 2.2rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #ffffff;
    margin: 0.15rem 0 0.5rem;
}

.buero-showcase__text {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.9rem, 0.8rem + 0.3vw, 1.05rem);
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    max-width: 46ch;
}

.buero-showcase__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.7rem;
    padding: 0.6rem 1.4rem;
    background: var(--color-primary);
    color: #ffffff;
    border-radius: var(--radius-pill);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: clamp(0.9rem, 0.7rem + 0.4vw, 1.05rem);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease, background 0.3s ease;
}

.buero-showcase__item:hover .buero-showcase__cta,
.buero-showcase__item:focus-visible .buero-showcase__cta {
    opacity: 1;
    transform: translateY(0);
}

.buero-showcase__cta svg {
    transition: transform 0.3s ease;
}

.buero-showcase__item:hover .buero-showcase__cta svg {
    transform: translateX(4px);
}

/* Touch-Geräte ohne Hover: CTA dauerhaft sichtbar */
@media (hover: none) {
    .buero-showcase__cta {
        opacity: 1;
        transform: none;
    }
}

@media (min-width: 900px) {
    .buero-showcase {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   ALLES WAS DU BRAUCHST / FEATURES
   ============================================ */

/* Features SVG heading — straddles edge, static full-width */
.features-heading-marquee {
    position: relative;
    z-index: 10;
    height: 0;
    overflow: visible;
    white-space: nowrap;
    pointer-events: none;
    text-align: center; /* statisch zentriert, keine Bewegung */
}

.features-heading-marquee__track {
    position: relative;
    display: inline-block;
    transform: translateY(-50%);
}

.features-heading-marquee__img {
    display: block;
    height: clamp(2rem, 1rem + 2.5vw, 4.5rem);
    width: auto;
    margin: 0 auto;
}

/* Extra top padding on features so the marquee has room */
.section-features {
    padding-top: clamp(4rem, 3rem + 3vw, 7rem);
}

/* Features slider */
.features-slider {
    position: relative;
}

.features-slider__track {
    display: flex;
    align-items: flex-start;
    gap: clamp(1rem, 0.5rem + 1.5vw, 2rem);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 1rem;
    cursor: grab;
}

.features-slider__track:active {
    cursor: grabbing;
}

.features-slider__track::-webkit-scrollbar {
    display: none;
}

.features-slider__slide {
    flex: 0 0 clamp(14rem, 10rem + 12vw, 21.875rem); /* 350px at 1366 */
    scroll-snap-align: start;
}

.features-slider__slide:nth-child(odd) {
    align-self: flex-start;
}

.features-slider__slide:nth-child(even) {
    align-self: flex-end;
    margin-top: clamp(2rem, 1.5rem + 2vw, 4rem);
}

/* Feature card */
.feature-card {
    display: flex;
    flex-direction: column;
}

.feature-card__image {
    width: 100%;
    aspect-ratio: 349 / 400; /* XD */
    overflow: hidden;
    border: clamp(0.0625rem, 0.05rem + 0.03vw, 0.125rem) solid #403F3F; /* 2px at 1366 */
}

.feature-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card__body {
    background: #403F3F;
    padding: clamp(1rem, 0.75rem + 0.75vw, 1.5rem);
    min-height: clamp(8rem, 6rem + 5vw, 15.9375rem); /* 255px at 1366 */
}

.feature-card__title {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(1rem, 0.7rem + 0.8vw, 2rem); /* 32px at 1366 */
    font-weight: 700;
    line-height: 1.25; /* 40/32 */
    color: #FFFFFF;
    margin-bottom: clamp(0.5rem, 0.3rem + 0.4vw, 1rem);
    text-align: center;
}

.feature-card__text {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(0.75rem, 0.5rem + 0.6vw, 1.375rem); /* 22px at 1366 */
    font-weight: 500;
    line-height: 1.364; /* 30/22 */
    color: #FFFFFF;
    text-align: left;
}

/* Features arrows + progress — reuse büro styles */
.features-slider__arrow {
    display: none;
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: clamp(2.5rem, 2rem + 1vw, 3.5rem);
    height: clamp(2.5rem, 2rem + 1vw, 3.5rem);
    border-radius: 50%;
    background: #403F3F;
    color: #FFFFFF;
    font-size: clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
    border: none;
    cursor: pointer;
    z-index: 5;
    transition: background var(--transition);
    align-items: center;
    justify-content: center;
}

.features-slider__arrow:hover {
    background: #E71A80;
}

.features-slider__arrow--prev { left: -50px; }
.features-slider__arrow--next { right: -50px; }

@media (min-width: 768px) {
    .features-slider__arrow {
        display: flex;
    }
}

.features-slider__progress {
    width: 100%;
    height: 0.25rem;
    background: #403F3F;
    margin-top: clamp(1rem, 0.5rem + 1vw, 1.5rem);
    border-radius: 0.125rem;
    overflow: hidden;
}

.features-slider__progress-bar {
    height: 100%;
    background: #E71A80;
    width: 0%;
    border-radius: 0.125rem;
    transition: width 0.15s linear;
}

/* ============================================
   BÜROGRÖSSEN (Size tiers)
   ============================================ */

.buero-sizes {
    margin-top: clamp(48px, 4vw, 80px);
}

.buero-sizes__head {
    text-align: center;
    margin-bottom: clamp(28px, 3vw, 48px);
}

.buero-sizes__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 1.2rem + 2.5vw, 3rem);
    line-height: 1.1;
    color: #403F3F;
    margin-bottom: 12px;
}

.buero-sizes__title em { font-style: italic; color: #E71A80; }

.buero-sizes__text {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 0.9rem + 0.4vw, 1.2rem);
    color: #555;
    max-width: 54ch;
    margin: 0 auto;
}

.buero-sizes__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 24px;
    align-items: stretch;
}

/* Grid-Kinder dürfen schrumpfen statt zu überlaufen */
.size-card,
.tm-card,
.event-card,
.koop-card { min-width: 0; }

.size-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 22px;
    padding: 36px 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.size-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(231, 26, 128, 0.16);
}

.size-card--featured {
    border-color: rgba(231, 26, 128, 0.45);
    box-shadow: 0 30px 70px rgba(231, 26, 128, 0.20);
}

.size-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: linear-gradient(135deg, #E71A80, #b3155f);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(231, 26, 128, 0.35);
}

.size-card__qm {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2.8rem, 2rem + 2.5vw, 4rem);
    line-height: 1;
    color: #E71A80;
    margin-bottom: 14px;
}

.size-card__qm sup {
    font-size: 0.4em;
    font-weight: 700;
    vertical-align: super;
    margin-left: 2px;
}

.size-card__qm--text {
    font-size: clamp(2rem, 1.4rem + 1.8vw, 2.8rem);
}

.size-card__name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.size-card__text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.98rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 24px;
    flex: 1 1 auto;
}

.size-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    padding: 12px 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, #E71A80, #b3155f);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(231, 26, 128, 0.30);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.size-card__btn svg { transition: transform 0.25s ease; }
.size-card__btn:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(231, 26, 128, 0.42); }
.size-card__btn:hover svg { transform: translateX(4px); }

.size-card--custom {
    background: #2c2b2b;
    border-color: rgba(255, 255, 255, 0.08);
}

.size-card--custom .size-card__qm--text { color: #ff5aa8; }
.size-card--custom .size-card__name { color: #fff; }
.size-card--custom .size-card__text { color: rgba(255, 255, 255, 0.75); }

@media (max-width: 900px) {
    .buero-sizes__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

/* ============================================
   TAGESMIETEN (Section)
   ============================================ */

.tagesmiete-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.tm-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(231, 26, 128, 0.16);
}

.tm-card__image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.tm-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tm-card__meta {
    position: absolute;
    left: 12px;
    bottom: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tm-card__meta-item {
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

.tm-card__body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 22px 24px 26px;
}

.tm-card__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.tm-card__text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.55;
    color: #555;
    margin-bottom: 20px;
    flex: 1 1 auto;
}

.tm-card__btn {
    align-self: flex-start;
    padding: 11px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #E71A80, #b3155f);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(231, 26, 128, 0.30);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tm-card__btn:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(231, 26, 128, 0.42); }

.tm-card__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 0 0 16px;
    font-family: 'Montserrat', sans-serif;
}

.tm-card__price-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.tm-card__price-value {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: #E71A80;
}

/* ============================================
   BÜROS NACH GRÖSSE (Unterseite)
   ============================================ */

.bsize-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.bsize-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bsize-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(231, 26, 128, 0.16);
}

.bsize-card__image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.bsize-card__image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.bsize-card__status,
.bsize-card__size {
    position: absolute;
    top: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
}

.bsize-card__status { left: 12px; background: #E71A80; color: #fff; }
.bsize-card__size { right: 12px; background: rgba(0, 0, 0, 0.65); color: #fff; }

.bsize-card__body { padding: 20px 24px 24px; }

.bsize-card__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.bsize-card__price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #E71A80;
    font-weight: 700;
    margin-bottom: 10px;
}

.bsize-card__link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #E71A80;
}

.bsize-empty {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

.bsize-cta { text-align: center; }

.bsize-cta__text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.bsize-cta__btn {
    display: inline-block;
    padding: 15px 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, #E71A80, #b3155f);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(231, 26, 128, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bsize-cta__btn:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(231, 26, 128, 0.45); }

/* ============================================
   BÜRO-GRÖSSEN INFO (generelle Infos statt Einzel-Büros)
   ============================================ */
.buero-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 1rem + 2vw, 3rem);
    align-items: center;
    max-width: 1040px;
    margin: 0 auto clamp(2.5rem, 2rem + 2vw, 4rem);
}

@media (min-width: 860px) {
    .buero-info {
        grid-template-columns: 0.85fr 1.15fr;
        align-items: stretch;
    }
}

.buero-info__visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

/* Desktop: Bild auf Höhe der Inhaltsbox ziehen (nach der Basisregel, damit es greift) */
@media (min-width: 860px) {
    .buero-info__visual {
        aspect-ratio: auto;
        min-height: 100%;
    }
}

.buero-info__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.buero-info__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--color-primary);
    color: #fff;
    border-radius: var(--radius-pill);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 8px 24px rgba(231, 26, 128, 0.35);
}

.buero-info__badge-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #fff;
    animation: buero-info-pulse 1.8s ease-out infinite;
}

@keyframes buero-info-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6); }
    100% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
}

.buero-info__main {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 1rem + 2.5vw, 2.75rem);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.buero-info__main .section-kicker {
    text-align: left;
}

.buero-info__title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 1.2rem + 2vw, 2.8rem);
    line-height: 1.1;
    color: #403F3F;
    margin: 0.25rem 0 1rem;
}

.buero-info__title em {
    font-style: italic;
    color: #E71A80;
}

.buero-info__intro {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 0.9rem + 0.3vw, 1.15rem);
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 1.5rem;
}

.buero-info__features {
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
    display: grid;
    gap: 0.7rem;
}

.buero-info__features li {
    position: relative;
    padding-left: 2.1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #403F3F;
    line-height: 1.4;
}

.buero-info__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 1.4rem;
    height: 1.4rem;
    line-height: 1.4rem;
    text-align: center;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
}

.buero-info__feature-note {
    font-size: 0.85em;
    opacity: 0.7;
}

.buero-info__share-note {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.98rem;
    line-height: 1.55;
    color: #403F3F;
    background: rgba(231, 26, 128, 0.07);
    border-left: 3px solid var(--color-primary);
    border-radius: 10px;
    padding: 0.9rem 1.1rem;
    margin: 0 0 1.75rem;
}

.buero-info__share-note strong {
    color: var(--color-primary);
}

.buero-info__stats {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(0.75rem, 0.5rem + 1vw, 1.25rem);
    margin-bottom: 2rem;
}

.buero-info__stat {
    flex: 1 1 auto; /* Box wächst auf Textbreite -> alle Wörter in einer Zeile */
    min-width: max-content;
    background: #f6f5f3;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-lg);
    padding: 1.1rem 1.25rem;
    text-align: center;
}

.buero-info__stat-value {
    display: block;
    white-space: nowrap; /* "ab 125 € netto" bleibt einzeilig */
    font-family: 'Inter Tight', sans-serif;
    font-weight: 800;
    font-size: clamp(1.2rem, 0.95rem + 0.9vw, 1.65rem);
    color: #E71A80;
    line-height: 1.1;
}

.buero-info__stat-label {
    display: block;
    margin-top: 0.25rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #777;
}

/* Cross-Link CTA (zur jeweils anderen Bürogröße) */
.bsize-crosslink__card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(1.5rem, 1rem + 2vw, 3rem);
    max-width: 1040px;
    margin: 0 auto;
    padding: clamp(1.75rem, 1.25rem + 2vw, 3rem);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #ffffff 0%, #faf6f4 100%);
    border: 1px solid rgba(231, 26, 128, 0.18);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.bsize-crosslink__card:hover {
    transform: translateY(-5px);
    border-color: rgba(231, 26, 128, 0.45);
    box-shadow: 0 32px 70px rgba(231, 26, 128, 0.18);
}

.bsize-crosslink__body {
    min-width: 0;
}

.bsize-crosslink__kicker {
    display: block;
    font-family: 'Caveat', cursive;
    font-size: clamp(1.5rem, 1rem + 1.4vw, 2.2rem);
    line-height: 1;
    color: #E71A80;
    transform: rotate(-2deg);
}

.bsize-crosslink__title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.4rem);
    line-height: 1.1;
    color: #403F3F;
    margin: 0.25rem 0 0.5rem;
}

.bsize-crosslink__sub {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.1rem);
    line-height: 1.55;
    color: #555;
    max-width: 52ch;
    margin: 0;
}

.bsize-crosslink__btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.9rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #E71A80, #b3155f);
    color: #ffffff;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: clamp(0.95rem, 0.85rem + 0.3vw, 1.1rem);
    white-space: nowrap;
    box-shadow: 0 14px 30px rgba(231, 26, 128, 0.32);
    transition: box-shadow 0.25s ease;
}

.bsize-crosslink__btn svg { transition: transform 0.25s ease; }
.bsize-crosslink__card:hover .bsize-crosslink__btn svg { transform: translateX(4px); }
.bsize-crosslink__card:hover .bsize-crosslink__btn { box-shadow: 0 20px 44px rgba(231, 26, 128, 0.45); }

@media (max-width: 680px) {
    .bsize-crosslink__card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .bsize-crosslink__btn { align-self: stretch; justify-content: center; }
}

/* Ausgeblendete (aufklappbare) Bildgalerie auf den Größen-Seiten */
.bsize-gallery {
    max-width: 1040px;
    margin: 0 auto clamp(2rem, 1.5rem + 2vw, 3.5rem);
    text-align: center;
}
.bsize-gallery__title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 800;
    font-size: clamp(1.4rem, 1rem + 1.4vw, 2rem);
    color: #403F3F;
    margin: 0.25rem 0 0.5rem;
}
.bsize-gallery__toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin: 0 auto;
    cursor: pointer;
    list-style: none;
    padding: 12px 28px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(231, 26, 128, 0.30);
    color: #403F3F;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.bsize-gallery__toggle::-webkit-details-marker { display: none; }
.bsize-gallery__toggle:hover {
    background: #E71A80;
    color: #ffffff;
    border-color: #E71A80;
}
.bsize-gallery__chevron { transition: transform 0.3s ease; }
.bsize-gallery[open] .bsize-gallery__chevron { transform: rotate(180deg); }
.bsize-gallery__toggle-hide { display: none; }
.bsize-gallery[open] .bsize-gallery__toggle-show { display: none; }
.bsize-gallery[open] .bsize-gallery__toggle-hide { display: inline; }
.bsize-gallery__track {
    display: flex;
    gap: 16px;
    margin-top: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
    text-align: left;
}
.bsize-gallery__track::-webkit-scrollbar { display: none; }
.bsize-gallery__item {
    flex: 0 0 clamp(260px, 60vw, 420px);
    scroll-snap-align: start;
}
.bsize-gallery__item img {
    width: 100%;
    height: clamp(200px, 40vw, 300px);
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* Verfügbarkeit + Anfrage-Box auf den Größen-Seiten */
.buero-anfrage-box {
    max-width: 760px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 1rem + 2vw, 3rem);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.10);
    border-top: 4px solid var(--color-primary);
}

.buero-anfrage-box--none { border-top-color: #d98a2b; }
.buero-anfrage-box--unknown { border-top-color: #9a9a9a; }

.buero-anfrage-box__head {
    text-align: center;
    margin-bottom: clamp(1.25rem, 1rem + 1vw, 2rem);
}

.buero-anfrage-box__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.95rem;
    margin-bottom: 0.9rem;
    border-radius: var(--radius-pill);
    background: rgba(231, 26, 128, 0.10);
    color: var(--color-primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.buero-anfrage-box--none .buero-anfrage-box__pill { background: rgba(217, 138, 43, 0.14); color: #b9791b; }
.buero-anfrage-box--unknown .buero-anfrage-box__pill { background: rgba(120, 120, 120, 0.12); color: #666; }

.buero-anfrage-box__title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 800;
    font-size: clamp(1.4rem, 1rem + 1.6vw, 2.1rem);
    color: #403F3F;
    line-height: 1.15;
    margin: 0 0 0.6rem;
}

.buero-anfrage-box__sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    max-width: 54ch;
    margin: 0 auto;
}

.buero-anfrage-box__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 560px) {
    .buero-anfrage-box__row {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

/* ============================================
   FLOOR PLANS
   ============================================ */

.floorplans {
    margin-top: 48px;
}

.floorplans__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.floorplans__item {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    padding: 16px;
}

.floorplans__item img {
    width: 100%;
    height: auto;
}

/* ============================================
   DIE LAGE SECTION
   ============================================ */

.section-lage {
    background: #ffffff;
}

.lage-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.lage-content p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--color-text-muted);
}

/* ============================================
   EVENTS SECTION
   ============================================ */

.section-events {
    position: relative;
    color: var(--color-text-light);
    background-color: var(--color-bg-dark);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding-top: clamp(3rem, 2.5rem + 3vw, 6rem);
    padding-bottom: clamp(3rem, 2.5rem + 3vw, 6rem);
}

.section-events .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.section-title--events {
    color: #ffffff;
    margin-bottom: 16px;
}

.section-events__lead {
    max-width: 60ch;
    margin: 0 auto 56px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 0.9rem + 0.4vw, 1.2rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
    text-align: left;
}

.event-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.event-card__image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.event-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-card__body {
    background: #ffffff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.event-card__title {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(1.1rem, 0.8rem + 0.9vw, 1.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #403F3F;
    margin-bottom: 8px;
}

.event-card__datetime {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(0.85rem, 0.5rem + 0.8vw, 1.125rem);
    font-weight: 400;
    line-height: 1.4;
    color: #403F3F;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.event-card__icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

.event-card__icon--time {
    margin-left: 10px;
}

.event-card__divider {
    width: 100%;
    height: auto;
    margin-bottom: 12px;
    opacity: 0.5;
}

.event-card__text {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(0.85rem, 0.5rem + 0.8vw, 1.125rem);
    font-weight: 400;
    line-height: 1.4;
    color: #403F3F;
    margin-bottom: 20px;
    flex: 1;
}

.event-card__btn {
    display: inline-block;
    align-self: flex-end;
    margin-top: auto;
    background: #E71A80;
    color: #ffffff;
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.event-card__btn:hover {
    background: #c80069;
}

/* Events Newsletter CTA */
.events-newsletter {
    text-align: center;
    padding: 40px 0 0;
}

.events-newsletter__heading {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(1.25rem, 0.8rem + 1.2vw, 2rem);
    font-weight: 800;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 4px;
}

.events-newsletter__text {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(1rem, 0.6rem + 1vw, 1.375rem);
    font-weight: 400;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 24px;
}

.btn--rounded-pink {
    display: inline-block;
    background: #E71A80;
    color: #ffffff;
    padding: 12px 40px;
    border-radius: var(--radius-pill);
    font: 500 22px/1.2 'Helvetica Neue', Helvetica, Arial, sans-serif;
    letter-spacing: 0.84px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn--rounded-pink:hover {
    background: #c80069;
}

/* Newsletter-CTA auf der Eventseite – pinke Gradient-Karte im Stil der übrigen CTAs */
.events-news-cta {
    position: relative;
    overflow: hidden;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
    border-radius: clamp(20px, 1rem + 1.5vw, 32px);
    padding: clamp(2.5rem, 1.75rem + 3vw, 4.5rem) clamp(1.5rem, 1rem + 3vw, 4rem);
    background:
        radial-gradient(120% 140% at 0% 0%, rgba(255, 255, 255, 0.18), transparent 55%),
        radial-gradient(120% 140% at 100% 100%, rgba(0, 0, 0, 0.22), transparent 55%),
        linear-gradient(135deg, #E71A80 0%, #b8125f 100%);
    box-shadow: 0 30px 60px -25px rgba(231, 26, 128, 0.55);
    isolation: isolate;
}

.events-news-cta__glow {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    filter: blur(8px);
}
.events-news-cta__glow--1 {
    width: clamp(180px, 26vw, 320px); height: clamp(180px, 26vw, 320px);
    top: -22%; right: -8%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 70%);
}
.events-news-cta__glow--2 {
    width: clamp(140px, 20vw, 240px); height: clamp(140px, 20vw, 240px);
    bottom: -25%; left: -6%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 70%);
}

.events-news-cta__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.30);
}

.events-news-cta__kicker {
    display: block;
    font-family: 'Caveat', cursive;
    font-size: clamp(1.6rem, 1.1rem + 1.4vw, 2.4rem);
    line-height: 1;
    transform: rotate(-2deg);
    margin-bottom: 0.35rem;
}

.events-news-cta__title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 1.2rem + 2.2vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 0 0 0.75rem;
}
.events-news-cta__title em {
    font-style: normal;
    color: #ffd1e7;
}

.events-news-cta__text {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.95rem, 0.85rem + 0.4vw, 1.15rem);
    line-height: 1.6;
    max-width: 46ch;
    margin: 0 auto 1.75rem;
    opacity: 0.94;
}

.events-news-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 2rem;
    border-radius: 999px;
    background: #ffffff;
    color: #E71A80;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: clamp(0.95rem, 0.85rem + 0.3vw, 1.1rem);
    text-decoration: none;
    box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.events-news-cta__btn svg { transition: transform 0.25s ease; }
.events-news-cta__btn:hover {
    transform: translateY(-2px);
    background: #403F3F;
    color: #ffffff;
    box-shadow: 0 20px 44px -10px rgba(0, 0, 0, 0.45);
}
.events-news-cta__btn:hover svg { transform: translateX(4px); }

/* Vergangene Events: ausklappbares Archiv (Drop-Down) */
.events-archive {
    margin-top: 28px;
}
.events-archive__toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    width: fit-content;
    cursor: pointer;
    list-style: none;
    padding: 12px 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: background 0.25s ease, border-color 0.25s ease;
}
.events-archive__toggle::-webkit-details-marker { display: none; }
.events-archive__toggle:hover {
    background: rgba(231, 26, 128, 0.85);
    border-color: rgba(231, 26, 128, 0.85);
}
.events-archive__chevron { transition: transform 0.3s ease; }
.events-archive[open] .events-archive__chevron { transform: rotate(180deg); }
.events-archive__toggle-less { display: none; }
.events-archive[open] .events-archive__toggle-more { display: none; }
.events-archive[open] .events-archive__toggle-less { display: inline; }
.events-archive__grid { margin-top: 28px; }
/* Toggle zentrieren */
.presse-page-section .events-archive { text-align: center; }
.presse-page-section .events-archive__grid { text-align: left; }

/* Presse-Artikel: heller Hintergrund -> Toggle pink/lesbar (statt weiß) */
#presse-artikel .events-archive__toggle {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}
#presse-artikel .events-archive__toggle:hover {
    background: #c80069;
    border-color: #c80069;
}

/* ============================================
   GASTRO SECTION
   ============================================ */

.section-gastro {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #403F3F;
}

.section-title--gastro {
    color: #403F3F;
    margin-bottom: 40px;
}

.section-gastro__lead {
    max-width: 60ch;
    margin: 0 auto 40px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 0.9rem + 0.4vw, 1.2rem);
    line-height: 1.6;
    color: #555;
}

.gastro-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.gastro-image {
    overflow: hidden;
}

.gastro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 280px;
}

.gastro-content {
    background: #403F3F;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.gastro-content__title {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(1.3rem, 0.8rem + 1.2vw, 2rem);
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 20px;
}

.gastro-content__text {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(0.9rem, 0.5rem + 1vw, 1.375rem);
    font-weight: 500;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 24px;
    flex: 1;
}

.gastro-content__hours {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.9rem, 0.8rem + 0.3vw, 1.05rem);
    color: #ffffff;
    margin-bottom: 24px;
}

.gastro-content__hours-icon {
    width: 22px;
    height: 22px;
    margin-top: 1px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.gastro-content__hours span {
    line-height: 1.4;
}

.gastro-content__hours strong {
    font-weight: 700;
}

.gastro-content__btn {
    display: inline-block;
    align-self: flex-end;
    margin-top: auto;
    background: #E71A80;
    color: #ffffff;
    padding: 10px 28px;
    font: 500 20px/1.2 'Helvetica Neue', Helvetica, Arial, sans-serif;
    letter-spacing: 0.69px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.gastro-content__btn:hover {
    background: #c80069;
}

/* ============================================
   UNSERE MIETER MARQUEE & SLIDER
   ============================================ */

.mieter-marquee {
    position: relative;
    z-index: 10;
    height: 0;
    overflow: visible;
    white-space: nowrap;
    pointer-events: none;
    text-align: center; /* statisch zentriert, keine Bewegung */
}

.mieter-marquee__track {
    position: relative;
    display: inline-block;
    transform: translateY(-50%);
}

.mieter-marquee__img {
    display: block;
    height: clamp(2rem, 1rem + 2.5vw, 4.5rem);
    width: auto;
    margin: 0 auto;
}

.section-mieter {
    padding-top: clamp(4rem, 3rem + 3vw, 7rem);
}

.mieter-slider {
    position: relative;
}

.mieter-slider__track {
    display: flex;
    align-items: stretch; /* alle Karten gleich hoch, in einer Linie */
    gap: clamp(1rem, 0.5rem + 1.5vw, 2rem);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 1rem;
    cursor: grab;
}

.mieter-slider__track::-webkit-scrollbar {
    display: none;
}

.mieter-slider__slide {
    flex: 0 0 clamp(16rem, 14rem + 5vw, 22rem);
    scroll-snap-align: start;
    align-self: stretch; /* gerade Linie statt Zickzack */
    margin-top: 0;
}

.mieter-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #403F3F;
    overflow: hidden;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mieter-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.mieter-card__image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.mieter-card__image img {
    width: auto;
    max-width: 100%;
    height: 90px; /* alle Logos einheitlich gleich groß (gleiche Höhe) */
    object-fit: contain;
    margin: 0 auto;
}

.mieter-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.mieter-card__name {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(1.2rem, 0.8rem + 1vw, 1.75rem);
    font-weight: 700;
    line-height: 1.25;
    color: #ffffff;
    text-align: center;
    margin-bottom: 12px;
}

.mieter-card__text {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(0.85rem, 0.5rem + 0.8vw, 1.125rem);
    font-weight: 500;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 20px;
}

.mieter-card__btn {
    display: inline-block;
    align-self: flex-end;
    margin-top: auto;
    background: #E71A80;
    color: #ffffff;
    padding: 10px 24px;
    font: 500 20px/1.2 'Helvetica Neue', Helvetica, Arial, sans-serif;
    letter-spacing: 0.69px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.mieter-card__btn:hover {
    background: #c80069;
}

/* Mieter slider arrows & progress — same as features */
.mieter-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(64, 63, 63, 0.8);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 5;
    transition: background 0.3s ease;
}

.mieter-slider__arrow:hover {
    background: #E71A80;
}

.mieter-slider__arrow--prev {
    left: -50px;
}

.mieter-slider__arrow--next {
    right: -50px;
}

.mieter-slider__progress {
    height: 3px;
    background: rgba(64, 63, 63, 0.2);
    border-radius: 2px;
    margin-top: 16px;
    overflow: hidden;
}

.mieter-slider__progress-bar {
    height: 100%;
    background: #E71A80;
    border-radius: 2px;
    width: 0;
    transition: width 0.15s ease;
}

/* ============================================
   TEAM SECTION
   ============================================ */

.section-title--team {
    color: #403F3F;
    margin-bottom: 20px;
}

.team-intro {
    text-align: center;
    max-width: clamp(20rem, 15rem + 25vw, 50rem);
    margin: 0 auto 50px;
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(0.9rem, 0.5rem + 1vw, 1.5rem);
    font-weight: 400;
    line-height: 1.6;
    color: #403F3F;
}

.team-slider {
    position: relative;
}

.team-slider__track {
    display: flex;
    align-items: stretch;
    gap: clamp(1rem, 0.5rem + 1.5vw, 2rem);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 1rem;
    cursor: grab;
}

.team-slider__track::-webkit-scrollbar {
    display: none;
}

.team-slider__slide {
    flex: 0 0 clamp(16rem, 14rem + 5vw, 22rem);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
}

.team-slider__slide:nth-child(odd),
.team-slider__slide:nth-child(even) {
    align-self: stretch;
    margin-top: 0;
}

.team-card {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
    border-radius: var(--radius-lg);
    /* Einheitlicher Rahmen um die ganze Karte. Mittleres Grau ist gegen helle
       UND dunkle Fotokanten sowie gegen den hellen Seitenhintergrund gleich
       sichtbar – damit jeder Team-Rand gleich dick wirkt (dunkles Grau verschmolz
       vorher mit dunklen Fotohintergründen und sah dadurch dicker/verblasst aus). */
    border: 2px solid #8c8a8a;
}

.team-card__image {
    width: 100%;
    height: 299px;
    overflow: hidden;
    background: #403F3F;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Variante-6-Anordnung: linksbündig, kompakte feste Schriftgrößen */
.team-card__body {
    background: #403F3F;
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 200px;
}

.team-card__name {
    font-family: 'Inter Tight', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.25;
    color: #ffffff;
    text-align: left;
    margin-bottom: 0;
}

/* Erste Positionszeile = Rolle (pink) */
.team-card__role {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.4;
    color: #E71A80;
    text-align: left;
    margin: 5px 0 6px;
}

/* Restliche Positionszeilen = Beschreibung (weiß) */
.team-card__desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.5;
    color: #E71A80;
    text-align: left;
    margin-bottom: 16px;
}

.team-card__text {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(0.85rem, 0.5rem + 0.8vw, 1.125rem);
    font-weight: 500;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 20px;
    flex: 1;
}

.team-card__linkedin {
    align-self: flex-start;
    margin-top: auto;
    transition: opacity 0.3s ease;
}

.team-card__linkedin:hover {
    opacity: 0.7;
}

.team-card__linkedin img {
    height: 32px;
    width: auto;
}

/* Team slider arrows & progress */
.team-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(64, 63, 63, 0.8);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 5;
    transition: background 0.3s ease;
}

.team-slider__arrow:hover {
    background: #E71A80;
}

.team-slider__arrow--prev {
    left: -50px;
}

.team-slider__arrow--next {
    right: -50px;
}

.team-slider__progress {
    height: 3px;
    background: rgba(64, 63, 63, 0.2);
    border-radius: 2px;
    margin-top: 16px;
    overflow: hidden;
}

.team-slider__progress-bar {
    height: 100%;
    background: #E71A80;
    border-radius: 2px;
    width: 0;
    transition: width 0.15s ease;
}

/* ============================================
   KOOPERATIONSPARTNER SECTION
   ============================================ */

.section-kooperation {
    position: relative;
    overflow: hidden;
    background: url('assets/images/bg-paper-grey.png') center / cover no-repeat;
    color: #403F3F;
}

/* Glows entfernt — helle Section soll sauber zum Papier-Muster passen (kein Schleier) */
.kooperation__glow {
    display: none;
}

.kooperation__glow--1 {
    top: -180px;
    left: -120px;
    background: radial-gradient(circle, rgba(231, 26, 128, 0.45), transparent 70%);
}

.kooperation__glow--2 {
    bottom: -200px;
    right: -140px;
    background: radial-gradient(circle, rgba(231, 26, 128, 0.30), transparent 70%);
}

.section-kooperation .container {
    position: relative;
    z-index: 1;
}

.section-title--kooperation {
    text-align: center;
    color: #403F3F;
    margin-bottom: 48px;
}

.section-title--kooperation em {
    font-style: italic;
    color: #E71A80;
}

/* Kompakter Slider statt großem Grid – nimmt deutlich weniger Platz ein */
.kooperation-slider {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.kooperation-slider__track {
    display: flex;
    align-items: stretch;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
    cursor: grab;
}

.kooperation-slider__track::-webkit-scrollbar { display: none; }

.kooperation-slider__slide {
    flex: 0 0 clamp(9rem, 7rem + 8vw, 12rem);
    scroll-snap-align: start;
}

.koop-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 100%;
    padding: 18px 16px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

a.koop-card:hover {
    transform: translateY(-5px);
    border-color: rgba(231, 26, 128, 0.55);
    box-shadow: 0 20px 50px rgba(231, 26, 128, 0.20);
}

.koop-card__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 100%;
    padding: 6px 10px;
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
}

.koop-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.koop-card__placeholder {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #403F3F;
    text-align: center;
}

.koop-card__name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(64, 63, 63, 0.85);
    letter-spacing: 0.02em;
    text-align: center;
}

/* Pfeile + Fortschritt analog zu den übrigen Slidern */
.kooperation-slider__arrow {
    position: absolute;
    top: calc(50% - 12px);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(64, 63, 63, 0.8);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 5;
    transition: background 0.3s ease;
}
.kooperation-slider__arrow:hover { background: #E71A80; }
.kooperation-slider__arrow--prev { left: -50px; }
.kooperation-slider__arrow--next { right: -50px; }

.kooperation-slider__progress {
    height: 3px;
    background: rgba(64, 63, 63, 0.18);
    border-radius: 2px;
    margin-top: 18px;
    overflow: hidden;
}
.kooperation-slider__progress-bar {
    height: 100%;
    background: #E71A80;
    border-radius: 2px;
    width: 0;
    transition: width 0.15s ease;
}

@media (max-width: 1024px) {
    .kooperation-slider__arrow--prev { left: 6px; }
    .kooperation-slider__arrow--next { right: 6px; }
}

/* ============================================
   PRESSE SECTION
   ============================================ */

.section-presse {
    color: #ffffff;
}

.section-title--presse {
    color: #ffffff;
    margin-bottom: 50px;
}

.presse-slider {
    position: relative;
}

.presse-slider__viewport {
    position: relative;
    overflow: hidden;
}

.presse-slide {
    display: none;
    flex-direction: column;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.presse-slide--active {
    display: flex;
}

.presse-slide__image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.presse-slide__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.presse-slide__content {
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    padding: 24px;
}

.presse-slide__meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font: 400 16px/1.4 'Inter Tight', sans-serif;
    color: #403F3F;
    margin-bottom: 10px;
}

.presse-slide__meta-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.presse-slide__headline {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(1.2rem, 0.8rem + 1vw, 2rem);
    font-weight: 700;
    line-height: 1.3;
    color: #403F3F;
    margin-bottom: 16px;
}

.presse-slide__text {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(0.85rem, 0.5rem + 0.8vw, 1.375rem);
    font-weight: 500;
    line-height: 1.4;
    color: #403F3F;
    margin-bottom: 20px;
    flex: 1;
}

.presse-slide__btn {
    display: inline-block;
    align-self: flex-end;
    margin-top: auto;
    background: #E71A80;
    color: #ffffff;
    padding: 10px 28px;
    font: 500 20px/1.2 'Helvetica Neue', Helvetica, Arial, sans-serif;
    letter-spacing: 0.69px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.presse-slide__btn:hover {
    background: #c80069;
}

/* Presse slider arrows */
.presse-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    color: #403F3F;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 5;
    transition: background 0.3s ease;
}

.presse-slider__arrow:hover {
    background: #E71A80;
    color: #fff;
}

.presse-slider__arrow--prev {
    left: -50px;
}

.presse-slider__arrow--next {
    right: -50px;
}

/* Dots navigation */
.presse-slider__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.presse-slider__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease;
}

.presse-slider__dot--active {
    background: #E71A80;
}

.presse-slider__dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Tablet+ : side by side layout */
@media (min-width: 768px) {
    .presse-slide {
        flex-direction: row;
        gap: 0;
    }

    .presse-slide__image {
        flex: 0 0 66%;
        height: 508px;
    }

    .presse-slide__content {
        flex: 0 0 34%;
        padding: 30px;
    }

    .presse-slide__meta {
        font-size: 19px;
    }

    .presse-slide__headline {
        font-size: 32px;
        line-height: 1.3;
    }

    .presse-slide__text {
        font-size: 22px;
        line-height: 1.36;
    }

}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */

.section-newsletter {
    text-align: center;
    color: #403F3F;
}

.section-title--newsletter {
    color: #403F3F;
    margin-bottom: 30px;
}

.newsletter-content {
    max-width: 750px;
    margin: 0 auto;
}

.newsletter-text {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(1rem, 0.5rem + 1.3vw, 2rem);
    font-weight: 500;
    line-height: 1.44;
    color: #403F3F;
    margin-bottom: 40px;
    text-align: center;
    max-width: clamp(20rem, 15rem + 25vw, 67.8125rem);
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 718px;
    margin: 0 auto;
}

.newsletter-input {
    width: 100%;
    max-width: 718px;
    height: 70px;
    padding: 0 30px;
    background: #FFFFFF;
    border: 2px solid #E71A80;
    border-radius: 49px;
    font: 400 20px/1 'Inter Tight', sans-serif;
    color: #403F3F;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-input:focus {
    border-color: #c80069;
    box-shadow: 0 0 0 3px rgba(231, 26, 128, 0.15);
}

.newsletter-hint {
    font: 500 20px/1.2 'Inter Tight', sans-serif;
    color: #403F3F;
    margin-top: 10px;
}

.newsletter-btn {
    display: inline-block;
    background: #E71A80;
    color: #ffffff;
    padding: 12px 40px;
    height: 50px;
    border-radius: var(--radius-pill);
    font: 500 22px/1.2 'Helvetica Neue', Helvetica, Arial, sans-serif;
    letter-spacing: 0.78px;
    cursor: pointer;
    transition: background 0.3s ease;
    border: none;
}

.newsletter-btn:hover {
    background: #c80069;
}

.newsletter-message {
    margin-top: 16px;
    font-size: 0.9rem;
}

/* ============================================
   PARTNER LOGOS (above footer)
   ============================================ */

.section-partners {
    background: #ffffff;
    padding: 50px 0;
    overflow: hidden;
}

.partners-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.partners-marquee__track {
    display: inline-flex;
    align-items: center;
    animation: partners-scroll 20s linear infinite;
}

.partner-logo {
    flex-shrink: 0;
    width: 154px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 48px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo img {
    max-width: 154px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

@keyframes partners-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: #403F3F;
    color: #ffffff;
    padding: clamp(2.5rem, 2rem + 2vw, 4rem) 0;
}

.footer-content {
    position: relative;
}

.footer-cols {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: clamp(1.5rem, 1rem + 3vw, 4rem);
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col--main {
    flex: 1 1 320px;
}

.footer-col--links {
    flex: 0 1 auto;
    gap: 0.7rem;
}

@media (max-width: 767px) {
    .footer-cols {
        flex-direction: column;
        gap: 1.5rem;
    }
    /* flex-basis (320px) würde im gestapelten Layout eine feste Höhe erzwingen → Spalten an Inhalt anpassen */
    .footer-col--main,
    .footer-col--links {
        flex: 0 0 auto;
    }
    .footer-signatures {
        margin-top: 18px;
    }
}

.footer-logo {
    display: inline-block;
    margin-bottom: 24px;
}

.footer-logo img {
    width: 250px;
    max-width: 100%;
    height: auto;
}

.footer-info {
    margin-bottom: 0;
}

.footer-info p {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(1rem, 0.6rem + 1vw, 1.375rem);
    font-weight: 400;
    line-height: 1.44;
    color: #ffffff;
}

.footer-info__contact {
    margin-top: 20px;
}

.footer-info__contact a {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(1rem, 0.6rem + 1vw, 1.375rem);
    font-weight: 400;
    line-height: 1.44;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info__contact a:hover {
    color: #E71A80;
}

.footer-info__links {
    margin-top: 0;
}

.footer-info__links a {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(1rem, 0.6rem + 1vw, 1.375rem);
    font-weight: 400;
    line-height: 1.44;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info__links a:hover {
    color: #E71A80;
}

.footer-signatures {
    display: none; /* war ein dunkelgraues Besteck-Icon auf dunklem Footer = unsichtbar, erzeugte nur Leerraum */
}

.footer-signature {
    width: 60px;
    height: auto;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social__link {
    display: block;
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.footer-social__link:hover {
    transform: translateY(-3px);
}

.footer-social__link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ============================================
   SINGLE BÜRO - DETAIL PAGE
   ============================================ */

.buero-detail {
    padding-top: var(--header-height);
}

/* ── HERO (Paper BG, 748px) ── */
.buero-hero {
    position: relative;
    min-height: clamp(24rem, 18rem + 18vw, 46.75rem); /* 748px at 1366 */
    display: flex;
    align-items: center;
    justify-content: center;
}

.buero-hero__inner {
    position: relative;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: clamp(2rem, 1rem + 3vw, 4rem) var(--container-padding);
}

/* Gallery Slider in hero */
.buero-hero-slider {
    position: relative;
}

/* Images wrapper — positioning anchor for badge + arrows */
.buero-hero-slider__images {
    position: relative;
    overflow: visible;
}

.buero-hero-slider__track {
    display: flex;
    align-items: flex-start;
    gap: clamp(0.75rem, 0.5rem + 0.5vw, 1.5rem);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
}

.buero-hero-slider__track:active {
    cursor: grabbing;
}

.buero-hero-slider__track::-webkit-scrollbar {
    display: none;
}

.buero-hero-slider__slide {
    flex: 0 0 clamp(16rem, 10rem + 18vw, 44.6875rem); /* 715px at 1366 */
    scroll-snap-align: start;
    border: clamp(0.125rem, 0.1rem + 0.05vw, 0.1875rem) solid #403F3F;
    overflow: hidden;
}

.buero-hero-slider__slide img {
    width: 100%;
    height: clamp(16rem, 12rem + 14vw, 36.3125rem); /* 581px at 1366 */
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.buero-hero-slider__slide:hover img {
    transform: scale(1.05);
}

/* Badge: anchored to bottom-left of images wrapper, half overlapping the image */
.buero-hero__badge-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: clamp(8rem, 6rem + 7vw, 16rem);
    height: clamp(8rem, 6rem + 7vw, 16rem);
    transform: translate(-40%, 40%) rotate(-12deg);
    z-index: 10;
    display: none;
}

/* Arrows */
.buero-hero-slider__arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(2.5rem, 2rem + 1vw, 3.5rem);
    height: clamp(2.5rem, 2rem + 1vw, 3.5rem);
    border-radius: 50%;
    background: #403F3F;
    color: #FFFFFF;
    font-size: clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
    border: none;
    cursor: pointer;
    z-index: 5;
    transition: background var(--transition);
    align-items: center;
    justify-content: center;
}

.buero-hero-slider__arrow:hover {
    background: #E71A80;
}

.buero-hero-slider__arrow--prev { left: -50px; }
.buero-hero-slider__arrow--next { right: -50px; }

/* Progress bar */
.buero-hero-slider__progress {
    width: 100%;
    height: 0.25rem;
    background: #403F3F;
    margin-top: clamp(0.75rem, 0.5rem + 0.5vw, 1.25rem);
    border-radius: 0.125rem;
    overflow: hidden;
}

.buero-hero-slider__progress-bar {
    height: 100%;
    background: #E71A80;
    width: 0%;
    border-radius: 0.125rem;
    transition: width 0.15s linear;
}

/* ── INKLUSIVE LEISTUNGEN (Dark BG, 464px) ── */
.buero-leistungen {
    position: relative;
    min-height: clamp(18rem, 14rem + 10vw, 29rem); /* 464px at 1366 */
    display: flex;
    align-items: center;
    color: #FFFFFF;
    padding: clamp(2.5rem, 2rem + 2vw, 4rem) 0;
}

.buero-leistungen__inner {
    max-width: 55rem; /* ~880px */
}

.buero-leistungen__meta {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 1rem + 1.5vw, 3rem);
    margin-bottom: clamp(1.5rem, 1rem + 1vw, 2.5rem);
}

.buero-leistungen__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(1rem, 0.6rem + 1vw, 1.75rem);
    font-weight: 600;
    color: #FFFFFF;
}

.buero-leistungen__meta-icon {
    width: clamp(1.5rem, 1rem + 1vw, 2.5rem);
    height: auto;
    object-fit: contain;
}

.buero-leistungen__title {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(1.5rem, 1rem + 1.5vw, 2.5rem); /* 40px at 1366 */
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0;
    color: #FFFFFF;
    text-align: left;
    margin-bottom: clamp(1rem, 0.5rem + 1.5vw, 2.5rem);
}

.buero-leistungen__text {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(1rem, 0.6rem + 1.2vw, 2.5rem); /* 40px at 1366 */
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0;
    color: #FFFFFF;
    text-align: left;
}

/* ── DIE LAGE (Paper BG, 767px) ── */
.buero-lage {
    min-height: clamp(24rem, 18rem + 15vw, 47.9375rem); /* 767px at 1366 */
    display: flex;
    align-items: center;
    padding: clamp(3rem, 2rem + 3vw, 5rem) 0;
    text-align: center;
}

.buero-lage__title {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(2rem, 1rem + 3vw, 4.5rem); /* 72px at 1366 */
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: 2.16px;
    color: #403F3F;
    text-transform: uppercase;
    margin-bottom: clamp(1.5rem, 1rem + 2vw, 3rem);
}

.buero-lage__text {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(1rem, 0.6rem + 1.2vw, 2rem); /* 32px at 1366 */
    font-weight: 500;
    line-height: 1.4375; /* 46/32 */
    letter-spacing: 0;
    color: #403F3F;
    text-align: center;
    max-width: 64.875rem; /* 1038px */
    margin: 0 auto;
}

/* ── ANFRAGEN (Paper 7 BG, 1063px) ── */
.buero-anfrage {
    min-height: clamp(30rem, 22rem + 20vw, 66.4375rem); /* 1063px at 1366 */
    display: flex;
    align-items: center;
    padding: clamp(3rem, 2rem + 3vw, 5rem) 0;
    text-align: center;
}

.buero-anfrage__title {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(2rem, 1rem + 3vw, 4.5rem); /* 72px at 1366 */
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: 2.16px;
    color: #403F3F;
    text-transform: uppercase;
    margin-bottom: clamp(1.5rem, 1rem + 2vw, 3rem);
}

.buero-anfrage__form {
    max-width: 53.1875rem; /* 851px */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 0.5rem + 1vw, 1.5rem);
}

.buero-anfrage__field {
    width: 100%;
    background: #FFFFFF;
    border: 2px solid #E71A80;
    border-radius: 26px;
    padding: 0 30px;
    font: 400 clamp(1rem, 0.7rem + 0.7vw, 1.25rem)/1 'Inter Tight', sans-serif;
    color: #403F3F;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    height: clamp(3.5rem, 3rem + 1.5vw, 6.4375rem); /* 103px at 1366 */
}

.buero-anfrage__field--textarea {
    height: clamp(10rem, 8rem + 5vw, 19.9375rem); /* 319px at 1366 */
    padding: 20px 30px;
    resize: vertical;
    line-height: 1.6;
}

.buero-anfrage__field::placeholder {
    color: #999;
}

.buero-anfrage__field:focus {
    border-color: #c80069;
    box-shadow: 0 0 0 3px rgba(231, 26, 128, 0.15);
    outline: none;
}

.buero-anfrage__hint {
    font: 500 clamp(0.875rem, 0.6rem + 0.7vw, 1.5rem)/1 'Inter Tight', sans-serif; /* 24px at 1366 */
    color: #403F3F;
    text-align: center;
    margin-top: 0.5rem;
}

.buero-anfrage__btn {
    display: inline-block;
    margin: 0 auto;
    width: clamp(14rem, 10rem + 10vw, 21.9375rem); /* 351px at 1366 */
    height: clamp(2.75rem, 2.5rem + 0.8vw, 3.3125rem); /* 53px at 1366 */
    background: #E71A80;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    font: 500 clamp(1rem, 0.7rem + 0.7vw, 1.6875rem)/1 'Helvetica Neue', Helvetica, Arial, sans-serif; /* 27px at 1366 */
    letter-spacing: 0.81px;
    color: #FFFFFF;
    transition: background 0.3s ease;
}

.buero-anfrage__btn:hover {
    background: #c80069;
}

/* ── WEITERE BÜROS (Paper BG, zigzag slider) ── */
.buero-weitere {
    min-height: clamp(30rem, 22rem + 20vw, 65.5625rem); /* 1049px at 1366 */
    padding: clamp(3rem, 2rem + 3vw, 5rem) 0;
}

.buero-weitere__title {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(2rem, 1rem + 3vw, 4.6875rem); /* 75px at 1366 */
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: 2.25px;
    color: #403F3F;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: clamp(2rem, 1.5rem + 3vw, 4rem);
}

/* Anfrage / Contact Form */
.section-anfrage {
    background: #ffffff;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.anfrage-box {
    max-width: 640px;
    margin: 0 auto;
    border: 1px solid var(--color-border);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--color-text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    color: var(--color-text-dark);
    font-size: 0.9rem;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--color-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.anfrage-box .btn {
    width: 100%;
    margin-top: 8px;
}

/* Weitere Büros */
.section-weitere-bueros {
    background: var(--color-bg-light);
}

/* ============================================
   SINGLE POST (Events / Presse / Blog)
   ============================================ */

.single-post {
    /* no padding — hero goes behind the fixed header */
}

/* ── Post Hero ── */
.post-hero {
    position: relative;
    min-height: clamp(24rem, 18rem + 18vw, 40rem);
    padding-top: var(--header-height); /* push content below header */
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    color: #FFFFFF;
    overflow: hidden;
}

.post-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.05) 100%);
    z-index: 1;
}

.post-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: clamp(2rem, 1.5rem + 2vw, 4rem) 0;
}

.post-hero__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(0.75rem, 0.5rem + 0.5vw, 1.5rem);
    margin-bottom: clamp(0.75rem, 0.5rem + 0.5vw, 1.25rem);
}

.post-hero__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(0.85rem, 0.6rem + 0.5vw, 1.125rem);
    font-weight: 500;
    color: #FFFFFF;
    background: rgba(231, 26, 128, 0.85);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
}

.post-hero__meta-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(10);
}

.post-hero__title {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(1.6rem, 1rem + 2.2vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: clamp(0.5px, 0.3px + 0.1vw, 1.5px);
    color: #FFFFFF;
    text-transform: uppercase;
    margin: 0;
    max-width: 50rem;
    overflow-wrap: break-word;
    hyphens: auto;
}

.post-hero__excerpt {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(1rem, 0.6rem + 1vw, 1.5rem);
    font-weight: 300;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
    margin-top: clamp(0.75rem, 0.5rem + 0.5vw, 1.25rem);
    max-width: 40rem;
}

/* ── Post Content ── */
.post-content {
    padding: clamp(3rem, 2rem + 3vw, 5rem) 0;
}

.post-content__body {
    max-width: 48rem;
    margin: 0 auto;
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(1rem, 0.8rem + 0.5vw, 1.25rem);
    font-weight: 400;
    line-height: 1.8;
    color: #403F3F;
}

.post-content__body h2 {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(1.5rem, 1rem + 1.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.25;
    color: #403F3F;
    margin: 2em 0 0.75em;
}

.post-content__body h3 {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(1.2rem, 0.8rem + 1vw, 1.75rem);
    font-weight: 700;
    line-height: 1.3;
    color: #403F3F;
    margin: 1.5em 0 0.5em;
}

.post-content__body h4 {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(1rem, 0.7rem + 0.7vw, 1.375rem);
    font-weight: 700;
    color: #403F3F;
    margin: 1.25em 0 0.5em;
}

.post-content__body p {
    margin-bottom: 1.25em;
}

.post-content__body a {
    color: #E71A80;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.post-content__body a:hover {
    color: #c80069;
}

.post-content__body img {
    border: 3px solid #403F3F;
    margin: 2em 0;
}

.post-content__body blockquote {
    border-left: 4px solid #E71A80;
    margin: 2em 0;
    padding: 1.25em 1.5em;
    background: rgba(231, 26, 128, 0.05);
    font-style: italic;
    font-size: clamp(1.05rem, 0.8rem + 0.6vw, 1.375rem);
    line-height: 1.6;
    color: #403F3F;
}

.post-content__body blockquote p:last-child {
    margin-bottom: 0;
}

.post-content__body ul,
.post-content__body ol {
    padding-left: 1.5em;
    margin-bottom: 1.25em;
}

.post-content__body ul {
    list-style: none;
    padding-left: 0;
}

.post-content__body ul li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0.5em;
}

.post-content__body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    background: #E71A80;
    border-radius: 50%;
}

.post-content__body ol li {
    margin-bottom: 0.5em;
}

.post-content__body hr {
    border: none;
    height: 3px;
    background: #E71A80;
    margin: 2.5em auto;
    max-width: 120px;
    border-radius: var(--radius-pill);
}

.post-content__body .wp-block-image,
.post-content__body figure {
    margin: 2em 0;
}

/* Presse: vollständiger Artikel-Scan (lesbar) + PDF-Download */
.post-content__body .press-scan {
    margin: 2em 0;
}
.post-content__body .press-scan img {
    display: block;
    width: 100%;
    height: auto;
}
.post-content__body .press-pdf-link {
    display: inline-block;
    margin-top: 0.5em;
    font-weight: 700;
    background: #E71A80;
    color: #fff;
    text-decoration: none;
    padding: 12px 26px;
    border-radius: var(--radius-pill);
}
.post-content__body .press-pdf-link:hover {
    background: #c80069;
    color: #fff;
}

.post-content__body figcaption {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    margin-top: 0.5em;
}

/* Tags */
.post-content__tags {
    max-width: 48rem;
    margin: 2.5rem auto 0;
    padding-top: 2rem;
    border-top: 2px solid #E71A80;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.post-tag {
    display: inline-block;
    padding: 6px 18px;
    background: #403F3F;
    color: #FFFFFF;
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(0.75rem, 0.6rem + 0.3vw, 0.9rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-pill);
    transition: background 0.3s ease;
}

.post-tag:hover {
    background: #E71A80;
    color: #FFFFFF;
}

/* ── Post CTA ── */
.post-cta {
    padding: clamp(3rem, 2rem + 3vw, 5rem) 0;
    text-align: center;
    color: #FFFFFF;
}

.post-cta__inner {
    max-width: 40rem;
    margin: 0 auto;
}

.post-cta__title {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(2rem, 1rem + 3vw, 4.5rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: clamp(0.75rem, 0.5rem + 0.5vw, 1.25rem);
}

.post-cta__text {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(1rem, 0.6rem + 1vw, 1.5rem);
    font-weight: 300;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
    margin-bottom: clamp(1.5rem, 1rem + 1vw, 2.5rem);
}

.post-cta__btn {
    display: inline-block;
    background: #E71A80;
    color: #FFFFFF;
    padding: 14px 48px;
    border-radius: var(--radius-pill);
    font: 500 clamp(1rem, 0.7rem + 0.7vw, 1.375rem)/1.2 'Helvetica Neue', Helvetica, Arial, sans-serif;
    letter-spacing: 0.84px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.post-cta__btn:hover {
    background: #c80069;
    transform: translateY(-2px);
}

/* ── Post Gallery (inside content) ── */
.post-gallery {
    max-width: 48rem;
    margin: 3rem auto 0;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(64, 63, 63, 0.15);
}

.post-gallery__title {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(1.5rem, 1rem + 1.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.25;
    color: #403F3F;
    text-align: center;
    margin-bottom: clamp(1.5rem, 1rem + 1vw, 2.5rem);
}

.post-gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: clamp(8rem, 6rem + 5vw, 12rem);
    gap: clamp(0.5rem, 0.3rem + 0.5vw, 0.75rem);
}

.post-gallery__item {
    overflow: hidden;
    border: 3px solid #403F3F;
}

.post-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.post-gallery__item:hover img {
    transform: scale(1.08);
}

/* Masonry-like varying heights */
.post-gallery__item--1 { grid-row: span 2; }
.post-gallery__item--2 { grid-row: span 1; }
.post-gallery__item--3 { grid-row: span 1; }
.post-gallery__item--4 { grid-row: span 1; }
.post-gallery__item--5 { grid-row: span 2; }
.post-gallery__item--6 { grid-row: span 1; }

@media (min-width: 768px) {
    .post-gallery__grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: clamp(8rem, 6rem + 6vw, 14rem);
    }
}

/* ── CTA buttons row ── */
.post-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(0.75rem, 0.5rem + 0.5vw, 1.25rem);
    justify-content: center;
}

.post-cta__btn--outline {
    background: transparent;
    border: 2px solid #FFFFFF;
}

.post-cta__btn--outline:hover {
    background: #FFFFFF;
    color: #403F3F;
}

/* ── Related Posts ── */
.post-related {
    padding: clamp(3rem, 2rem + 3vw, 5rem) 0;
}

.post-related__title {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(2rem, 1rem + 3vw, 4.5rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #403F3F;
    text-align: center;
    margin-bottom: clamp(2rem, 1.5rem + 2vw, 3.5rem);
}

.post-related__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 1rem + 1vw, 2rem);
}

.post-related__card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 3px solid #403F3F;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-related__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.post-related__card-image {
    width: 100%;
    height: clamp(12rem, 8rem + 10vw, 18rem);
    overflow: hidden;
}

.post-related__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-related__card:hover .post-related__card-image img {
    transform: scale(1.05);
}

.post-related__card-body {
    background: #403F3F;
    padding: clamp(1rem, 0.75rem + 0.75vw, 1.5rem);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.post-related__card-date {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(0.75rem, 0.6rem + 0.3vw, 0.9rem);
    font-weight: 500;
    color: #E71A80;
    margin-bottom: 8px;
}

.post-related__card-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(1rem, 0.7rem + 0.7vw, 1.375rem);
    font-weight: 700;
    line-height: 1.3;
    color: #FFFFFF;
    margin: 0 0 auto;
}

.post-related__card-link {
    display: inline-block;
    margin-top: 16px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(0.85rem, 0.6rem + 0.5vw, 1.125rem);
    font-weight: 500;
    color: #E71A80;
    transition: color 0.3s ease;
}

.post-related__card:hover .post-related__card-link {
    color: #FFFFFF;
}

/* Tablet: related grid 3 columns */
@media (min-width: 768px) {
    .post-related__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   FALLBACK / INDEX PAGE
   ============================================ */

.page-content {
    padding-top: var(--header-height);
    min-height: 60vh;
}

.page-content .container {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
}

.page-content article {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-border);
}

.page-content article:last-child {
    border-bottom: none;
}

.page-content h2 a {
    color: var(--color-text-dark);
    transition: color var(--transition);
}

.page-content h2 a:hover {
    color: var(--color-primary);
}

/* ============================================
   PLACEHOLDER IMAGES
   ============================================ */

.placeholder-img {
    background: linear-gradient(135deg, #3a3a3a, #555);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: 100%;
    height: 100%;
    min-height: 200px;
}

/* ============================================
   RESPONSIVE - TABLET (768px+)
   ============================================ */

@media (min-width: 768px) {
    .social-sidebar {
        display: flex;
    }

    /* Hero: side-by-side layout */
    .hero__layout {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        gap: 40px;
    }

    .hero__text-col {
        flex: 1;
    }

    .hero__badges-col {
        flex-direction: column;
        align-items: flex-end;
        flex-shrink: 0;
    }


    .floorplans__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .event-card {
        flex-direction: row;
    }

    .event-card__image {
        width: 162px;
        height: auto;
        align-self: stretch;
        flex-shrink: 0;
    }

    .event-card__body {
        min-height: 257px;
    }

    .gastro-wrapper {
        flex-direction: row;
    }

    .gastro-image {
        flex: 0 0 66%;
        height: 508px;
    }

    .gastro-content {
        flex: 0 0 34%;
        min-height: 508px;
        padding: 34px 30px;
    }


    .gastro-content__text {
        font-size: 22px;
        line-height: 1.36;
    }


    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    /* Büro detail: show badge + arrows on tablet+ */
    .buero-hero__badge-wrap {
        display: block;
    }

    .buero-hero-slider__arrow {
        display: flex;
    }

    .buero-hero-slider__arrow--prev { left: -50px; }
    .buero-hero-slider__arrow--next { right: -50px; }
}

/* ============================================
   RESPONSIVE - DESKTOP (1024px+)
   ============================================ */

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }

    .main-nav {
        display: block;
    }

    .hero__text-col p.hero__text {
        font-size: 1.05rem;
    }


    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Desktop Büro detail — no extra rules needed, tablet covers it */
}

/* ============================================
   RESPONSIVE - LARGE DESKTOP (1280px+)
   ============================================ */

@media (min-width: 1280px) {
}

/* ============================================
   ANIMATIONS / TRANSITIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   UMSETZUNGSPARTNER PAGE
   ============================================ */

.ump-hero {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: clamp(8rem, 6rem + 8vw, 13rem) 0 clamp(3.5rem, 2.5rem + 3vw, 6rem);
}

.ump-hero__blob {
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
    z-index: 0;
}

.ump-hero__blob--1 { top: -160px; left: -120px; background: radial-gradient(circle, rgba(231,26,128,0.30), transparent 70%); }
.ump-hero__blob--2 { bottom: -200px; right: -120px; background: radial-gradient(circle, rgba(231,26,128,0.18), transparent 70%); }

.ump-hero__inner { position: relative; z-index: 1; }

.ump-hero__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2.6rem, 1.6rem + 4vw, 5rem);
    line-height: 1.04;
    color: #1a1a1a;
    margin-bottom: 18px;
}

.ump-hero__title em { font-style: italic; color: #E71A80; }

.ump-hero__lead {
    font-family: 'Montserrat', sans-serif;
    max-width: 60ch;
    margin: 0 auto 22px;
    font-size: clamp(1rem, 0.85rem + 0.4vw, 1.2rem);
    line-height: 1.6;
    color: #555;
}

.ump-hero__badge {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 999px;
    background: rgba(231, 26, 128, 0.10);
    color: #E71A80;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
}

.ump-hero__badge strong { font-size: 1.3rem; font-weight: 800; }

/* Über-uns Hero: Anker-Chips (Partner / Geschichte / Team) */
.uu-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 26px;
}
.uu-nav__chip {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(231, 26, 128, 0.30);
    color: #403F3F;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.uu-nav__chip:hover {
    background: #E71A80;
    color: #ffffff;
    border-color: #E71A80;
    transform: translateY(-2px);
}

.ump-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    max-width: 1040px;
    margin: 0 auto;
}

.ump-grid > .ump-card {
    flex: 0 1 220px;
}

/* Über-uns: alle Kooperationspartner in einer Zeile (Desktop) */
.ump-grid--row {
    flex-wrap: nowrap;
    max-width: 1180px;
}

.ump-grid--row > .ump-card {
    flex: 1 1 0;
    min-width: 0;
    padding: 28px 16px;
    gap: 10px;
}

@media (max-width: 900px) {
    .ump-grid--row {
        flex-wrap: wrap;
    }
    .ump-grid--row > .ump-card {
        flex: 0 1 220px;
        padding: 36px 28px;
    }
}

.ump-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 36px 28px;
    background: #fff;
    border-radius: 20px;
    text-decoration: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ump-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E71A80, #ff5aa8);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

a.ump-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 34px 70px rgba(231, 26, 128, 0.20);
}

a.ump-card:hover::before { transform: scaleX(1); }

.ump-card__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 108px;
    width: 100%;
}

.ump-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ump-card__placeholder {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #403F3F;
    text-align: center;
}

.ump-card__name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #403F3F;
    text-align: center;
}

.ump-card__link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #E71A80;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

a.ump-card:hover .ump-card__link {
    opacity: 1;
    transform: translateY(0);
}

.ump-cta {
    text-align: center;
    margin-top: 56px;
}

.ump-cta__text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 18px;
}

.ump-cta__btn,
.eg-cta__btn {
    display: inline-block;
    padding: 16px 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, #E71A80, #b3155f);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(231, 26, 128, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ump-cta__btn:hover,
.eg-cta__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(231, 26, 128, 0.45);
}

/* ============================================
   ENTSTEHUNGSGESCHICHTE PAGE
   ============================================ */

.eg-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.eg-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.30), rgba(0, 0, 0, 0.70));
}

.eg-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.eg-hero__kicker {
    display: block;
    font-family: 'Caveat', cursive;
    font-size: clamp(1.6rem, 1rem + 1.5vw, 2.4rem);
    color: #ff5aa8;
    transform: rotate(-2deg);
    margin-bottom: 8px;
}

.eg-hero__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2.6rem, 1.6rem + 4vw, 5rem);
    line-height: 1.05;
    margin-bottom: 20px;
}

.eg-hero__title em {
    font-style: italic;
    color: #E71A80;
}

.eg-hero__lead {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 0.8rem + 0.6vw, 1.3rem);
    line-height: 1.6;
    opacity: 0.92;
    max-width: 600px;
    margin: 0 auto 28px;
}

.eg-hero__stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin: 0 auto 30px;
}

.eg-hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 22px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.eg-hero__stat strong {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.eg-hero__scroll {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
    animation: eg-bounce 1.8s infinite;
}

@keyframes eg-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Timeline */
.eg-tl {
    position: relative;
    max-width: 900px;
    margin: 40px auto 0;
}

.eg-tl__line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #E71A80, rgba(231, 26, 128, 0.15));
    border-radius: 3px;
}

.eg-tl__item {
    position: relative;
    width: 50%;
    padding: 0 44px;
    margin-bottom: 36px;
    box-sizing: border-box;
}

.eg-tl__item--left {
    left: 0;
    text-align: right;
}

.eg-tl__item--right {
    left: 50%;
    text-align: left;
}

.eg-tl__dot {
    position: absolute;
    top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E71A80, #b3155f);
    border: 4px solid #fff;
    box-shadow: 0 6px 18px rgba(231, 26, 128, 0.40);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    color: #fff;
    z-index: 2;
}

.eg-tl__item--left .eg-tl__dot { right: -23px; }
.eg-tl__item--right .eg-tl__dot { left: -23px; }

.eg-tl__card {
    display: inline-block;
    text-align: left;
    background: #fff;
    border-radius: 18px;
    padding: 24px 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
    max-width: 380px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eg-tl__item:hover .eg-tl__card {
    transform: translateY(-5px);
    box-shadow: 0 30px 65px rgba(231, 26, 128, 0.18);
}

.eg-tl__media {
    margin: -4px 0 16px;
    border-radius: 12px;
    overflow: hidden;
}

.eg-tl__media img {
    display: block;
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.eg-tl__year {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #E71A80;
    background: rgba(231, 26, 128, 0.10);
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.eg-tl__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: #403F3F;
    margin-bottom: 8px;
}

.eg-tl__text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.55;
    color: #555;
}

/* Story blocks */
.eg-story__row {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.eg-story__row:last-child { margin-bottom: 0; }
.eg-story__row--flip { flex-direction: row-reverse; }

.eg-story__media {
    flex: 1 1 0;
    min-width: 0;
}

.eg-story__media img {
    width: 100%;
    height: auto;
    border-radius: 22px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
    display: block;
}

.eg-story__body {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    background: #fff;
    border-radius: 22px;
    padding: clamp(28px, 2vw + 18px, 44px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.10);
}

.eg-story__num {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 1.2rem + 1vw, 2.2rem);
    line-height: 1;
    color: #fff;
    background: linear-gradient(135deg, #E71A80, #b3155f);
    padding: 8px 16px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(231, 26, 128, 0.30);
    margin-bottom: 16px;
}

.eg-story__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.4rem);
    color: #403F3F;
    margin-bottom: 16px;
}

.eg-story__text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #2e2d2d;
}

/* CTA */
.eg-cta {
    position: relative;
    overflow: hidden;
    padding: clamp(60px, 8vw, 120px) 0;
    color: #fff;
    text-align: center;
}

.eg-cta__glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(231, 26, 128, 0.35), transparent 70%);
    filter: blur(100px);
    pointer-events: none;
}

.eg-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.eg-cta__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 1.4rem + 2.5vw, 3.4rem);
    margin-bottom: 14px;
}

.eg-cta__text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 28px;
}

@media (max-width: 767px) {
    .eg-tl__line { left: 20px; }
    .eg-tl__item,
    .eg-tl__item--left,
    .eg-tl__item--right {
        width: 100%;
        left: 0;
        text-align: left;
        padding: 0 0 0 52px;
    }
    .eg-tl__item,
    .eg-tl__item--left,
    .eg-tl__item--right {
        padding-left: 64px;
    }
    .eg-tl__item--left .eg-tl__dot,
    .eg-tl__item--right .eg-tl__dot {
        left: -3px;
        right: auto;
        width: 42px;
        height: 42px;
    }
    .eg-tl__card { max-width: none; }

    .eg-story__row,
    .eg-story__row--flip {
        flex-direction: column;
        gap: 24px;
    }
}

/* ============================================
   WORDPRESS DEFAULTS
   ============================================ */

.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1em;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1em;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 8px;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* WordPress admin bar fix */
body.admin-bar .site-header {
    top: 32px;
}

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

/* ============================================
   CTA KONTAKT (vor Newsletter)
   ============================================ */
.section-cta {
    padding: clamp(3rem, 2rem + 4vw, 6rem) 0;
}

.cta-card {
    position: relative;
    overflow: hidden;
    border-radius: clamp(20px, 1rem + 1.5vw, 36px);
    padding: clamp(2.5rem, 1.5rem + 4vw, 6rem) clamp(1.5rem, 1rem + 3vw, 5rem);
    text-align: center;
    color: #FFFFFF;
    background:
        radial-gradient(120% 140% at 0% 0%, rgba(255, 255, 255, 0.18), transparent 55%),
        radial-gradient(120% 140% at 100% 100%, rgba(0, 0, 0, 0.25), transparent 55%),
        linear-gradient(135deg, #E71A80 0%, #b8125f 100%);
    box-shadow: 0 30px 60px -25px rgba(231, 26, 128, 0.55);
    isolation: isolate;
}

.cta-card::before,
.cta-card::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    filter: blur(2px);
}

.cta-card::before {
    width: clamp(180px, 25vw, 360px);
    height: clamp(180px, 25vw, 360px);
    top: -15%;
    right: -8%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent 70%);
}

.cta-card::after {
    width: clamp(140px, 20vw, 280px);
    height: clamp(140px, 20vw, 280px);
    bottom: -20%;
    left: -5%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
}

.cta-card__kicker {
    display: inline-block;
    font-family: 'Caveat', cursive;
    font-size: clamp(1.5rem, 1rem + 1.5vw, 2.5rem);
    line-height: 1;
    margin-bottom: clamp(0.75rem, 0.5rem + 0.5vw, 1rem);
    transform: rotate(-2deg);
    color: #FFFFFF;
}

.cta-card__title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 1.2rem + 3vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 auto clamp(1rem, 0.75rem + 0.75vw, 1.5rem);
    max-width: 18ch;
}

.cta-card__title em {
    font-style: italic;
    font-weight: 500;
    color: #FFE5F1;
}

.cta-card__text {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 0.85rem + 0.4vw, 1.2rem);
    line-height: 1.55;
    max-width: 48ch;
    margin: 0 auto clamp(1.75rem, 1.25rem + 1vw, 2.5rem);
    opacity: 0.92;
}

.cta-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: clamp(0.85rem, 0.6rem + 0.5vw, 1.15rem) clamp(1.5rem, 1rem + 1.5vw, 2.5rem);
    background: #FFFFFF;
    color: #E71A80;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: clamp(0.95rem, 0.8rem + 0.3vw, 1.1rem);
    letter-spacing: 0.01em;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.cta-card__btn svg {
    transition: transform 0.25s ease;
}

.cta-card__btn:hover {
    transform: translateY(-2px);
    background: #403F3F;
    color: #FFFFFF;
    box-shadow: 0 18px 40px -10px rgba(0, 0, 0, 0.45);
}

.cta-card__btn:hover svg {
    transform: translateX(4px);
}

button.cta-card__btn {
    border: none;
    cursor: pointer;
}

/* Contact form inside the CTA card */
.cta-form {
    max-width: 580px;
    margin: 0 auto;
    text-align: left;
}

.cta-form__row {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
}

.cta-form__field {
    width: 100%;
    padding: 15px 18px;
    border: none;
    border-radius: 14px;
    background: #ffffff;
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}

.cta-form__row .cta-form__field {
    flex: 1 1 0;
    min-width: 0;
}

.cta-form__field::placeholder { color: #9a9a9a; }

.cta-form__field:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.5);
}

.cta-form__field--textarea {
    display: block;
    margin-bottom: 18px;
    resize: vertical;
    min-height: 110px;
}

.cta-form .cta-card__btn {
    display: flex;
    width: fit-content;
    margin: 0 auto;
}

.cta-form__hint {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    opacity: 0.85;
    text-align: center;
    margin-top: 14px;
}

@media (max-width: 600px) {
    .cta-form__row { flex-direction: column; gap: 14px; }
}

/* ============================================
   ABSCHLUSS-BLOCK: Kontakt + Newsletter (einheitlich)
   ============================================ */
.section-finale {
    padding: clamp(3rem, 2rem + 4vw, 6rem) 0;
}

.finale-card {
    position: relative;
    overflow: hidden;
    border-radius: clamp(20px, 1rem + 1.5vw, 36px);
    padding: clamp(2.25rem, 1.5rem + 3vw, 4.5rem) clamp(1.5rem, 1rem + 3vw, 4rem);
    color: #ffffff;
    background:
        radial-gradient(120% 140% at 0% 0%, rgba(255, 255, 255, 0.18), transparent 55%),
        radial-gradient(120% 140% at 100% 100%, rgba(0, 0, 0, 0.25), transparent 55%),
        linear-gradient(135deg, #E71A80 0%, #b8125f 100%);
    box-shadow: 0 30px 60px -25px rgba(231, 26, 128, 0.55);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: clamp(1.5rem, 1rem + 2vw, 3.5rem);
}

.finale-col {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.finale-kicker {
    font-family: 'Caveat', cursive;
    font-size: clamp(1.5rem, 1rem + 1.5vw, 2.4rem);
    line-height: 1;
    margin-bottom: 0.4rem;
    transform: rotate(-2deg);
    align-self: flex-start;
}

.finale-title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 1.2rem + 2.2vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 0.75rem;
}

.finale-title em {
    font-style: normal;       /* gleiche Schrift wie das Wort davor (kein Kursiv) */
    font-weight: 800;
    color: #403F3F;           /* Grau als Akzentfarbe (gute Lesbarkeit auf Pink) */
}

.finale-text {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.95rem, 0.85rem + 0.3vw, 1.1rem);
    line-height: 1.55;
    margin: 0 0 1.5rem;
    opacity: 0.92;
}

.finale-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.finale-form__row {
    display: flex;
    gap: 12px;
}

.finale-form__field {
    width: 100%;
    padding: 14px 18px;
    border: none;
    border-radius: 14px;
    background: #ffffff;
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}

.finale-form__row .finale-form__field {
    flex: 1 1 0;
    min-width: 0;
}

.finale-form__field::placeholder { color: #9a9a9a; }

.finale-form__field:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.5);
}

.finale-form__field--textarea {
    resize: vertical;
    min-height: 110px;
}

.finale-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    align-self: flex-start;
    margin-top: 4px;
    padding: 0.95rem 1.8rem;
    background: #ffffff;
    color: #E71A80;
    border: none;
    cursor: pointer;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: clamp(0.95rem, 0.8rem + 0.3vw, 1.1rem);
    border-radius: 999px;
    box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.finale-btn svg { transition: transform 0.25s ease; }
.finale-btn:hover {
    transform: translateY(-2px);
    background: #403F3F;
    color: #ffffff;
    box-shadow: 0 18px 40px -10px rgba(0, 0, 0, 0.45);
}
.finale-btn:hover svg { transform: translateX(4px); }

.finale-form__hint {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    opacity: 0.85;
    margin: 6px 0 0;
}

/* Trenner zwischen den beiden Spalten */
.finale-divider {
    position: relative;
    width: 1px;
    background: rgba(255, 255, 255, 0.28);
    margin: 0 auto;
}
.finale-divider span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #d2156e;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Caveat', cursive;
    font-size: 1.3rem;
    padding: 4px 10px;
    border-radius: 999px;
}

@media (max-width: 860px) {
    .finale-card {
        grid-template-columns: 1fr;
    }
    .finale-divider {
        width: 100%;
        height: 1px;
        margin: 0.5rem 0;
    }
    .finale-divider span {
        background: #cf1569;
    }
}

@media (max-width: 480px) {
    .finale-form__row { flex-direction: column; }
}

/* ============================================
   KONTAKT PAGE
   ============================================ */

.kontakt-section {
    position: relative;
    overflow: hidden;
}

.kontakt-blob {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.kontakt-blob--1 { top: -180px; left: -140px; background: radial-gradient(circle, rgba(231,26,128,0.20), transparent 70%); }
.kontakt-blob--2 { bottom: -200px; right: -160px; background: radial-gradient(circle, rgba(231,26,128,0.14), transparent 70%); }

.kontakt-section .container { position: relative; z-index: 1; }

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(28px, 3vw, 56px);
    align-items: start;
    max-width: 1040px;
    margin: 0 auto;
}

.kontakt-info .section-title {
    margin-bottom: 28px;
}

/* Info cards */
.kontakt-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border-radius: 18px;
    padding: 20px 22px;
    margin-bottom: 16px;
    text-decoration: none;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kontakt-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(231, 26, 128, 0.16);
}

.kontakt-card__icon {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #E71A80, #b3155f);
    color: #fff;
    box-shadow: 0 8px 20px rgba(231, 26, 128, 0.30);
    transition: transform 0.3s ease;
}

.kontakt-card:hover .kontakt-card__icon { transform: scale(1.08) rotate(-4deg); }

.kontakt-card__body { display: flex; flex-direction: column; min-width: 0; }

.kontakt-card__label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #E71A80;
    margin-bottom: 4px;
}

.kontakt-card__value {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.45;
    color: #1a1a1a;
}

.kontakt-card__hint {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #E71A80;
    margin-top: 6px;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.kontakt-card:hover .kontakt-card__hint { opacity: 1; transform: translateX(0); }

.kontakt-formwrap {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: clamp(28px, 2vw + 18px, 48px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.kontakt-formwrap__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 1.2rem + 1vw, 2.1rem);
    color: #1a1a1a;
    margin-bottom: 6px;
}

.kontakt-formwrap__sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.98rem;
    color: #666;
    margin-bottom: 24px;
}

.kontakt-form__field {
    display: block;
    width: 100%;
    padding: 15px 18px;
    margin-bottom: 16px;
    border: 1.5px solid #e0ddd9;
    border-radius: 14px;
    background: #faf9f7;
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.kontakt-form__field::placeholder { color: #8a857f; }

.kontakt-form__field:focus {
    outline: none;
    background: #fff;
    border-color: #E71A80;
    box-shadow: 0 0 0 4px rgba(231, 26, 128, 0.14);
}

.kontakt-form__field--textarea {
    resize: vertical;
    min-height: 150px;
}

.kontakt-form__hint {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: #777;
    margin: 0 0 18px;
}

.kontakt-form__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 34px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #E71A80, #b3155f);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(231, 26, 128, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.kontakt-form__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(231, 26, 128, 0.45);
}

/* Entrance animation timing */
.kontakt-info.animate-on-scroll { transition-delay: 0.05s; }
.kontakt-formwrap.animate-on-scroll { transition-delay: 0.18s; }

@media (max-width: 860px) {
    .kontakt-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PRESSE PAGE
   ============================================ */
.presse-page-hero {
    padding: clamp(8rem, 6rem + 8vw, 14rem) 0 clamp(4rem, 3rem + 3vw, 7rem);
    text-align: center;
    position: relative;
}

.presse-page-hero__kicker {
    display: inline-block;
    font-family: 'Caveat', cursive;
    color: #E71A80;
    font-size: clamp(1.5rem, 1rem + 1.5vw, 2.5rem);
    line-height: 1;
    margin-bottom: clamp(0.5rem, 0.25rem + 0.5vw, 1rem);
    transform: rotate(-2deg);
}

.presse-page-hero__title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 1.5rem + 6vw, 7.5rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: #1a1a1a;
    margin: 0 auto clamp(1rem, 0.75rem + 0.75vw, 1.5rem);
}

.presse-page-hero__title em {
    font-style: italic;
    font-weight: 500;
    color: #E71A80;
}

.presse-page-hero__lead {
    font-family: 'Montserrat', sans-serif;
    max-width: 56ch;
    margin: 0 auto clamp(1.5rem, 1rem + 1vw, 2.5rem);
    font-size: clamp(1rem, 0.85rem + 0.4vw, 1.2rem);
    line-height: 1.55;
    color: #403F3F;
}

.presse-page-hero__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.presse-page-hero__chip {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.25rem;
    border-radius: 999px;
    border: 2px solid #1a1a1a;
    background: transparent;
    color: #1a1a1a;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.presse-page-hero__chip:hover {
    background: #E71A80;
    border-color: #E71A80;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.presse-page-section__head {
    text-align: center;
    margin-bottom: clamp(2rem, 1.5rem + 2vw, 4rem);
}

.presse-page-section__kicker {
    display: inline-block;
    font-family: 'Caveat', cursive;
    font-size: clamp(1.5rem, 1rem + 1.5vw, 2.25rem);
    color: #E71A80;
    line-height: 1;
    margin-bottom: 0.5rem;
    transform: rotate(-2deg);
}

.presse-page-section__title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 1.2rem + 3vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    margin: 0 auto;
    max-width: 22ch;
}

.presse-page-section__sub {
    font-family: 'Montserrat', sans-serif;
    color: #403F3F;
    margin: clamp(0.75rem, 0.5rem + 0.5vw, 1rem) auto 0;
    max-width: 56ch;
    font-size: clamp(0.95rem, 0.8rem + 0.3vw, 1.1rem);
    line-height: 1.55;
}

.presse-page-section__head--light .presse-page-section__title,
.presse-page-section--dark .presse-page-section__sub {
    color: #FFFFFF;
}

.presse-page-section__head--light .presse-page-section__kicker {
    color: #FF7BB8;
}

.presse-page-section__empty {
    text-align: center;
    color: #403F3F;
    font-family: 'Montserrat', sans-serif;
}

.presse-page-section__empty--light {
    color: rgba(255, 255, 255, 0.85);
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
    gap: clamp(1.25rem, 1rem + 1vw, 2rem);
}

.press-card {
    background: #FFFFFF;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 30px -18px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.press-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.35);
}

.press-card__media {
    display: block;
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f0f0f0;
}

.press-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.press-card:hover .press-card__media img {
    transform: scale(1.04);
}

.press-card__source {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #E71A80;
    color: #FFFFFF;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    text-transform: uppercase;
}

.press-card__body {
    padding: clamp(1.1rem, 0.8rem + 0.6vw, 1.5rem);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.press-card__date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 0.5rem;
}

.press-card__date-icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.press-card__title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: clamp(1.05rem, 0.85rem + 0.5vw, 1.35rem);
    line-height: 1.25;
    margin: 0 0 0.6rem;
}

.press-card__title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.25s ease;
}

.press-card__title a:hover {
    color: #E71A80;
}

.press-card__excerpt {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.55;
    color: #555;
    margin: 0 0 1rem;
    flex: 1;
}

.press-card__link {
    align-self: flex-start;
    color: #E71A80;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    text-decoration: none;
    transition: gap 0.25s ease, color 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.press-card__link:hover {
    color: #b8125f;
    gap: 0.7rem;
}

.podcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 360px), 1fr));
    gap: clamp(1.25rem, 1rem + 1vw, 2rem);
}

.podcast-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.podcast-card:hover {
    transform: translateY(-4px);
    border-color: rgba(231, 26, 128, 0.6);
    background: rgba(255, 255, 255, 0.09);
}

.podcast-card__cover {
    position: relative;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    overflow: hidden;
}

.podcast-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.podcast-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.45);
}

.podcast-card__play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #E71A80;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px -8px rgba(231, 26, 128, 0.7);
    transition: transform 0.25s ease, background 0.25s ease;
    text-decoration: none;
}

.podcast-card__play:hover {
    transform: scale(1.08);
    background: #FFFFFF;
    color: #E71A80;
}

.podcast-card__play svg {
    margin-left: 4px;
}

.podcast-card__platform {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.55);
    color: #FFFFFF;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    text-transform: uppercase;
}

.podcast-card__platform--spotify { background: #1DB954; }
.podcast-card__platform--apple { background: #fc3c44; }
.podcast-card__platform--youtube { background: #ff0033; }
.podcast-card__platform--soundcloud { background: #ff5500; }

.podcast-card__body {
    padding: clamp(1.1rem, 0.8rem + 0.6vw, 1.5rem);
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.podcast-card__meta {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 0.5rem;
    text-transform: uppercase;
}

.podcast-card__title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: clamp(1.1rem, 0.9rem + 0.5vw, 1.4rem);
    line-height: 1.25;
    margin: 0 0 0.6rem;
}

.podcast-card__text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 1rem;
    flex: 1;
}

.podcast-card__embed {
    width: 100%;
    margin-top: auto;
}

.podcast-card__embed iframe {
    width: 100%;
    height: 152px;
    border: 0;
    border-radius: 12px;
    background: #000;
}

.podcast-card__btn {
    align-self: flex-start;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.25rem;
    background: #E71A80;
    color: #FFFFFF;
    border-radius: 999px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
}

.podcast-card__btn:hover {
    background: #FFFFFF;
    color: #E71A80;
    transform: translateY(-2px);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
    gap: clamp(1rem, 0.75rem + 0.75vw, 1.5rem);
}

.social-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 25px -15px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-card:hover {
    transform: translateY(-4px) rotate(-0.5deg);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.35);
}

.social-card__media {
    position: relative;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    overflow: hidden;
}

.social-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.social-card:hover .social-card__media img {
    transform: scale(1.05);
}

.social-card__platform {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.65);
    color: #FFFFFF;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    text-transform: uppercase;
}

.social-card--instagram .social-card__platform { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-card--linkedin .social-card__platform { background: #0A66C2; }
.social-card--facebook .social-card__platform { background: #1877F2; }
.social-card--tiktok .social-card__platform { background: #000000; }
.social-card--youtube .social-card__platform { background: #FF0033; }
.social-card--x .social-card__platform { background: #000000; }

.social-card__body {
    padding: clamp(0.9rem, 0.7rem + 0.5vw, 1.2rem);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}

.social-card__caption {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

.social-card__cta {
    margin-top: auto;
    color: #E71A80;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
}

.instagram-feed__handle {
    text-align: center;
    margin: -1rem auto clamp(1.5rem, 1rem + 1vw, 2.5rem);
    font-family: 'Inter Tight', sans-serif;
}

.instagram-feed__handle a {
    color: #E71A80;
    font-weight: 700;
    text-decoration: none;
    font-size: clamp(1rem, 0.9rem + 0.3vw, 1.2rem);
    transition: color 0.25s ease;
}

.instagram-feed__handle a:hover {
    color: #b8125f;
}

.instagram-embed-wrap {
    width: 100%;
}

.instagram-embed-wrap iframe {
    width: 100% !important;
    border: 0;
    border-radius: 18px;
    background: #FFFFFF;
    box-shadow: 0 12px 30px -18px rgba(0, 0, 0, 0.25);
    min-height: 600px;
}

.social-card__type {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}


/* ==== Presse "Zum Presseraum" Button ==== */
.presse-cta-wrap {
    text-align: center;
    margin-top: 48px;
}
.presse-cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #E71A80;
    color: #FFFFFF;
    font-family: "Inter Tight", sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 999px;
    transition: transform 0.2s ease, background 0.2s ease;
}
.presse-cta-btn:hover {
    background: #c8136d;
    transform: translateY(-2px);
}


/* ==== Event Anmelde Button im Hero ==== */
.post-hero__btn {
    display: inline-block;
    margin-top: 32px;
    padding: 18px 48px;
    background: #E71A80;
    color: #FFFFFF;
    font-family: "Inter Tight", sans-serif;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 999px;
    transition: transform 0.2s ease, background 0.2s ease;
    box-shadow: 0 8px 24px rgba(231, 26, 128, 0.4);
}
.post-hero__btn:hover {
    background: #c8136d;
    transform: translateY(-2px);
}




/* ==== Event Signup Form (WP -> Odoo) ==== */
.event-signup {
    position: relative;
    padding: clamp(64px, 10vw, 140px) 0;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #403F3F 60%, #2a1626 100%);
}
.event-signup__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(231, 26, 128, 0.25) 0%, transparent 35%),
        radial-gradient(circle at 85% 80%, rgba(231, 26, 128, 0.18) 0%, transparent 40%);
    pointer-events: none;
}
.event-signup .container { position: relative; z-index: 2; }

.event-signup__card {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 32px;
    padding: clamp(36px, 5vw, 64px) clamp(28px, 5vw, 64px);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

/* Decorative blobs in the corners */
.event-signup__decor {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.7;
}
.event-signup__decor--1 {
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, #E71A80 0%, rgba(231, 26, 128, 0) 70%);
}
.event-signup__decor--2 {
    bottom: -80px;
    left: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(231, 26, 128, 0.4) 0%, rgba(231, 26, 128, 0) 70%);
}

/* Head */
.event-signup__head {
    text-align: center;
    margin-bottom: 36px;
}
.event-signup__kicker {
    display: inline-block;
    font-family: 'Caveat', cursive;
    font-size: clamp(28px, 3vw, 36px);
    color: #E71A80;
    transform: rotate(-2deg);
    margin-bottom: 8px;
}
.event-signup__title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 4.5vw, 48px);
    color: #1a1a1a;
    margin: 0 0 24px;
    line-height: 1.05;
    letter-spacing: -0.02em;
}
.event-signup__title em {
    font-style: italic;
    font-weight: 500;
    color: #E71A80;
}
.event-signup__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.event-signup__chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f4f4f4;
    border-radius: 999px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #1a1a1a;
}
.event-signup__chip-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}
.event-signup__chip--accent {
    background: #fff0f7;
    color: #E71A80;
}

/* Form */
.event-signup__form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: left;
}
.event-signup__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.event-signup__field--full {
    grid-column: span 2;
}
.event-signup__field label {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #888;
}
.event-signup__field label span {
    text-transform: none;
    font-weight: 400;
    color: #b8b8b8;
}
.event-signup__input {
    width: 100%;
    height: 56px;
    padding: 0 22px;
    border: 2px solid #ececec;
    border-radius: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #1a1a1a;
    background: #fafafa;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.event-signup__input::placeholder { color: #c0c0c0; }
.event-signup__input:focus {
    outline: none;
    border-color: #E71A80;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(231, 26, 128, 0.12);
}

.event-signup__hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.event-signup__submit-wrap {
    grid-column: span 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.event-signup__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #E71A80 0%, #b8125f 100%);
    color: #FFFFFF;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 12px 28px rgba(231, 26, 128, 0.45);
}
.event-signup__btn-arrow {
    display: inline-block;
    font-size: 22px;
    transition: transform 0.25s ease;
}
.event-signup__btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(231, 26, 128, 0.55);
}
.event-signup__btn:hover:not(:disabled) .event-signup__btn-arrow {
    transform: translateX(6px);
}
.event-signup__btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.event-signup__hint {
    flex: 1 1 240px;
    font-size: 13px;
    color: #888;
    margin: 0;
    line-height: 1.5;
}

.event-signup__message {
    margin-top: 28px;
    padding: 18px 22px;
    border-radius: 16px;
    font-weight: 500;
    font-family: 'Inter Tight', sans-serif;
    text-align: center;
}
.event-signup__message:empty { display: none; }
.event-signup__message--ok {
    background: linear-gradient(135deg, #1c7a3e 0%, #14582d 100%);
    color: #fff;
    box-shadow: 0 10px 30px rgba(28, 122, 62, 0.35);
}
.event-signup__message--err {
    background: #fdecec;
    color: #b3261e;
    border: 1px solid #f5b9b6;
}

@media (max-width: 720px) {
    .event-signup__form { grid-template-columns: 1fr; gap: 16px; }
    .event-signup__field--full { grid-column: span 1; }
    .event-signup__submit-wrap { grid-column: span 1; flex-direction: column; align-items: stretch; }
    .event-signup__btn { justify-content: center; }
    .event-signup__hint { text-align: center; }
}

/* ============================================
   EINHEITLICH RUNDE BUTTONS (Pill) — global, am Dateiende
   damit alle Button-Klassen denselben runden Stil haben
   ============================================ */
.btn,
.btn--primary,
.btn--outline,
.btn--outline-dark,
.btn--small,
.btn--rounded-pink,
.hero__btn,
.size-card__btn,
.tm-card__btn,
.bsize-cta__btn,
.event-card__btn,
.gastro-content__btn,
.mieter-card__btn,
.presse-slide__btn,
.newsletter-btn,
.buero-anfrage__btn,
.post-cta__btn,
.post-cta__btn--outline,
.ump-cta__btn,
.eg-cta__btn,
.cta-card__btn,
.kontakt-form__btn,
.podcast-card__btn,
.social-card__cta,
.presse-cta-btn,
.post-hero__btn,
.event-signup__btn {
    border-radius: var(--radius-pill);
}

/* ==================== RECHTSSEITEN (Impressum / Datenschutz) ==================== */
.legal-content {
    max-width: 820px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 48px 56px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
    color: var(--color-text-dark);
    font-size: 1rem;
    line-height: 1.75;
}
@media (max-width: 767px) {
    .legal-content { padding: 28px 22px; }
}

/* ==================== HEADER LOGIN BUTTON ==================== */
.header-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--color-primary);
    color: #ffffff;
    border-radius: var(--radius-pill);
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
}
.header-login:hover {
    background: var(--color-primary-hover);
    transform: translateY(-1px);
    color: #ffffff;
}
/* Desktop-Button: standardmäßig aus (erst ab 1024px sichtbar, siehe Desktop-Media-Query) */
.header-login--desktop {
    display: none;
    margin-left: 18px;
}
/* Mobile-Button: im aufklappbaren Hamburger-Menü */
.header-login--mobile {
    margin: 18px auto 0;
    width: max-content;
}
/* Desktop-Login erst ab 1024px zeigen — MUSS nach der display:none-Regel stehen,
   sonst gewinnt bei gleicher Spezifität die spätere Quelle und der Button bleibt aus. */
@media (min-width: 1024px) {
    .header-login--desktop {
        display: inline-flex;
    }
}

/* ==================== TAGES-BUCHUNGSKALENDER ==================== */
.booking-cal__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 4px 0 16px;
}
.booking-cal__month {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: #403F3F;
}
.booking-cal__prev,
.booking-cal__next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: #fff;
    color: #403F3F;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.booking-cal__prev:hover,
.booking-cal__next:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}
.booking-cal__prev:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.booking-cal__weekdays,
.booking-cal__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}
.booking-cal__weekdays { margin-bottom: 6px; }
.booking-cal__weekdays span {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: #aaa;
    text-transform: uppercase;
}
.booking-cal__cell {
    aspect-ratio: 1 / 1;
    border: none;
    border-radius: 10px;
    background: #f2f2f2;
    color: #c4c4c4;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
    padding: 0;
}
.booking-cal__cell.is-empty { background: transparent; }
.booking-cal__cell.is-past { opacity: 0.4; }
.booking-cal__cell.is-busy {
    background: #f7f7f7;
    color: #c9c9c9;
    text-decoration: line-through;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.booking-cal__cell.is-busy:hover {
    background: #ececec;
    color: #8a8a8a;
}
.booking-form__note {
    background: rgba(217, 138, 43, 0.10);
    border-left: 3px solid #d98a2b;
    color: #8a5a12;
    padding: 12px 14px;
    border-radius: 8px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    line-height: 1.5;
}
.booking-cal__cell.is-free {
    background: rgba(231, 26, 128, 0.09);
    color: #403F3F;
    cursor: pointer;
    transition: background 0.15s, transform 0.15s;
}
.booking-cal__cell.is-free:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}
.booking-cal__cell.is-selected {
    background: var(--color-primary) !important;
    color: #fff !important;
    box-shadow: 0 0 0 3px rgba(231, 26, 128, 0.25);
}
.booking-cal__loading {
    grid-column: 1 / -1;
    text-align: center;
    color: #999;
    padding: 28px 0;
}
.booking-cal__legend {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-top: 16px;
    font-size: 0.78rem;
    color: #777;
}
.booking-cal__legend span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.booking-cal__legend .is-free::before,
.booking-cal__legend .is-busy::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 3px;
    display: inline-block;
}
.booking-cal__legend .is-free::before { background: rgba(231, 26, 128, 0.18); }
.booking-cal__legend .is-busy::before { background: #ededed; }

.booking-form {
    margin-top: 24px;
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
}
.booking-form__selected {
    color: #403F3F;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 14px;
}
.booking-form__day { color: var(--color-primary); }
.booking-form__row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.booking-form__row .kontakt-form__field {
    flex: 1;
    min-width: 180px;
}
.booking-form__invoice {
    margin: 14px 0 4px;
    padding: 16px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: rgba(231, 26, 128, 0.04);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.booking-form__invoice legend {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    color: #403F3F;
    padding: 0 6px;
}
.booking-message.is-error { color: #c0392b; font-weight: 600; }
.booking-success {
    background: rgba(231, 26, 128, 0.08);
    border: 1px solid var(--color-primary);
    color: #403F3F;
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 18px;
    font-weight: 600;
}
.booking-cal__nextfree {
    margin-top: 14px;
    text-align: center;
    font-size: 0.85rem;
    color: #777;
}
.booking-cal__nextfree-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 18px;
    border: none;
    border-radius: var(--radius-pill);
    background: var(--color-primary);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s;
}
.booking-cal__nextfree-btn:hover { background: var(--color-primary-hover); }
.booking-fallback {
    margin-top: 22px;
    text-align: center;
    font-size: 0.85rem;
    color: #777;
}
.booking-fallback a { color: var(--color-primary); font-weight: 600; text-decoration: underline; }
.legal-content h2 {
    font-family: var(--font-heading, 'Inter Tight', sans-serif);
    font-size: 1.5rem;
    line-height: 1.25;
    color: var(--color-text-dark);
    margin: 2.2em 0 0.6em;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
    font-size: 1.15rem;
    color: var(--color-text-dark);
    margin: 1.6em 0 0.5em;
}
.legal-content p { margin: 0 0 1.1em; }
.legal-content ul {
    margin: 0 0 1.2em;
    padding-left: 1.4em;
    list-style: disc;
}
.legal-content li { margin: 0 0 0.5em; }
.legal-content a {
    color: var(--color-primary);
    text-decoration: underline;
    word-break: break-word;
}
.legal-content a:hover { color: var(--color-primary-hover); }
.legal-content strong { font-weight: 600; }


/* ============================================
   MOBILE SLIDER SWIPE FIX
   "mandatory" snap fängt sanfte Swipes ab und schnappt zur selben Karte
   zurück -> fühlt sich an, als ob nichts scrollt. "proximity" lässt das
   freie Wischen zu und schnappt nur beim Loslassen nahe einer Karte.
   ============================================ */
@media (max-width: 767px) {
    .bueros-slider__track,
    .features-slider__track,
    .mieter-slider__track,
    .team-slider__track,
    .kooperation-slider__track,
    .buero-hero-slider__track {
        scroll-snap-type: x proximity;
    }
}

/* Bianca Riegel: Bild mehr zentriert statt am oberen Rand (Kopf wurde abgeschnitten) */
.team-card__image img[alt="Bianca Riegel"] { object-position: center top; }
