/*
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: 4px;
    --radius-lg: 8px;
    --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-size: clamp(1.5rem, 1rem + 1.5vw, 2.8rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: clamp(0.125rem, 0.0625rem + 0.15vw, 0.1875rem);
    margin-bottom: clamp(1.5rem, 1rem + 1.5vw, 2.5rem);
    text-align: center;
}

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

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

.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);
    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);
}

/* 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;
    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);
}

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

.social-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: none;
}

.social-sidebar__strip {
    display: block;
    width: clamp(2.5rem, 2rem + 1.5vw, 3.75rem);
    height: auto;
    border-radius: 0.625rem 0 0 0.625rem;
    transition: transform var(--transition);
    cursor: pointer;
}

.social-sidebar__strip:hover {
    transform: scale(1.05);
}

/* ============================================
   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 arrows: reposition inside on mobile */
    .bueros-slider__arrow--prev,
    .features-slider__arrow--prev,
    .mieter-slider__arrow--prev,
    .team-slider__arrow--prev,
    .presse-slider__arrow--prev,
    .buero-hero-slider__arrow--prev {
        left: 8px;
    }

    .bueros-slider__arrow--next,
    .features-slider__arrow--next,
    .mieter-slider__arrow--next,
    .team-slider__arrow--next,
    .presse-slider__arrow--next,
    .buero-hero-slider__arrow--next {
        right: 8px;
    }

    /* 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;
}

.hero-marquee__track {
    position: relative;
    display: inline-flex;
    animation: marquee-scroll 14s linear infinite;
}

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

@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__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 {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(2rem, 1rem + 3vw, 4.6875rem); /* 75px at 1366 */
    font-weight: 900;
    letter-spacing: 0.14rem; /* 2.25px */
    color: #403F3F;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.1;
    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 */
}

.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;
}

/* ============================================
   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;
}

.features-heading-marquee__track {
    position: relative;
    display: inline-flex;
    animation: marquee-scroll 14s linear infinite;
}

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

/* 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;
}

/* ============================================
   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 {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(2.5rem, 1.5rem + 3.5vw, 4.6875rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 2.25px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.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;
    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__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: 27px;
    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;
}

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

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

.section-title--gastro {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(2.5rem, 1.5rem + 3.5vw, 4.75rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 2.28px;
    color: #403F3F;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.gastro-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
}

.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__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;
}

.mieter-marquee__track {
    position: relative;
    display: inline-flex;
    animation: marquee-scroll 14s linear infinite;
}

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

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

.mieter-slider {
    position: relative;
}

.mieter-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;
}

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

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

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

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

.mieter-card {
    display: flex;
    flex-direction: column;
    background: #403F3F;
    overflow: hidden;
}

.mieter-card__image {
    width: 100%;
    height: 287px;
    overflow: hidden;
    border: 2px solid #403F3F;
}

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

.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 {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(2.5rem, 1.5rem + 3.5vw, 4.5625rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 2.19px;
    color: #403F3F;
    text-transform: uppercase;
    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: 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;
}

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

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

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

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

.team-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.team-card__image {
    width: 100%;
    height: 299px;
    overflow: hidden;
    border: 2px solid #403F3F;
}

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

.team-card__body {
    background: #403F3F;
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.team-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;
}

.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;
}

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

.section-presse {
    color: #ffffff;
}

.section-title--presse {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(2.5rem, 1.5rem + 3.5vw, 4.5625rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 2.19px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.presse-slider {
    position: relative;
}

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

.presse-slide {
    display: none;
    flex-direction: column;
    gap: 24px;
}

.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 {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(2.5rem, 1.5rem + 3.5vw, 4.5625rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 2.19px;
    color: #403F3F;
    text-transform: uppercase;
    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: 25px;
    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-logo {
    display: inline-block;
    margin-bottom: 24px;
}

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

.footer-info {
    margin-bottom: 20px;
}

.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: 20px;
}

.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: flex;
    gap: 16px;
    margin-top: 30px;
    margin-bottom: 10px;
}

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

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

.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: 27px;
    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: 3px;
}

.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.75rem, 1rem + 3vw, 4rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: clamp(0.5px, 0.3px + 0.1vw, 2px);
    color: #FFFFFF;
    text-transform: uppercase;
    margin: 0;
    max-width: 50rem;
}

.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: 2px;
}

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

.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: 3px;
    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: 27px;
    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: block;
    }

    /* 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: 257px;
        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);
}

/* ============================================
   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;
    }
}
