/* ===========================================================
   KPN — Kwahu Professionals Network
   Rebuilt stylesheet (plain CSS, no WordPress/theme dependencies)
   Brand: primary #39c8df · dark #232323 · accent #00a0e3
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600;700;800&display=swap');

:root {
    --primary: #39c8df;
    --primary-dark: #00a0e3;
    --primary-tint: #eafafd;
    --dark: #1b2733;
    --ink: #14202b;
    --text: #4a5560;
    --muted: #8a95a1;
    --light: #f6f9fb;
    --border: #e6ecf1;
    --white: #fff;
    --maxw: 1200px;
    --radius: 8px;
    --radius-lg: 16px;
    --font-head: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --shadow-sm: 0 2px 8px rgba(20,32,43,.06);
    --shadow: 0 10px 30px rgba(20,32,43,.08);
    --shadow-lg: 0 20px 50px rgba(20,32,43,.14);
    --gradient: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 100%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); font-weight: 700; line-height: 1.2; margin: 0 0 .5em; letter-spacing: -.01em; }

a { color: var(--primary-dark); text-decoration: none; transition: color .18s; }
a:hover { color: var(--primary); }

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

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: 88px 0; }
.section-head { text-align: center; margin-bottom: 54px; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-head h2 { font-size: 2.3rem; margin-bottom: .3em; }
.section-head p { color: var(--muted); margin: 0; font-size: 1.05rem; }

/* Eyebrow label */
.eyebrow {
    display: inline-block; font-family: var(--font-head); font-weight: 600;
    font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
    color: var(--primary-dark); margin-bottom: 12px;
}
.eyebrow::before { content: ""; display: inline-block; width: 22px; height: 2px; background: var(--primary); vertical-align: middle; margin-right: 8px; margin-bottom: 4px; }
.section-head .eyebrow::after { content: ""; display: inline-block; width: 22px; height: 2px; background: var(--primary); vertical-align: middle; margin-left: 8px; margin-bottom: 4px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 30px;
    border-radius: 50px;
    background: var(--gradient);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 600; font-size: .95rem;
    border: 0; cursor: pointer;
    box-shadow: 0 8px 22px rgba(57,200,223,.32);
    transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { color: var(--white); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(57,200,223,.42); }
.btn-outline {
    background: transparent; box-shadow: none;
    border: 2px solid var(--primary);
    color: var(--primary-dark);
    padding: 11px 28px;
}
.btn-outline:hover { background: var(--primary); color: var(--white); box-shadow: 0 8px 22px rgba(57,200,223,.32); }
.btn-ghost { background: rgba(255,255,255,.15); box-shadow: none; border: 1px solid rgba(255,255,255,.5); color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--primary-dark); }

/* ===========================================================
   Header / navigation
   =========================================================== */
.topbar { background: var(--ink); color: rgba(255,255,255,.75); font-size: .82rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; min-height: 40px; gap: 20px; }
.topbar a { color: rgba(255,255,255,.8); }
.topbar a:hover { color: var(--primary); }
.topbar-contact { display: flex; gap: 22px; align-items: center; }
.topbar-contact span { display: inline-flex; align-items: center; gap: 7px; }
.topbar-contact svg { width: 14px; height: 14px; color: var(--primary); }
.topbar-social { display: flex; gap: 6px; }
.topbar-social a { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; color: rgba(255,255,255,.75); transition: .18s; }
.topbar-social a svg { width: 13px; height: 13px; }
.topbar-social a:hover { background: var(--primary); color: #fff; }

.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.95);
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .25s, min-height .25s;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(20,32,43,.09); border-bottom-color: transparent; }
.header-inner { display: flex; align-items: center; gap: 14px; min-height: 82px; transition: min-height .25s; }
.site-header.scrolled .header-inner { min-height: 68px; }
.brand img { max-height: 54px; width: auto; transition: max-height .25s; }
.site-header.scrolled .brand img { max-height: 46px; }

