/* ═══════════════════════════════════════════════════════════════
   NNGF PORTAL — Global Design System
   Premium World-Class Governance Design
   ═══════════════════════════════════════════════════════════════ */

:root {
    --bg:          #f4f0e8;
    --ink:         #0f1f18;
    --ink-soft:    #4a6255;
    --ink-muted:   #7a9285;
    --paper:       #fffdf8;
    --paper-warm:  #f9f5ed;
    --line:        #e3d9c4;
    --brand:       #0f5d3f;
    --brand-dark:  #083d29;
    --brand-light: #1a7a54;
    --gold:        #cb9835;
    --gold-light:  #e8bc54;
    --gold-soft:   #f5e4b6;
    --danger:      #a12222;
    --success:     #0d5f35;
    --shadow:      0 4px 24px rgba(12,34,24,0.10);
    --shadow-lg:   0 20px 60px rgba(12,34,24,0.14);
    --radius:      16px;
    --radius-sm:   10px;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
    margin: 0; padding: 0;
    font-family: "Manrope", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--bg);
}

/* ── Typography ─────────────────────────────────────── */
h1,h2,h3,h4,h5 {
    margin: 0;
    font-family: "Fraunces", Georgia, serif;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 700; }
p  { margin: 0; line-height: 1.7; }
a  { color: inherit; text-decoration: none; }

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 0.6rem;
}
.eyebrow::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 2px;
    background: var(--gold);
    flex-shrink: 0;
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1.5rem;
    background: var(--brand);
    color: #fff;
    border: 1.5px solid transparent;
    border-radius: var(--radius-sm);
    font-family: "Manrope", sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
    letter-spacing: 0.02em;
    text-decoration: none;
    white-space: nowrap;
}
.btn:hover {
    background: var(--brand-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(15,93,63,0.25);
}
.btn.ghost {
    background: transparent;
    color: var(--brand);
    border-color: var(--brand);
}
.btn.ghost:hover {
    background: var(--brand);
    color: #fff;
}
.btn.ghost-light {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}
.btn.ghost-light:hover {
    background: rgba(255,255,255,0.22);
}
.btn.glass {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-color: rgba(255,255,255,0.25);
    backdrop-filter: blur(6px);
}

/* ── Site Header ─────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255,253,248,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 1px 0 rgba(15,93,63,0.06);
}

.nav-wrap {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
.brand img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 2px solid var(--gold-soft);
    object-fit: cover;
}
.brand span {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.brand strong {
    font-family: "Fraunces", serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1.2;
}
.brand small {
    font-size: 0.68rem;
    color: var(--ink-muted);
    letter-spacing: 0.04em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.main-nav a {
    padding: 0.5rem 0.9rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink-soft);
    border-radius: 8px;
    transition: color 0.15s, background 0.15s;
}
.main-nav a:hover {
    color: var(--brand);
    background: rgba(15,93,63,0.06);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

/* ── Mobile Toggle ───────────────────────────────────── */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
}
.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}
.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Drawer ───────────────────────────────────── */
.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: none;
    background: rgba(10,25,18,0.5);
    backdrop-filter: blur(2px);
}
.mobile-drawer.open { display: flex; }
.drawer-content {
    background: var(--paper);
    width: min(340px, 88vw);
    height: 100%;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--line);
    animation: drawerIn 0.28s ease;
}
@keyframes drawerIn { from { transform: translateX(-100%); } to { transform: translateX(0); } }
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.4rem;
    border-bottom: 1px solid var(--line);
}
.brand-mobile {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: "Fraunces", serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--brand-dark);
}
.brand-mobile img { width: 36px; height: 36px; border-radius: 8px; }
.drawer-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ink-soft);
    font-size: 1.1rem;
    padding: 6px;
    border-radius: 6px;
}
.drawer-nav {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow-y: auto;
}
.drawer-link {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    border-radius: 10px;
    transition: background 0.15s;
}
.drawer-link:hover { background: rgba(15,93,63,0.07); color: var(--brand); }
.drawer-actions {
    padding: 1.2rem;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

/* ── Health pill ─────────────────────────────────────── */
.health-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    background: #f0f8f4;
    color: var(--success);
    border: 1px solid #c2e8d4;
}
.health-pill .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--success);
    animation: pulse 2s infinite;
}
.health-pill.setup-required { background: #fff8e1; color: #a07800; border-color: #ffd54f; }
.health-pill.setup-required .dot { background: #a07800; animation: none; }
@keyframes pulse {
    0%,100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ── Flash Alerts ────────────────────────────────────── */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    margin: 1rem 0;
    font-size: 0.9rem;
    font-weight: 500;
}
.alert.success { background: #edfaf3; border: 1px solid #9adcb9; color: #0d5f35; }
.alert.error   { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; }

/* ═══════════════════════════════════════════════════════
   HOME PAGE
   ═══════════════════════════════════════════════════════ */

/* Hero */
.home-hero {
    background: #071e10;
    position: relative;
    overflow: hidden;
}
.home-hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.home-hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: heroSlide 24s infinite;
    will-change: opacity;
}
.home-hero-slide:nth-child(1) {
    animation-delay: 0s;
}
.home-hero-slide:nth-child(2) {
    animation-delay: 8s;
}
.home-hero-slide:nth-child(3) {
    animation-delay: 16s;
}
@keyframes heroSlide {
    0%     { opacity: 0; }
    5%     { opacity: 1; }
    29%    { opacity: 1; }
    33%    { opacity: 0; }
    100%   { opacity: 0; }
}
.home-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(170deg, rgba(7,30,16,0.88) 0%, rgba(10,44,26,0.72) 55%, rgba(14,40,22,0.88) 100%);
    pointer-events: none;
}

.home-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 5rem 0 4rem;
    position: relative;
    z-index: 2;
}

