/* ============================================================
   RJMC — NSS Page Styles  v1.0
   Extends: ourmission.css · Palette: Red · Teal · Deep
   Fonts: Playfair Display (display) · DM Sans (body)
   Image root: assets/images/nss/
   ============================================================ */

/* ── Local fallbacks (mirror style.css) ─────────────────── */
:root {
    --red:        #DB1A1A;
    --red-dark:   #b31212;
    --red-pale:   #fde8e8;
    --teal:       #8CC7C4;
    --teal-dark:  #6aadaa;
    --deep:       #2C687B;
    --deep-dark:  #1f4e5f;
    --deep-light: #3d849a;
    --deep-pale:  #dbedf2;
    --off-white:  #FFF6F6;
    --white:      #ffffff;
    --text-dark:  #1a1a2e;
    --text-body:  #3d4a52;
    --text-muted: #7a8c94;
    --gray-200:   #dde4e7;
    --gray-100:   #f0f3f4;
    --radius-sm:  8px;
    --radius-md:  14px;
    --radius-lg:  22px;
    --radius-xl:  32px;
    --shadow-xs:  0 1px 4px rgba(44,104,123,.07);
    --shadow-sm:  0 4px 16px rgba(44,104,123,.10);
    --shadow-md:  0 12px 40px rgba(44,104,123,.15);
    --shadow-lg:  0 24px 72px rgba(44,104,123,.20);
    --ease:       cubic-bezier(.4,0,.2,1);
    --ease-spring:cubic-bezier(.34,1.56,.64,1);
}

/* ── Utility ─────────────────────────────────────────────── */
.sec-pad { padding: 96px 0; }


