/*
Theme Name: D.A. Twum Jnr. Fellowship
Theme URI: https://datwumfellowship.org
Author: Ramic Digital Solutions
Author URI: https://ramicconsult.com
Description: Official WordPress theme for the D.A. Twum Jnr. Fellowship — a 3-month creative industry fellowship programme in Accra, Ghana.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: datwum-fellowship
Tags: fellowship, education, ghana, creative-industry
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
    --green-dark:    #0d3320;
    --green-mid:     #1a4731;
    --green-light:   #1f5238;
    --gold:          #c9a84c;
    --gold-dark:     #a8893a;
    --white:         #ffffff;
    --off-white:     #f5f3ee;
    --text-body:     #e8e4db;
    --text-dark:     #0d3320;
    --border-light:  rgba(255,255,255,0.12);
    --font-display:  'Playfair Display', Georgia, serif;
    --font-body:     'DM Sans', sans-serif;
    --font-mono:     'Space Mono', monospace;
    --max-width:     1280px;
    --section-pad:   100px;
    --nav-height:    80px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    color: var(--white);
    background: var(--green-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    line-height: 1.15;
    font-weight: 700;
}

.display-xl  { font-size: clamp(3rem, 6vw, 6rem); font-family: var(--font-display); font-weight: 900; }
.display-lg  { font-size: clamp(2rem, 4vw, 3.5rem); font-family: var(--font-display); }
.display-md  { font-size: clamp(1.5rem, 3vw, 2.5rem); font-family: var(--font-display); }
.label-sm    { font-family: var(--font-body); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }
.label-md    { font-family: var(--font-body); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.body-sm     { font-size: 0.9rem; line-height: 1.7; }
.body-md     { font-size: 1rem; line-height: 1.75; }
.body-lg     { font-size: 1.125rem; line-height: 1.8; }

.text-gold   { color: var(--gold); }
.text-white  { color: var(--white); }
.text-dark   { color: var(--text-dark); }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.section { padding: var(--section-pad) 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 140px 0; }

.bg-dark  { background: var(--green-dark); }
.bg-mid   { background: var(--green-mid); }
.bg-white { background: var(--white); color: var(--text-dark); }

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

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-48 { gap: 48px; }

.text-center { text-align: center; }
.text-left   { text-align: left; }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }

/* ============================================================
   SIGNATURE DIVIDER — dashed green + gold pattern
   ============================================================ */
.divider-dashed {
    width: 100%;
    height: 14px;
    background: repeating-linear-gradient(
        90deg,
        var(--gold) 0px,
        var(--gold) 24px,
        transparent 24px,
        transparent 32px,
        var(--green-mid) 32px,
        var(--green-mid) 60px,
        transparent 60px,
        transparent 68px
    );
    opacity: 0.85;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 2px solid transparent;
}

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

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

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

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--green-dark);
}

.btn-outline-dark {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--text-dark);
}
.btn-outline-dark:hover {
    background: var(--text-dark);
    color: var(--white);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: var(--green-dark);
    border-bottom: 1px solid var(--border-light);
    transition: background 0.3s ease;
}

#site-header.scrolled {
    background: rgba(13, 51, 32, 0.97);
    backdrop-filter: blur(12px);
}

.nav-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo img,
.nav-logo .custom-logo {
    height: 52px; /* default — overridden by Customizer logo size slider */
    width: auto;
    max-width: none;
    display: block;
    object-fit: contain;
    transition: height 0.2s ease;
}

.nav-logo .logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu a {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    transition: color 0.2s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    transform: scaleX(1);
}

.nav-menu .btn-primary {
    padding: 10px 24px;
    font-size: 0.78rem;
    border-radius: 0;
}
.nav-menu .btn-primary::after { display: none; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

/* ============================================================
   PAGE HERO — shared across pages
   ============================================================ */
.page-hero {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    margin-top: var(--nav-height);
}

.page-hero .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
}

.page-hero .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(13, 51, 32, 0.55) 0%,
        rgba(13, 51, 32, 0.78) 100%
    );
}

/* ============================================================
   HOME PAGE HERO
   ============================================================ */
.home-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: var(--nav-height);
}

.home-hero .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.home-hero .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(13, 51, 32, 0.82) 0%,
        rgba(13, 51, 32, 0.55) 55%,
        rgba(13, 51, 32, 0.3) 100%
    );
}

.home-hero .hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 40px;
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.2);
    border: 1px solid var(--gold);
    padding: 6px 16px;
    margin-bottom: 24px;
}

.hero-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
}

.hero-badge span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-title {
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.4;
}

