:root {
    --bg: #fbf7fa;
    --ink: #1f2a33;
    --muted: #55616b;

    --rose-50: #fff1f6;
    --rose-200: #ffd0df;
    --rose-400: #ff7aa8;
    --rose-600: #d94b7a;

    --teal-100: #d8fbf2;
    --teal-300: #67e8d0;
    --teal-500: #14b8a6;
    --teal-700: #0f766e;

    --glass: rgba(255, 255, 255, .78);

    --shadow-lg: 0 24px 70px rgba(10, 30, 35, .22);
    --shadow-md: 0 18px 45px rgba(10, 30, 35, .16);
    --shadow-sm: 0 10px 25px rgba(10, 30, 35, .10);

    --radius-wrap: 26px;
    --radius-card: 18px;
    --radius-btn: 10px;

    --wrap-max: 1180px;
    --pad: clamp(18px, 2.2vw, 28px);

    /* feste Headerhöhe als Basis fürs Überlappen */
    --nav-h: 74px;
}

html, body {
    background: radial-gradient(1200px 700px at 10% 0%, var(--rose-50) 0%, transparent 60%),
    radial-gradient(1200px 700px at 90% 10%, var(--teal-100) 0%, transparent 60%),
    var(--bg);
    color: var(--ink);
}

body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    line-height: 1.55;
}

h1, h2, h3, h4 {
    font-family: "Playfair Display", serif;
    letter-spacing: .2px;
}

a {
    color: var(--teal-700);
}

a:hover {
    color: var(--rose-600);
}

.grid-container {
    max-width: var(--wrap-max);
}

/* =========================
   Outer wrapper: round + shadow
   (WICHTIG: KEIN overflow hidden mehr -> Sticky funktioniert!)
========================= */
.site-wrap {
    max-width: calc(var(--wrap-max) + 80px);
    margin: clamp(12px, 2vw, 28px) auto;
    border-radius: var(--radius-wrap);
    box-shadow: var(--shadow-lg);
    position: relative;
    background: transparent;
}

/* Inner wrapper: übernimmt das Clipping */
.wrap-clip {
    border-radius: var(--radius-wrap);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, .75), rgba(255, 255, 255, .88));
    position: relative;
    isolation: isolate;

    /* Hero unter das Menü ziehen (Menü überdeckt Hero, hero scheint durch) */
    margin-top: calc(-1 * var(--nav-h));
    padding-top: var(--nav-h);
}

.wrap-clip::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(255, 122, 168, .14), transparent 35%),
    radial-gradient(circle at 80% 30%, rgba(20, 184, 166, .14), transparent 40%),
    url("https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&w=1600&q=70");
    background-size: cover;
    background-position: center;
    opacity: .14;
    z-index: -1;
    filter: saturate(1.1) contrast(1.05);
}

/* =========================
   Sticky header (transparent) over hero
   - sticky klappt jetzt, weil kein overflow hidden parent
   - transparent, hero scheint durch
========================= */
.topbar-wrap {
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 0 var(--pad);
    min-height: var(--nav-h);

    /* wirklich transparent/glassy */
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius-wrap) var(--radius-wrap) 0 0;

    /* für absolutes mobile panel */
    position: sticky;
}

.topbar-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://images.unsplash.com/photo-1525904097878-94fb15835963?auto=format&fit=crop&w=1800&q=70");
    background-size: cover;
    background-position: center;
    opacity: .16; /* transparentes JPG-Layer */
    pointer-events: none;
}

.topbar-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 122, 168, .16), rgba(20, 184, 166, .14));
    opacity: .65;
    pointer-events: none;
}

.topbar-wrap > * {
    position: relative;
    z-index: 1;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    min-height: var(--nav-h);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
}

.brand-mark {
    width: 42px;
    height: 42px;
    /*
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 122, 168, .95), rgba(20, 184, 166, .95));
    box-shadow: 0 14px 26px rgba(0, 0, 0, .22);
    position: relative;
     */
}

/*
.brand-mark::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35);
}
*/
.brand-text strong {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 1.05rem;
    line-height: 1.1;
}

.brand-text span {
    display: block;
    font-size: .82rem;
    opacity: .9;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links a {
    color: rgba(255, 255, 255, .95);
    text-decoration: none;
    font-weight: 700;
    font-size: .95rem;
    padding: 10px 12px;
    border-radius: 12px;
    transition: background .15s ease, transform .15s ease;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, .16);
    transform: translateY(-1px);
}

