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

body {
    background: var(--cream);
}

/* ── Page header ── */

.nos-header {
    padding: 100px 28px 36px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.nos-eyebrow {
    font-family: var(--f-italic);
    font-style: italic;
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 0.12em;
    margin-bottom: 20px;
}

.nos-title {
    font-family: var(--f-display);
    font-size: clamp(40px, 10vw, 80px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -1px;
    color: var(--ink);
    margin-bottom: 24px;
}

.nos-title em {
    font-family: var(--f-italic);
    font-style: italic;
    color: var(--gold-dark);
}

.nos-intro {
    font-size: 16px;
    line-height: 1.9;
    color: var(--warm-gray);
    max-width: 560px;
    margin: 0 auto;
}

/* ── Hero image ── */

.nos-img-hero {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    aspect-ratio: 16/7;
    background: var(--cream-3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.nos-img-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.nos-img-placeholder {
    font-family: var(--f-italic);
    font-style: italic;
    font-size: 16px;
    color: var(--warm-gray-2);
}

/* ── Story section ── */

.nos-story {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 28px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.nos-story-text {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.nos-story-label {
    font-family: var(--f-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

.nos-story-title {
    font-family: var(--f-display);
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 400;
    line-height: 1.05;
    color: var(--ink);
}

.nos-story-body {
    font-size: 14px;
    line-height: 1.9;
    color: var(--warm-gray);
}

.nos-story-img {
    aspect-ratio: 4/5;
    background: var(--cream-3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.nos-story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* ── Values ── */

.nos-values {
    background: var(--ink);
    color: var(--cream);
    padding: 60px 28px;
}

.nos-values-head {
    text-align: center;
    margin-bottom: 48px;
}

.nos-values-title {
    font-family: var(--f-display);
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 400;
    letter-spacing: -0.5px;
}

.nos-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.nos-value {
    padding-top: 20px;
    border-top: 1px solid rgba(184, 153, 104, 0.25);
}

.nos-value-num {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.nos-value-title {
    font-family: var(--f-display);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
}

.nos-value-text {
    font-size: 13px;
    line-height: 1.75;
    opacity: 0.7;
}

/* ── Signature ── */

.nos-signature {
    text-align: center;
    padding: 60px 28px;
    max-width: 600px;
    margin: 0 auto;
}

.nos-signature-quote {
    font-family: var(--f-display);
    font-style: italic;
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 400;
    line-height: 1.45;
    color: var(--ink);
    margin-bottom: 28px;
}

.nos-signature-name {
    font-family: var(--f-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--warm-gray);
}

.nos-signature-role {
    font-family: var(--f-italic);
    font-style: italic;
    font-size: 12px;
    color: var(--gold);
    margin-top: 4px;
}

.nos-divider {
    width: 40px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 20px auto;
}

/* ── Text-only story sections ── */

.nos-text-section {
    padding: 52px 28px 60px;
    border-bottom: 1px solid var(--border-light);
}

.nos-text-section--alt {
    background: var(--cream-2);
}

.nos-text-inner {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.nos-text-inner .nos-story-title:not(:first-of-type) {
    margin-top: 28px;
}

.nos-pull-quote {
    max-width: 680px;
    margin: 40px auto 0;
    font-family: var(--f-display);
    font-style: italic;
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 400;
    line-height: 1.4;
    color: var(--gold-dark);
    text-align: center;
    padding: 32px 28px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* ── Responsive ── */

@media (min-width: 768px) {
    .nos-story {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        padding: 80px 60px;
    }

    .nos-story:nth-child(even) .nos-story-text {
        order: 2;
    }

    .nos-values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .nos-values {
        padding: 80px 60px;
    }

    .nos-text-section {
        padding: 50px 60px;
    }

    .nos-text-inner {
        max-width: 760px;
    }

    .nos-pull-quote {
        max-width: 760px;
    }
}