.hero-body {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.72);
    max-width: 480px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    background: rgba(13, 51, 32, 0.75);
    border: 1px solid rgba(201, 168, 76, 0.3);
    backdrop-filter: blur(12px);
}

.hero-stat-item {
    padding: 24px 32px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: center;
    gap: 20px;
}

.hero-stat-item:last-child { border-bottom: none; }

.stat-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.stat-desc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
}

/* Ticker bar */
.ticker-bar {
    background: var(--gold);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green-dark);
}

.ticker-item::after {
    content: '●';
    font-size: 0.5rem;
    opacity: 0.6;
}

@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================================
   OVERVIEW CARDS (Home page section 2)
   ============================================================ */
.overview-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.overview-card {
    padding: 48px 40px;
    border: 1px solid transparent;
    position: relative;
}

.overview-card:first-child {
    background: var(--green-mid);
    border-color: var(--gold);
    color: var(--white);
}

.overview-card:not(:first-child) {
    background: var(--white);
    color: var(--text-dark);
}

.overview-card-title {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid currentColor;
    opacity: 0.9;
}

.overview-card-body {
    font-size: 0.92rem;
    line-height: 1.75;
    opacity: 0.85;
}

/* ============================================================
   WHAT FELLOWS GAIN
   ============================================================ */
.fellows-gain {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: start;
}

.fellows-gain-image {
    position: relative;
    overflow: hidden;
}

.fellows-gain-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.fellows-gain-content {
    padding: 80px 60px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 40px;
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.pillar-item {
    padding: 32px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    border-right: 1px solid rgba(201, 168, 76, 0.2);
}

.pillar-item:nth-child(even) { border-right: none; }
.pillar-item:nth-child(3),
.pillar-item:nth-child(4) { border-bottom: none; }

.pillar-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 12px;
    fill: var(--gold);
}

.pillar-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

/* ============================================================
   PROGRAM TIMELINE (Home teaser)
   ============================================================ */
.timeline-hero {
    position: relative;
    padding: 120px 0;
}

.timeline-hero .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.timeline-hero .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13, 51, 32, 0.82);
}

.timeline-hero .container { position: relative; z-index: 2; }

.timeline-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.timeline-label::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.timeline-label span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

.months-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 60px;
}

.month-card {
    background: rgba(201, 168, 76, 0.72);
    backdrop-filter: blur(8px);
    padding: 48px 40px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    position: relative;
    overflow: hidden;
}

.month-card::before {
    content: attr(data-roman);
    position: absolute;
    top: 0; right: 0;
    font-family: var(--font-display);
    font-size: 10rem;
    font-weight: 900;
    color: rgba(255,255,255,0.06);
    line-height: 1;
    transform: translate(10px, -20px);
    pointer-events: none;
}

.month-numeral {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.month-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 8px;
}

.month-title {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.25);
}

.month-body {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
}

.timeline-cta {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

/* ============================================================
   CTA BAND (Home — Ready to Begin)
   ============================================================ */
.cta-band {
    padding: 120px 0;
    text-align: center;
    background: var(--white);
}

.cta-band h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--green-dark);
    margin-bottom: 16px;
}

.cta-band p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--green-mid);
    margin-bottom: 48px;
}

.cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
    background: var(--green-dark);
    padding: 80px 0 32px;
    border-top: 1px solid var(--border-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-light);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img,
.footer-logo .custom-logo { height: 70px; width: auto; max-width: 200px; object-fit: contain; }

.footer-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    max-width: 320px;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    transition: color 0.2s;
}

.footer-nav a:hover { color: var(--gold); }

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    transition: color 0.2s;
}

.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
}

.footer-copy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
}

.footer-initiative {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.1em;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.legacy-section {
    padding: 100px 0;
    background: var(--green-dark);
}

.legacy-header {
    text-align: center;
    margin-bottom: 80px;
}

.legacy-header .gold-label {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
}

.bio-photo {
    position: relative;
}

.bio-photo img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.bio-photo::after {
    content: '';
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    z-index: -1;
}

.bio-name {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: var(--font-display);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 8px;
}

.bio-tagline {
    font-size: 1rem;
    font-style: italic;
    color: rgba(255,255,255,0.65);
    margin-bottom: 32px;
}

.bio-text-section {
    margin-bottom: 28px;
}

.bio-text-section h4 {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.bio-text-section p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
}

.ninani-band {
    background: var(--white);
    padding: 60px 80px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    border-top: 4px solid var(--gold);
    border-bottom: 4px solid var(--gold);
    margin: 0 -40px;
}

.ninani-band h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--green-dark);
}

