/* =========================================================
   DOTALES WHY SECTION — PREMIUM BRAND MODULE
========================================================= */

.dotales-why-section {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background:
        radial-gradient(circle at 14% 20%, rgba(255,255,255,.92), rgba(255,255,255,0) 34%),
        linear-gradient(180deg, #fff 0%, var(--dotales-why-bg, #f7f4f0) 100%);
    padding: var(--dotales-why-padding-top, 52px) 24px var(--dotales-why-padding-bottom, 56px);
    overflow: hidden;
}

.dotales-why-section,
.dotales-why-section * {
    box-sizing: border-box;
}

.dotales-why-section__inner {
    width: 100%;
    max-width: min(var(--dotales-why-max-width, 1440px), 1280px);
    margin: 0 auto;
}

.dotales-why-section__content {
    display: grid;
    grid-template-columns: minmax(260px, .9fr) minmax(280px, 1fr) minmax(260px, .9fr);
    gap: clamp(32px, 4.6vw, 64px);
    align-items: center;
}

.dotales-why-section__text-col {
    max-width: 380px;
}

.dotales-why-section__eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(244, 235, 223, .96);
    color: #7b614a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.dotales-why-section__headline {
    margin: 0 0 14px;
    color: #111;
    font-size: clamp(32px, 2.8vw, 42px);
    line-height: 1.04;
    letter-spacing: -0.035em;
    font-weight: 750;
    max-width: 11ch;
}

.dotales-why-section__text {
    margin: 0 0 18px;
    color: #333;
    font-size: 15px;
    line-height: 1.62;
    max-width: 32ch;
}

.dotales-why-section__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 12px;
    background: #111;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .01em;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(0,0,0,.14);
    transition: transform .24s ease, background .24s ease, box-shadow .24s ease;
}

.dotales-why-section__button:hover {
    background: #000;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(0,0,0,.16);
}

.dotales-why-section__benefits {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    align-self: center;
}

.dotales-why-section__benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    color: #252525;
    font-size: 15px;
    line-height: 1.32;
    font-weight: 600;
}

.dotales-why-section__check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 1.5px solid rgba(99,148,76,.42);
    color: #5f9646;
    background: rgba(255,255,255,.82);
    font-size: 9px;
}

.dotales-why-section__visual {
    justify-self: end;
    width: min(100%, 360px);
}

.dotales-why-section__image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1.42 / 1;
    min-height: 220px;
    overflow: hidden;
    border-radius: 24px;
    background: #eee2d6;
    box-shadow:
        0 18px 38px rgba(56,44,34,.10),
        inset 0 1px 0 rgba(255,255,255,.9);
}

.dotales-why-section__image-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: var(--dotales-why-image-position, center center);
    transform: scale(1.015);
}

.dotales-why-section__floating-badge {
    position: absolute;
    right: 16px;
    top: -12px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.94);
    color: #a97d55;
    font-size: 21px;
    box-shadow:
        0 12px 28px rgba(0,0,0,.10),
        inset 0 1px 0 rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
}

@media (min-width: 768px) and (max-width: 1199px) {
    .dotales-why-section {
        padding: var(--dotales-why-padding-top, 42px) 22px var(--dotales-why-padding-bottom, 42px);
    }

    /* 3-Spalten wie Desktop, kompaktere Proportionen */
    .dotales-why-section__content {
        grid-template-columns: 1fr .8fr .9fr;
        grid-template-rows: auto;
        gap: clamp(16px, 2.4vw, 30px);
        align-items: center;
    }

    /* Explizite Placements zurücksetzen — DOM-Reihenfolge (text | benefits | visual) passt */
    .dotales-why-section__text-col {
        grid-column: auto;
        grid-row: auto;
        max-width: none;
    }

    .dotales-why-section__benefits {
        grid-column: auto;
        grid-row: auto;
        grid-template-columns: 1fr;
        gap: 4px;
        align-self: center;
    }

    .dotales-why-section__visual {
        grid-column: auto;
        grid-row: auto;
        justify-self: stretch;
        align-self: center;
        width: 100%;
        display: block;
    }

    /* Bild: breit und flach statt hochformatig */
    .dotales-why-section__image-wrap {
        aspect-ratio: 1.45 / 1;
        min-height: 0;
        max-height: 200px;
    }

    .dotales-why-section__headline {
        font-size: clamp(24px, 2.9vw, 32px);
        margin-bottom: 10px;
        max-width: none;
    }

    .dotales-why-section__text {
        font-size: 14px;
        line-height: 1.56;
        margin-bottom: 14px;
        max-width: none;
    }

    .dotales-why-section__button {
        min-height: 42px;
        font-size: 12px;
        padding: 0 16px;
    }

    .dotales-why-section__benefit {
        font-size: 14px;
        padding: 5px 0;
    }

    .dotales-why-section__eyebrow {
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .dotales-why-section {
        padding: 34px 18px 38px;
    }

    .dotales-why-section__content {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 112px;
        gap: 8px 14px;
        align-items: start;
    }

    .dotales-why-section__text-col {
        display: contents;
    }

    .dotales-why-section__eyebrow { order: 1; margin-bottom: 8px; grid-column: 1 / -1; }
    .dotales-why-section__headline { order: 2; grid-column: 1 / 2; }
    .dotales-why-section__text { order: 3; grid-column: 1 / -1; }

    .dotales-why-section__benefits {
        order: 4;
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
        gap: 2px;
        padding: 0;
        margin: 4px 0 0;
        align-self: stretch;
    }

    .dotales-why-section__headline {
        margin: 0 0 8px;
        font-size: clamp(28px, 7.2vw, 34px);
        line-height: 1.05;
        max-width: 10ch;
    }

    .dotales-why-section__text {
        margin: 0 0 8px;
        font-size: 15px;
        line-height: 1.58;
        max-width: none;
    }

    .dotales-why-section__button {
        order: 5;
        grid-column: 1 / -1;
        width: auto;
        align-self: flex-start;
        margin-top: 10px;
    }

    .dotales-why-section__benefit {
        font-size: 14px;
        padding: 7px 0;
    }

    .dotales-why-section__visual {
        order: 2;
        grid-column: 2 / 3;
        grid-row: 2 / span 2;
        justify-self: end;
        align-self: start;
        width: 112px;
        margin-top: 2px;
    }

    .dotales-why-section__image-wrap {
        min-height: 112px;
        aspect-ratio: 1 / 1;
        border-radius: 18px;
    }

    .dotales-why-section__floating-badge {
        width: 34px;
        height: 34px;
        right: 8px;
        top: -6px;
        font-size: 13px;
    }
}