/* =========================
   Buttons: KEIN 3D, sondern dezente Umrandung + leichter Schlagschatten
========================= */
.btn-3d {
    border-radius: var(--radius-btn);
    border: 1px solid rgba(255, 255, 255, .35);
    padding: 12px 16px;
    color: #fff;
    background: rgba(15, 118, 110, .95); /* einfarbig */
    box-shadow: 0 10px 18px rgba(0, 0, 0, .14); /* dezenter Schlagschatten */
    transition: transform .12s ease, filter .12s ease, box-shadow .12s ease, background .12s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.btn-3d:hover {
    filter: saturate(1.05);
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(0, 0, 0, .16);
}

.btn-3d:active {
    transform: translateY(0);
    box-shadow: 0 10px 18px rgba(0, 0, 0, .14);
}

.btn-rose {
    background: rgba(217, 75, 122, .95);
    border: 1px solid rgba(255, 255, 255, .35);
}

/* Mobile Menu */
.hamburger {
    width: 48px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .10);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .16);
}

.hamburger .bars {
    width: 22px;
    height: 14px;
    position: relative;
}

.hamburger .bars span {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, .92);
    border-radius: 10px;
    transition: transform .22s ease, top .22s ease, opacity .22s ease;
}

.hamburger .bars span:nth-child(1) {
    top: 0;
}

.hamburger .bars span:nth-child(2) {
    top: 6px;
}

.hamburger .bars span:nth-child(3) {
    top: 12px;
}

/* Mobile dropdown: overlay (ohne Header-Höhe zu verändern) */
.menu-panel {
    position: absolute;
    left: var(--pad);
    right: var(--pad);
    top: calc(var(--nav-h) - 6px);
    padding: 12px;
    border-radius: 18px;

    background: rgba(31, 42, 51, .25);
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    opacity: 0;
    transform: translateY(-8px) scale(.98);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
}

.menu-panel a {
    display: block;
    padding: 12px 12px;
    margin: 6px 0;
    border-radius: 14px;
    color: rgba(255, 255, 255, .95);
    text-decoration: none;
    font-weight: 800;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .18);
}

.menu-panel a:hover {
    background: rgba(255, 255, 255, .16);
}

.nav-open .hamburger .bars span:nth-child(1) {
    top: 6px;
    transform: rotate(45deg);
}

.nav-open .hamburger .bars span:nth-child(2) {
    opacity: 0;
}

.nav-open .hamburger .bars span:nth-child(3) {
    top: 6px;
    transform: rotate(-45deg);
}

.nav-open .menu-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

@media (max-width: 820px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* =========================
   Hero (bleibt voll breit, Menü liegt drüber)
========================= */
.hero {
    position: relative;
    padding: clamp(54px, 6vw, 88px) var(--pad) 0;
    background-image: linear-gradient(100deg, rgba(31, 42, 51, .72), rgba(20, 184, 166, .18)),
    url("https://images.unsplash.com/photo-1556228578-0d85b1a4d571?auto=format&fit=crop&w=2200&q=75");
    background-size: cover;
    background-position: center;
    min-height: 520px;
    display: flex;
    align-items: flex-start;
    color: #fff;
}

.hero .hero-inner {
    max-width: var(--wrap-max);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(18px, 3vw, 34px);
    align-items: center;
    padding-bottom: 84px;
}

@media (max-width: 900px) {
    .hero .hero-inner {
        grid-template-columns: 1fr;
        padding-bottom: 110px;
    }

    .hero {
        min-height: 620px;
    }
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.06;
    margin-bottom: 12px;
    text-shadow: 0 20px 40px rgba(0, 0, 0, .45);
}

.hero p {
    font-size: clamp(1rem, 1.2vw, 1.12rem);
    color: rgba(255, 255, 255, .92);
    max-width: 60ch;
    margin-bottom: 18px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 22px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .18);
    font-weight: 700;
    font-size: .9rem;
    box-shadow: 0 16px 30px rgba(0, 0, 0, .18);
}

.badge i {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--rose-400), var(--teal-500));
    display: inline-block;
}

.hero-card {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, .22);
    backdrop-filter: blur(12px);
}

.hero-card h3 {
    color: #fff;
    margin-bottom: 8px;
}