.ninani-band p {
    font-size: 0.92rem;
    color: rgba(13, 51, 32, 0.72);
    line-height: 1.8;
}

/* People slider */
.people-section { padding: 100px 0; }

.people-section h2 {
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 60px;
}

.people-slider {
    position: relative;
}

.people-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.person-card {
    display: flex;
    flex-direction: column;
}

.person-photo {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.person-info {
    background: var(--white);
    color: var(--text-dark);
    padding: 20px 24px;
}

.person-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.person-role {
    font-size: 0.78rem;
    color: rgba(13, 51, 32, 0.55);
}

.person-bio-card {
    background: var(--green-mid);
    padding: 24px;
    flex: 1;
    border: 1px solid var(--border-light);
}

.person-bio-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.person-linkedin {
    background: var(--white);
    padding: 14px 24px;
    display: flex;
    align-items: center;
}

.person-linkedin a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--green-dark);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 800;
    transition: background 0.2s;
}

.person-linkedin a:hover { background: var(--gold); color: var(--green-dark); }

.slider-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--white);
    color: var(--green-dark);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.2s;
    z-index: 5;
}

.slider-btn:hover { background: var(--gold); }
.slider-btn.prev { left: -64px; }
.slider-btn.next { right: -64px; }

/* Green people section */
.people-section-dark {
    background: var(--green-mid);
}

.people-section-white {
    background: var(--white);
}

.people-section-white h2 { color: var(--text-dark); }
.people-section-white .person-info { background: var(--green-dark); color: var(--white); }
.people-section-white .person-name { color: var(--white); }
.people-section-white .person-role { color: rgba(255,255,255,0.55); }
.people-section-white .person-linkedin { background: var(--green-dark); }

/* ============================================================
   PROGRAM PAGE
   ============================================================ */
.program-intro {
    padding: 80px 0;
    background: var(--green-dark);
}

.program-intro h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
}

.program-intro h2 em {
    color: var(--gold);
    font-style: normal;
}

.months-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 48px;
}

.months-table tr {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: background 0.2s;
}

.months-table tr:hover { background: rgba(255,255,255,0.03); }

.months-table td {
    padding: 40px;
    vertical-align: top;
}

.months-table .col-month {
    width: 160px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    padding-right: 20px;
}

.months-table .col-title {
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px;
}

.months-table .col-body {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
}

.months-table .col-image {
    width: 160px;
}

.months-table .col-image img {
    width: 100%;
    height: 110px;
    object-fit: cover;
}

.fellows-gain-band {
    border: 1px solid var(--gold);
    padding: 60px 80px;
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.fellows-gain-band h3 {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
}

.gain-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gain-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.8);
}

.gain-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gold);
    flex-shrink: 0;
    transform: rotate(45deg);
}

/* Awards section */
.awards-section {
    background: var(--white);
    padding: 100px 0;
    color: var(--text-dark);
}

.awards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
}

.awards-col {
    padding: 48px 40px;
    border-right: 1px solid rgba(13, 51, 32, 0.1);
}

.awards-col:last-child { border-right: none; background: var(--green-dark); color: var(--white); }

.awards-col h3 {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: inherit;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--gold);
}

/* Who Can Apply table */
.eligibility-section {
    padding: 100px 0;
    background: var(--green-dark);
}

.eligibility-table {
    margin-top: 48px;
    border: 1px solid rgba(255,255,255,0.1);
}

.elig-row {
    display: grid;
    grid-template-columns: 220px 1fr 200px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.elig-row:last-child { border-bottom: none; }

.elig-category {
    padding: 40px 32px;
    background: rgba(255,255,255,0.04);
    border-right: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: flex-start;
}

.elig-category span {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.elig-content {
    padding: 40px 40px 40px 40px;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.elig-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
    margin-bottom: 12px;
}

.elig-content p:last-child { margin-bottom: 0; }

.elig-image {
    overflow: hidden;
}

.elig-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    filter: saturate(0.7) sepia(0.3);
    mix-blend-mode: luminosity;
}

/* Selection box */
.selection-box {
    border: 1px solid var(--gold);
    padding: 60px;
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.selection-left {
    background: var(--white);
    padding: 40px;
    color: var(--text-dark);
}

.selection-left h3 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.selection-criteria {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.selection-criteria li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9rem;
    color: rgba(13, 51, 32, 0.8);
}

.selection-criteria li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--green-dark);
    flex-shrink: 0;
    transform: rotate(45deg);
}

