/* ══════════════════════════════════════════
   GASBE — Main Stylesheet
   Global Alliance of Soil Bioengineering Experts
   ══════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
    --green: #4a8c3f;
    --green-dark: #2d6b22;
    --green-light: #eaf3e8;
    --green-pale: #f4f9f3;
    --earth: #8b6914;
    --earth-light: #f5f0e8;
    --sand: #c4a35a;
    --sand-light: #faf6ee;
    --anthracite: #1a1a1a;
    --text: #2d2d2d;
    --text-mid: #555;
    --text-light: #888;
    --white: #fff;
    --bg-light: #f8f8f6;
    --bg-cream: #f5f3ee;
    --border: #e0ddd8;
    --shadow: 0 2px 16px rgba(0,0,0,.07);
    --shadow-lg: 0 8px 40px rgba(0,0,0,.12);
}

/* ── Reset & Base ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fix: Libre Baskerville renders → as "XII" — force system font for arrows */
.arr {
    font-family: 'Inter', system-ui, sans-serif;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    font-size: 15px;
}

h1, h2, h3 {
    font-family: 'Libre Baskerville', 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.25;
    color: var(--anthracite);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}


/* ══════════════════════════════════════════
   HEADER / NAVIGATION
   ══════════════════════════════════════════ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 8px rgba(0,0,0,.05);
}

.hi {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-img {
    height: 56px;
    width: auto;
}

.logo-img-footer {
    height: 44px;
}

.lm {
    width: 38px;
    height: 38px;
    background: var(--green);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lt {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.lt strong {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: .82rem;
    color: var(--anthracite);
    letter-spacing: .06em;
    text-transform: uppercase;
}

.lt span {
    font-size: .68rem;
    color: var(--text-light);
    letter-spacing: .04em;
}

/* Nav links */
nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.ni {
    position: relative;
}

.nl {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 13px;
    font-size: .845rem;
    font-weight: 500;
    color: var(--text-mid);
    border-radius: 4px;
    transition: all .15s;
    white-space: nowrap;
    cursor: pointer;
}

.nl:hover, .nl.active {
    color: var(--anthracite);
    background: var(--bg-light);
}

.nl svg {
    width: 11px;
    height: 11px;
    opacity: .45;
    flex-shrink: 0;
}

/* Dropdown */
.dd {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    min-width: 230px;
    padding: 6px;
    box-shadow: var(--shadow-lg);
    z-index: 300;
}

.ni:hover .dd {
    display: block;
}

.dd a {
    display: block;
    padding: 9px 14px;
    font-size: .84rem;
    color: var(--text-mid);
    border-radius: 4px;
    transition: all .15s;
}

.dd a:hover {
    background: var(--green-light);
    color: var(--green-dark);
}

.dd-sep {
    height: 1px;
    background: var(--border);
    margin: 4px 6px;
}

.btn-contact {
    background: var(--green);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: .845rem;
    font-weight: 500;
    transition: background .15s;
    margin-left: 6px;
}

.btn-contact:hover {
    background: var(--green-dark);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--anthracite);
    border-radius: 2px;
    transition: all .2s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ══════════════════════════════════════════
   HERO — HOMEPAGE (full viewport)
   ══════════════════════════════════════════ */
.hero {
    min-height: 75vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-top: 72px;
    overflow: hidden;
}

.hero {
    background-size: cover;
    background-position: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #1a2e14 0%, #2d4a20 40%, #1a2e14 100%);
}

.hero[style*="background-image"] .hero-bg {
    background: none;
}

.hero[style*="background-image"] .hero-overlay {
    background:
        linear-gradient(to right, rgba(10,20,8,.65) 0%, rgba(10,20,8,.35) 40%, rgba(10,20,8,.1) 100%),
        linear-gradient(to top, rgba(10,20,8,.6) 0%, rgba(10,20,8,.2) 40%, transparent 80%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.15), rgba(0,0,0,.55));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 40px;
    width: 100%;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin-bottom: 22px;
}

.hero-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--sand);
}

.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    color: var(--white);
    max-width: 820px;
    margin-bottom: 12px;
    letter-spacing: -.025em;
    line-height: 1.12;
}

.hero h1 em {
    font-style: italic;
    color: rgba(255,255,255,.75);
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,.65);
    max-width: 600px;
    margin: 22px 0 44px;
    line-height: 1.85;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-g {
    background: var(--green);
    color: var(--white);
    padding: 13px 28px;
    border-radius: 5px;
    font-weight: 500;
    font-size: .9rem;
    transition: background .15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-g:hover {
    background: var(--green-dark);
}

.btn-ghost {
    background: transparent;
    color: rgba(255,255,255,.85);
    padding: 13px 28px;
    border-radius: 5px;
    font-weight: 400;
    font-size: .9rem;
    border: 1px solid rgba(255,255,255,.3);
    transition: all .15s;
}

.btn-ghost:hover {
    border-color: rgba(255,255,255,.6);
    color: var(--white);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent);
}


/* ══════════════════════════════════════════
   PAGE HERO (inner pages)
   ══════════════════════════════════════════ */
