/* ═══════════════════════════════════════════════════════
   Depurarte – Plantilla Editorial Sobre Mí / Sobre Esther
   Estilo 4 Bloques Minimalista Elegante con Design System Depurarte
   Colores: Marfil cálido (#FCFAF4), Violeta (#340E49), Oro (#D0A761)
   ═══════════════════════════════════════════════════════ */

:root {
    --dp-ed-bg: #FCFAF4;
    --dp-ed-bg-alt: #F7F2E7;
    --dp-ed-violet: #340E49;
    --dp-ed-gold: #D0A761;
    --dp-ed-gold-light: #EAD095;
    --dp-ed-text-dark: #2A1806;
    --dp-ed-text-muted: rgba(42, 24, 6, 0.72);
    --dp-ed-pill-bg: #340E49;
    --dp-ed-pill-text: #FFFFFF;
    --dp-ed-serif: 'Cormorant Garamond', 'Georgia', serif;
    --dp-ed-sans: 'Montserrat', sans-serif;
}

.depurarte-editorial-about-body {
    background-color: var(--dp-ed-bg);
    color: var(--dp-ed-text-dark);
    font-family: var(--dp-ed-sans);
}

.dp-ed-about-wrapper {
    overflow: hidden;
    position: relative;
}

/* ═══════════════════════════════════════════════════════
   ESTRUCTURA DE BLOQUES Y WATERMARKS
   ═══════════════════════════════════════════════════════ */
.dp-ed-block {
    position: relative;
    padding: 100px 0 110px;
    border-bottom: 1px solid rgba(208, 167, 97, 0.18);
}

.dp-ed-block:nth-child(even) {
    background-color: var(--dp-ed-bg-alt);
}

.dp-ed-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
    position: relative;
    z-index: 2;
}

/* Watermark de Fondo Gigante en Serif Outline */
.dp-ed-watermark {
    position: absolute;
    top: 20px;
    left: 4%;
    font-family: var(--dp-ed-serif);
    font-size: clamp(80px, 12vw, 150px);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(208, 167, 97, 0.22);
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    z-index: 1;
    line-height: 1;
}

/* ═══════════════════════════════════════════════════════
   BLOQUE 1: HERO ABOUT ME
   ═══════════════════════════════════════════════════════ */
.dp-ed-hero-grid,
.dp-ed-who-grid,
.dp-ed-work-grid,
.dp-ed-focus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.dp-ed-signature {
    font-family: var(--dp-ed-serif);
    font-size: 32px;
    font-style: italic;
    color: var(--dp-ed-gold);
    display: block;
    margin-bottom: 12px;
}

.dp-ed-hero-heading {
    font-family: var(--dp-ed-serif);
    font-size: 52px;
    font-weight: 600;
    color: var(--dp-ed-violet);
    line-height: 1.08;
    margin: 0 0 24px;
}

.dp-ed-divider-line {
    width: 64px;
    height: 2px;
    background: var(--dp-ed-gold);
    margin-bottom: 24px;
}

.dp-ed-hero-paragraph {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dp-ed-text-muted);
    margin-bottom: 28px;
}

.dp-ed-hero-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.dp-ed-badge-gold {
    font-size: 13px;
    font-weight: 600;
    color: var(--dp-ed-violet);
    background: rgba(208, 167, 97, 0.15);
    border: 1px solid rgba(208, 167, 97, 0.35);
    padding: 8px 16px;
    border-radius: 20px;
}

/* ═══════════════════════════════════════════════════════
   MARCOS DE IMAGEN Y SOMBRAS 3D
   ═══════════════════════════════════════════════════════ */
.dp-ed-img-frame {
    border-radius: 24px;
    overflow: hidden;
    height: auto;
    width: 100%;
    box-shadow: 0 24px 48px -10px rgba(52, 14, 73, 0.22);
    border: 1px solid rgba(208, 167, 97, 0.25);
    background: #FFFFFF;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dp-ed-img-frame:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 64px -12px rgba(52, 14, 73, 0.32);
}