.home-hero-copy { color: #e8f0ea; }
.home-hero-h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin: 0.5rem 0 1.25rem;
}
.home-hero-h1 em {
    font-style: italic;
    color: #e8bc54;
}
.home-hero-lead {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(220,240,228,0.85);
    margin-bottom: 2rem;
}
.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Chairman card */
.home-hero-chairman {}
.chairman-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
}
.chairman-photo-wrap {
    position: relative;
    width: 140px;
    height: 140px;
}
.chairman-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(203,152,53,0.6);
    display: block;
}
.chairman-photo-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1.5px dashed rgba(203,152,53,0.35);
    animation: spin 20s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.chairman-title {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.2rem;
}
.chairman-name {
    font-family: "Fraunces", serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.1rem;
}
.chairman-state {
    font-size: 0.82rem;
    color: rgba(220,240,228,0.6);
    margin-bottom: 0.5rem;
}
.chairman-quote {
    font-size: 0.88rem;
    font-style: italic;
    color: rgba(220,240,228,0.75);
    line-height: 1.65;
    border-left: 2px solid var(--gold);
    padding-left: 0.875rem;
    text-align: left;
    margin: 0;
}

/* Stats bar */
.home-hero-stats {
    background: rgba(0,0,0,0.38);
    border-top: 1px solid rgba(203,152,53,0.2);
    padding: 1.5rem 0;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(4px);
}
.home-hero-stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
}
.hstat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}
.hstat strong {
    font-family: "Fraunces", serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #e8bc54;
}
.hstat span {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(200,230,210,0.65);
}

/* ── Generic Sections ───────────────────────────────── */
.home-section {
    padding: 5rem 0;
}
.home-section-alt {
    background: var(--paper-warm);
}

.section-label {
    margin-bottom: 3rem;
}
.section-label h2 { margin: 0.4rem 0 0.75rem; }
.section-label .section-sub { color: var(--ink-soft); max-width: 580px; }

.section-label-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.section-label-row h2 { margin: 0.4rem 0 0.5rem; }
.section-label-row .section-sub { color: var(--ink-soft); }

/* Pillars */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.pillar {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    transition: box-shadow 0.2s, transform 0.2s;
}
.pillar:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}
.pillar-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #eef9f3, #d4f0e2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--brand);
    margin-bottom: 1.25rem;
}
.pillar h3 { margin-bottom: 0.75rem; font-size: 1.05rem; }
.pillar p  { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.7; }