.ph {
    background: var(--anthracite);
    padding: 128px 40px 72px;
    position: relative;
    overflow: hidden;
}

.ph::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a2e14 0%, #0f1a0b 100%);
    opacity: .95;
}

.ph-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ph-label {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ph-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--sand);
}

.ph h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    color: var(--white);
    max-width: 820px;
    margin-bottom: 22px;
    letter-spacing: -.02em;
}

/* Page Hero with background image */
.ph-has-image {
    background-size: cover;
    background-position: center;
    min-height: 420px;
    padding: 180px 40px 100px;
}

.ph-has-image::before {
    display: none;
}

.ph-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(10,20,8,.55) 0%, rgba(10,20,8,.25) 40%, rgba(10,20,8,.02) 100%),
        linear-gradient(to top, rgba(10,20,8,.4) 0%, rgba(10,20,8,.1) 35%, transparent 65%);
    z-index: 0;
}

.ph-has-image .ph-inner {
    position: relative;
    z-index: 1;
}

.ph-has-image .ph-sub {
    color: rgba(255,255,255,.75);
}

.ph-sub {
    font-size: .975rem;
    color: rgba(255,255,255,.6);
    max-width: 680px;
    line-height: 1.9;
    font-weight: 300;
}


/* ══════════════════════════════════════════
   SECTIONS (generic)
   ══════════════════════════════════════════ */
.sec {
    padding: 88px 40px;
}

.sec-in {
    max-width: 1280px;
    margin: 0 auto;
}

.ey {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ey::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--green);
}

.st {
    font-size: clamp(1.5rem, 2.3vw, 2.1rem);
    margin-bottom: 20px;
    letter-spacing: -.02em;
}

.sl {
    font-size: .975rem;
    color: var(--text-mid);
    max-width: 720px;
    line-height: 1.9;
    font-weight: 300;
}

.divider {
    width: 1px;
    height: 40px;
    background: var(--border);
    margin: 0 auto;
}

/* Section background variants */
.sec-cream {
    background: var(--bg-cream);
}

.sec-blue {
    background: #f7f7f7;
}

.sec-light {
    background: var(--bg-light);
}


/* ══════════════════════════════════════════
   PRINCIPLE / CARD GRID
   ══════════════════════════════════════════ */
.pg {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 48px;
}

.pc {
    background: var(--white);
    padding: 32px 30px;
    transition: background .15s;
}

.pc:hover {
    background: var(--green-pale);
}

.pc-num {
    font-family: 'Libre Baskerville', 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-light);
    line-height: 1;
    margin-bottom: 14px;
}

.pc h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--anthracite);
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -.01em;
}

.pc p {
    font-size: .875rem;
    color: var(--text-mid);
    line-height: 1.8;
    font-weight: 300;
    margin: 0;
}

/* 3-column card grid variant */
.pg-3 {
    grid-template-columns: repeat(3, 1fr);
}


/* ══════════════════════════════════════════
   ZONE CARDS (Expertise)
   ══════════════════════════════════════════ */
.zg {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 48px;
}

.zc {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all .2s;
    background: var(--white);
}

.zc:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: transparent;
}

.zc-img {
    height: 140px;
    position: relative;
    overflow: hidden;
}