.dp-ed-img-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* ═══════════════════════════════════════════════════════
   BLOQUE 2: ¿QUIÉN SOY?
   ═══════════════════════════════════════════════════════ */
.dp-ed-statement {
    font-family: var(--dp-ed-serif);
    font-size: 34px;
    font-weight: 400;
    color: var(--dp-ed-violet);
    line-height: 1.3;
    margin-bottom: 28px;
}

.dp-ed-statement strong {
    font-weight: 700;
    color: var(--dp-ed-violet);
}

.dp-ed-prose {
    font-size: 15px;
    line-height: 1.8;
    color: var(--dp-ed-text-muted);
    margin-bottom: 18px;
}

/* ═══════════════════════════════════════════════════════
   BLOQUE 3: MI TRABAJO (LÍNEAS DIVISORIAS FINAS)
   ═══════════════════════════════════════════════════════ */
.dp-ed-work-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.dp-ed-work-item {
    position: relative;
}

.dp-ed-work-title {
    font-family: var(--dp-ed-serif);
    font-size: 26px;
    font-weight: 600;
    color: var(--dp-ed-violet);
    margin: 0 0 8px;
}

.dp-ed-work-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--dp-ed-text-muted);
    margin: 0 0 16px;
}

.dp-ed-item-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(208, 167, 97, 0.4) 0%, rgba(208, 167, 97, 0.1) 100%);
}

/* ═══════════════════════════════════════════════════════
   BLOQUE 4: MI ENFOQUE (PÍLDORAS CON CHECK ✓)
   ═══════════════════════════════════════════════════════ */
.dp-ed-focus-heading {
    font-family: var(--dp-ed-serif);
    font-size: 40px;
    font-weight: 600;
    color: var(--dp-ed-violet);
    margin: 0 0 32px;
}

.dp-ed-pills-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.dp-ed-pill {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--dp-ed-pill-bg);
    color: var(--dp-ed-pill-text);
    padding: 16px 26px;
    border-radius: 40px;
    box-shadow: 0 8px 20px rgba(52, 14, 73, 0.15);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.dp-ed-pill:hover {
    transform: translateX(6px);
    background: #3F0F52;
}

.dp-ed-check {
    font-size: 20px;
    font-weight: 700;
    color: var(--dp-ed-gold);
    line-height: 1;
}

.dp-ed-pill-text {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}

.dp-ed-focus-quote {
    font-family: var(--dp-ed-serif);
    font-size: 20px;
    font-style: italic;
    color: var(--dp-ed-violet);
    line-height: 1.5;
    margin: 0 0 36px;
    padding-left: 20px;
    border-left: 3px solid var(--dp-ed-gold);
}

.dp-ed-cta-group {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.dp-ed-btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 34px;
    background: var(--dp-ed-gold);
    color: #12071B !important;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 4px 18px rgba(208, 167, 97, 0.35);
    transition: all 0.2s ease;
}

.dp-ed-btn-gold:hover {
    background: var(--dp-ed-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(208, 167, 97, 0.5);
}

.dp-ed-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: transparent;
    border: 1.5px solid var(--dp-ed-violet);
    color: var(--dp-ed-violet) !important;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.2s ease;
}

.dp-ed-btn-outline:hover {
    background: var(--dp-ed-violet);
    color: #FFFFFF !important;
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════
   BLOQUE 5: GALERÍA COMPLETA DE FOTOGRAFÍAS
   ═══════════════════════════════════════════════════════ */
.dp-ed-gallery-header {
    text-align: center;
    margin-bottom: 56px;
}

.dp-ed-gallery-grid {
    columns: 3;
    column-gap: 0;
    row-gap: 0;
    width: 100%;
}

.dp-ed-gallery-item {
    break-inside: avoid;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    height: auto;
    width: 100%;
    background: #340E49;
    cursor: pointer;
    display: block;
}

.dp-ed-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border: none;
    margin: 0;
    padding: 0;
    transition: transform 0.6s ease;
}