/* States grid */
.home-states-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.home-state-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    cursor: pointer;
}
.home-state-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
    border-color: rgba(15,93,63,0.25);
}
.hsc-governor {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}
.hsc-governor img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-soft);
    flex-shrink: 0;
}
.hsc-governor strong {
    display: block;
    font-family: "Fraunces", serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink);
}
.hsc-governor span {
    font-size: 0.78rem;
    color: var(--ink-muted);
}
.hsc-capital {
    font-size: 0.78rem;
    color: var(--ink-soft);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.hsc-capital i { color: var(--brand); }
.hsc-sector {
    font-size: 0.82rem;
    color: var(--ink-soft);
    line-height: 1.6;
    flex: 1;
}
.hsc-cta {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brand);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
}
.hsc-cta i { transition: transform 0.2s; }
.home-state-card:hover .hsc-cta i { transform: translateX(4px); }

/* News */
.home-news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}
.home-news-featured {
    background: linear-gradient(155deg, #0f3e27, #1a5c3a);
    color: #fff;
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 320px;
    justify-content: flex-end;
    transition: transform 0.2s;
}
.home-news-featured:hover { transform: translateY(-2px); }
.home-news-featured h3 {
    font-size: 1.25rem;
    color: #fff;
    line-height: 1.35;
}
.home-news-featured p { font-size: 0.88rem; opacity: 0.8; line-height: 1.6; }
.hn-cat {
    display: inline-block;
    background: rgba(203,152,53,0.25);
    color: #e8bc54;
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    align-self: flex-start;
}
.hn-date { font-size: 0.76rem; opacity: 0.55; }

.home-news-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
}
.home-news-item {
    background: var(--paper);
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    transition: background 0.15s;
}
.home-news-item:hover { background: var(--paper-warm); }
.home-news-item h4 { font-size: 0.925rem; color: var(--ink); font-family: "Fraunces", serif; font-weight: 600; line-height: 1.35; }
.home-news-item .hn-date { color: var(--ink-muted); font-size: 0.75rem; }

/* CTA Band */
.home-cta {
    background: linear-gradient(145deg, #072a1b 0%, #0f3e27 60%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.home-cta::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(203,152,53,0.12), transparent 60%);
    pointer-events: none;
}
.home-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
}
.home-cta-copy { color: #e8f0ea; }
.home-cta-copy h2 { color: #fff; margin: 0.4rem 0 0.75rem; max-width: 520px; }
.home-cta-copy p  { font-size: 0.95rem; opacity: 0.8; max-width: 480px; }
.home-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   PAGE TEMPLATE (about / states / news / investment / contact)
   ═══════════════════════════════════════════════════════ */

.page-hero {
    padding: 5.5rem 0 4.5rem;
    position: relative;
    overflow: hidden;
}
.page-hero-green {
    background: linear-gradient(150deg, #081e12 0%, #0f3e27 100%);
}
.page-hero-green.has-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-image: var(--page-hero-img);
    opacity: 0.25;
    z-index: 0;
}
.page-hero-green::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, var(--bg));
    z-index: 1;
    pointer-events: none;
}
.page-hero-inner {
    max-width: 720px;
    position: relative;
    z-index: 2;
}
.page-hero-inner h1 { color: #fff; margin: 0.3rem 0 1.1rem; font-size: clamp(1.8rem,4vw,2.8rem); }
.page-hero-sub { color: rgba(210,235,218,0.85); font-size: 1.05rem; line-height: 1.75; max-width: 580px; }

.content-section {
    padding: 5rem 0;
}
.content-section-alt {
    background: var(--paper-warm);
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: start;
}
.content-main > p:not(.eyebrow) { color: var(--ink-soft); margin-top: 1rem; line-height: 1.8; }
.content-main > h2 { margin: 0.3rem 0 1.25rem; }

.info-box {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.75rem;
}
.info-box h4 {
    font-family: "Fraunces", serif;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: var(--brand-dark);
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--line);
}
.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--ink-soft);
    line-height: 1.5;
}
.info-list li i {
    color: var(--brand);
    flex-shrink: 0;
    width: 16px;
    margin-top: 2px;
}
.info-list li a { color: var(--brand); font-weight: 600; }