.zc-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zc-img-1 { background: linear-gradient(135deg, #2d4a20, #4a7030); }
.zc-img-2 { background: linear-gradient(135deg, #1a2e40, #2a4a60); }
.zc-img-3 { background: linear-gradient(135deg, #5a3a10, #8b6020); }
.zc-img-4 { background: linear-gradient(135deg, #6b3a10, #a05020); }
.zc-img-5 { background: linear-gradient(135deg, #1a4020, #2a6040); }
.zc-img-6 { background: linear-gradient(135deg, #1a3040, #2a5060); }
.zc-img-7 { background: linear-gradient(135deg, #3a2010, #5a3820); }

.zc-tag {
    position: absolute;
    bottom: 12px;
    left: 14px;
    background: rgba(0,0,0,.5);
    color: rgba(255,255,255,.9);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
    backdrop-filter: blur(4px);
}

.zc-body {
    padding: 22px 20px 26px;
}

.zc-body h3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--anthracite);
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.zc-body p {
    font-size: .84rem;
    color: var(--text-mid);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 14px;
}

.zc-link {
    font-size: .78rem;
    font-weight: 600;
    color: var(--green);
    letter-spacing: .06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
}


/* ══════════════════════════════════════════
   INITIATIVE CARDS
   ══════════════════════════════════════════ */
.ig {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}

.ic-card {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.ic-bg-1 { background: linear-gradient(160deg, #6b4510, #c4a35a, #8b6914); }
.ic-bg-2 { background: linear-gradient(160deg, #1a2e14, #2d4a20, #4a7030); }

.ic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
}

.ic-content {
    position: relative;
    z-index: 1;
    padding: 36px 32px;
}

.ic-label {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin-bottom: 10px;
}

.ic-content h3 {
    font-family: 'Libre Baskerville', 'Inter', sans-serif;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: -.02em;
}

.ic-content p {
    font-size: .875rem;
    color: rgba(255,255,255,.7);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 20px;
}

.ic-tracks {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.ic-track {
    font-size: .72rem;
    font-weight: 500;
    color: rgba(255,255,255,.7);
    background: rgba(255,255,255,.12);
    padding: 5px 12px;
    border-radius: 3px;
    border: 1px solid rgba(255,255,255,.2);
}

.btn-white {
    background: rgba(255,255,255,.15);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: .845rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,.3);
    transition: all .15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(4px);
}

.btn-white:hover {
    background: rgba(255,255,255,.25);
}


/* ══════════════════════════════════════════
   MEMBER BOX (become-a-member)
   ══════════════════════════════════════════ */
.mb {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 48px 52px;
    margin-top: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.mb h2 {
    font-size: 1.8rem;
    color: var(--anthracite);
    margin-bottom: 16px;
    letter-spacing: -.02em;
}

.mb p {
    font-size: .925rem;
    color: var(--text-mid);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 24px;
}

.mb .btn-g {
    display: inline-block;
}

.mb-criteria {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mbc {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px 18px;
    transition: box-shadow .2s;
}

.mbc:hover {
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.mbc-num {
    font-size: .72rem;
    font-weight: 700;
    color: var(--green);
    min-width: 22px;
    padding-top: 1px;
}

.mbc strong {
    display: block;
    font-size: .84rem;
    font-weight: 600;
    color: var(--anthracite);
    margin-bottom: 2px;
}

.mbc span {
    font-size: .8rem;
    color: var(--text-mid);
    font-weight: 300;
}


/* ══════════════════════════════════════════
   EXPERT MAP & CARDS
   ══════════════════════════════════════════ */
.map-wrap {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

#expert-map {
    height: 520px;
    width: 100%;
}

.expert-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 32px;
}

.expert-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px 22px;
    transition: all .2s;
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.expert-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--green);
    transform: translateY(-2px);
}

.expert-flag {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.expert-region {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 6px;
}

.expert-card h3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--anthracite);
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
}

.expert-card p {
    font-size: .84rem;
    color: var(--text-mid);
    line-height: 1.75;
    font-weight: 300;
    flex: 1;
    margin-bottom: 14px;
}

.expert-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.etag {
    font-size: .72rem;
    font-weight: 500;
    color: var(--green-dark);
    background: var(--green-light);
    padding: 4px 10px;
    border-radius: 3px;
}

.expert-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 14px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--green);
    letter-spacing: .04em;
    text-transform: uppercase;
}


/* ══════════════════════════════════════════
   EXPERT PROFILE PAGE
   ══════════════════════════════════════════ */
.profile-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 56px;
    margin-top: 48px;
    align-items: start;
}

.profile-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px 28px;
    position: sticky;
    top: 100px;
}

.profile-card h2 {
    font-size: 1.2rem;
    margin-bottom: 6px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.profile-region {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 16px;
}

.profile-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.profile-designation {
    background: var(--green-light);
    border: 1px solid var(--green);
    border-radius: 6px;
    padding: 14px 16px;
    margin-bottom: 20px;
}

.profile-designation p {
    font-size: .8rem;
    font-weight: 600;
    color: var(--green-dark);
    margin: 0;
}

.profile-contact {
    font-size: .84rem;
    color: var(--text-mid);
    line-height: 1.8;
}

.profile-contact a {
    color: var(--green);
}

.profile-body h2 {
    font-size: 1.3rem;
    margin-bottom: 14px;
    letter-spacing: -.01em;
}

.profile-body p {
    font-size: .95rem;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 18px;
    font-weight: 300;
}

.profile-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--anthracite);
    margin: 28px 0 10px;
    font-family: 'Inter', sans-serif;
}


/* ══════════════════════════════════════════
   OPEN INNOVATION CARDS
   ══════════════════════════════════════════ */
.oi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
    margin-top: 40px;
}

.oi-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px 24px;
    border-top: 3px solid var(--green);
}

.oi-card h3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--anthracite);
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.oi-card p {
    font-size: .875rem;
    color: var(--text-mid);
    line-height: 1.8;
    font-weight: 300;
    margin: 0;
}


/* ══════════════════════════════════════════
   INITIATIVE DETAIL (Track Cards)
   ══════════════════════════════════════════ */
.track-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}

.track-card {
    border-radius: 8px;
    padding: 32px 28px;
    border: 1px solid var(--border);
}

.track-card.t1 {
    background: var(--earth-light);
    border-color: #d4b87a;
}

.track-card.t2 {
    background: var(--green-pale);
    border-color: #b0d4a0;
}

.track-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.track-card p {
    font-size: .9rem;
    color: var(--text-mid);
    line-height: 1.85;
    font-weight: 300;
    margin: 0;
}


/* ══════════════════════════════════════════
   INDUSTRY PARTNERS (warning box)
   ══════════════════════════════════════════ */
.ip-warn {
    background: var(--anthracite);
    border-radius: 8px;
    padding: 28px 32px;
    margin-top: 48px;
    border-left: 3px solid var(--sand);
}

.ip-warn p {
    font-size: .9rem;
    color: rgba(255,255,255,.7);
    line-height: 1.85;
    font-weight: 300;
    margin: 0;
}

.ip-warn strong {
    color: var(--sand);
}


/* ══════════════════════════════════════════
   EXPERTISE ZONE DETAIL
   ══════════════════════════════════════════ */
.zone-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 56px;
    align-items: start;
}

.zone-grid > div:first-child {
    position: sticky;
    top: 100px;
}

.zone-sidebar-img {
    border-radius: 8px;
    overflow: hidden;
    height: 240px;
}

/* Photo Gallery (SRBT-style: 1 large + 4 small) */
.gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 12px;
    margin: 48px 0 40px;
}

.gallery a.gallery-item {
    display: block;
    cursor: zoom-in;
    overflow: hidden;
    border-radius: 10px;
}

.gallery a.gallery-item:first-child {
    grid-row: 1/3;
    height: 360px;
}

.gallery a.gallery-item:not(:first-child) {
    height: 172px;
}

.gallery a.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.gallery a.gallery-item:hover img {
    transform: scale(1.04);
}

@media (max-width: 768px) {
    .gallery {
        grid-template-columns: 1fr 1fr;
    }
    .gallery a.gallery-item:first-child {
        grid-column: 1/-1;
        height: 220px;
        grid-row: auto;
    }
    .gallery a.gallery-item:not(:first-child) {
        height: 140px;
    }
}

/* Gallery Lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity .2s;
}

.gallery-lightbox.active {
    opacity: 1;
}

.gl-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    max-height: 100%;
}

.gl-image {
    max-width: 95vw;
    max-height: 88vh;
    object-fit: contain;
    box-shadow: 0 10px 50px rgba(0,0,0,.5);
    border-radius: 4px;
    display: block;
}

.gl-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.8rem;
    transition: background .15s;
}

.gl-close:hover {
    background: rgba(255,255,255,.2);
}

.gl-prev, .gl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
}

.gl-prev { left: 1.2rem; }
.gl-next { right: 1.2rem; }

.gl-prev:hover, .gl-next:hover {
    background: rgba(255,255,255,.2);
}

.gl-counter {
    position: absolute;
    bottom: 1.4rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.85);
    font-size: .85rem;
    letter-spacing: .04em;
    background: rgba(0,0,0,.5);
    padding: .4rem .9rem;
    border-radius: 999px;
}

/* Section Divider Image */
.section-divider-img {
    margin: 48px 0 40px;
    border-radius: 12px;
    overflow: hidden;
    max-height: 280px;
}

.section-divider-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Zone Contact Conversion Box */
.zone-contact-box {
    background: #f3f4f6;
    border-radius: 12px;
    padding: 40px 28px 36px;
    text-align: center;
    color: #374151;
    box-shadow: none;
    border: 1px solid #e5e7eb;
}

.zcb-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
}

.zcb-icon svg {
    width: 100%;
    height: 100%;
}

.zone-contact-box h3 {
    font-family: 'Libre Baskerville', 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    letter-spacing: normal;
    text-transform: none;
}

.zone-contact-box p {
    font-size: .88rem;
    color: #6b7280;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 24px;
}

.zcb-btn {
    display: block;
    background: var(--green-dark);
    color: white;
    font-size: .85rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 6px;
    text-align: center;
    transition: background .2s, transform .15s;
    margin-bottom: 14px;
}

.zcb-btn:hover {
    background: #2d5a1e;
    transform: translateY(-1px);
}

.zcb-link {
    display: block;
    font-size: .8rem;
    font-weight: 500;
    color: var(--green-dark);
    text-align: center;
    transition: color .15s;
}

.zcb-link:hover {
    color: #1f2937;
}

.zone-members {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    margin-top: 20px;
}

.zone-members h3 {
    font-size: .84rem;
    font-weight: 700;
    color: var(--anthracite);
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.zone-members p,
.zone-members a {
    font-size: .84rem;
    color: var(--text-mid);
    line-height: 1.75;
    font-weight: 300;
}

.zone-members a {
    color: var(--green);
}

.zone-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--anthracite);
    margin: 28px 0 10px;
    font-family: 'Inter', sans-serif;
}

.zone-content h3:first-child {
    margin-top: 0;
}

.zone-content p {
    font-size: .925rem;
    color: var(--text-mid);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 14px;
}

/* Zone CTA bar */
.zone-cta {
    background: var(--anthracite);
    border-radius: 8px;
    padding: 36px 40px;
    margin-top: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.zone-cta p {
    font-size: .95rem;
    color: rgba(255,255,255,.7);
    line-height: 1.8;
    font-weight: 300;
    margin: 0;
    max-width: 600px;
}


/* ══════════════════════════════════════════
   UTILITY CLASSES
   ══════════════════════════════════════════ */
.text-center {
    text-align: center;
}

.mt-48 {
    margin-top: 48px;
}

.mt-32 {
    margin-top: 32px;
}

/* WYSIWYG content styling */
.wysiwyg-content p {
    font-size: .95rem;
    color: var(--text-mid);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 16px;
}

.wysiwyg-content strong {
    font-weight: 600;
    color: var(--anthracite);
}

.wysiwyg-content ul, .wysiwyg-content ol {
    margin: 12px 0;
    padding-left: 24px;
}

.wysiwyg-content li {
    font-size: .9rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 6px;
}

/* ══════════════════════════════════════════
   ZONE CONTENT (v2 — post_content blocks)
   ══════════════════════════════════════════ */
.zone-content .page-intro p {
    font-size: .95rem;
    color: var(--text-mid);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 16px;
}

.zone-content .section-label {
    font-size: .7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 600;
    margin: 48px 0 8px;
}

.zone-content .challenges-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 24px 0 40px;
    background: transparent;
    padding: 0;
}

.zone-content .challenge-block {
    background: #fff;
    border: 1px solid var(--border);
    border-left: 3px solid var(--green);
    border-radius: 6px;
    padding: 28px 28px 20px;
}

.zone-content .challenge-block h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--anthracite);
    margin: 0 0 12px;
    font-family: 'Inter', sans-serif;
}

.zone-content .challenge-block p {
    font-size: .9rem;
    color: var(--text-mid);
    line-height: 1.85;
    font-weight: 300;
    margin: 0;
}

.zone-content .competence-body p {
    font-size: .95rem;
    color: var(--text-mid);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 16px;
}

.zone-content .members-list {
    margin: 24px 0 40px;
}

.zone-content .member-block {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 28px 32px;
}

.zone-content .member-block .members-open {
    font-size: .925rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 16px;
}

.zone-content .member-block .member-link {
    font-size: .875rem;
    font-weight: 600;
    color: var(--green);
    text-decoration: none;
}

.zone-content .member-block .member-link:hover {
    text-decoration: underline;
}

.zone-content .expertise-cta {
    background: var(--anthracite);
    color: #fff;
    border-radius: 10px;
    padding: 36px 40px;
    margin: 40px 0 0;
    text-align: center;
}

.zone-content .expertise-cta p {
    font-size: .925rem;
    line-height: 1.8;
    color: rgba(255,255,255,.85);
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.zone-content .expertise-cta .btn-primary {
    display: inline-block;
    background: var(--green);
    color: #fff;
    padding: 12px 32px;
    border-radius: 6px;
    font-size: .875rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s;
}

.zone-content .expertise-cta .btn-primary:hover {
    background: #3d7534;
}

@media (max-width: 768px) {
    .zone-content .challenges-grid {
        grid-template-columns: 1fr;
    }
    .zone-content .expertise-cta {
        padding: 28px 24px;
    }
}

/* Image placeholder (development) */
.img-placeholder {
    background: var(--bg-light);
    border: 2px dashed var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    color: var(--text-light);
    font-size: .8rem;
    font-style: italic;
}

.img-placeholder::after {
    content: attr(data-hint);
}


/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
footer {
    background: #f4f2ed;
    color: #5a5a52;
    padding: 72px 40px 36px;
}

.fi {
    max-width: 1280px;
    margin: 0 auto;
}

.ft {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 56px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(0,0,0,.08);
}

/* Footer logo */
footer .lt strong {
    color: var(--anthracite);
}

footer .lt span {
    color: #7a7a70;
}

.ftag {
    font-size: .875rem;
    color: #7a7a70;
    line-height: 1.85;
    margin: 18px 0;
    font-weight: 300;
    max-width: 300px;
}

.fadr {
    font-size: .8rem;
    color: #9a9a90;
    line-height: 1.7;
}

.fadr a {
    color: #7a7a70;
    transition: color .15s;
}

.fadr a:hover {
    color: var(--green);
}

.fc h4 {
    font-family: 'Inter', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #9a9a90;
    margin-bottom: 18px;
}

.fc a {
    display: block;
    font-size: .855rem;
    color: #5a5a52;
    margin-bottom: 9px;
    transition: color .15s;
    font-weight: 300;
}

.fc a:hover {
    color: var(--green);
}

.fb {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .78rem;
    color: #b0b0a5;
}

.fb a {
    color: #b0b0a5;
    transition: color .15s;
}

.fb a:hover {
    color: var(--green);
}

.fbl {
    display: flex;
    gap: 20px;
}


/* ══════════════════════════════════════════
   FIELDNOTES SLIDER
   ══════════════════════════════════════════ */
.fn-slider-wrap {
    margin-top: 40px;
    overflow: hidden;
    position: relative;
    position: relative;
}

.fn-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.fn-slider::-webkit-scrollbar {
    height: 4px;
}

.fn-slider::-webkit-scrollbar-track {
    background: transparent;
}

.fn-slider::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

/* Slider arrows */
.fn-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border);
    color: var(--anthracite);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    transition: background .15s, box-shadow .15s;
}

