/* ── About-specific ───────────────────────────── */
.nsy-about-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--nsy-black);
}

.nsy-about-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}

.nsy-about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.75) 100%);
}

.nsy-about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 24px;
    max-width: 700px;
}

.nsy-about-hero-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 16px;
}

.nsy-about-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.95;
    color: #ffffff;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
}

.nsy-about-hero-tagline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.04em;
    line-height: 1.6;
}

/* ── Info strip ───────────────────────────────── */
.nsy-info-strip {
    background: var(--nsy-black);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 40px 0;
}

.nsy-info-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.nsy-info-item {
    padding: 32px 40px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
}

.nsy-info-item-icon {
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.nsy-info-item-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 8px;
}

.nsy-info-item-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 4px;
}

.nsy-info-item-sub {
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
}

/* ── Mission ──────────────────────────────────── */
.nsy-mission {
    padding: 96px 0;
    background: var(--nsy-white);
}

.nsy-mission-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.05;
    letter-spacing: 0.02em;
    max-width: 720px;
}

.nsy-mission-body {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: #444;
    max-width: 580px;
    margin-top: 32px;
}

/* ── Values ───────────────────────────────────── */
.nsy-values {
    background: var(--nsy-grey-light);
    border-top: 1px solid var(--nsy-grey-mid);
    padding: 88px 0;
}

.nsy-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2px;
    margin-top: 48px;
}

.nsy-value-card {
    background: #ffffff;
    border: 1px solid var(--nsy-grey-mid);
    padding: 36px 32px;
    transition: background 0.2s, color 0.2s;
}

.nsy-value-card:hover {
    background: var(--nsy-black);
    color: var(--nsy-white);
}

.nsy-value-card:hover .nsy-value-desc {
    color: rgba(255,255,255,0.6);
}

.nsy-value-num {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0.3;
    margin-bottom: 20px;
}

.nsy-value-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.7rem;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

.nsy-value-desc {
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.65;
    color: #555;
    transition: color 0.2s;
}

/* ── Verse ────────────────────────────────────── */
.nsy-value-verse {
    font-size: 0.75rem;
    font-style: italic;
    color: #888;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--nsy-grey-mid);
    transition: color 0.2s, border-color 0.2s;
}

.nsy-value-card:hover .nsy-value-verse {
    color: rgba(255,255,255,0.35);
    border-color: rgba(255,255,255,0.1);
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 768px) {
    .nsy-info-strip-grid { grid-template-columns: 1fr; }
    .nsy-info-item { padding: 24px; }
    .nsy-mission { padding: 60px 0; }

    /* Center all content on phones */
    .nsy-info-strip,
    .nsy-mission,
    .nsy-values {
        text-align: center;
    }

    .nsy-mission-text,
    .nsy-mission-body {
        margin-left: auto;
        margin-right: auto;
    }
}