/* ============================================================
   Stonewall Security — About Page
   Extends base.css + home.css. Reuses existing tokens, cards
   (.standard-card, .audience-card), buttons, easings, and the
   data-anim reveal system. No new design system introduced.
   ============================================================ */

/* ──────────────────────────────────────────────
   HERO — operational brief, compact
   ────────────────────────────────────────────── */
.about-hero {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: clamp(120px, 16vh, 180px) 0 clamp(48px, 7vh, 80px);
    background-color: transparent;
    background-image:
        linear-gradient(180deg, rgba(4,5,6,0.80) 0%, rgba(4,5,6,0.62) 48%, rgba(3,4,5,0.92) 100%),
        url('../assets/Stonewall%20Main%20Photos/e78cb17e-ba30-4d09-ab48-461f004af28c.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 55% 45% at 72% 18%, rgba(255,255,255,0.10) 0%, transparent 65%),
        radial-gradient(ellipse 45% 38% at 28% 26%, rgba(255,255,255,0.05) 0%, transparent 60%);
}
/* operational grid lines + vignette */
.about-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: none;
}
.about-hero-inner {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 940px;
    margin: 0 auto;
    padding: 0 var(--container-pad);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--s-5);
}
.about-hero .kicker { justify-content: center; margin-bottom: 0; }
.about-hero-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(40px, 6vw, 80px);
    line-height: 0.92;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin: 0;
    background: var(--grad-chrome);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 0 rgba(0,0,0,0.6));
}
.about-hero .lede { color: var(--c-bone); max-width: 680px; margin: 0 auto; }
.about-hero .hero-ctas { margin-top: var(--s-2); }

/* ──────────────────────────────────────────────
   COMPANY OVERVIEW — text + dossier profile panel
   ────────────────────────────────────────────── */
.overview {
    background: transparent;
    border-top: 1px solid rgba(255,255,255,0.05);
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* override default section[data-section] vertical padding */
    padding-top: clamp(var(--s-8), 12vh, var(--s-10));
    padding-bottom: clamp(var(--s-8), 12vh, var(--s-10));
}
.overview > .container { width: 100%; }
.overview-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: center;
}
.overview-content .lede { margin-top: var(--s-5); }
.overview-content p + p { margin-top: var(--s-4); }
.overview-content p { color: var(--c-grey-light); line-height: 1.7; }

.profile-panel {
    position: relative;
    padding: clamp(28px, 3vw, 40px);
    padding-top: clamp(40px, 4vw, 52px);
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.006) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    overflow: hidden;
}
.profile-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent 0, transparent 4px, rgba(255,255,255,0.012) 4px, rgba(255,255,255,0.012) 5px);
    pointer-events: none;
}
.profile-tab {
    position: absolute;
    top: 0; left: clamp(28px, 3vw, 40px);
    padding: 6px 14px;
    background: var(--grad-silver-btn);
    color: #14141a;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
}
.profile-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-4);
    padding-bottom: var(--s-4);
    margin-bottom: var(--s-4);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.profile-head h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--c-white);
}
.profile-seal {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-chrome);
    border: 1px solid rgba(216,217,221,0.4);
    border-radius: 2px;
    padding: 4px 8px;
}
.profile-rows { position: relative; z-index: 2; display: flex; flex-direction: column; }
.profile-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-4);
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.profile-row:last-child { border-bottom: 0; }
.profile-row-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-grey-light);
}
.profile-row-value {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-chrome);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.profile-row-value::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 3px rgba(74,222,128,0.16);
}
/* Factual dossier values (dates, names) — no status dot, brighter text */
.profile-row-value.is-fact { color: var(--c-white); letter-spacing: 0.1em; text-transform: none; }
.profile-row-value.is-fact::before { display: none; }
@media (max-width: 900px) {
    .overview-grid { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────────
   MISSION — wide dark-glass statement
   ────────────────────────────────────────────── */
.mission {
    background: radial-gradient(ellipse at 50% 0%, rgba(216,217,221,0.05), transparent 60%);
}
.mission-block {
    position: relative;
    max-width: 1040px;
    margin: 0 auto;
    padding: clamp(40px, 6vw, 80px) clamp(28px, 5vw, 72px);
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur)) saturate(140%);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(140%);
    border: 1px solid var(--glass-edge);
    border-radius: 4px;
    overflow: hidden;
}
.mission-block::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 60% 120% at 50% 0%, rgba(216,217,221,0.12), transparent 60%);
    opacity: 0.7;
    animation: mission-glow 7s var(--ease-soft) infinite alternate;
}
@keyframes mission-glow {
    0%   { opacity: 0.45; transform: translateY(-4%); }
    100% { opacity: 0.85; transform: translateY(2%); }
}
.mission-block .kicker { position: relative; justify-content: center; }
.mission-h2 {
    position: relative;
    z-index: 2;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--c-silver);
    margin-top: var(--s-3);
}
.mission-statement {
    position: relative;
    z-index: 2;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(26px, 3.4vw, 48px);
    line-height: 1.12;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--c-white);
    background: var(--grad-chrome);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 900px;
    margin: var(--s-4) auto 0;
}
.mission-sub {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: var(--s-5) auto 0;
    color: var(--c-grey-light);
    line-height: 1.7;
}