/* Mission/Vision/Values */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.mvv-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
}
.mvv-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0f3e27, #1a5c3a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #e8bc54;
    margin: 0 auto 1.25rem;
}
.mvv-card h3 { margin-bottom: 0.875rem; }
.mvv-card p  { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.75; }

/* Structure numbers */
.structure-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.structure-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem;
}
.sc-num {
    display: block;
    font-family: "Fraunces", serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-soft);
    line-height: 1;
    margin-bottom: 0.75rem;
}
.structure-card h3 { margin-bottom: 0.75rem; }
.structure-card p  { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.7; }

/* Sectors */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.sector-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    transition: box-shadow 0.2s, transform 0.2s;
}
.sector-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.sector-icon {
    width: 50px;
    height: 50px;
    background: var(--paper-warm);
    border: 1px solid var(--line);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--brand);
    margin-bottom: 1rem;
}
.sector-card h3 { font-size: 1rem; margin-bottom: 0.6rem; }
.sector-card p  { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.7; }

/* ── Filter chips ───────────────────────────────────── */
.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}
.filter-chip {
    display: inline-block;
    padding: 0.45rem 1rem;
    background: var(--paper);
    border: 1.5px solid var(--line);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ink-soft);
    transition: all 0.15s;
    cursor: pointer;
}
.filter-chip:hover, .filter-chip.active {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

/* ── States Atlas ───────────────────────────────────── */
.states-atlas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.atlas-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: box-shadow 0.2s, transform 0.2s;
}
.atlas-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.atlas-header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid var(--line);
}
.atlas-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-soft);
    flex-shrink: 0;
}
.atlas-header h3 { font-size: 1rem; margin-bottom: 0.1rem; color: var(--ink); }
.atlas-header p  { font-size: 0.78rem; color: var(--ink-muted); }
.atlas-meta-row {
    display: flex;
    gap: 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ink-soft);
}
.atlas-meta-row i { color: var(--brand); margin-right: 0.3rem; }
.atlas-minerals { font-size: 0.8rem; color: var(--brand); font-weight: 600; }
.atlas-minerals i { margin-right: 0.35rem; }
.atlas-opps { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.6; flex: 1; }
.atlas-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brand);
    margin-top: auto;
    transition: gap 0.15s;
}
.atlas-card:hover .atlas-link { gap: 0.6rem; }

/* ── News Atlas ─────────────────────────────────────── */
.news-atlas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.news-atlas-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition: box-shadow 0.2s, transform 0.2s;
}
.news-atlas-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto 1fr;
    gap: 0.5rem 1.5rem;
    background: linear-gradient(150deg, #0f3e27, #1a5c3a);
    color: #fff;
    padding: 2.5rem;
}
.news-atlas-card.featured h3 { grid-column: 2; font-size: 1.4rem; color: #fff; }
.news-atlas-card.featured .na-cat { grid-column: 2; }
.news-atlas-card.featured .na-excerpt { grid-column: 2; opacity: 0.8; }
.news-atlas-card.featured .na-date { grid-column: 2; opacity: 0.5; }
.news-atlas-card:not(.featured):hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.na-cat {
    display: inline-block;
    background: rgba(15,93,63,0.1);
    color: var(--brand);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    align-self: flex-start;
}
.news-atlas-card.featured .na-cat {
    background: rgba(203,152,53,0.25);
    color: #e8bc54;
}
.na-excerpt { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.65; }
.na-date { font-size: 0.75rem; color: var(--ink-muted); margin-top: auto; }

.pagination-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.25rem;
    background: var(--paper);
    border: 1.5px solid var(--line);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand);
    transition: all 0.15s;
}
.pagination-btn:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.pagination-info { font-size: 0.875rem; color: var(--ink-muted); }

/* ── Investment / Contact forms ─────────────────────── */
.invest-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.invest-why {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
}
.invest-why h3 { margin: 1rem 0 0.6rem; }
.invest-why p  { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.7; }

.engagement-tabs-wrap {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
.etab-buttons {
    display: flex;
    border-bottom: 1px solid var(--line);
}
.etab-btn {
    flex: 1;
    padding: 1rem;
    background: none;
    border: none;
    font-family: "Manrope", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink-soft);
    cursor: pointer;
    transition: all 0.15s;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}
