.absoluters-block {
    --abs-bg:        #f5f2e8;
    --abs-text-dark: #1a1612;
    --abs-text-body: #2e2a24;
    --abs-accent:    #c8a84b;

    background-color: var(--abs-bg);
    color: var(--abs-text-dark);
    width: 100%;
}

.abs-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 40px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.abs-inner p{
    word-wrap: break-word;
    width: 100%;
}

.abs-label {
    font-family: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--abs-text-dark);
    margin: 0 0 18px;
    opacity: 0;
    animation: absFadeUp 0.6s ease forwards 0.1s;
}

.abs-headline {
    font-family: 'Cormorant Garamond', 'Georgia', ui-serif, serif;
    font-style: italic;
    font-weight: 700;
    font-size: clamp(36px, 6.5vw, 78px);
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--abs-text-dark);
    max-width: 780px;
    margin: 0 auto 28px;
    opacity: 0;
    animation: absFadeUp 0.7s ease forwards 0.25s;
}

.abs-headline * { font-size: inherit; }

.abs-body {
    font-family: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(13px, 1.5vw, 15px);
    line-height: 1.75;
    color: var(--abs-text-body);
    max-width: 460px;
    margin: 0 auto 52px;
    opacity: 0;
    animation: absFadeUp 0.7s ease forwards 0.4s;
}

.abs-body * { font-size: inherit; }

.abs-image-wrap {
    width: 100%;
    max-width: 860px;
    border-radius: 4px;
    overflow: hidden;
    opacity: 0;
    animation: absFadeUp 0.9s ease forwards 0.55s;
}

.abs-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

/* ── Responsive ── */
@media (max-width: 600px) {
    .abs-inner {
        padding: 52px 24px 40px;
    }

    .abs-label {
        font-size: 10px;
        letter-spacing: 0.15em;
        margin-bottom: 14px;
    }

    .abs-headline {
        font-size: clamp(32px, 9vw, 44px);
        max-width: 100%;
        margin-bottom: 22px;
    }

    .abs-body {
        font-size: 14px;
        line-height: 1.7;
        max-width: 100%;
        margin-bottom: 36px;
    }

    .abs-image-wrap {
        margin-top: 10px;
        max-width: 100%;
        border-radius: 2px;
    }
}