/* ──────────────────────────────────────────────
   CORE VALUES — reuse home .standards-grid/.standard-card
   ────────────────────────────────────────────── */
.values { background: transparent; border-top: 1px solid rgba(255,255,255,0.05); }

/* ──────────────────────────────────────────────
   OPERATIONAL APPROACH — clickable timeline accordion
   ────────────────────────────────────────────── */
.approach { background: transparent; }
.approach-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: flex-start;
}
.approach-sticky { position: sticky; top: 120px; }
.approach-sticky .lede { margin-top: var(--s-5); }

.approach-list { position: relative; padding-left: 32px; }
.approach-list::before {
    content: '';
    position: absolute;
    left: 0; top: 14px;
    width: 1px; height: calc(100% - 28px);
    background: linear-gradient(180deg, var(--c-chrome) 0%, rgba(216,217,221,0.10) 100%);
    transform-origin: top;
    transform: scaleY(0);
    transition: transform 1600ms var(--ease-premium) 200ms;
}
.approach.is-in-view .approach-list::before { transform: scaleY(1); }

.approach-step {
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.approach-step:last-child { border-bottom: 0; }
.approach-step::before {
    content: '';
    position: absolute;
    left: -36px; top: 30px;
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--c-graphite);
    border: 1px solid var(--c-chrome);
    transition: background 320ms var(--ease-soft), transform 320ms var(--ease-soft);
}
.approach-step.is-open::before { background: var(--c-chrome); transform: scale(1.3); box-shadow: 0 0 0 4px rgba(216,217,221,0.15); }

.approach-head {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: var(--s-4);
    padding: 24px 0 24px 8px;
    text-align: left;
    cursor: pointer;
}
.approach-num {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.26em;
    color: var(--c-chrome);
    min-width: 54px;
}
.approach-head h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(20px, 1.9vw, 27px);
    color: var(--c-white);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.approach-toggle {
    width: 30px; height: 30px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--c-white);
    flex-shrink: 0;
    transition: transform 360ms var(--ease-premium), border-color 240ms var(--ease-soft);
}
.approach-toggle svg { width: 14px; height: 14px; }
.approach-step.is-open .approach-toggle { transform: rotate(45deg); border-color: var(--c-chrome); }

.approach-body { max-height: 0; overflow: hidden; transition: max-height 480ms var(--ease-premium); }
.approach-step.is-open .approach-body { max-height: 200px; }
.approach-body p {
    color: var(--c-grey-light);
    line-height: 1.7;
    padding: 0 0 24px 62px;
    max-width: 600px;
}

@media (max-width: 900px) {
    .approach-grid { grid-template-columns: 1fr; }
    .approach-sticky { position: static; }
    .approach-body p { padding-left: 8px; }
}

/* ──────────────────────────────────────────────
   EXPERIENCE & CAPABILITY — matrix grid
   ────────────────────────────────────────────── */
.capability { background: transparent; }
.cap-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--s-3);
}
.cap-item {
    position: relative;
    padding: 22px 20px;
    min-height: 124px;
    background: var(--c-graphite);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--s-4);
    transition: border-color 320ms var(--ease-soft), background 320ms var(--ease-soft), transform 320ms var(--ease-soft);
}
.cap-item:hover {
    border-color: rgba(216,217,221,0.45);
    background: var(--c-stone);
    transform: translateY(-3px);
}
.cap-num {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.24em;
    color: var(--c-chrome);
}
.cap-item h3 {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--c-white);
    line-height: 1.3;
}
@media (max-width: 1100px) { .cap-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .cap-grid { grid-template-columns: repeat(2, 1fr); } }

/* ──────────────────────────────────────────────
   WHO WE SERVE — reuse home .audience-grid/.audience-card
   ────────────────────────────────────────────── */