.fn-arrow:hover {
    background: var(--green-light);
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.fn-arrow-prev { left: -22px; }
.fn-arrow-next { right: -22px; }

/* Card image */
.fn-card-img {
    height: 160px;
    background-size: cover;
    background-position: center;
    border-radius: 10px 10px 0 0;
}

.fn-card-body {
    padding: 20px 24px 24px;
}

.fn-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0;
    transition: all .2s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.fn-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--green);
    transform: translateY(-2px);
}

.fn-date {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 10px;
}

.fn-card h3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--anthracite);
    font-family: 'Inter', sans-serif;
    margin-bottom: 10px;
    line-height: 1.4;
}

.fn-card p {
    font-size: .84rem;
    color: var(--text-mid);
    line-height: 1.75;
    font-weight: 300;
    flex: 1;
    margin-bottom: 16px;
}

.fn-read {
    font-size: .78rem;
    font-weight: 600;
    color: var(--green);
    letter-spacing: .06em;
    text-transform: uppercase;
}


/* ══════════════════════════════════════════
   SINGLE POST / FIELD NOTE
   ══════════════════════════════════════════ */

/* Reading progress bar */
.fn-progress-bar {
    position: fixed;
    top: 72px;
    left: 0;
    height: 3px;
    width: 0;
    background: var(--green);
    z-index: 199;
    transition: width .1s linear;
}