.etab-btn:hover   { color: var(--brand); background: rgba(15,93,63,0.04); }
.etab-btn.active  { color: var(--brand); border-bottom-color: var(--brand); background: rgba(15,93,63,0.04); }
.etab-panel { display: none; padding: 2.5rem; }
.etab-panel.active { display: block; }
.etab-meta { margin-bottom: 2rem; }
.etab-meta h3 { margin-bottom: 0.4rem; }
.etab-meta p  { color: var(--ink-soft); font-size: 0.9rem; }

.invest-form .form-group { margin-bottom: 1.1rem; }
.invest-form .if-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.invest-form label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink-soft);
    margin-bottom: 0.35rem;
}
.invest-form input,
.invest-form select,
.invest-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    font-family: "Manrope", sans-serif;
    font-size: 0.925rem;
    color: var(--ink);
    background: var(--paper-warm);
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}
.invest-form input:focus,
.invest-form select:focus,
.invest-form textarea:focus {
    border-color: var(--brand);
    background: #fff;
}
.invest-form textarea { min-height: 120px; resize: vertical; }

/* ── Empty states ───────────────────────────────────── */
.empty-state-page {
    text-align: center;
    padding: 5rem 1rem;
    color: var(--ink-muted);
}
.empty-state-page i { font-size: 3rem; margin-bottom: 1rem; display: block; }
.empty-state-page h3 { margin-bottom: 0.5rem; color: var(--ink-soft); }
.empty-state-page p  { max-width: 400px; margin: 0 auto; font-size: 0.9rem; }
.empty-inline { color: var(--ink-muted); font-style: italic; padding: 2rem 0; text-align: center; }