.serve { background: transparent; }

/* ──────────────────────────────────────────────
   CONFIDENTIAL BY DESIGN — trust panel
   ────────────────────────────────────────────── */
.confidential { background: transparent; }
.confidential-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: center;
}
.confidential-content .lede { margin-top: var(--s-5); }
.confidential-panel {
    padding: clamp(28px, 3vw, 40px);
    background: linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.005) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
}
.trust-points { border-top: 1px solid rgba(255,255,255,0.06); }
.trust-points li {
    display: flex;
    align-items: baseline;
    gap: var(--s-4);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    color: var(--c-bone);
    font-size: 14px;
    line-height: 1.5;
}
.trust-points li:last-child { border-bottom: 0; }
.tp-num {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.26em;
    color: var(--c-chrome);
    min-width: 26px;
    flex-shrink: 0;
}
@media (max-width: 900px) { .confidential-grid { grid-template-columns: 1fr; } }

/* ──────────────────────────────────────────────
   TEAM / COMPANY STANDARDS
   ────────────────────────────────────────────── */
.team { background: transparent; }
.team-standards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-4);
}
.team-standard {
    padding: 30px 26px;
    background: var(--c-graphite);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 4px;
    transition: border-color 320ms var(--ease-soft), background 320ms var(--ease-soft), transform 320ms var(--ease-soft);
}
.team-standard:hover { border-color: rgba(216,217,221,0.45); background: var(--c-stone); transform: translateY(-3px); }
.team-standard-num {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.26em;
    color: var(--c-chrome);
    display: block;
    margin-bottom: var(--s-4);
}
.team-standard h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--c-white);
    margin-bottom: var(--s-3);
}
.team-standard p { font-size: 13px; color: var(--c-grey-light); line-height: 1.6; }
@media (max-width: 900px) { .team-standards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .team-standards { grid-template-columns: 1fr; } }

/* ──────────────────────────────────────────────
   WHY CLIENTS CHOOSE US — interactive reveal stack
   ────────────────────────────────────────────── */
.why { background: transparent; }
.why-list { max-width: 920px; margin: 0 auto; }
.why-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.why-q {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: var(--s-4);
    padding: 24px 0;
    text-align: left;
    cursor: pointer;
}
.why-num {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.24em;
    color: var(--c-chrome);
    min-width: 32px;
}
.why-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(18px, 1.9vw, 25px);
    color: var(--c-white);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.why-icon {
    width: 28px; height: 28px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 360ms var(--ease-premium), border-color 240ms var(--ease-soft);
}
.why-icon svg { width: 14px; height: 14px; }
.why-item.is-open .why-icon { transform: rotate(45deg); border-color: var(--c-chrome); }
.why-a { max-height: 0; overflow: hidden; transition: max-height 480ms var(--ease-premium); }
.why-item.is-open .why-a { max-height: 240px; }
.why-a p { color: var(--c-grey-light); line-height: 1.7; padding: 0 0 24px 48px; max-width: 760px; }
@media (max-width: 540px) { .why-a p { padding-left: 0; } }

/* ──────────────────────────────────────────────
   FINAL CTA
   ────────────────────────────────────────────── */
.about-cta {
    background: radial-gradient(ellipse at 50% 100%, rgba(216,217,221,0.06), transparent 55%);
    text-align: center;
}
.about-cta .section-title { margin-bottom: var(--s-5); }
.about-cta .lede { margin: 0 auto var(--s-6); }
.about-cta-buttons { display: inline-flex; flex-wrap: wrap; gap: var(--s-3); justify-content: center; }
.about-cta-tagline {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(18px, 2.2vw, 28px);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--c-white);
    background: var(--grad-chrome);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 auto var(--s-7);
    max-width: 760px;
}

/* ──────────────────────────────────────────────
   FOUNDING STORY — narrative + "what it forged" panel
   ────────────────────────────────────────────── */
.story { background: transparent; }
.story-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: flex-start;
}
.story-content p { color: var(--c-grey-light); line-height: 1.75; }
.story-content p + p { margin-top: var(--s-4); }
@media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; } }

/* ──────────────────────────────────────────────
   LEADERSHIP & EXPERIENCE — cinematic full-bleed split
   Text left · graded full-height Matt portrait filling the right half whose
   left edge dissolves into the dark section. Grade mirrors the home hero.
   ────────────────────────────────────────────── */
