/* ============================================================
   NTM Homepage — Who We Are (Figma redesign)

   Dark editorial section. Two columns: a compact title column on
   the left, large serif body + footnote + outlined CTA on the right.

   A faint NTM wordmark watermark sits at the bottom-left, bleeding
   off the viewport edge. A subtle right-side gradient fade mirrors
   the Figma overlay so the body copy lifts off the background.
   ============================================================ */

.ntm-who-we-are {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background-color: #161616;
    color: #ffffff;
    font-family: var(--ntm-font-sans);
    padding-top: var(--ntm-section-pad-y);
    padding-bottom: var(--ntm-section-pad-y);
}

/* Right-edge fade — overlays the body text so the trailing edge of each
   line eases into the section background, matching the Figma overlay. */
.ntm-who-we-are__fade {
    position: absolute;
    inset: 0 0 0 auto;
    width: 28%;
    background: linear-gradient(
        270deg,
        #161616 0%,
        rgba(22, 22, 22, 0.85) 30%,
        rgba(22, 22, 22, 0.45) 65%,
        rgba(22, 22, 22, 0) 100%
    );
    pointer-events: none;
    z-index: 3;
}

/* Background wordmark: anchored to the bottom-left, bleeds off-edge. */
.ntm-who-we-are__watermark {
    position: absolute;
    left: -12%;
    bottom: 0;
    width: 70%;
    max-width: 980px;
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
    line-height: 0;
}

.ntm-who-we-are__watermark img {
    width: 100%;
    height: auto;
    display: block;
}

.ntm-who-we-are__container {
    position: relative;
    z-index: 2;
    max-width: var(--ntm-container-max);
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.ntm-who-we-are__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: flex-start;
}

@media (min-width: 992px) {
    .ntm-who-we-are__inner {
        grid-template-columns: minmax(0, 556fr) minmax(0, 761fr);
        gap: 75px;
    }
}

/* ---------- Left column: eyebrow + title ---------- */
.ntm-who-we-are__intro {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ntm-who-we-are__eyebrow {
    margin: 0;
    font-family: var(--ntm-font-sans);
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ntm-accent-teal);
}

.ntm-who-we-are__title {
    margin: 0;
    font-family: var(--ntm-font-serif);
    font-weight: 400;
    font-style: normal;
    font-size: clamp(2.5rem, 5vw, 4.125rem);
    line-height: 1.22;
    color: #ffffff;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.3em;
}

.ntm-who-we-are__title-main {
    font-style: normal;
    color: #ffffff;
}

.ntm-who-we-are__title-italic {
    font-style: italic;
    color: var(--ntm-accent-teal);
}

/* ---------- Right column: body + footnote + CTA ---------- */
.ntm-who-we-are__content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    max-width: 761px;
}

.ntm-who-we-are__body {
    margin: 0;
    font-family: var(--ntm-font-serif);
    font-style: normal;
    font-weight: 400;
    font-size: clamp(1.5rem, 2.3vw, 2.5rem);
    line-height: 1.225;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.ntm-who-we-are__footnote {
    margin: 0;
    font-family: var(--ntm-font-sans);
    font-weight: 400;
    font-size: clamp(1rem, 1.2vw, 1.375rem);
    line-height: 1.32;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.95);
}

/* Outlined button — matches Figma 0.5px white border, transparent fill. */
.ntm-who-we-are__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    box-sizing: border-box;
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-family: var(--ntm-font-sans);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ntm-who-we-are__cta:hover,
.ntm-who-we-are__cta:focus-visible {
    background-color: var(--ntm-accent-teal);
    border-color: var(--ntm-accent-teal);
    color: #ffffff;
    text-decoration: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 767px) {
    .ntm-who-we-are__watermark {
        left: -20%;
        width: 110%;
        max-width: none;
        bottom: 2%;
        opacity: 0.04;
    }

    .ntm-who-we-are__fade {
        width: 0;
    }

    .ntm-who-we-are__cta {
        width: 100%;
    }
}