/* ══════════════════════════════════════════════════════════
   § 1 — MINI HERO  (same structure as ourmission, tinted NSS-green)
══════════════════════════════════════════════════════════ */
.om-mini-hero {
    position: relative;
    background-image: linear-gradient(145deg, rgba(22,55,69,.95) 0%, rgba(44,104,123,.88) 55%, rgba(140,199,196,.30) 100%), url('../images/rjmc-mini-banner.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    min-height: 310px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Override hero tint for NSS (adds warmer green undertone) */
.nss-mini-hero {
    background-image: linear-gradient(145deg, rgba(22,55,69,.95) 0%, rgba(44,104,123,.88) 55%, rgba(140,199,196,.30) 100%), url('../images/rjmc-mini-banner.png');
}

.om-hero-geo {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.om-hero-geo--1 {
    top: -70px; right: -70px;
    width: 340px; height: 340px;
    border: 1.5px solid rgba(140,199,196,.12);
    animation: omGeoSpin 24s linear infinite;
}
.om-hero-geo--2 {
    bottom: -90px; left: 8%;
    width: 240px; height: 240px;
    border: 1px solid rgba(219,26,26,.08);
    animation: omGeoSpin 36s linear infinite reverse;
}
.om-hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(140,199,196,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(140,199,196,.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}
@keyframes omGeoSpin { to { transform: rotate(360deg); } }

.om-hero-inner {
    position: relative; z-index: 2;
    padding: 68px 0 60px;
}

/* Breadcrumb */
.om-breadcrumb {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 22px; flex-wrap: wrap;
}
.om-breadcrumb a {
    font-size: 11.5px; font-weight: 600; letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(140,199,196,.65) !important; transition: color .25s;
}
.om-breadcrumb a:hover { color: var(--teal) !important; }
.om-breadcrumb .bc-sep { font-size: 11px; color: rgba(255,255,255,.22); }
.om-breadcrumb .bc-current {
    font-size: 11.5px; font-weight: 600; letter-spacing: 1.2px;
    text-transform: uppercase; color: rgba(255,255,255,.40);
}

/* Title row */
.om-hero-title-row {
    display: flex; align-items: center;
    gap: 20px; margin-bottom: 22px;
}
.om-hero-accent {
    display: inline-block;
    width: 5px; height: 56px;
    background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
    border-radius: 4px; flex-shrink: 0;
    box-shadow: 0 0 20px rgba(219,26,26,.35);
}
.om-hero-h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem; font-weight: 700;
    color: #fff; line-height: 1.15;
    letter-spacing: -.3px; margin: 0 0 6px;
}
.om-hero-h1 em { font-style: italic; color: #8CC7C4; }
.om-hero-tagline {
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px; font-weight: 400;
    letter-spacing: .5px; color: rgba(255,255,255,.50); margin: 0;
}

/* Pills */
.om-hero-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.om-pill {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11.5px; font-weight: 600; letter-spacing: .5px;
    color: rgba(255,255,255,.70);
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    padding: 6px 14px; border-radius: 50px;
    backdrop-filter: blur(6px); transition: all .25s var(--ease);
}
.om-pill i { color: #8CC7C4; font-size: 12px; }
.om-pill:hover {
    background: rgba(140,199,196,.15);
    border-color: rgba(140,199,196,.30);
    color: #fff;
}


/* ══════════════════════════════════════════════════════════
   § 2 — SHARED HELPERS (chip · heading · divider)
══════════════════════════════════════════════════════════ */
.om-chip {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 10.5px; font-weight: 700; letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--deep); background: var(--deep-pale);
    border: 1px solid rgba(44,104,123,.20);
    padding: 6px 16px 6px 12px; border-radius: 50px; margin-bottom: 18px;
}
.om-chip--light {
    color: var(--red); background: var(--red-pale);
    border-color: rgba(219,26,26,.20);
}
.om-chip-dot {
    display: inline-block; width: 6px; height: 6px;
    border-radius: 50%; background: var(--deep); flex-shrink: 0;
}
.om-chip--light .om-chip-dot { background: var(--red); }

.om-sec-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem; font-weight: 700;
    color: var(--text-dark); line-height: 1.22; margin-bottom: 12px;
}
.om-sec-heading em { font-style: italic; color: var(--red); }

.om-divider {
    width: 48px; height: 3px;
    background: linear-gradient(90deg, var(--deep), var(--teal));
    border-radius: 3px; margin-bottom: 30px;
}


/* ══════════════════════════════════════════════════════════
   § 3 — ABOUT NSS SECTION
══════════════════════════════════════════════════════════ */
.om-statement-section { background: var(--off-white); }

.om-statement-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-left: 5px solid var(--deep);
    border-radius: var(--radius-md);
    padding: 36px 36px 36px 32px;
    box-shadow: var(--shadow-sm);
    position: relative; margin-bottom: 32px;
    transition: box-shadow .35s var(--ease), transform .35s var(--ease);
}
.om-statement-card:hover {
    box-shadow: var(--shadow-md); transform: translateY(-3px);
}
.om-quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 7rem; line-height: 1;
    color: rgba(44,104,123,.10);
    position: absolute; top: 8px; left: 14px; pointer-events: none;
}
.om-statement-card p {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px; line-height: 1.85;
    color: var(--text-body); text-align: justify;
    position: relative; z-index: 1;
}

/* Highlights row */
.om-highlight-row { display: flex; gap: 18px; flex-wrap: wrap; }
.om-highlight-item {
    display: flex; align-items: flex-start; gap: 13px;
    flex: 1 1 200px; background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 18px; box-shadow: var(--shadow-xs);
    transition: all .3s var(--ease);
}
.om-highlight-item:hover {
    box-shadow: var(--shadow-sm); transform: translateY(-3px);
}
.om-highlight-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--deep), var(--deep-light));
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: #8CC7C4;
    box-shadow: var(--shadow-sm);
    transition: transform .35s var(--ease-spring);
}
.om-highlight-item:hover .om-highlight-icon { transform: scale(1.12) rotate(-5deg); }
.om-highlight-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 3px;
}
.om-highlight-desc { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; }

/* Image collage */
.om-collage { display: grid; gap: 14px; }
.om-collage-main {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    height: 280px; box-shadow: var(--shadow-md);
}
.om-collage-main img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s var(--ease);
}
.om-collage-main:hover img { transform: scale(1.04); }
.om-collage-badge {
    position: absolute; bottom: 18px; right: 18px;
    background: var(--red); color: #fff;
    border-radius: var(--radius-md); padding: 10px 16px;
    display: flex; align-items: center; gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-weight: 700;
    box-shadow: var(--shadow-md);
}
.om-collage-badge i { font-size: 20px; }
.om-collage-badge small { font-size: 11px; opacity: .8; font-family: 'DM Sans', sans-serif; }

.om-collage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.om-collage-cell {
    position: relative; border-radius: var(--radius-sm); overflow: hidden;
    height: 110px; background: var(--gray-100);
}
.om-collage-cell img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s var(--ease);
}
.om-collage-cell:hover img { transform: scale(1.08); }
.om-collage-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(22,55,69,.82) 100%);
    display: flex; align-items: flex-end;
    padding: 8px 10px;
    font-size: 11px; font-weight: 700; color: #fff;
    letter-spacing: .3px; line-height: 1.3;
    opacity: 0; transition: opacity .3s var(--ease);
}
.om-collage-cell:hover .om-collage-overlay { opacity: 1; }