.main-nav { margin-left: auto; }
.menu { list-style: none; display: flex; align-items: center; gap: 0; margin: 0; padding: 0; }
.menu > .menu-item > a {
    position: relative;
    display: block; padding: 10px 9px; color: var(--ink);
    font-family: var(--font-head); font-weight: 500; font-size: .855rem; white-space: nowrap;
}
.menu > .menu-item > a::after {
    content: ""; position: absolute; left: 9px; right: 9px; bottom: 4px; height: 2px;
    background: var(--primary); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .22s;
}
.menu > .menu-item.active > a::after,
.menu > .menu-item:hover > a::after { transform: scaleX(1); }
.menu > .menu-item.active > a,
.menu > .menu-item:hover > a { color: var(--primary-dark); }
.caret { font-size: .7em; opacity: .6; }

/* Dropdowns */
.menu-item.has-children { position: relative; }
.submenu {
    list-style: none; margin: 0; padding: 10px 0;
    position: absolute; top: 100%; left: 0; min-width: 232px;
    background: var(--white); border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: var(--radius-lg);
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: .2s;
}
.menu-item.has-children:hover > .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu li a { display: block; padding: 10px 20px; color: var(--text); font-size: .9rem; border-left: 2px solid transparent; }
.submenu li a:hover { background: var(--primary-tint); color: var(--primary-dark); border-left-color: var(--primary); }

.btn-login {
    padding: 9px 24px; border: 1.5px solid var(--border);
    color: var(--ink); border-radius: 50px; font-family: var(--font-head); font-weight: 600; font-size: .88rem;
    transition: .2s;
}
.btn-login:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-login { padding: 8px 18px; }
.btn-sm { padding: 8px 18px; font-size: .84rem; box-shadow: 0 6px 16px rgba(57,200,223,.3); }
@media (max-width: 1180px) { .header-join { display: none; } .menu > .menu-item > a { padding: 10px 7px; font-size: .82rem; } }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 2px; transition: .2s; }

/* ===========================================================
   Hero slider
   =========================================================== */
.hero { position: relative; overflow: hidden; background: var(--dark); }
.hero-slides { position: relative; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
    position: absolute; inset: 0; opacity: 0;
    background-size: cover; background-position: center;
    transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-viewport { position: relative; min-height: 580px; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.45), rgba(0,0,0,.05));
    display: flex; flex-direction: column; justify-content: center;
}
.hero-overlay .container { color: var(--white); }
.hero-overlay h1 { color: var(--white); font-size: 4.2rem; margin: 0; line-height: 1; text-shadow: 0 2px 20px rgba(0,0,0,.4); }
.hero-overlay .lead { color: var(--primary); font-size: 1.9rem; font-weight: 600; text-shadow: 0 2px 14px rgba(0,0,0,.4); }
.hero-cta { margin-top: 26px; }
.hero-cta .btn { box-shadow: 0 10px 30px rgba(57,200,223,.35); font-size: 1.05rem; padding: 13px 34px; }
.hero-social {
    position: absolute; top: 22px; left: 0; right: 0;
    display: flex; justify-content: center; gap: 12px; z-index: 3;
}
.hero-social a {
    width: 42px; height: 42px; border-radius: 8px;
    display: grid; place-items: center; color: var(--white);
    background: rgba(0,0,0,.5); backdrop-filter: blur(2px);
    transition: transform .2s, background .2s;
}
.hero-social a svg { width: 20px; height: 20px; }
.hero-social a:hover { background: var(--primary); transform: translateY(-3px); }
.hero-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,.25); color: var(--white);
    border: 0; cursor: pointer; font-size: 1.4rem; z-index: 3;
}
.hero-arrow:hover { background: var(--primary); }
.hero-arrow.prev { left: 16px; } .hero-arrow.next { right: 16px; }

/* ===========================================================
   Highlight cards (KPN Give Back / Yenko Kwahu / KPN Inspires)
   =========================================================== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.card { text-align: center; }
.card-title { position: relative; margin-bottom: 22px; color: var(--muted); font-weight: 600; }
.card-title::before, .card-title::after {
    content: ""; position: absolute; top: 50%; width: 30%; height: 1px; background: var(--border);
}
.card-title::before { left: 0; } .card-title::after { right: 0; }
.card-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card .more { display: inline-block; margin-top: 16px; color: var(--primary); font-weight: 600; }

/* ===========================================================
   Feature grid (membership benefits)
   =========================================================== */