.hero-card .mini {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.pill {
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .18);
    font-weight: 700;
    font-size: .92rem;
    flex: 1 1 160px;
}

.hero-waves {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 120px;
    pointer-events: none;
}

/* =========================
   Sections / Cards (unverändert)
========================= */
.section {
    padding: clamp(34px, 5vw, 62px) var(--pad);
}

.section-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.section-title h2 {
    margin: 0;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

.section-title p {
    margin: 0;
    color: var(--muted);
    max-width: 60ch;
}

.card {
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(31, 42, 51, .06);
    overflow: hidden;
    background: rgba(255, 255, 255, .92);
}

.card.soft {
    background: rgba(255, 255, 255, .80);
    backdrop-filter: blur(10px);
}

.card .card-pad {
    padding: 18px;
}

.eyebrow {
    color: var(--teal-700);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .78rem;
}

.kicker {
    color: var(--muted);
    font-size: .98rem;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(31, 42, 51, .10), transparent);
    margin: 12px 0;
}

/* Card1 split */
.card1-top {
    position: relative;
    min-height: 210px;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, .55)),
    url("https://images.unsplash.com/photo-1542736667-069246bdbc57?auto=format&fit=crop&w=1800&q=75");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    color: #fff;
}

.card1-top h3 {
    margin: 0;
    color: #fff;
}

.card1-top p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, .9);
}

.card1-bottom {
    padding: 18px;
    background-image: linear-gradient(120deg, rgba(255, 122, 168, .18), rgba(20, 184, 166, .12)),
    url("https://images.unsplash.com/photo-1506126613408-eca07ce68773?auto=format&fit=crop&w=1400&q=65");
    background-size: cover;
    background-position: center;
    position: relative;
}

.card1-bottom::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .70);
    backdrop-filter: blur(10px);
}

.card1-bottom > * {
    position: relative;
}

/* Card-Teaser split */
.card-teaser .card-top-image {
    position: relative;
    min-height: 210px;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, .55)),
    url("https://images.unsplash.com/photo-1542736667-069246bdbc57?auto=format&fit=crop&w=1800&q=75");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    color: #fff;
}

.card-teaser .card-top-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 122, 168, .92), rgba(20, 184, 166, .92));
    box-shadow: 0 16px 28px rgba(0, 0, 0, .16);
    flex: 0 0 auto;
    position: relative;
}

.card-teaser .card-bottom h3 {
    margin: 0;
    color: #fff;
}

.card-teaser .card-bottom {
    padding: 18px;
    background-image: linear-gradient(120deg, rgba(255, 122, 168, .18), rgba(20, 184, 166, .12)),
    url("https://images.unsplash.com/photo-1506126613408-eca07ce68773?auto=format&fit=crop&w=1400&q=65");
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-teaser .card-bottom ::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .70);
    backdrop-filter: blur(10px);
}

.card-teaser .card-bottom > * {
    position: relative;
}

/* Teaser */
.teaser {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 14px;
    align-items: center;
}

.teaser-img {
    width: 120px;
    height: 120px;
    border-radius: 18px;
    background-image: linear-gradient(180deg, rgba(255, 122, 168, .20), rgba(20, 184, 166, .18)),
    url("https://images.unsplash.com/photo-1529692236671-f1f6cf9683ba?auto=format&fit=crop&w=1200&q=70");
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-sm);
}

@media (max-width: 520px) {
    .teaser {
        grid-template-columns: 1fr;
    }

    .teaser-img {
        width: 100%;
        height: 170px;
    }
}

/* Wide */
.wide {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 0;
    min-height: 280px;
}

.wide.reverse {
    grid-template-columns: 1.05fr 1fr;
}

.wide-media {
    min-height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.wide-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, .08), rgba(0, 0, 0, .18));
    opacity: .8;
    pointer-events: none;
}

.wide .wide-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 900px) {
    .wide, .wide.reverse {
        grid-template-columns: 1fr;
    }

    .wide-media {
        min-height: 220px;
    }
}

/* Random cards grid */
.mini-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

.col-6 {
    grid-column: span 6;
}

.col-4 {
    grid-column: span 4;
}

.col-8 {
    grid-column: span 8;
}

.col-12 {
    grid-column: span 12;
}

@media (max-width: 900px) {
    .col-6, .col-4, .col-8 {
        grid-column: span 12;
    }
}