/* Layout: sidebar + article */
.fn-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 64px;
    max-width: 1080px;
    margin: 0 auto;
}

/* Sticky TOC sidebar */
.fn-toc {
    position: relative;
}

.fn-toc-inner {
    position: sticky;
    top: 100px;
}

.fn-toc-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.fn-toc nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fn-toc-link {
    display: block;
    font-size: .8rem;
    color: var(--text-mid);
    font-weight: 400;
    padding: 6px 12px;
    border-left: 2px solid transparent;
    border-radius: 0 4px 4px 0;
    transition: all .15s;
    line-height: 1.45;
}

.fn-toc-link:hover {
    color: var(--anthracite);
    background: var(--bg-light);
    border-left-color: var(--border);
}

.fn-toc-link.active {
    color: var(--green-dark);
    font-weight: 600;
    background: var(--green-pale);
    border-left-color: var(--green);
}

/* Article content — better typography */
.fn-article {
    max-width: 720px;
}

.fn-content p {
    font-size: 1.02rem;
    color: var(--text);
    line-height: 2;
    font-weight: 300;
    margin-bottom: 24px;
}

.fn-content p:first-of-type {
    font-size: 1.1rem;
    color: var(--anthracite);
    font-weight: 400;
    line-height: 1.9;
}

.fn-content h2 {
    font-size: 1.35rem;
    color: var(--anthracite);
    margin: 52px 0 20px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    letter-spacing: -.02em;
    scroll-margin-top: 100px;
}