.features { background: var(--white); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 50px; }
.feature { display: grid; grid-template-columns: 40px 1fr; gap: 16px; }
.feature .ico {
    width: 40px; height: 40px; color: var(--primary);
    display: grid; place-items: center;
}
.feature .ico svg { width: 34px; height: 34px; }
.feature h4 { margin-bottom: .35em; font-size: 1.1rem; }
.feature p { margin: 0; color: var(--muted); font-size: .95rem; }

/* ===========================================================
   Generic page header (interior pages)
   =========================================================== */
.page-hero {
    position: relative; color: var(--white);
    padding: 72px 0; text-align: center;
    background: linear-gradient(120deg, var(--dark) 0%, #2c3e45 55%, var(--primary-dark) 130%);
    overflow: hidden;
}
.page-hero::after {
    content: ""; position: absolute; right: -60px; top: -60px;
    width: 260px; height: 260px; border-radius: 50%;
    background: radial-gradient(circle, rgba(57,200,223,.28), transparent 70%);
}
.page-hero h1 { color: var(--white); margin: 0; font-size: 2.6rem; position: relative; }
.page-hero .crumb { color: var(--primary); font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px; position: relative; }

/* ===========================================================
   Interior content
   =========================================================== */
.prose { max-width: 860px; margin: 0 auto; }
.prose .block { margin-bottom: 40px; }
.prose h2 {
    font-size: 1.5rem; color: var(--dark); margin-bottom: .5em;
    padding-left: 14px; border-left: 4px solid var(--primary);
}
.prose p { margin: 0 0 1em; }
.prose ol, .prose ul { margin: 0 0 1em; padding-left: 22px; }
.prose li { margin-bottom: .5em; }
.prose .lead-intro { font-size: 1.15rem; color: var(--dark); }
.prose .mantra {
    background: var(--light); border-left: 4px solid var(--primary);
    padding: 22px 26px; font-size: 1.1rem; font-style: italic; color: var(--dark);
    border-radius: 0 var(--radius) var(--radius) 0;
}

/* Card/tile grids for galleries, committees, shop */
.tile-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 26px; }
.tile { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; text-align: center; transition: transform .2s, box-shadow .2s; }
.tile:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,.1); }
.tile img { transition: transform .3s; }
.tile:hover img { transform: scale(1.03); }
.member { transition: transform .2s, box-shadow .2s; }
.member:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.07); border-color: var(--primary); }
.card-img img { transition: transform .3s; }
.card:hover .card-img img { transform: scale(1.04); }
.section.alt { background: var(--light); }

/* Stat band */
.stat-band { background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 34px 0; }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat .num { display: block; font-size: 2.2rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat .lbl { display: block; margin-top: 6px; color: rgba(255,255,255,.9); font-size: .9rem; }
.tile img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.tile .tile-body { padding: 16px; }
.tile h4 { margin: 0 0 4px; font-size: 1.05rem; }
.tile .role, .tile .price { color: var(--muted); font-size: .9rem; }
.tile .price { color: var(--primary-dark); font-weight: 700; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
.gallery-grid a { display: block; border-radius: var(--radius); overflow: hidden; }
.gallery-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .3s; }
.gallery-grid a:hover img { transform: scale(1.05); }

.info-note { background: var(--light); border: 1px dashed var(--border); border-radius: var(--radius); padding: 20px; color: var(--muted); text-align: center; }

/* Album tiles (project gallery) */
.album-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 26px; }
.album { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--white); transition: box-shadow .2s, transform .2s; }
.album:hover { box-shadow: 0 12px 30px rgba(0,0,0,.1); transform: translateY(-3px); }
.album img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.album .album-body { padding: 16px; text-align: center; }
.album h3 { margin: 0; font-size: 1.1rem; color: var(--primary-dark); }
.album .count { color: var(--muted); font-size: .85rem; }