.om-collage-cell--accent {
    background: linear-gradient(135deg, var(--deep) 0%, var(--deep-dark) 100%);
}
.om-collage-stat-block {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 2px;
}
.om-cstat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; font-weight: 700; color: #fff; line-height: 1;
}
.om-cstat-num sup { font-size: .65em; }
.om-cstat-lbl {
    font-size: 10px; font-weight: 600; color: rgba(255,255,255,.65);
    text-align: center; letter-spacing: .5px; line-height: 1.3;
}


/* ══════════════════════════════════════════════════════════
   § 4 — NSS PILLARS SECTION
══════════════════════════════════════════════════════════ */
.om-pillars-section,
.nss-pillars-section {
    background: var(--gray-100);
    padding: 96px 0;
}

.om-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.om-pillar-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all .4s var(--ease);
}
.om-pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.om-pillar-img-wrap {
    position: relative; height: 180px; overflow: hidden;
}
.om-pillar-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s var(--ease);
}
.om-pillar-card:hover .om-pillar-img-wrap img { transform: scale(1.07); }
.om-pillar-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(22,55,69,.55) 100%);
}
.om-pillar-body { padding: 24px 22px 28px; }
.om-pillar-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--deep), var(--deep-light));
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: #8CC7C4;
    margin-bottom: 14px; margin-top: -36px; position: relative; z-index: 1;
    box-shadow: var(--shadow-md);
    border: 3px solid #fff;
}
.om-pillar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; font-weight: 700;
    color: var(--text-dark); margin-bottom: 8px;
}
.om-pillar-desc {
    font-size: 13.5px; color: var(--text-muted);
    line-height: 1.65; text-align: justify;
}
.om-pillar-bar {
    width: 32px; height: 3px;
    background: linear-gradient(90deg, var(--red), var(--teal));
    border-radius: 3px; margin-top: 16px;
}


/* ══════════════════════════════════════════════════════════
   § 5 — ACTIVITIES + PROGRAMME OFFICER
══════════════════════════════════════════════════════════ */
.om-commitments-section { background: var(--off-white); }

/* NSS Logo card */
.nss-logo-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 20px 24px;
    box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column;
    align-items: center; text-align: center;
}
.nss-logo-card img {
    max-height: 140px; width: auto;
    filter: drop-shadow(0 6px 14px rgba(44,104,123,.15));
}
.nss-logo-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem; font-weight: 700;
    color: var(--deep); margin-top: 16px;
    text-transform: uppercase; letter-spacing: 1px; line-height: 1.4;
}
.nss-logo-motto {
    margin-top: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 13px; font-style: italic;
    color: var(--text-muted);
    display: flex; align-items: center; gap: 6px;
}
.nss-logo-motto i { color: var(--red); font-size: 16px; }

/* Programme Officer card */
.nss-contact-card {
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.nss-card-banner {
    background: linear-gradient(155deg, var(--deep-dark) 0%, var(--deep) 100%);
    padding: 32px 24px 24px; text-align: center; position: relative; overflow: hidden;
}
.nss-card-ring-dec {
    position: absolute; top: -40px; right: -40px;
    width: 150px; height: 150px;
    background: radial-gradient(circle, rgba(140,199,196,.18) 0%, transparent 70%);
    border-radius: 50%;
}
.photo-ring {
    width: 110px; height: 110px; margin: 0 auto 14px;
    border-radius: 50%; padding: 3px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    position: relative; z-index: 1;
}
.photo-ring img {
    width: 100%; height: 100%; border-radius: 50%;
    object-fit: cover; border: 3px solid #fff;
}
.nss-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; font-weight: 700;
    color: #fff; margin-bottom: 4px; position: relative; z-index: 1;
}
.nss-card-role {
    font-size: 10.5px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--teal); position: relative; z-index: 1;
}
.nss-card-body { padding: 22px; }

.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 13.5px; color: var(--text-body);
    line-height: 1.55; margin-bottom: 14px;
}
.contact-list li:last-child { margin-bottom: 0; }
.contact-list li i { color: var(--deep); font-size: 15px; margin-top: 2px; }