.fn-content h2:first-of-type {
    margin-top: 40px;
}

.fn-content em {
    font-style: italic;
    color: var(--anthracite);
}

.fn-content strong {
    font-weight: 600;
    color: var(--anthracite);
}

.fn-content ul, .fn-content ol {
    margin: 16px 0 24px;
    padding-left: 28px;
}

.fn-content li {
    font-size: 1rem;
    color: var(--text);
    line-height: 2;
    font-weight: 300;
    margin-bottom: 8px;
}

/* Related posts grid */
.fn-related {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}


/* ══════════════════════════════════════════
   CONTENT UPDATE — SHARED COMPONENTS
   ══════════════════════════════════════════ */

/* Page Intro (below hero) */
.page-intro {
    max-width: 820px;
    margin-bottom: 48px;
}

.page-intro p {
    font-size: .975rem;
    color: var(--text-mid);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 16px;
}

/* Section Label (reusable across pages) */
.section-label {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--green);
}

/* Challenges Grid (2×3) */
.challenges-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 32px;
    margin-bottom: 56px;
}

.challenge-block {
    background: var(--white);
    padding: 28px 26px;
    transition: background .15s;
}

.challenge-block:hover {
    background: var(--green-pale);
}

.challenge-block h3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--anthracite);
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.challenge-block p {
    font-size: .875rem;
    color: var(--text-mid);
    line-height: 1.8;
    font-weight: 300;
    margin: 0;
}

/* Competence Profile */
.competence-body {
    max-width: 820px;
    margin-bottom: 56px;
}

.competence-body p {
    font-size: .95rem;
    color: var(--text-mid);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 16px;
}

/* Generic body text blocks */
.about-body,
.initiative-body,
.industry-body,
.innovation-body,
.member-body {
    max-width: 100%;
    margin-bottom: 48px;
}

.about-body br,
.initiative-body br,
.industry-body br,
.innovation-body br,
.member-body br {
    display: none;
}

.about-body p,
.initiative-body p,
.industry-body p,
.innovation-body p,
.member-body p {
    font-size: .95rem;
    color: var(--text-mid);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 16px;
}

.about-body ul,
.initiative-body ul,
.industry-body ul,
.innovation-body ul,
.member-body ul {
    margin: 12px 0 20px;
    padding-left: 24px;
}

.about-body li,
.initiative-body li,
.industry-body li,
.innovation-body li,
.member-body li {
    font-size: .9rem;
    color: var(--text-mid);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 10px;
}

.about-body li strong,
.initiative-body li strong,
.industry-body li strong,
.innovation-body li strong,
.member-body li strong {
    font-weight: 600;
    color: var(--anthracite);
}