.icon-tile {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 122, 168, .92), rgba(20, 184, 166, .92));
    box-shadow: 0 16px 28px rgba(0, 0, 0, .16);
    flex: 0 0 auto;
    position: relative;
}

.icon::after {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35);
}

.list-check {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
}

.list-check li {
    margin: 6px 0;
}

/* Separators */
.sep {
    padding: clamp(34px, 5vw, 58px) var(--pad);
    position: relative;
    color: #fff;
    overflow: hidden;
}

.sep .inner {
    max-width: var(--wrap-max);
    margin: 0 auto;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.sep h2 {
    margin: 0;
    color: #fff;
}

.sep p {
    margin: 0;
    color: rgba(255, 255, 255, .9);
    max-width: 65ch;
}

.sep.image {
    background-image: linear-gradient(110deg, rgba(31, 42, 51, .70), rgba(20, 184, 166, .22)),
    url("https://images.unsplash.com/photo-1520872593040-6f50f3ed4d58?auto=format&fit=crop&w=2200&q=75");
    background-size: cover;
    background-position: center;
}

.sep.noimage {
    background: linear-gradient(120deg, rgba(255, 122, 168, .92), rgba(20, 184, 166, .92));
}

.sep.random {
    background: radial-gradient(circle at 18% 20%, rgba(255, 255, 255, .22), transparent 45%),
    radial-gradient(circle at 82% 35%, rgba(255, 255, 255, .18), transparent 40%),
    linear-gradient(120deg, rgba(15, 118, 110, .95), rgba(217, 75, 122, .92));
}

/* Quote blocks */
.quote-center {
    text-align: center;
    color: #fff;
    padding: clamp(42px, 6vw, 74px) var(--pad);
    background-image: linear-gradient(110deg, rgba(31, 42, 51, .78), rgba(217, 75, 122, .22)),
    url("https://images.unsplash.com/photo-1515378791036-0648a3ef77b2?auto=format&fit=crop&w=2200&q=75");
    background-size: cover;
    background-position: center;
    position: relative;
}

.quote-center .q {
    max-width: 820px;
    margin: 0 auto;
    font-family: "Playfair Display", serif;
    font-size: clamp(1.35rem, 2.2vw, 2.05rem);
    line-height: 1.25;
    text-shadow: 0 18px 40px rgba(0, 0, 0, .45);
}

.quote-center .a {
    margin-top: 14px;
    font-weight: 800;
    letter-spacing: .05em;
    opacity: .92;
}

.quote-card {
    background: linear-gradient(120deg, rgba(255, 122, 168, .18), rgba(20, 184, 166, .14));
}

.quote-card .card-pad {
    padding: 22px;
    position: relative;
}

.quote-card .mark {
    position: absolute;
    right: 18px;
    top: 14px;
    font-family: "Playfair Display", serif;
    font-size: 4rem;
    opacity: .18;
    line-height: 1;
}

.quote-random {
    padding: 26px;
    border-radius: var(--radius-card);
    background: radial-gradient(circle at 20% 20%, rgba(255, 122, 168, .22), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(20, 184, 166, .18), transparent 45%),
    rgba(255, 255, 255, .86);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(31, 42, 51, .06);
}

.quote-random p {
    margin: 0;
}

.quote-random .q {
    font-family: "Playfair Display", serif;
    font-size: 1.35rem;
}

.quote-random .a {
    margin-top: 10px;
    font-weight: 800;
    color: var(--teal-700);
}

/* Map */
.map-wrap {
    padding: 0;
    position: relative;
}

.map-area {
    width: 100%;
    height: min(520px, 75vh);
    border: 0;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 18px;
    right: 18px;
    width: min(420px, calc(100% - 36px));
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(31, 42, 51, .08);
    overflow: hidden;
}

.map-overlay .head {
    padding: 16px 16px 0;
}

.map-overlay .body {
    padding: 12px 16px 16px;
    color: var(--muted);
}

.map-overlay .mini-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.mini-chip {
    background: rgba(20, 184, 166, .10);
    border: 1px solid rgba(20, 184, 166, .18);
    padding: 10px 12px;
    border-radius: 14px;
    font-weight: 800;
    color: var(--teal-700);
    flex: 1 1 160px;
}

@media (max-width: 820px) {
    .map-overlay {
        position: static;
        margin: 18px var(--pad) 0;
        width: auto;
    }

    .map-wrap {
        padding-bottom: 18px;
    }
}

/* Footer */
.prefooter {
    padding: clamp(34px, 5vw, 54px) var(--pad);
    background: linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .92));
}