/* Commit list */
.om-commit-list {
    display: flex; flex-direction: column; gap: 0; margin-bottom: 36px;
}
.om-commit-item {
    display: flex; align-items: flex-start; gap: 20px;
    padding: 18px 0; border-bottom: 1px solid var(--gray-200);
    transition: all .3s var(--ease);
}
.om-commit-item:first-child { padding-top: 0; }
.om-commit-item:last-child { border-bottom: none; }
.om-commit-item:hover { padding-left: 6px; }
.om-commit-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 700;
    color: rgba(44,104,123,.14); line-height: 1;
    flex-shrink: 0; width: 42px; transition: color .3s var(--ease);
}
.om-commit-item:hover .om-commit-num { color: var(--red); }
.om-commit-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-weight: 700;
    color: var(--text-dark); margin-bottom: 4px;
}
.om-commit-content p {
    font-size: 13.5px; color: var(--text-muted); line-height: 1.6;
}

/* Buttons */
.om-btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, var(--deep), var(--deep-dark));
    color: #fff !important;
    font-size: 13px; font-weight: 700;
    letter-spacing: .5px; text-transform: uppercase;
    padding: 13px 28px; border-radius: 50px;
    box-shadow: var(--shadow-md); transition: all .3s var(--ease);
    position: relative; overflow: hidden;
}
.om-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(44,104,123,.35);
}
.om-btn-arrow {
    width: 26px; height: 26px; border-radius: 50%;
    background: rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; transition: transform .3s var(--ease-spring);
}
.om-btn-primary:hover .om-btn-arrow { transform: translateX(4px); }


/* ══════════════════════════════════════════════════════════
   § 6 — NSS STATISTICS SECTION
══════════════════════════════════════════════════════════ */
.nss-stats-section {
    position: relative;
    background: linear-gradient(135deg, var(--deep-dark) 0%, var(--deep) 60%, var(--teal-deeper) 100%);
    padding: 96px 0;
    overflow: hidden;
}
.nss-stats-bg-pattern {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}
.nss-stats-inner { position: relative; z-index: 1; }
.nss-stats-subtext {
    font-size: 15px; color: rgba(255,255,255,.55);
    margin-top: 10px;
}

/* Re-use sec-chip light from style.css; define fallback */
.sec-chip {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 10.5px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; padding: 6px 18px;
    border-radius: 50px; margin-bottom: 14px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.20);
    color: rgba(255,255,255,.75);
}
.sec-chip--light {
    background: rgba(219,26,26,.15);
    border-color: rgba(219,26,26,.30);
    color: #f88;
}

.nss-stat-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg);
    padding: 32px 20px 28px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: all .35s var(--ease);
    position: relative; overflow: hidden;
}
.nss-stat-card::before {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--red));
    transform: scaleX(0); transform-origin: left;
    transition: transform .4s var(--ease);
}
.nss-stat-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,.12);
    border-color: rgba(140,199,196,.30);
}
.nss-stat-card:hover::before { transform: scaleX(1); }
.nss-stat-icon {
    font-size: 28px; color: var(--teal);
    margin-bottom: 14px;
    filter: drop-shadow(0 0 8px rgba(140,199,196,.4));
}
.nss-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem; font-weight: 700; color: #fff; line-height: 1;
    margin-bottom: 8px;
}
.nss-stat-num sup { font-size: .5em; color: var(--teal); }
.nss-stat-label {
    font-size: 12px; font-weight: 600;
    letter-spacing: .8px; text-transform: uppercase;
    color: rgba(255,255,255,.55);
}


/* ══════════════════════════════════════════════════════════
   § 7 — GALLERY SECTION
══════════════════════════════════════════════════════════ */
.nss-gallery-section { background: #fff; }

.nss-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 220px 220px;
    gap: 14px;
}
.nss-gallery-item {
    position: relative; border-radius: var(--radius-md);
    overflow: hidden; background: var(--gray-100);
}
.nss-gallery-item--tall { grid-row: span 2; }
.nss-gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s var(--ease);
}
.nss-gallery-item:hover img { transform: scale(1.07); }
.nss-gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(22,55,69,.82) 100%);
    display: flex; align-items: flex-end;
    padding: 16px 18px;
    opacity: 0; transition: opacity .3s var(--ease);
}
.nss-gallery-item:hover .nss-gallery-overlay { opacity: 1; }
.nss-gallery-overlay span {
    font-family: 'Playfair Display', serif;
    font-size: 15px; font-weight: 700; color: #fff;
}