/* Members List */
.members-list {
    margin-top: 24px;
    margin-bottom: 56px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.member-block {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px 28px;
}

.member-block h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--anthracite);
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
}

.member-region {
    display: block;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 8px;
}

.member-context {
    display: block;
    font-size: .875rem;
    color: var(--text-mid);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 12px;
}

.member-link {
    font-size: .78rem;
    font-weight: 600;
    color: var(--green);
    letter-spacing: .04em;
    text-transform: uppercase;
}

.members-open {
    font-size: .9rem;
    color: var(--text-mid);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 12px;
}

/* Expertise CTA */
.expertise-cta {
    background: var(--anthracite);
    border-radius: 8px;
    padding: 36px 40px;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.expertise-cta p {
    font-size: .95rem;
    color: rgba(255,255,255,.7);
    line-height: 1.8;
    font-weight: 300;
    margin: 0;
    max-width: 600px;
}

/* btn-primary alias */
.btn-primary {
    background: var(--green);
    color: var(--white);
    padding: 13px 28px;
    border-radius: 5px;
    font-weight: 500;
    font-size: .9rem;
    transition: background .15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--green-dark);
    color: var(--white);
}

/* btn-secondary */
.btn-secondary {
    background: transparent;
    color: var(--green);
    padding: 13px 28px;
    border-radius: 5px;
    font-weight: 500;
    font-size: .9rem;
    border: 1px solid var(--green);
    transition: all .15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: var(--green);
    color: var(--white);
}

/* About closing block */
.about-closing {
    max-width: 820px;
    margin-bottom: 32px;
}

.about-closing p {
    font-size: .975rem;
    color: var(--text-mid);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 16px;
}

/* Network body (homepage) */
.network-body {
    max-width: 820px;
    margin-bottom: 32px;
}

.network-body p {
    font-size: .925rem;
    color: var(--text-mid);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 16px;
}

.network-list {
    margin: 16px 0 24px;
    padding-left: 24px;
}

.network-list li {
    font-size: .9rem;
    color: var(--text-mid);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 12px;
}

.network-list li strong {
    font-weight: 600;
    color: var(--anthracite);
}

/* Expertise Intro (homepage) */
.expertise-intro,
.initiatives-intro {
    max-width: 820px;
    margin-bottom: 32px;
}

.expertise-intro p,
.initiatives-intro p {
    font-size: .925rem;
    color: var(--text-mid);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 16px;
}

.initiatives-list {
    margin: 16px 0 20px;
    padding-left: 24px;
}

.initiatives-list li {
    font-size: .9rem;
    color: var(--text-mid);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 10px;
}

.initiatives-list li strong {
    font-weight: 600;
    color: var(--anthracite);
}

/* Expertise Landing Page */
.expertise-dimensions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 32px 0 56px;
}

.dimension-block {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px 24px;
}

.dimension-block h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--anthracite);
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.dimension-block p {
    font-size: .875rem;
    color: var(--text-mid);
    line-height: 1.8;
    font-weight: 300;
    margin: 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 32px;
    margin-bottom: 56px;
}

.expertise-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all .2s;
    background: var(--white);
}

.expertise-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: transparent;
}

.expertise-card .card-image {
    height: 120px;
    overflow: hidden;
    background: var(--bg-light);
}

.expertise-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expertise-card .card-content {
    padding: 18px 16px 20px;
}

.expertise-card .card-label {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 6px;
    display: block;
}

.expertise-card .card-content h3 {
    font-size: .9rem;
    font-weight: 700;
    color: var(--anthracite);
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    line-height: 1.3;
}

.expertise-card .card-content p {
    font-size: .8rem;
    color: var(--text-mid);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 12px;
}

.expertise-card .card-link {
    font-size: .72rem;
    font-weight: 600;
    color: var(--green);
    letter-spacing: .06em;
    text-transform: uppercase;
}

.expertise-closing {
    max-width: 820px;
}

.expertise-closing p {
    font-size: .95rem;
    color: var(--text-mid);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 16px;
}

/* Tracks Grid (Initiatives) */
.tracks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin: 32px 0 56px;
}

.track-block {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px 24px;
}

.track-block h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--anthracite);
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.track-block p {
    font-size: .875rem;
    color: var(--text-mid);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 12px;
}

.track-zones {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--green);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 32px;
    margin-bottom: 56px;
}

.benefit-block {
    background: var(--white);
    padding: 28px 26px;
    transition: background .15s;
}

.benefit-block:hover {
    background: var(--green-pale);
}

.benefit-block h3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--anthracite);
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.benefit-block p {
    font-size: .875rem;
    color: var(--text-mid);
    line-height: 1.8;
    font-weight: 300;
    margin: 0;
}

/* Innovation Steps */
.innovation-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0 56px;
}

.step-block {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px 28px;
}

.step-number {
    font-family: 'Libre Baskerville', 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--green-light);
    line-height: 1;
    min-width: 36px;
    padding-top: 4px;
}

.step-content h3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--anthracite);
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.step-content p {
    font-size: .875rem;
    color: var(--text-mid);
    line-height: 1.8;
    font-weight: 300;
    margin: 0;
}