.selection-right h3 {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.selection-right p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* ============================================================
   APPLY PAGE
   ============================================================ */
.apply-intro {
    padding: 80px 0 60px;
    background: var(--green-dark);
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 48px;
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.track-card {
    padding: 40px 32px;
    border-right: 1px solid rgba(201, 168, 76, 0.3);
}

.track-card:last-child { border-right: none; }

.track-card h3 {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

.track-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.68);
    line-height: 1.75;
}

/* Application form */
.application-form-section {
    background: var(--white);
    padding: 80px 0;
}

.form-wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 40px;
}

.form-title {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-dark);
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(13, 51, 32, 0.15);
}

.form-section-head {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-dark);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(13, 51, 32, 0.12);
}

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

.form-row.full { grid-template-columns: 1fr; }

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dark);
}

.form-control {
    background: var(--green-dark);
    color: rgba(255,255,255,0.8);
    border: none;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    outline: none;
    transition: background 0.2s;
    width: 100%;
}

.form-control::placeholder { color: rgba(255,255,255,0.4); }
.form-control:focus { background: var(--green-mid); }

select.form-control { appearance: none; cursor: pointer; }

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-upload {
    border: 2px dashed rgba(13, 51, 32, 0.25);
    padding: 48px 24px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s;
}

.form-upload:hover { border-color: var(--green-dark); }

.form-upload p {
    font-size: 0.85rem;
    color: rgba(13, 51, 32, 0.5);
}

.form-upload input[type="file"] { display: none; }

.form-divider {
    height: 1px;
    background: rgba(13, 51, 32, 0.1);
    margin: 40px 0;
}

.form-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.form-checkbox-item {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
}

.form-checkbox-item input[type="checkbox"],
.form-checkbox-item input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--green-dark);
    cursor: pointer;
}

.form-checkbox-item span {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
}

.availability-flow {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.avail-step {
    background: var(--green-dark);
    color: var(--white);
    padding: 10px 20px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.avail-arrow {
    color: var(--green-dark);
    font-size: 1.2rem;
}

.form-commit {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 20px;
}

.commit-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.commit-option input { width: 20px; height: 20px; }
.commit-option span {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.declaration-box {
    background: rgba(13, 51, 32, 0.05);
    border-left: 3px solid var(--green-dark);
    padding: 28px 32px;
    margin-bottom: 24px;
}

.declaration-box p {
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.7;
}

.form-submit {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

/* ============================================================
   FELLOWS PAGE (placeholder)
   ============================================================ */
.fellows-page-section {
    padding: 100px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.fellows-coming-soon {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    :root { --section-pad: 72px; }
    .container { padding: 0 24px; }
    .grid-3, .overview-cards, .months-grid, .tracks-grid { grid-template-columns: 1fr 1fr; }
    .fellows-gain, .bio-grid { grid-template-columns: 1fr; }
    .fellows-gain-image { display: none; }
    .bio-photo::after { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-grid > *:first-child { grid-column: 1 / -1; }
    .home-hero .hero-content { grid-template-columns: 1fr; }
    .hero-stats { display: none; }
    .elig-row { grid-template-columns: 160px 1fr; }
    .elig-image { display: none; }
    .ninani-band { padding: 40px; margin: 0; }
    .selection-box { grid-template-columns: 1fr; }
    .awards-grid { grid-template-columns: 1fr; }
    .slider-btn.prev { left: 0; }
    .slider-btn.next { right: 0; }
}

@media (max-width: 768px) {
    :root { --section-pad: 56px; --nav-height: 64px; }
    .nav-menu { display: none; }
    .nav-toggle { display: flex; }
    .nav-menu.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--nav-height);
        left: 0; right: 0;
        background: var(--green-dark);
        padding: 32px 24px;
        gap: 24px;
        border-top: 1px solid var(--border-light);
    }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .overview-cards, .months-grid, .tracks-grid { grid-template-columns: 1fr; }
    .people-track { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .fellows-gain-content { padding: 40px 24px; }
    .ninani-band { grid-template-columns: 1fr; }
    .fellows-gain-band { grid-template-columns: 1fr; padding: 40px 24px; }
    .cta-btns { flex-direction: column; align-items: stretch; }
    .hero-ctas { flex-direction: column; align-items: flex-start; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .elig-row { grid-template-columns: 1fr; }
    .elig-category { padding: 20px 24px; }
    .months-table td { padding: 24px 16px; }
    .months-table .col-image { display: none; }
    .month-numeral { font-size: 1.8rem; }
    .availability-flow { flex-direction: column; align-items: flex-start; }
    .form-commit { flex-direction: column; gap: 16px; }
}