/* Pricing plans */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 960px; margin: 0 auto; }
.plan { border: 1px solid var(--border); border-radius: 10px; padding: 34px 26px; text-align: center; background: var(--white); transition: transform .2s, box-shadow .2s; }
.plan:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(0,0,0,.1); }
.plan.featured { border-color: var(--primary); box-shadow: 0 14px 34px rgba(57,200,223,.18); }
.plan h3 { font-size: 1.2rem; margin-bottom: 16px; }
.plan .amount { font-size: 2.4rem; font-weight: 800; color: var(--primary-dark); line-height: 1; }
.plan .amount small { font-size: 1rem; font-weight: 600; }
.plan .interval { color: var(--muted); font-size: .9rem; margin-bottom: 20px; }
.plan ul { list-style: none; margin: 0 0 24px; padding: 0; text-align: left; }
.plan ul li { padding: 8px 0 8px 26px; position: relative; font-size: .92rem; border-bottom: 1px solid var(--border); }
.plan ul li::before { content: "\2713"; position: absolute; left: 0; color: var(--primary); font-weight: 700; }

/* Numbered requirement steps */
.req-list { max-width: 780px; margin: 0 auto; list-style: none; padding: 0; counter-reset: req; }
.req-list li { position: relative; padding: 18px 18px 18px 66px; margin-bottom: 14px; background: var(--light); border-radius: var(--radius); border-left: 4px solid var(--primary); }
.req-list li::before { counter-increment: req; content: counter(req); position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; background: var(--primary); color: #fff; border-radius: 50%; display: grid; place-items: center; font-weight: 700; }

/* Auth / form shells (register, login-gated) */
.form-card { max-width: 620px; margin: 0 auto; background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 34px; }
.form-card .field { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.form-card label { font-weight: 600; font-size: .9rem; color: var(--dark); }
.form-card input, .form-card select, .form-card textarea { padding: 11px 14px; border: 1px solid var(--border); border-radius: var(--radius); font: inherit; }
.form-card input:focus, .form-card select:focus { outline: 2px solid var(--primary); border-color: var(--primary); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.gated { max-width: 520px; margin: 0 auto; text-align: center; padding: 40px; }
.gated .lock { font-size: 2.4rem; }

@media (max-width: 992px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
    .form-row { grid-template-columns: 1fr; }
}

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(0,0,0,.9); align-items: center; justify-content: center; padding: 30px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: var(--radius); }
.lightbox-close { position: absolute; top: 20px; right: 28px; background: none; border: 0; color: #fff; font-size: 2.4rem; line-height: 1; cursor: pointer; }

/* Committees */
.committee-block { margin-bottom: 50px; }
.committee-title {
    font-size: 1.4rem; text-align: center; color: var(--dark);
    padding-bottom: 14px; margin-bottom: 26px;
    border-bottom: 2px solid var(--border);
}
.member-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.member { display: flex; align-items: center; gap: 14px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; }
.member .avatar {
    flex: 0 0 44px; width: 44px; height: 44px; border-radius: 50%;
    background: var(--primary); color: var(--white); font-weight: 700;
    display: grid; place-items: center; font-size: 1.1rem;
}
.member-info { display: flex; flex-direction: column; }
.member-name { font-weight: 600; color: var(--dark); font-size: .95rem; }
.member-role { font-size: .8rem; color: var(--muted); }
.member:first-child .avatar { background: var(--dark); }

/* Projects */
.project-list { display: flex; flex-direction: column; gap: 50px; margin-top: 30px; }
.project { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.project.reverse .project-img { order: 2; }
.project-img img { width: 100%; border-radius: var(--radius); aspect-ratio: 3/2; object-fit: cover; }
.project-text h3 { font-size: 1.4rem; color: var(--primary-dark); }
.project-text p { color: var(--text); margin: 0; }

/* Projects showcase */
.showcase { display: flex; flex-direction: column; gap: 80px; margin-top: 10px; }
.show-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.show-row.reverse .show-media { order: 2; }
.show-media { position: relative; }
.show-media img {
    width: 100%; aspect-ratio: 3/2; object-fit: cover;
    border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); position: relative; z-index: 1;
}
.show-media::before {
    content: ""; position: absolute; z-index: 0; border-radius: var(--radius-lg);
    inset: 18px -18px -18px 18px; background: var(--gradient); opacity: .16;
}
.show-row.reverse .show-media::before { inset: 18px 18px -18px -18px; }
.show-num {
    position: absolute; z-index: 2; top: -22px; left: -14px;
    font-family: var(--font-head); font-weight: 800; font-size: 4.4rem; line-height: 1;
    color: var(--white); -webkit-text-stroke: 2px var(--primary);
    text-stroke: 2px var(--primary); text-shadow: 0 6px 18px rgba(20,32,43,.12);
}
.show-row.reverse .show-num { left: auto; right: -14px; }
.show-tag {
    display: inline-block; background: var(--primary-tint); color: var(--primary-dark);
    font-family: var(--font-head); font-weight: 600; font-size: .74rem;
    letter-spacing: .07em; text-transform: uppercase;
    padding: 6px 15px; border-radius: 50px; margin-bottom: 16px;
}
.show-text h3 { font-size: 1.85rem; margin-bottom: .5em; color: var(--ink); }
.show-text p { color: var(--text); margin: 0 0 1em; }
.show-list { list-style: none; margin: 6px 0 0; padding: 0; display: grid; gap: 10px; }
.show-list li { position: relative; padding: 12px 16px 12px 44px; background: var(--light); border-radius: var(--radius); font-size: .93rem; color: var(--ink); }
.show-list li::before {
    content: "\2713"; position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
    width: 20px; height: 20px; border-radius: 50%; background: var(--gradient); color: #fff;
    display: grid; place-items: center; font-size: .7rem; font-weight: 700;
}

@media (max-width: 860px) {
    .showcase { gap: 56px; }
    .show-row, .show-row.reverse { grid-template-columns: 1fr; gap: 30px; }
    .show-row.reverse .show-media { order: 0; }
    .show-media::before, .show-row.reverse .show-media::before { inset: 12px -12px -12px 12px; }
    .show-num, .show-row.reverse .show-num { left: -6px; right: auto; top: -18px; font-size: 3.4rem; }
    .show-text h3 { font-size: 1.5rem; }
}

/* Apply / how-to-join CTA box */
.apply-cta { max-width: 780px; margin: 44px auto 0; text-align: center; background: var(--primary-tint); border: 1px solid rgba(57,200,223,.28); border-radius: var(--radius-lg); padding: 34px; }
.apply-cta p { margin: 0 0 20px; color: var(--ink); }
.apply-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Contact */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.contact-cards { list-style: none; margin: 20px 0 0; padding: 0; }
.contact-cards li { padding: 16px 0; border-bottom: 1px solid var(--border); display: flex; flex-direction: column; gap: 4px; }
.contact-cards strong { color: var(--primary-dark); font-size: .85rem; text-transform: uppercase; letter-spacing: .04em; }
.contact-form .field { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.contact-form label { font-weight: 600; font-size: .9rem; color: var(--dark); }
.contact-form input, .contact-form textarea {
    padding: 11px 14px; border: 1px solid var(--border); border-radius: var(--radius);
    font: inherit; color: var(--text); background: var(--white);
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--primary); border-color: var(--primary); }

@media (max-width: 992px) {
    .project, .project.reverse { grid-template-columns: 1fr; }
    .project.reverse .project-img { order: 0; }
    .contact-wrap { grid-template-columns: 1fr; }
}

/* ===========================================================
   Footer
   =========================================================== */
.site-footer { background: var(--light); border-top: 1px solid var(--border); padding: 55px 0 25px; margin-top: 20px; }
.footer-logo { text-align: center; margin-bottom: 35px; }
.footer-logo img { max-height: 60px; margin: 0 auto; }
.footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.footer-col h4 { font-size: 1.1rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { color: var(--primary-dark); }
.footer-col a:hover { color: var(--primary); }
.contact-list li { margin-bottom: 10px; color: var(--text); font-size: .92rem; display: flex; align-items: flex-start; gap: 10px; }
.contact-list .ci { flex: 0 0 18px; color: var(--primary-dark); margin-top: 2px; }
.contact-list .ci svg { width: 18px; height: 18px; display: block; }
.footer-social { display: flex; gap: 8px; margin-top: 18px; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 50%;
    display: grid; place-items: center;
    background: var(--primary); color: var(--white);
    transition: transform .2s, background .2s;
}
.footer-social a svg { width: 17px; height: 17px; }
.footer-social a:hover { background: var(--primary-dark); transform: translateY(-3px); }
.footer-bottom {
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
    border-top: 1px solid var(--border); margin-top: 40px; padding-top: 20px;
    font-size: .85rem; color: var(--muted);
}
.footer-bottom span:last-child { color: var(--primary-dark); }

/* ===========================================================
   Polish v2 — CTA band, reveal, hero dots, feature circles, cards
   =========================================================== */

/* Pre-footer CTA band */
.cta-band { position: relative; background: var(--gradient); color: #fff; padding: 64px 0; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 20%, rgba(255,255,255,.18), transparent 55%); }
.cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 34px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: 2.1rem; margin: 4px 0 8px; }
.cta-band p { color: rgba(255,255,255,.92); margin: 0; max-width: 520px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* Hero dots + darker gradient overlay */
.hero-overlay { background: linear-gradient(90deg, rgba(10,18,26,.6), rgba(10,18,26,.15) 60%, transparent); }
.hero-dots { position: absolute; bottom: 22px; left: 0; right: 0; display: flex; justify-content: center; gap: 10px; z-index: 3; }
.hero-dots button { width: 11px; height: 11px; border-radius: 50%; border: 2px solid #fff; background: transparent; cursor: pointer; padding: 0; transition: .2s; }
.hero-dots button.active { background: var(--primary); border-color: var(--primary); transform: scale(1.2); }

/* Feature icons in tinted circles */
.feature { grid-template-columns: 58px 1fr; gap: 18px; }
.feature .ico { width: 58px; height: 58px; border-radius: 16px; background: var(--primary-tint); box-shadow: inset 0 0 0 1px rgba(57,200,223,.25); transition: .25s; }
.feature .ico svg { width: 28px; height: 28px; }
.feature:hover .ico { background: var(--gradient); color: #fff; transform: translateY(-3px) rotate(-4deg); }
.feature h4 { font-size: 1.08rem; }

/* Highlight cards redesign (home) */
.cards { gap: 30px; }
.card { text-align: left; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-title { position: static; margin: 0; padding: 18px 22px 0; color: var(--ink); font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; text-transform: none; }
.card-title::before, .card-title::after { display: none; }
.card-img { display: block; margin: 0; border-radius: 0; aspect-ratio: 16/10; overflow: hidden; }
.card .more { margin: 0; padding: 14px 20px 20px; color: var(--primary-dark); font-family: var(--font-head); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.card .more::after { content: "\2192"; transition: transform .2s; }
.card:hover .more::after { transform: translateX(4px); }

/* Section divider tint helper already: .section.alt */
.stat-band { box-shadow: var(--shadow); }

/* Hangout / corporate social event cards */
.hangout-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.hangout-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.hangout-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.hangout-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.hangout-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.hangout-card:hover .hangout-media img { transform: scale(1.06); }
.hangout-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(20,32,43,.35)); }
.hangout-tag {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    background: rgba(255,255,255,.92); color: var(--primary-dark);
    font-family: var(--font-head); font-weight: 600; font-size: .72rem;
    letter-spacing: .04em; text-transform: uppercase;
    padding: 5px 12px; border-radius: 50px; backdrop-filter: blur(3px);
}
.hangout-body { padding: 22px 24px 26px; }
.hangout-body h3 { font-size: 1.25rem; margin-bottom: .4em; }
.hangout-body p { margin: 0; color: var(--text); font-size: .95rem; }

@media (max-width: 900px) { .hangout-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .hangout-grid { grid-template-columns: 1fr; } }

/* Team / executives */
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-photo { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--light); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .4s; }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-info { padding: 20px 22px 24px; text-align: center; position: relative; }
.team-info h3 { font-size: 1.15rem; margin: 0 0 2px; }
.team-info .role { margin: 0; color: var(--primary-dark); font-family: var(--font-head); font-weight: 600; font-size: .9rem; }
.role-badge {
    display: inline-block; background: var(--gradient); color: #fff;
    font-family: var(--font-head); font-weight: 600; font-size: .7rem; letter-spacing: .06em; text-transform: uppercase;
    padding: 4px 14px; border-radius: 50px; margin-bottom: 10px;
    box-shadow: 0 6px 16px rgba(57,200,223,.3);
}

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* President featured */
.president { display: flex; justify-content: center; margin-bottom: 48px; }
.president-card { display: grid; grid-template-columns: 260px 1fr; max-width: 640px; text-align: left; }
.president-card .team-photo { aspect-ratio: auto; height: 100%; min-height: 280px; }
.president-card .team-info { text-align: left; display: flex; flex-direction: column; justify-content: center; padding: 30px 34px; }
.president-card .team-info h3 { font-size: 1.7rem; }
.president-card .team-info .role { font-size: 1.05rem; }

/* Committee member grids (denser: 4 up) */
.committee-block { margin-bottom: 58px; }
.committee-team { grid-template-columns: repeat(4, 1fr); gap: 22px; }
.committee-team .team-info { padding: 16px 14px 20px; }
.committee-team .team-info h3 { font-size: .98rem; line-height: 1.25; }
.committee-team .team-info .role { font-size: .8rem; color: var(--muted); font-weight: 500; margin-top: 3px; }
.team-photo .team-initial { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 2.4rem; color: #fff; background: var(--gradient); }
.chair-badge {
    position: absolute; bottom: 10px; left: 10px; z-index: 2;
    background: rgba(255,255,255,.94); color: var(--primary-dark);
    font-family: var(--font-head); font-weight: 600; font-size: .66rem;
    letter-spacing: .05em; text-transform: uppercase;
    padding: 4px 11px; border-radius: 50px; box-shadow: var(--shadow-sm);
}
@media (max-width: 1000px) { .committee-team { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .committee-team { grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px) { .committee-team { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; } }

@media (max-width: 860px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) {
    .president-card { grid-template-columns: 1fr; max-width: 420px; }
    .president-card .team-photo { aspect-ratio: 4/3; min-height: 0; }
    .president-card .team-info { text-align: center; align-items: center; }
}
@media (max-width: 460px) { .team-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; } }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 992px) {
    .nav-toggle { display: flex; margin-left: auto; }
    .header-actions { display: none; }
    .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); box-shadow: var(--shadow); max-height: 80vh; overflow-y: auto; }
    .main-nav.open { display: block; }
    .menu { flex-direction: column; padding: 8px 0; }
    .menu > .menu-item > a { padding: 13px 22px; }
    .menu > .menu-item > a::after { display: none; }
    .submenu {
        position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; border: 0; border-left: 3px solid var(--border);
        margin: 0 20px; display: none;
    }
    .menu-item.sub-open > .submenu { display: block; }
    .cards, .feature-grid { grid-template-columns: 1fr; }
    .footer-cols { grid-template-columns: 1fr 1fr; }
    .hero-overlay h1 { font-size: 2.6rem; }
    .hero-overlay .lead { font-size: 1.3rem; }
}
@media (max-width: 768px) {
    .section { padding: 56px 0; }
    .topbar-contact span:nth-child(2) { display: none; }
    .page-hero { padding: 56px 0; }
    .page-hero h1 { font-size: 2rem; }
    .section-head h2 { font-size: 1.7rem; }
    .stat-row { grid-template-columns: 1fr 1fr; gap: 22px; }
    .stat .num { font-size: 1.8rem; }
    .hero-overlay h1 { font-size: 2.6rem; }
    .hero-overlay .lead { font-size: 1.2rem; }
    .hero-arrow { width: 38px; height: 38px; }
    .hero-social { gap: 8px; }
    .hero-social a { width: 38px; height: 38px; }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-band h2 { font-size: 1.7rem; }
    .cta-actions { justify-content: center; }
    .cta-band .eyebrow::after { display: none; }
}
@media (max-width: 560px) {
    .footer-cols { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-viewport { min-height: 440px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .tile-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .member-list { grid-template-columns: 1fr; }
}
