/* ============================================================
   EXPERIENCIA.CSS — MV Moda Femenina
   ============================================================ */

/* ── Hero split ── */

.exp-hero {
    display: grid;
    grid-template-columns: 1fr 2fr;
    min-height: calc(70svh - 52px);
    max-width: var(--max-content);
    margin: 50px auto 0;
}

.exp-hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px max(48px, calc((100% - 440px) / 2));
    background: var(--cream-2);
}


/* ── Script + Monogram ── */

.exp-script {
    font-family: var(--f-italic);
    font-style: italic;
    font-size: clamp(36px, 5vw, 62px);
    color: var(--gold-dark);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 0;
    text-align: center;
}

.exp-monogram {
    font-family: var(--f-display);
    font-size: clamp(80px, 12vw, 150px);
    font-weight: 400;
    color: var(--ink);
    line-height: 0.85;
    letter-spacing: -4px;
    margin-bottom: 0;
    text-align: center;
}

/* Heart divider with lines on both sides */
.exp-heart-rule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 20px 0 32px;
}

.exp-heart-rule-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
}

.exp-heart-rule-gem {
    font-size: 16px;
    color: var(--gold);
    flex-shrink: 0;
}

/* ── Tagline ── */

.exp-tagline {
    font-family: var(--f-body);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink);
    line-height: 1.75;
    margin-bottom: 28px;
    text-align: center;
}

/* ── Body text ── */

.exp-body {
    font-family: var(--f-body);
    font-size: 13px;
    font-weight: 300;
    color: var(--warm-gray);
    line-height: 1.9;
    margin-bottom: 14px;
    max-width: 420px;
}

/* ── Quote ── */

.exp-quote {
    font-family: var(--f-italic);
    font-style: italic;
    font-size: 15px;
    font-weight: 300;
    color: var(--gold-dark);
    line-height: 1.65;
    margin: 22px 0 8px;
    max-width: 380px;
    text-align: center;
}

.exp-quote-heart {
    font-size: 10px;
    color: var(--gold);
    display: block;
    margin-bottom: 36px;
    text-align: center;
}

/* ── CTA ── */

.exp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ink);
    color: var(--cream);
    font-family: var(--f-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 18px 44px;
    align-self: center;
    transition: background 0.25s;
}

.exp-btn:hover {
    background: var(--gold-dark);
}

/* ── Hero image ── */

.exp-hero-image {
    position: relative;
    overflow: hidden;
}

.exp-hero-image::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 35%;
    background: linear-gradient(to right, var(--cream-2) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.exp-hero-image::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 12%;
    background: linear-gradient(to left, var(--cream) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.exp-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* ── Includes section ── */

.exp-includes {
    background: var(--cream);
    padding: 40px 48px 96px;
}

.exp-includes-head {
    text-align: center;
    margin-bottom: 48px;
}

.exp-includes-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.exp-includes-rule-line {
    flex: 1;
    max-width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold));
    opacity: 0.6;
}

.exp-includes-title-row .exp-includes-rule-line:last-child {
    background: linear-gradient(to left, transparent, var(--gold));
}

.exp-includes-rule-gem {
    font-size: 9px;
    color: var(--gold);
    display: block;
    text-align: center;
}

.exp-includes-title {
    font-family: var(--f-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--ink);
    white-space: nowrap;
}

/* ── Items grid ── */

.exp-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px 0;
    max-width: 1100px;
    margin: 0 auto;
}

.exp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 0 28px;
    border-right: 1px solid rgba(180, 148, 100, 0.2);
}

.exp-item:first-child {
    padding-left: 0;
}

.exp-item:last-child {
    padding-right: 0;
    border-right: none;
}

.exp-item-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exp-item-icon svg {
    width: 46px;
    height: 46px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.exp-item-name {
    font-family: var(--f-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink);
    line-height: 1.6;
}

.exp-item-desc {
    font-family: var(--f-body);
    font-size: 12px;
    font-weight: 300;
    color: var(--warm-gray);
    line-height: 1.8;
    margin-top: -4px;
}

/* ── Tablet (768–1023px) ── */

@media (min-width: 768px) and (max-width: 1023px) {
    .exp-hero {
        margin-top: 32px;
        min-height: calc(62svh - 52px);
    }

    .exp-hero-content {
        padding: 48px 28px;
    }

    .exp-hero-image::before {
        width: 26%;
    }

    .exp-heart-rule {
        margin: 14px 0 22px;
    }

    .exp-tagline {
        font-size: 10.5px;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
    }

    .exp-body {
        font-size: 12px;
        max-width: 100%;
        margin-bottom: 10px;
    }

    .exp-quote {
        font-size: 14px;
        max-width: 100%;
    }

    .exp-quote-heart {
        margin-bottom: 24px;
    }

    .exp-includes {
        padding: 36px 32px 72px;
    }

    .exp-items {
        grid-template-columns: repeat(5, 1fr);
        gap: 8px 0;
    }

    .exp-item {
        padding: 0 12px;
        border-right: 1px solid rgba(180, 148, 100, 0.2);
    }

    .exp-item:nth-child(3n) {
        border-right: 1px solid rgba(180, 148, 100, 0.2);
        padding-right: 12px;
    }

    .exp-item:nth-child(3n+1) {
        padding-left: 12px;
    }

    .exp-item:first-child {
        padding-left: 0;
    }

    .exp-item:last-child {
        border-right: none;
        padding-right: 0;
    }

    .exp-item-icon {
        width: 48px;
        height: 48px;
    }

    .exp-item-icon svg {
        width: 36px;
        height: 36px;
    }

    .exp-item-name {
        white-space: normal;
        font-size: 8.5px;
    }

    .exp-item-desc {
        font-size: 11px;
    }
}

/* ── Mobile (< 768px) ── */

@media (max-width: 767px) {
    .exp-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .exp-hero-image {
        height: 75vw;
        min-height: 300px;
        max-height: 440px;
    }

    .exp-hero-content {
        padding: 44px 28px 56px;
    }

    .exp-monogram {
        font-size: clamp(90px, 26vw, 130px);
    }

    .exp-body {
        max-width: 100%;
    }

    .exp-quote {
        max-width: 100%;
    }

    .exp-btn {
        align-self: stretch;
        text-align: center;
    }

    .exp-includes {
        padding: 56px 24px 72px;
    }

    .exp-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .exp-item {
        padding: 28px 16px;
        border-right: none;
        border-bottom: 1px solid rgba(180, 148, 100, 0.2);
    }

    .exp-item:nth-child(-n+2) {
        padding-top: 0;
    }

    .exp-item:nth-child(odd):not(:last-child) {
        border-right: 1px solid rgba(180, 148, 100, 0.2);
    }

    .exp-items .exp-item:last-child {
        grid-column: 1 / -1;
        border-bottom: none;
        padding-bottom: 0;
    }
}