.footer {
    padding: 22px var(--pad) 26px;
    background: linear-gradient(120deg, rgba(31, 42, 51, .96), rgba(15, 118, 110, .55));
    color: rgba(255, 255, 255, .92);
}

.footer a {
    color: rgba(255, 255, 255, .92);
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer .small {
    opacity: .85;
    font-size: .92rem;
}

.muted {
    color: var(--muted);
}

.stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* -------------------------------------------------------
   Foundation Button-Set im weichen "Pill + Soft Shadow" Stil
   Nutzung: <a class="button wx-btn wx-btn--primary">...</a>
           <div class="button-group wx-btnset">...</div>
-------------------------------------------------------- */

/* Button-Set Layout */
.wx-btnset {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Base Button (arbeitet mit Foundation .button zusammen) */
.wx-btn,
.button.wx-btn {
    /* Default-Theme (fallback) */
    --wx-bg1: #e2a5ad; /* top */
    --wx-bg2: #d58a94; /* bottom */
    --wx-border: #d38791;
    --wx-text: #ffffff;
    --wx-focus: rgba(213, 138, 148, 0.32);

    margin: 0; /* Foundation button margin neutralisieren */
    height: 38px;
    padding: 0 18px;
    border-radius: 8px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;

    border: 1px solid var(--wx-border);
    color: var(--wx-text);
    background: linear-gradient(180deg, var(--wx-bg1) 0%, var(--wx-bg2) 100%);

    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.14);
    transition: transform 120ms ease, box-shadow 120ms ease, filter 120ms ease;
}

.wx-btn:hover,
.button.wx-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.wx-btn:active,
.button.wx-btn:active {
    transform: translateY(0);
    filter: brightness(0.99);
}

.wx-btn:focus,
.button.wx-btn:focus {
    outline: none;
}

.wx-btn:focus-visible,
.button.wx-btn:focus-visible {
    box-shadow: 0 0 0 3px var(--wx-focus),
    0 10px 18px rgba(0, 0, 0, 0.14);
}

/* Chevron/Arrow im Secondary Button */
.wx-btn__chev {
    margin-left: 10px;
    font-size: 18px;
    line-height: 0;
    opacity: 0.9;
}

/* Disabled Zustände (a, button, role=button) */
.wx-btn.is-disabled,
.button.wx-btn.is-disabled,
.wx-btn[disabled],
.button.wx-btn[disabled],
.wx-btn[aria-disabled="true"],
.button.wx-btn[aria-disabled="true"] {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
    transform: none;
    filter: none;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

/* -------------------------------------------------------
   Varianten (Farben)
-------------------------------------------------------- */

/* Primary (wie Screenshot) */
.wx-btn.wx-btn--primary {
    --wx-bg1: #e2a5ad;
    --wx-bg2: #d58a94;
    --wx-border: #d38791;
    --wx-text: #ffffff;
    --wx-focus: rgba(213, 138, 148, 0.32);
}

/* Secondary / Hellgrau (wie Screenshot) */
.wx-btn.wx-btn--secondary {
    --wx-bg1: #f1f3f4;
    --wx-bg2: #e9ebec;
    --wx-border: #d7dadd;
    --wx-text: #8b8f94;
    --wx-focus: rgba(150, 155, 160, 0.28);
}

/* Disabled (eigene Farbvariante – optional zusätzlich zur Disabled-Regel) */
.wx-btn.wx-btn--disabled {
    --wx-bg1: #f0f0f0;
    --wx-bg2: #e5e5e5;
    --wx-border: #d6d6d6;
    --wx-text: #9aa0a6;
    --wx-focus: rgba(160, 160, 160, 0.22);
}

/* Alert / Warning / Success (weich) */
.wx-btn.wx-btn--alert {
    --wx-bg1: #efb1b5;
    --wx-bg2: #e58c93;
    --wx-border: #e1868e;
    --wx-text: #ffffff;
    --wx-focus: rgba(229, 140, 147, 0.30);
}

.wx-btn.wx-btn--warning {
    --wx-bg1: #f6d39a;
    --wx-bg2: #f0c27b;
    --wx-border: #eab870;
    --wx-text: #ffffff;
    --wx-focus: rgba(240, 194, 123, 0.30);
}

.wx-btn.wx-btn--success {
    --wx-bg1: #b2dfb9;
    --wx-bg2: #95caa0;
    --wx-border: #8fc29a;
    --wx-text: #ffffff;
    --wx-focus: rgba(149, 202, 160, 0.30);
}

/* Explizite Farben aus deiner Liste */
.wx-btn.wx-btn--d7929b {
    --wx-bg1: #e5b0b7;
    --wx-bg2: #d7929b;
    --wx-border: #cf8891;
    --wx-text: #ffffff;
    --wx-focus: rgba(215, 146, 155, 0.32);
}

.wx-btn.wx-btn--ececec {
    --wx-bg1: #f6f6f6;
    --wx-bg2: #ececec;
    --wx-border: #dcdcdc;
    --wx-text: #8b8f94;
    --wx-focus: rgba(180, 180, 180, 0.25);
}

/* Rose / Rosa / Türkis + helle Varianten */
.wx-btn.wx-btn--rose {
    --wx-bg1: #e4aab2;
    --wx-bg2: #d58a94;
    --wx-border: #d38791;
    --wx-text: #ffffff;
    --wx-focus: rgba(213, 138, 148, 0.32);
}

.wx-btn.wx-btn--rosa {
    --wx-bg1: #f0c3cb;
    --wx-bg2: #e7b3bc;
    --wx-border: #e0a7b1;
    --wx-text: #ffffff;
    --wx-focus: rgba(231, 179, 188, 0.30);
}

.wx-btn.wx-btn--tuerkis {
    --wx-bg1: #7dd3cf;
    --wx-bg2: #4fb7b1;
    --wx-border: #46ada7;
    --wx-text: #ffffff;
    --wx-focus: rgba(79, 183, 177, 0.30);
}

/* Helles Türkis (helle Buttons -> dunkler Text) */
.wx-btn.wx-btn--helles-tuerkis {
    --wx-bg1: #d7f6f5;
    --wx-bg2: #bfeceb;
    --wx-border: #b1e2e1;
    --wx-text: #6f767c;
    --wx-focus: rgba(140, 220, 216, 0.28);
}

/* Helles Rose (helle Buttons -> dunkler Text) */
.wx-btn.wx-btn--helles-rose {
    --wx-bg1: #faeef0;
    --wx-bg2: #f3d6da;
    --wx-border: #efc7cd;
    --wx-text: #6f767c;
    --wx-focus: rgba(243, 214, 218, 0.35);
}

/* + 5 weitere weiche Töne */
.wx-btn.wx-btn--lavendel {
    --wx-bg1: #ddd6f3;
    --wx-bg2: #c7b8e8;
    --wx-border: #bcaade;
    --wx-text: #ffffff;
    --wx-focus: rgba(199, 184, 232, 0.30);
}

.wx-btn.wx-btn--periwinkle {
    --wx-bg1: #dbe4fb;
    --wx-bg2: #b9c9f2;
    --wx-border: #aebee8;
    --wx-text: #ffffff;
    --wx-focus: rgba(185, 201, 242, 0.30);
}

.wx-btn.wx-btn--mint {
    --wx-bg1: #d7f0df;
    --wx-bg2: #bfe6c9;
    --wx-border: #b1dcbc;
    --wx-text: #6f767c;
    --wx-focus: rgba(191, 230, 201, 0.34);
}

.wx-btn.wx-btn--peach {
    --wx-bg1: #fde3d3;
    --wx-bg2: #f4c6a6;
    --wx-border: #edbb9a;
    --wx-text: #6f767c;
    --wx-focus: rgba(244, 198, 166, 0.34);
}

.wx-btn.wx-btn--sand {
    --wx-bg1: #f3ebe3;
    --wx-bg2: #e8d8c7;
    --wx-border: #decbb6;
    --wx-text: #6f767c;
    --wx-focus: rgba(232, 216, 199, 0.34);
}

/* Optional: auf kleinen Screens untereinander und volle Breite */
@media (max-width: 640px) {
    .wx-btnset {
        width: 100%;
    }

    .wx-btnset .wx-btn,
    .wx-btnset .button.wx-btn {
        flex: 1 1 100%;
        width: 100%;
    }
}