/* ── Auth pages ─────────────────────────────────────── */
.auth-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 80px);
}
.auth-panel-left {
    background: linear-gradient(170deg, #0d2318 0%, #163429 60%, #1a4a38 100%);
    color: #e8f4ec;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.auth-panel-brand { display: flex; align-items: center; gap: 0.875rem; margin-bottom: 2rem; }
.auth-panel-brand img { width: 52px; height: 52px; border-radius: 14px; border: 2px solid rgba(200,165,60,0.4); }
.auth-panel-brand span { font-family: "Fraunces", serif; font-size: 1.1rem; font-weight: 700; color: #d4c47a; }
.auth-panel-quote { font-family: "Fraunces", serif; font-size: 1.5rem; font-weight: 600; line-height: 1.4; color: #bbdbbe; margin-bottom: 2.5rem; }
.auth-panel-quote em { color: #c8a53c; font-style: normal; }
.auth-panel-stats { display: flex; gap: 2rem; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.5rem; }
.auth-panel-stats span { display: flex; flex-direction: column; gap: 0.2rem; font-size: 0.78rem; color: rgba(200,230,210,0.7); letter-spacing: 0.04em; text-transform: uppercase; }
.auth-panel-stats strong { font-family: "Fraunces", serif; font-size: 1.3rem; color: #c8a53c; font-weight: 700; }
.auth-panel-right { background: #f8f5ef; display: flex; align-items: center; justify-content: center; padding: 3rem 2rem; }
.auth-form-card { width: 100%; max-width: 440px; background: var(--paper); border: 1px solid var(--line); border-radius: 24px; padding: 2.25rem 2rem; box-shadow: 0 20px 48px rgba(15,93,63,0.10); }
.auth-form-card h2 { margin: 0.1rem 0 0.5rem; font-family: "Fraunces", serif; font-size: 1.6rem; color: #1a3a28; }
.auth-sub { color: #6b7a6b; font-size: 0.9rem; margin-bottom: 1.75rem; line-height: 1.5; }
.auth-form .form-group { margin-bottom: 1.1rem; }
.auth-form label { display: block; font-size: 0.8rem; font-weight: 700; color: #3b4f3e; margin-bottom: 0.35rem; letter-spacing: 0.03em; text-transform: uppercase; }
.auth-form input { width: 100%; padding: 0.75rem 1rem; border: 1.5px solid #cdd9cc; border-radius: 10px; font-size: 0.95rem; background: #fdfdfc; outline: none; transition: border-color 0.2s; }
.auth-form input:focus { border-color: var(--brand); background: #fff; }
.auth-submit-btn { display: block; width: 100%; padding: 0.875rem; background: linear-gradient(135deg, #1c5c3a, #2e7d52); color: #fff; border: none; border-radius: 12px; font-size: 1rem; font-weight: 700; cursor: pointer; margin-top: 1.5rem; letter-spacing: 0.03em; transition: opacity 0.2s, transform 0.15s; text-align: center; text-decoration: none; font-family: "Manrope", sans-serif; }
.auth-submit-btn:hover { opacity: 0.92; transform: translateY(-1px); }
.auth-centered { padding: 3rem 1rem; display: flex; justify-content: center; align-items: flex-start; min-height: calc(100vh - 80px); background: #f3f0ea; }
.auth-wrap { padding: 2rem 0 3rem; }

/* ── State detail page ──────────────────────────────── */
.state-hero { position: relative; background: linear-gradient(155deg, #0a2a1e, #163429); color: #fff; padding: 4rem 0; overflow: hidden; }
.state-hero-grid { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: center; }
.state-hero h1 { color: #fff; margin-bottom: 1rem; }
.state-kpi-row { display: flex; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
.state-kpi { display: flex; flex-direction: column; gap: 0.15rem; }
.state-kpi small { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(200,230,210,0.6); }
.state-kpi strong { font-family: "Fraunces", serif; font-size: 1.1rem; color: #e8bc54; }
.state-governor-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; padding: 1.75rem; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.75rem; backdrop-filter: blur(6px); }
.state-governor-avatar { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; border: 3px solid rgba(203,152,53,0.5); }
.state-governor-role { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); }
.state-governor-bio { font-size: 0.83rem; opacity: 0.7; line-height: 1.6; }
.state-card-stack { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem; }
.state-resource-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; }
.state-resource-card h4 { margin-bottom: 0.5rem; font-size: 0.85rem; color: var(--brand); }
.state-resource-card p  { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.6; }
.state-cta-strip { background: linear-gradient(135deg, #0f3e27, #1a5c3a); padding: 3rem 0; }
.state-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.state-cta-inner h2 { color: #fff; }
.state-cta-inner p  { color: rgba(200,230,210,0.8); }

/* ── Search page ────────────────────────────────────── */
.search-shell { padding: 4rem 0; }
.search-form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; margin-bottom: 2.5rem; box-shadow: var(--shadow); }
.search-bar-row { display: flex; gap: 0.75rem; }
.search-bar-row input { flex: 1; padding: 0.85rem 1.1rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm); font-family: "Manrope",sans-serif; font-size: 1rem; color: var(--ink); background: var(--paper-warm); outline: none; }
.search-bar-row input:focus { border-color: var(--brand); }
.search-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1rem; }
.search-chip { padding: 0.35rem 0.9rem; background: var(--paper-warm); border: 1.5px solid var(--line); border-radius: 20px; font-size: 0.78rem; font-weight: 600; color: var(--ink-soft); cursor: pointer; transition: all 0.15s; text-decoration: none; }
.search-chip:hover, .search-chip.active { background: var(--brand); border-color: var(--brand); color: #fff; }
.search-results-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.search-result-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; transition: box-shadow 0.2s, transform 0.2s; }
.search-result-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.search-type-pill { display: inline-block; padding: 0.18rem 0.6rem; border-radius: 20px; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.6rem; }
.search-type-proposal { background: #dbeafe; color: #1d4ed8; }
.search-type-article  { background: #fef3c7; color: #92400e; }
.search-type-state    { background: #d1fae5; color: #065f46; }
.search-type-feedback { background: #f3e8ff; color: #6b21a8; }
.search-result-card h3 { font-size: 1rem; margin-bottom: 0.5rem; line-height: 1.35; }
.search-result-card p  { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.65; }
.search-loc, .search-date { font-size: 0.76rem; color: var(--ink-muted); margin-top: 0.5rem; }
.empty-state-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 4rem 2rem; text-align: center; color: var(--ink-muted); }
.empty-state-card h3 { margin-bottom: 0.5rem; color: var(--ink-soft); }
.empty-state-card p  { font-size: 0.9rem; }

/* ── Footer ─────────────────────────────────────────── */
.site-footer {
    background: linear-gradient(170deg, #061510 0%, #091d14 60%, #0c2419 100%);
    color: rgba(210,235,218,0.68);
    padding: 0;
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('/assets/uploads/footer_bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    pointer-events: none;
}
.site-footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(170deg, rgba(6,21,16,0.9) 0%, rgba(9,29,20,0.82) 60%, rgba(12,36,25,0.92) 100%);
    pointer-events: none;
}
.footer-main {
    padding: 4.5rem 0 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    position: relative;
    z-index: 1;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 3rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 1.25rem; }
.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}
.footer-brand-logo img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 2px solid rgba(203,152,53,0.35);
    object-fit: cover;
}
.footer-brand-logo span {
    font-family: "Fraunces", serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}
.footer-brand-desc {
    font-size: 0.875rem;
    color: rgba(210,235,218,0.55);
    line-height: 1.8;
    max-width: 300px;
}
.footer-social {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.25rem;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    color: rgba(210,235,218,0.55);
    transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.footer-social a:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.site-footer h4 {
    font-family: "Fraunces", serif;
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 1.1rem;
    letter-spacing: 0.01em;
}
.site-footer p { font-size: 0.875rem; line-height: 1.7; }
.site-footer a { transition: color 0.15s; }
.site-footer a:hover { color: #e8bc54; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.site-footer li { font-size: 0.84rem; }
.site-footer li a {
    color: rgba(210,235,218,0.6);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.site-footer li a::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    opacity: 0.55;
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.84rem;
    color: rgba(210,235,218,0.6);
    margin-bottom: 0.875rem;
    line-height: 1.55;
}
.footer-contact-item i { color: var(--gold); width: 16px; flex-shrink: 0; margin-top: 2px; }
.footer-highlight { color: rgba(200,230,210,0.4); font-size: 0.8rem; font-style: italic; margin-top: 0.75rem; }
.footer-base {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    font-size: 0.76rem;
    color: rgba(200,230,210,0.32);
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.footer-base a { color: rgba(200,230,210,0.5); }
.footer-base a:hover { color: #e8bc54; }

/* ── Table utilities (shared with admin) ─────────────── */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
table th, table td { border-bottom: 1px solid var(--line); text-align: left; padding: 0.75rem; font-size: 0.875rem; }
table th { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-soft); }
.nowrap { white-space: nowrap; }
.empty-table { text-align: center; color: var(--ink-muted); font-style: italic; padding: 2rem; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1120px) {
    .mobile-menu-toggle { display: flex; }
    .main-nav, .nav-actions .btn:not(:last-child) { display: none; }
    .home-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .home-hero-chairman { display: none; }
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .home-states-grid { grid-template-columns: repeat(2, 1fr); }
    .home-news-grid { grid-template-columns: 1fr; }
    .invest-why-grid { grid-template-columns: repeat(2, 1fr); }
    .sectors-grid { grid-template-columns: repeat(2, 1fr); }
    .states-atlas-grid { grid-template-columns: repeat(2, 1fr); }
    .news-atlas-grid { grid-template-columns: repeat(2, 1fr); }
    .news-atlas-card.featured { grid-column: 1 / -1; grid-template-columns: 1fr; grid-template-rows: none; }
    .news-atlas-card.featured h3, .news-atlas-card.featured .na-cat, .news-atlas-card.featured .na-excerpt, .news-atlas-card.featured .na-date { grid-column: 1; }
    .content-split { grid-template-columns: 1fr; }
    .content-aside { order: -1; }
    .auth-split { grid-template-columns: 1fr; }
    .auth-panel-left { display: none; }
    .mvv-grid { grid-template-columns: 1fr; }
    .structure-grid { grid-template-columns: 1fr; }
    .state-hero-grid { grid-template-columns: 1fr; }
    .state-card-stack { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .home-section { padding: 3.5rem 0; }
    .content-section { padding: 3rem 0; }
    .page-hero { padding: 3rem 0 2.5rem; }
    .home-cta { padding: 3.5rem 0; }
    .home-cta-inner { flex-direction: column; text-align: center; }
    .pillars-grid { grid-template-columns: 1fr; }
    .home-states-grid { grid-template-columns: 1fr; }
    .sectors-grid { grid-template-columns: 1fr; }
    .states-atlas-grid { grid-template-columns: 1fr; }
    .news-atlas-grid { grid-template-columns: 1fr; }
    .invest-why-grid { grid-template-columns: 1fr; }
    .etab-buttons { flex-direction: column; }
    .invest-form .if-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .home-hero-stats-row { justify-content: flex-start; gap: 1.5rem 2rem; }
    .section-label-row { flex-direction: column; align-items: flex-start; }
    .search-results-grid { grid-template-columns: 1fr; }
    .search-bar-row { flex-direction: column; }
}


/* -------------------------------------------------------
   PHOTO COMPONENTS � Northern Nigeria Imagery
   ------------------------------------------------------- */

/* Photo mosaic strip */
.north-img-strip {
    height: 420px;
    overflow: hidden;
    position: relative;
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
}
.nig-mosaic {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr 0.9fr;
    height: 100%;
    gap: 2px;
}
.nig-photo {
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: filter 0.35s;
}
.nig-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.15) 45%, transparent 70%);
}
.nig-photo:hover { filter: brightness(1.1); }
.nig-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1.1rem 1rem;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.nig-label strong {
    display: block;
    font-family: "Fraunces", serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    margin-top: 0.25rem;
    line-height: 1.2;
    color: #fff;
}

/* Home state card image header */
.home-state-card-img {
    width: calc(100% + 3rem);
    height: 140px;
    margin: -1.5rem -1.5rem 0.875rem;
    background-size: cover;
    background-position: center;
    background-color: #0f3e27;
    border-radius: var(--radius) var(--radius) 0 0;
    flex-shrink: 0;
    position: relative;
}
.home-state-card-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: linear-gradient(transparent, rgba(0,0,0,0.32));
    border-radius: 0;
}
.home-state-card-img-placeholder {
    width: calc(100% + 3rem);
    height: 140px;
    margin: -1.5rem -1.5rem 0.875rem;
    background: linear-gradient(135deg, #0f3e27, #1a5c3a);
    border-radius: var(--radius) var(--radius) 0 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-state-card-img-placeholder i { font-size: 2rem; color: rgba(203,152,53,0.45); }

/* Featured news card with photo */
.home-news-featured {
    position: relative;
    overflow: hidden;
}
.home-news-featured.has-img {
    background: none;
}
.home-news-featured.has-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-image: var(--news-img);
    z-index: 0;
    transition: transform 0.4s;
}
.home-news-featured.has-img:hover::before { transform: scale(1.04); }
.home-news-featured.has-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,22,10,0.94) 0%, rgba(5,22,10,0.55) 55%, rgba(5,22,10,0.2) 100%);
    z-index: 1;
}
.home-news-featured .hn-cat,
.home-news-featured h3,
.home-news-featured p,
.home-news-featured .hn-date {
    position: relative;
    z-index: 2;
}

/* -- Home CTA enhanced -------------------------------- */
.home-cta {
    background: linear-gradient(145deg, #061510 0%, #0a2a1a 60%),
        url('/log.jpeg') center/cover no-repeat;
    background-blend-mode: multiply;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}
.home-cta::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -5%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(203,152,53,0.14), transparent 60%);
    pointer-events: none;
}

/* -- Pillar icon premium glow ------------------------- */
.pillar-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #e8f8ef, #c8edda);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--brand);
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 16px rgba(15,93,63,0.12);
}

/* -- Sector cards premium ----------------------------- */
.sector-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #eaf8f0, #d0edde);
    border: none;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--brand);
    margin-bottom: 1rem;
    box-shadow: 0 3px 12px rgba(15,93,63,0.1);
}

/* -- Responsive: north-img-strip ---------------------- */
@media (max-width: 768px) {
    .north-img-strip { height: 240px; }
    .nig-mosaic { grid-template-columns: 1fr 1fr; }
    .nig-mosaic .nig-photo:nth-child(n+3) { display: none; }
    .home-state-card-img,
    .home-state-card-img-placeholder { height: 110px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
    .north-img-strip { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
}