/* ══════════════════════════════════════════════════════════
   § 8 — FULL-WIDTH CTA BANNER
══════════════════════════════════════════════════════════ */
.om-gov-banner {
    position: relative; min-height: 380px;
    display: flex; align-items: center; overflow: hidden;
}
.om-gov-img-layer { position: absolute; inset: 0; }
.om-gov-img-layer img { width: 100%; height: 100%; object-fit: cover; }
.om-gov-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(145deg, rgba(22,55,69,.96) 0%, rgba(219,26,26,.65) 60%, rgba(44,104,123,.75) 100%);
}
.nss-gov-overlay {
    background: linear-gradient(145deg, rgba(10,40,25,.96) 0%, rgba(30,100,60,.70) 60%, rgba(44,104,123,.75) 100%);
}
.om-gov-inner {
    position: relative; z-index: 2;
    display: flex; align-items: center; gap: 32px;
    padding: 72px 0; flex-wrap: wrap;
}
.om-gov-icon {
    width: 80px; height: 80px; flex-shrink: 0; border-radius: 50%;
    border: 2px solid rgba(140,199,196,.30);
    display: flex; align-items: center; justify-content: center;
    font-size: 34px; color: #8CC7C4;
    background: rgba(255,255,255,.06); backdrop-filter: blur(8px);
}
.om-gov-text { flex: 1; min-width: 260px; }
.om-gov-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 700; color: #fff; margin-bottom: 12px;
}
.om-gov-text h2 em { font-style: italic; color: #8CC7C4; }
.om-gov-text p {
    font-size: 14.5px; color: rgba(255,255,255,.62);
    line-height: 1.75; max-width: 560px;
}
.om-gov-actions {
    display: flex; flex-direction: column; gap: 12px; flex-shrink: 0;
}
.om-btn-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.10);
    border: 1.5px solid rgba(255,255,255,.25);
    color: #fff !important;
    font-size: 12.5px; font-weight: 700; letter-spacing: .5px;
    text-transform: uppercase; padding: 11px 24px;
    border-radius: 50px; backdrop-filter: blur(8px);
    transition: all .3s var(--ease);
}
.om-btn-white:hover {
    background: rgba(255,255,255,.18);
    border-color: rgba(140,199,196,.50);
    transform: translateY(-2px);
}
.om-btn-red {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff !important;
    font-size: 12.5px; font-weight: 700; letter-spacing: .5px;
    text-transform: uppercase; padding: 11px 24px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(219,26,26,.35);
    transition: all .3s var(--ease);
}
.om-btn-red:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(219,26,26,.50);
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1199px) {
    .om-collage-grid { grid-template-columns: 1fr 1fr; }
    .om-collage-cell { height: 100px; }
    .om-pillars-grid { grid-template-columns: 1fr 1fr; }
    .nss-gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .nss-gallery-item--tall { grid-row: span 1; }
}

@media (max-width: 991px) {
    .om-mini-hero { background-attachment: scroll; min-height: 260px; }
    .om-hero-h1 { font-size: 2.2rem; }
    .nss-pillars-section { padding: 68px 0; }
    .om-gov-inner { flex-direction: column; text-align: center; }
    .om-gov-text p { margin: 0 auto; }
    .om-gov-actions { flex-direction: row; flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 767px) {
    .sec-pad { padding: 68px 0; }
    .om-hero-inner { padding: 54px 0 46px; }
    .om-sec-heading { font-size: 1.9rem; }
    .om-statement-card { padding: 26px 22px 26px 20px; }
    .om-collage-grid { grid-template-columns: 1fr 1fr; }
    .om-pillars-grid { grid-template-columns: 1fr; }
    .om-highlight-row { flex-direction: column; }
    .nss-gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .nss-gallery-item { height: 200px; }
}

@media (max-width: 575px) {
    .om-hero-h1 { font-size: 1.85rem; }
    .om-hero-accent { height: 42px; }
    .om-collage-main { height: 220px; }
    .om-collage-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .om-collage-cell { height: 90px; }
    .om-commit-num { font-size: 1.5rem; width: 32px; }
    .om-gov-text h2 { font-size: 1.6rem; }
    .om-hero-pills { gap: 6px; }
    .om-pill { font-size: 10.5px; padding: 5px 11px; }
    .nss-stat-num { font-size: 2rem; }
}