/* Page-specific CTAs */
.innovation-cta,
.industry-cta,
.member-cta {
    background: var(--anthracite);
    border-radius: 8px;
    padding: 36px 40px;
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.innovation-cta p,
.industry-cta p,
.member-cta p {
    font-size: .95rem;
    color: rgba(255,255,255,.7);
    line-height: 1.8;
    font-weight: 300;
    margin: 0;
    max-width: 600px;
}

/* Experts Grid (Our Experts page) */
.experts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 32px;
    margin-bottom: 48px;
}

.experts-open {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px 32px;
    margin-bottom: 48px;
}

.experts-open p {
    font-size: .925rem;
    color: var(--text-mid);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 16px;
}

/* Member criteria UL (shared) */
.member-criteria {
    margin: 16px 0 24px;
    padding-left: 24px;
}

.member-criteria li {
    font-size: .9rem;
    color: var(--text-mid);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 12px;
}

.member-criteria li strong {
    font-weight: 600;
    color: var(--anthracite);
}

/* ══════════════════════════════════════════
   PARTNER ONBOARDING FORM
   ══════════════════════════════════════════ */
.onboarding-form {
    max-width: 720px;
    margin-top: 32px;
}

.form-section {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h2 {
    font-size: 1.2rem;
    margin-bottom: 24px;
    letter-spacing: -.01em;
}

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    font-size: .84rem;
    font-weight: 600;
    color: var(--anthracite);
    margin-bottom: 6px;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="url"],
.form-field input[type="tel"],
.form-field textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: .9rem;
    font-family: 'Inter', sans-serif;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--white);
    color: var(--text);
    transition: border-color .15s;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--green);
}

.form-field input[type="file"] {
    font-size: .84rem;
    color: var(--text-mid);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field-hint {
    font-size: .8rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 8px;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .84rem;
    color: var(--text-mid);
    font-weight: 400;
    cursor: pointer;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: all .15s;
}

.checkbox-label:hover {
    background: var(--green-pale);
    border-color: var(--green);
}

.checkbox-label input[type="checkbox"] {
    accent-color: var(--green);
}



/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .sec { padding: 64px 24px; }
    .pg, .zg { grid-template-columns: 1fr 1fr; }
    .pg-3 { grid-template-columns: 1fr 1fr; }
    .ig, .track-grid { grid-template-columns: 1fr; }
    .mb { grid-template-columns: 1fr; padding: 36px 28px; }
    .profile-grid { grid-template-columns: 1fr; }
    .profile-card { position: static; }
    .zone-grid { grid-template-columns: 1fr; }
    .fn-layout { grid-template-columns: 1fr; }
    .fn-toc-inner { position: static; }
    .fn-toc nav { flex-direction: row; flex-wrap: wrap; gap: 4px; }
    .fn-toc-link { border-left: none; border-bottom: 2px solid transparent; border-radius: 4px; padding: 5px 10px; font-size: .75rem; }
    .fn-toc-link.active { border-left: none; border-bottom-color: var(--green); }
    .fn-related { grid-template-columns: 1fr 1fr; }
    .ft { grid-template-columns: 1fr 1fr; gap: 40px; }
    .oi-grid { grid-template-columns: 1fr; }
    .zone-cta { flex-direction: column; text-align: center; }
    .challenges-grid { grid-template-columns: 1fr 1fr; }
    .benefits-grid { grid-template-columns: 1fr 1fr; }
    .expertise-grid { grid-template-columns: repeat(2, 1fr); }
    .tracks-grid { grid-template-columns: 1fr; }
    .expertise-dimensions { grid-template-columns: 1fr; }
    .experts-grid { grid-template-columns: 1fr 1fr; }
    .expertise-cta, .innovation-cta, .industry-cta, .member-cta { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    .hi { padding: 0 20px; }

    /* Show hamburger, hide nav */
    .hamburger { display: flex; }

    header nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        padding: 12px 20px;
    }

    header nav.open {
        display: flex;
    }

    header nav .nl {
        width: 100%;
        padding: 12px 16px;
    }

    header nav .btn-contact {
        margin: 8px 0 0;
        text-align: center;
    }

    .ni .dd {
        position: static;
        border: none;
        box-shadow: none;
        padding: 0 0 0 16px;
        display: none;
    }

    .ni.open .dd {
        display: block;
    }

    .ph { padding: 100px 20px 56px; }
    .ph-has-image { min-height: 300px; padding: 120px 20px 64px; }
    .sec { padding: 56px 20px; }
    .zg { grid-template-columns: 1fr; }
    .expert-list { grid-template-columns: 1fr; }
    .ft { grid-template-columns: 1fr; gap: 32px; }
    .fb { flex-direction: column; gap: 12px; text-align: center; }

    .hero-content { padding: 60px 20px; }
    .hero h1 { font-size: 1.8rem; }
    .fn-card { flex: 0 0 280px; }
    .fn-toc { display: none; }
    .fn-related { grid-template-columns: 1fr; }
    .fn-content p { font-size: .95rem; }
    .challenges-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .expertise-grid { grid-template-columns: 1fr; }
    .experts-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .checkbox-grid { grid-template-columns: 1fr; }
}