.leadership {
    position: relative;
    padding: 0;                                  /* kill section[data-section] padding — go full height */
    min-height: 100vh;                           /* exactly one viewport; content is sized to fit */
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(440px, 50vw, 820px);
    align-items: center;
    background: var(--c-near-black);             /* the left fade dissolves INTO this */
    overflow: hidden;                            /* horizontal-scroll guard for the oversized photo layer */
    isolation: isolate;                          /* contain the mix-blend grade to this section */
}

.leadership-content {
    grid-column: 1;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-right: auto;                          /* left-aligned at the page gutter, gutter before the photo */
    /* compact vertical rhythm so the copy fits inside one viewport (100vh) */
    padding: clamp(36px, 5vh, 72px) clamp(36px, 5vw, 80px)
             clamp(36px, 5vh, 72px) var(--container-pad);
}
.leadership-content .section-title { font-size: clamp(30px, 3.4vw, 46px); margin-bottom: var(--s-4); }
.leadership-content .lede { font-size: clamp(15px, 1.1vw, 17px); }
.leadership-content p { color: var(--c-grey-light); line-height: 1.6; }
.leadership-content p + p { margin-top: var(--s-4); }
.leadership-content .lede + p { margin-top: var(--s-4); }

/* Portrait layer — right-pinned, oversized (wider than its grid track) so the
   left fade lands only on the empty left background of the frame, never Matt. */
.leadership-media {
    position: absolute;
    top: 0; bottom: 0; right: 0;
    width: clamp(480px, 58vw, 960px);
    margin: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.leadership-media__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 42% 28%;                    /* Matt centred; right edge crops the 2nd person's arm */
    filter: brightness(0.84) contrast(1.06) saturate(0.74) sepia(0.10);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.35) 8%, #000 18%, #000 100%);
            mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.35) 8%, #000 18%, #000 100%);
}
/* GRADE 2 — desaturate toward neutral (home-hero recipe, softened). */
.leadership-media::before {
    content: "";
    position: absolute; inset: 0;
    z-index: 1;
    background: #8b8985;
    mix-blend-mode: saturation;
    opacity: 0.55;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.35) 8%, #000 18%, #000 100%);
            mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.35) 8%, #000 18%, #000 100%);
    pointer-events: none;
}
/* GRADE 3 — warm gold multiply + seating vignette, tied to --c-gold. */
.leadership-media::after {
    content: "";
    position: absolute; inset: 0;
    z-index: 2;
    background:
        radial-gradient(ellipse 92% 108% at 66% 40%, rgba(0,0,0,0) 46%, rgba(6,6,7,0.34) 80%, rgba(6,6,7,0.60) 100%),
        linear-gradient(200deg, rgba(120,92,44,0.24) 0%, rgba(72,54,28,0.38) 55%, rgba(30,24,14,0.58) 100%);
    mix-blend-mode: multiply;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.35) 8%, #000 18%, #000 100%);
            mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.35) 8%, #000 18%, #000 100%);
    pointer-events: none;
}

/* faint gold seam light where the photo meets the dark copy field */
.leadership::before {
    content: "";
    position: absolute; top: 0; bottom: 0;
    right: clamp(440px, 50vw, 820px);
    width: 220px;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(60% 50% at 100% 50%, rgba(205,173,110,0.05), transparent 70%);
}

/* mono name / role label on the darkened bottom-left of the photo */
.leadership-media__label {
    position: absolute;
    z-index: 3;
    left: clamp(40px, 5vw, 72px);
    bottom: clamp(22px, 3vw, 40px);
    display: flex;
    flex-direction: column;
    gap: 6px;
    pointer-events: none;
}
.leadership-media__name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(20px, 2.2vw, 30px);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background: var(--grad-gold);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--c-gold);
}
.leadership-media__role {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--c-chrome);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.leadership-media__role::before {
    content: "";
    width: 26px; height: 1px;
    background: linear-gradient(90deg, var(--c-chrome), transparent);
}