.dp-ed-gallery-item:hover img {
    transform: scale(1.04);
}

.dp-ed-item-wide {
    grid-column: span 2;
}

.dp-ed-item-tall {
    grid-column: span 1;
}

.dp-ed-item-lg {
    grid-row: span 1;
    height: auto;
}

.dp-ed-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(52, 14, 73, 0) 0%, rgba(52, 14, 73, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 16px 20px;
    opacity: 0.95;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.dp-ed-gallery-item:hover .dp-ed-gallery-overlay {
    opacity: 1;
}

.dp-ed-gallery-overlay span {
    font-family: var(--dp-ed-serif);
    font-size: 20px;
    font-style: italic;
    color: #FFFFFF;
    letter-spacing: 0.03em;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE (MOBILE & TABLET FIXES)
   ═══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .dp-ed-block {
        padding: 52px 0 60px;
        overflow: hidden;
    }

    .dp-ed-container {
        padding: 0 20px;
        width: 100%;
        box-sizing: border-box;
    }

    /* Watermark text scaling & containment on mobile */
    .dp-ed-watermark {
        font-size: 42px;
        top: 10px;
        left: 20px;
        opacity: 0.15;
        letter-spacing: 0.04em;
        overflow: hidden;
        white-space: nowrap;
        max-width: calc(100% - 40px);
        pointer-events: none;
    }

    /* 1 Column Grids */
    .dp-ed-hero-grid,
    .dp-ed-who-grid,
    .dp-ed-work-grid,
    .dp-ed-focus-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Hero Text Adjustments */
    .dp-ed-signature {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .dp-ed-hero-heading {
        font-size: 30px;
        line-height: 1.16;
        margin-bottom: 16px;
    }

    .dp-ed-hero-paragraph {
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 20px;
    }

    /* Image Frames on Mobile - Full photo visibility without cropping */
    .dp-ed-img-frame {
        aspect-ratio: auto;
        height: auto;
        max-height: none;
        border-radius: 18px;
        width: 100%;
    }

    .dp-ed-img-frame img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
    }

    .dp-ed-gallery-item {
        height: auto;
        border-radius: 12px;
    }

    .dp-ed-gallery-item img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
    }

    .dp-ed-statement {
        font-size: 22px;
        line-height: 1.35;
        margin-bottom: 18px;
    }

    .dp-ed-prose {
        font-size: 14px;
        line-height: 1.65;
    }

    .dp-ed-focus-heading {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .dp-ed-work-title {
        font-size: 20px;
    }

    .dp-ed-work-desc {
        font-size: 13px;
        line-height: 1.6;
    }

    .dp-ed-pill {
        padding: 14px 18px;
        border-radius: 30px;
        gap: 12px;
    }

    .dp-ed-pill-text {
        font-size: 13px;
        line-height: 1.35;
    }

    .dp-ed-focus-quote {
        font-size: 17px;
        margin-bottom: 28px;
        padding-left: 14px;
    }

    .dp-ed-cta-group {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .dp-ed-btn-gold,
    .dp-ed-btn-outline {
        width: 100%;
        padding: 14px 20px;
        box-sizing: border-box;
    }

    .dp-ed-gallery-grid {
        columns: 2;
        column-gap: 0;
    }
    
    .dp-ed-item-wide,
    .dp-ed-item-lg {
        grid-column: span 1;
        grid-row: span 1;
        height: auto;
        max-height: none;
    }

    .dp-ed-gallery-item {
        height: auto;
        max-height: none;
        border-radius: 0;
    }

    .dp-ed-gallery-overlay span {
        font-size: 15px;
    }
}

@media (max-width: 580px) {
    .dp-ed-gallery-grid {
        columns: 2;
        column-gap: 0;
    }

    .dp-ed-hero-heading {
        font-size: 26px;
    }

    .dp-ed-statement {
        font-size: 20px;
    }

    .dp-ed-watermark {
        font-size: 32px;
    }
}