/* stack at the site's existing 900px breakpoint — photo becomes a banner above */
@media (max-width: 900px) {
    .leadership {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }
    .leadership::before { display: none; }
    .leadership-media {
        position: relative;
        width: 100%;
        height: clamp(280px, 56vw, 420px);
        order: -1;
    }
    .leadership-media__img {
        object-position: 44% 26%;
        -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 58%, transparent 100%);
                mask-image: linear-gradient(180deg, #000 0%, #000 58%, transparent 100%);
    }
    .leadership-media::before,
    .leadership-media::after {
        -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 58%, transparent 100%);
                mask-image: linear-gradient(180deg, #000 0%, #000 58%, transparent 100%);
    }
    .leadership-media__label {
        left: var(--container-pad);
        bottom: auto;
        top: clamp(16px, 4vw, 24px);
    }
    .leadership-content {
        max-width: none;
        margin-right: 0;
        padding: clamp(36px, 8vw, 56px) var(--container-pad) clamp(48px, 10vw, 72px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .leadership-media,
    .leadership-media__img { transition: none !important; animation: none !important; }
}

/* ──────────────────────────────────────────────
   JUDGMENT / DE-ESCALATION — narrative + pull-quote
   ────────────────────────────────────────────── */
.judgment { background: transparent; }
.judgment-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: center;
}
.judgment-content p { color: var(--c-grey-light); line-height: 1.75; }
.judgment-content p + p { margin-top: var(--s-4); }
.judgment-content .lede + p { margin-top: var(--s-5); }

.judgment-quote {
    position: relative;
    padding: clamp(32px, 4vw, 52px);
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur)) saturate(140%);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(140%);
    border: 1px solid var(--glass-edge);
    border-left: 2px solid var(--c-chrome);
    border-radius: 4px;
    overflow: hidden;
}
.judgment-quote-mark {
    font-family: var(--font-display);
    font-size: 96px;
    line-height: 0.7;
    color: rgba(216,217,221,0.16);
    display: block;
    height: 42px;
}
.judgment-quote blockquote {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.25;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--c-white);
    margin: 0 0 var(--s-5);
}
.judgment-quote-sub { color: var(--c-grey-light); font-size: 14px; line-height: 1.7; }
@media (max-width: 900px) { .judgment-grid { grid-template-columns: 1fr; } }

/* ──────────────────────────────────────────────
   CULTURE — reuse .team-standards + closing line
   ────────────────────────────────────────────── */
.culture { background: transparent; }
.culture-close {
    max-width: 820px;
    margin: var(--s-8) auto 0;
    text-align: center;
    color: var(--c-bone);
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.7;
}

/* ──────────────────────────────────────────────
   COMPREHENSIVE SERVICES — reuse audience grid
   ────────────────────────────────────────────── */
.services-about { background: transparent; }
.services-about .audience-card p { margin-bottom: var(--s-4); }
.services-about .audience-row {
    margin-top: auto;
    display: inline-block;
    padding-top: var(--s-3);
    color: var(--c-chrome);
}

/* ──────────────────────────────────────────────
   OUR COMMITMENTS — two-column numbered list
   ────────────────────────────────────────────── */
.commitments { background: transparent; }
.commit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-3) clamp(32px, 5vw, 72px);
    max-width: 1060px;
    margin: 0 auto;
}
.commit-item {
    display: flex;
    align-items: flex-start;
    gap: var(--s-4);
    padding: 20px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.commit-num {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    color: var(--c-chrome);
    min-width: 28px;
    flex-shrink: 0;
    padding-top: 2px;
}
.commit-item p { color: var(--c-bone); font-size: 15px; line-height: 1.55; }
@media (max-width: 760px) { .commit-grid { grid-template-columns: 1fr; gap: 0 0; } }

/* ──────────────────────────────────────────────
   MOVING FORWARD — narrative + headquarters card
   ────────────────────────────────────────────── */
.forward { background: transparent; }
.forward-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: center;
}
.forward-content p { color: var(--c-grey-light); line-height: 1.75; }
.forward-content p + p { margin-top: var(--s-4); }
.forward-content .lede + p { margin-top: var(--s-5); }

.address-card {
    padding: clamp(28px, 3vw, 40px);
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.006) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
}
.address-line {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: 1.35;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--c-white);
    margin-bottom: var(--s-5);
}
.address-rows { border-top: 1px solid rgba(255,255,255,0.08); }
.address-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-4);
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.address-row:last-child { border-bottom: 0; }
.address-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-grey-light);
}
.address-value {
    font-size: 14px;
    color: var(--c-chrome);
    text-align: right;
}
a.address-value:hover { color: var(--c-white); }
@media (max-width: 900px) { .forward-grid { grid-template-columns: 1fr; } }

/* ──────────────────────────────────────────────
   STICKY MOBILE CTA
   ────────────────────────────────────────────── */
.mobile-actionbar {
    display: none;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 80;
    gap: var(--s-3);
    padding: 12px clamp(16px, 4vw, 24px);
    background: linear-gradient(0deg, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.78) 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-actionbar .btn { flex: 1; padding: 14px 18px; }
@media (max-width: 640px) {
    .mobile-actionbar { display: flex; }
    body.has-actionbar { padding-bottom: 76px; }
}
