:root {
    --navy: #0c1a2e;
    --navy-mid: #132240;
    --navy-light: #1b3059;
    --gold: #c9913a;
    --gold-light: #e6b86a;
    --gold-pale: #f5e9d3;
    --cream: #faf6ef;
    --white: #ffffff;
    --text-dark: #1a1a2e;
    --text-mid: #000000;
    --text-light: #7a7a9a;
    --accent-red: #8b1a1a;
}

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

a {
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Kanit", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--navy);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(12, 26, 46, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 145, 58, 0.3);
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    transition: all 0.3s ease;
}

.nav-logo {
    font-family: "Roboto", sans-serif;
    font-size: 1.1rem;
    color: var(--gold-light);
    letter-spacing: 2px;
    text-decoration: none;
    display: inline-block;
}

.nav-logo img {
    max-width: 200px;
    height: auto;
    display: block;
}

.nav-logo span {
    display: block;
    font-size: 10px;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s;
    text-transform: uppercase;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}




/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: url(../../assets/images/hero2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(201, 145, 58, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201, 145, 58, 0.06) 0%, transparent 50%),
        repeating-linear-gradient(0deg,
            transparent,
            transparent 60px,
            rgba(201, 145, 58, 0.03) 60px,
            rgba(201, 145, 58, 0.03) 61px),
        repeating-linear-gradient(90deg,
            transparent,
            transparent 60px,
            rgba(201, 145, 58, 0.03) 60px,
            rgba(201, 145, 58, 0.03) 61px);
}

.hero-emblem {
    position: absolute;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(201, 145, 58, 0.08);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotateSlowly 60s linear infinite;
}

.hero-emblem::before {
    content: '';
    position: absolute;
    inset: 30px;
    border: 1px solid rgba(201, 145, 58, 0.05);
    border-radius: 50%;
}

@keyframes rotateSlowly {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    background: #000000bf;
    border: 1px solid var(--gold-light);
    border-radius: 50px 0;
}

.hero-badge {
    display: inline-block;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--cream);
    border: 1px solid var(--cream);
    padding: 8px 24px;
    margin-bottom: 36px;
    animation: fadeUp 0.8s ease both;
    font-weight: 400;
}

.hero-title {
    font-family: "Kanit", sans-serif;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 12px;
    animation: fadeUp 0.8s 0.2s ease both;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-title span {
    color: var(--gold-light);
    display: block;
}

.hero-divider {
    width: 140px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 22px auto;
    animation: fadeUp 0.8s 0.4s ease both;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--white);
    line-height: 1.5;
    font-weight: 400;
    max-width: 720px;
    margin: 0 auto 48px;
    animation: fadeUp 0.8s 0.6s ease both;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeUp 0.8s 0.8s ease both;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    padding: 14px 40px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.btn-primary:hover::before {
    transform: translateX(0);
}

.btn-primary:hover {
    box-shadow: 0 8px 32px rgba(201, 145, 58, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--gold-light);
    color: var(--gold-light);
    padding: 14px 40px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-outline:hover {
    background: rgba(201, 145, 58, 0.08);
    border-color: var(--gold-light);
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeUp 1s 1.2s ease both;
}

.hero-scroll span {
    font-family: "Roboto", sans-serif;
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: var(--white);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 157, 0, 0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.1);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* ── SECTION BASE ── */
section {
    padding: 100px 0;
}

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

.section-label {
    font-family: "Roboto", sans-serif;
    font-size: 0.80rem;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

.section-title.section-subtitle {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 600;
}

.section-title em {
    color: var(--gold);
    font-style: normal;
}

.section-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold));
    margin: 24px 0;
}

/* ── ABOUT ── */
.about {
    background: var(--white);
}

/* Header */
.about-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 60px;
}

.about-header .section-label {
    justify-content: center;
}

.about-header .section-divider {
    margin: 24px auto;
}

.about-intro {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-mid);
    font-weight: 400;
}

/* Banner: Image */
.about-banner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 60px;
}

.about-banner-img {
    position: relative;
    width: 100%;
    height: 380px;
}

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

.about-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 26, 46, 0.25) 0%, transparent 100%);
}

/* Three Pillars */
.about-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.about-pillar {
    background: var(--cream);
    border: 1px solid rgba(201, 145, 58, 0.12);
    border-radius: 12px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.about-pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 0 0 3px 3px;
    transition: width 0.4s ease;
}

.about-pillar:hover::before {
    width: 100%;
}

.about-pillar:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(201, 145, 58, 0.3);
}

.about-pillar-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(12, 26, 46, 0.15);
    transition: all 0.4s ease;
}

.about-pillar:hover .about-pillar-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(201, 145, 58, 0.3);
}

.about-pillar-icon svg {
    width: 26px;
    height: 26px;
    color: var(--gold-light);
    transition: color 0.4s ease;
}

.about-pillar:hover .about-pillar-icon svg {
    color: var(--white);
}

.about-pillar-title {
    font-family: "Kanit", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 14px;
    line-height: 1.3;
}

.about-pillar-text {
    font-size: 0.98rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin: 0;
}

/* Bottom Quote */
.about-bottom-quote {
    border-left: 3px solid var(--gold);
    padding: 32px 40px;
    background: linear-gradient(135deg, var(--gold-pale), rgba(201, 145, 58, 0.04));
    position: relative;
    margin-bottom: 0;
}

.about-bottom-quote-mark {
    font-family: "Kanit", sans-serif;
    font-size: 5rem;
    line-height: 0.7;
    color: var(--gold);
    opacity: 0.25;
    position: absolute;
    top: 12px;
    left: 20px;
}

.about-bottom-quote p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--navy-light);
    font-style: italic;
    font-weight: 500;
    margin: 0;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: var(--navy);
    padding: 28px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-num {
    font-family: "Roboto", sans-serif;
    font-size: 2.2rem;
    color: var(--gold-light);
    font-weight: 700;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 1px;
    font-family: "Roboto", sans-serif;
    margin-top: 6px;
}

/* ── ABOUT – IDEA BEHIND (integrated) ── */
.about-idea-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(201, 145, 58, 0.18);
}

.about-idea-intro {
    text-align: center;
    margin-bottom: 50px;
}

.about-idea-heading {
    font-family: "Kanit", sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
}

.about-idea-heading em {
    color: var(--gold);
    font-style: normal;
}

.about-idea-lead {
    font-size: 1.1rem;
    color: var(--text-mid);
    line-height: 2;
    max-width: 780px;
    margin: 0 auto;
}

/* Challenge Cards */
.about-idea-challenges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.about-idea-card {
    position: relative;
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
    border: 1px solid rgba(201, 145, 58, 0.2);
    border-radius: 16px;
    padding: 48px 40px 44px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.about-idea-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
    border-radius: 16px 16px 0 0;
}

.about-idea-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(12, 26, 46, 0.2), 0 0 30px rgba(201, 145, 58, 0.06);
}

.about-idea-card-num {
    font-family: "Roboto", sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(201, 145, 58, 0.12);
    line-height: 1;
    position: absolute;
    top: 20px;
    right: 28px;
    transition: color 0.4s ease;
}

.about-idea-card:hover .about-idea-card-num {
    color: rgba(201, 145, 58, 0.22);
}

.about-idea-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 6px 20px rgba(201, 145, 58, 0.25);
}

.about-idea-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.about-idea-card-title {
    font-family: "Kanit", sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.35;
}

.about-idea-card-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-bottom: 18px;
}

.about-idea-card-text {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    margin: 0;
}

/* Approach Block */
.about-idea-approach {
    background: linear-gradient(160deg, rgba(12, 26, 46, 0.88) 0%, rgba(19, 34, 64, 0.92) 100%), url(../../assets/images/fondation-img12.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(201, 145, 58, 0.18);
    border-radius: 20px;
    padding: 56px 52px;
    position: relative;
    overflow: hidden;
}

.about-idea-approach::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    border-radius: 20px 20px 0 0;
}

.about-idea-approach-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-idea-approach-badge {
    display: inline-block;
    font-family: "Roboto", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--navy);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    padding: 8px 24px;
    border-radius: 2px;
    margin-bottom: 20px;
}

.about-idea-approach-title {
    font-family: "Kanit", sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.about-idea-approach-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Track Items */
.about-idea-tracks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 36px;
}

.about-idea-track {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 145, 58, 0.2);
    border-radius: 12px;
    padding: 28px 30px;
    transition: all 0.4s ease;
}

.about-idea-track:hover {
    background: rgba(201, 145, 58, 0.08);
    border-color: rgba(201, 145, 58, 0.45);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-idea-track-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: rgba(201, 145, 58, 0.1);
    border: 1px solid rgba(201, 145, 58, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.about-idea-track:hover .about-idea-track-icon {
    background: rgba(201, 145, 58, 0.2);
    border-color: var(--gold);
    transform: scale(1.1);
}

.about-idea-track-icon svg {
    width: 22px;
    height: 22px;
    color: var(--gold-light);
}

.about-idea-track-content {
    flex: 1;
}

.about-idea-track-label {
    font-family: "Kanit", sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 6px;
}

.about-idea-track-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin: 0;
}

.about-idea-track-arrow {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.4s ease;
}

.about-idea-track-arrow svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

.about-idea-track:hover .about-idea-track-arrow {
    opacity: 1;
    transform: translateX(0);
}

.about-idea-approach-footer {
    text-align: center;
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-style: italic;
    padding-top: 20px;
    border-top: 1px solid rgba(201, 145, 58, 0.12);
    margin: 0;
}

/* ── OUR WORK ── */
.our-work {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.our-work::before {
    content: 'OUR WORK';
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Roboto", sans-serif;
    font-size: 16rem;
    font-weight: 700;
    color: rgba(201, 145, 58, 0.03);
    letter-spacing: -10px;
    pointer-events: none;
}

/* Vision / Mission top grid */
.ow-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 70px;
}

.ow-vision,
.ow-mission {
    position: relative;
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
    border: 1px solid rgba(201, 145, 58, 0.2);
    border-radius: 20px;
    padding: 48px 44px 44px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}

.ow-vision::before,
.ow-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    border-radius: 20px 20px 0 0;
}

.ow-vision:hover,
.ow-mission:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(12, 26, 46, 0.25), 0 0 40px rgba(201, 145, 58, 0.08);
}

.ow-vm-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.ow-vm-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(201, 145, 58, 0.25);
}

.ow-vm-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.ow-vm-label {
    font-family: "Kanit", sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-light);
}

.ow-vm-title {
    font-family: "Kanit", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.35;
}

.ow-vm-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-bottom: 20px;
}

.ow-vision p,
.ow-mission p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.85;
}

.ow-mission-list {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
}

.ow-mission-list li {
    position: relative;
    padding-left: 28px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 2.1;
    transition: color 0.3s ease;
}

.ow-mission-list li:hover {
    color: var(--white);
}

.ow-mission-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(201, 145, 58, 0.4);
}

.ow-vm-accent {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(201, 145, 58, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Core Work heading */
.ow-heading {
    text-align: center;
    margin-bottom: 50px;
}

.our-work .section-label {
    justify-content: center;
}

.our-work .section-divider {
    margin: 24px auto;
}

.ow-subtitle {
    font-size: 1.1rem;
    color: var(--navy-mid);
    line-height: 1.9;
    max-width: 720px;
    margin: 16px auto 0;
}

/* Pillar cards */
.ow-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ow-pillar {
    background: var(--navy);
    border: 1px solid rgba(250, 246, 239, 0.08);
    border-radius: 16px;
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: default;
}

.ow-pillar:hover {
    border-color: var(--gold-light);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(12, 26, 46, 0.25);
}

.ow-pillar-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.ow-pillar-num {
    font-family: "Roboto", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(250, 246, 239, 0.12);
    line-height: 1;
    transition: color 0.3s ease;
}

.ow-pillar:hover .ow-pillar-num {
    color: rgba(230, 184, 106, 0.25);
}

.ow-pillar-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ow-pillar-icon svg {
    width: 32px;
    height: 32px;
    color: var(--gold);
    transition: color 0.3s ease;
}

.ow-pillar:hover .ow-pillar-icon svg {
    color: var(--gold-light);
}

.ow-pillar-title {
    font-family: "Kanit", sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 18px;
}

.ow-pillar-text {
    font-size: 0.98rem;
    color: rgba(250, 246, 239, 0.82);
    line-height: 1.85;
    margin-bottom: 14px;
}

.ow-pillar-text:last-child {
    margin-bottom: 0;
}

/* ── MoU HIGHLIGHT ── */
.mou-highlight {
    background: linear-gradient(160deg, #0a1628 0%, #0f2240 40%, #142c50 100%);
    padding: 80px 0 90px;
    position: relative;
    overflow: hidden;
}

.mou-highlight::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 145, 58, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.mou-highlight::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 145, 58, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* Ticker / Continuous Slider */
.mou-ticker-wrap {
    margin-bottom: 48px;
    overflow: hidden;
    position: relative;
}

.mou-ticker-wrap::before,
.mou-ticker-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.mou-ticker-wrap::before {
    left: 0;
    background: linear-gradient(to right, #0f2240, transparent);
}

.mou-ticker-wrap::after {
    right: 0;
    background: linear-gradient(to left, #0f2240, transparent);
}

.mou-ticker {
    border-top: 1px solid rgba(201, 145, 58, 0.15);
    border-bottom: 1px solid rgba(201, 145, 58, 0.15);
    padding: 18px 0;
    background: rgba(201, 145, 58, 0.03);
}

.mou-ticker-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: mouScroll 28s linear infinite;
    width: max-content;
}

@keyframes mouScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.mou-item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0 40px;
    font-family: "Kanit", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-light);
}

.mou-diamond {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* MoU Content */
.mou-content {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.mou-badge {
    display: inline-block;
    font-family: "Roboto", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--navy);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    padding: 8px 24px;
    border-radius: 2px;
    margin-bottom: 28px;
}

.mou-title {
    font-family: "Kanit", sans-serif;
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.3;
}

.mou-title em {
    font-style: italic;
    color: var(--gold-light);
}

.mou-desc {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 2;
    margin-bottom: 40px;
}

.mou-desc strong {
    color: var(--white);
    font-weight: 600;
}

.mou-pillars {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.mou-pillar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 145, 58, 0.2);
    border-radius: 6px;
    padding: 16px 24px;
    transition: all 0.4s ease;
}

.mou-pillar-item:hover {
    background: rgba(201, 145, 58, 0.08);
    border-color: rgba(201, 145, 58, 0.45);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.mou-pillar-item svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
    flex-shrink: 0;
}

.mou-pillar-item span {
    font-family: "Kanit", sans-serif;
    font-size: 0.92rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .mou-highlight {
        padding: 50px 0 60px;
    }

    .mou-title {
        font-size: 1.6rem;
    }

    .mou-pillars {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .mou-pillar-item {
        width: 100%;
        justify-content: center;
    }

    .mou-item {
        font-size: 0.85rem;
        padding: 0 24px;
    }
}

/* WORKSHOPS */
.workshops {
    background: var(--cream);
}

.workshops .section-label {
    justify-content: center;
}

.workshops .section-divider {
    margin: auto;
    margin-bottom: 50px;
    margin-top: 15px;
}

.workshops .section-title {
    text-align: center;
}

.workshops-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 60px;
    border: none;
    background: #142134;
}

.tab-btn {
    font-size: 1rem;
    letter-spacing: 1px;
    color: var(--cream);
    padding: 16px 36px;
    border: none;
    background: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border: none;
}

.tab-btn.active,
.tab-btn:hover {
    color: #ffffff;
    background: var(--gold);
}

.tab-content {
    display: none;
}

.workshops-tabs .tab-btn {
    border-right: 1px solid;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.workshop-card {
    background: var(--white);
    border: 1px solid rgba(201, 145, 58, 0.1);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0px 0px 30px #d5d5d5;
}

.workshop-card {
    position: relative;
    overflow: hidden;
}

/* animated border */
.workshop-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    background-color: #e0a84f;
    clip-path: inset(0 100% 100% 0);
    transition: clip-path 0.4s linear;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: exclude;
    mask-composite: exclude;
    z-index: -1;
}

.workshop-card:hover::before {
    clip-path: inset(0 0 0 0);
}

.workshop-card:hover {
    transform: translateY(-8px);
}

.workshop-card-title {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 8px;
    font-weight: 600;
}

.workshop-author {
    font-family: "Roboto", sans-serif;
    font-size: 0.80rem;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 14px;
}

.workshop-text {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.8;
}

.workshop-section-label {
    font-size: 2rem;
    color: var(--navy);
    font-style: normal;
    margin: 50px 0 28px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgb(0 0 0 / 47%);
}

.workshop-img img {
    width: 100%;
    margin-bottom: 15px;
    height: 200px;
    object-fit: cover;
}

/* ── EVENTS ── */
.events {
    background: linear-gradient(45deg, #000000c5), url(../../assets/images/fondation-img3.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.events .section-title {
    color: var(--white);
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 60px;
}

.event-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 145, 58, 0.15);
    padding: 40px;
}

.event-block.reveal {
    background: #0f1b2f;
    border-radius: 0 30px;
    border: 1px solid #b2b2b2;
    position: relative;
    overflow: hidden;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.event-block.reveal::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, #b1b1b152, transparent 60%);
    transform: scale(0);
    transition: 0.5s ease;
}

.event-block.reveal:hover {
    background: rgba(201, 145, 58, 0.07);
    border-color: var(--gold-light);
    transform: translateY(-8px);
}

.event-block.reveal:hover::after {
    transform: scale(1);
    opacity: 1;
}

.events-gallery .swiper-slide img {
    width: 100%;
    object-fit: cover;
    height: 300px;
}

.events-gallery {
    margin-top: 60px;
}

.event-block-title {
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    color: #fcbf5f;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.event-block-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgb(255 183 71 / 52%);
}

.event-item {
    display: flex;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

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

.event-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 9px;
    flex-shrink: 0;
}

.event-text {
    font-size: 0.95rem;
    color: rgb(219 219 219);
    line-height: 1.7;
}

.event-text strong {
    color: var(--white);
    font-weight: 600;
}

.events .section-label,
.events h2.section-title,
.projects .section-label,
.projects h2.section-title {
    justify-content: center;
    text-align: center;
}

.events .section-divider,
.projects .section-divider {
    margin: auto;
    margin-top: 25px;
    margin-bottom: 25px;
}

.event-item.event-content {
    border-top: 1px solid #767676;
}

/* ── TIMELINE ── */
.track-record-intro {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    max-width: 600px;
    margin: 16px auto 0;
    line-height: 1.8;
}

/* Alternating Timeline */
.tl {
    position: relative;
    margin-top: 70px;
    padding-bottom: 20px;
}

.tl-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, var(--gold) 0%, rgba(201, 145, 58, 0.4) 70%, rgba(201, 145, 58, 0.08) 100%);
}

.tl-line::before,
.tl-line::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
}

.tl-line::before { top: -5px; }
.tl-line::after { bottom: -5px; opacity: 0.3; }

.tl-entry {
    display: flex;
    align-items: flex-start;
    width: 50%;
    margin-bottom: 50px;
    position: relative;
}

.tl-entry:last-child {
    margin-bottom: 0;
}

/* Left entries */
.tl-left {
    padding-right: 60px;
    margin-left: 0;
    justify-content: flex-end;
}

/* Right entries */
.tl-right {
    padding-left: 60px;
    margin-left: 50%;
}

/* Center node */
.tl-node {
    position: absolute;
    top: 24px;
    width: 48px;
    height: 48px;
    background: var(--navy);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 2;
    box-shadow: 0 0 0 8px var(--navy), 0 0 20px rgba(201, 145, 58, 0.15);
    transition: all 0.4s ease;
}

.tl-node span {
    color: #fff;
}

.tl-left .tl-node {
    right: -24px;
}

.tl-right .tl-node {
    left: -24px;
}

.tl-entry:hover .tl-node {
    transform: scale(1.15);
    box-shadow: 0 0 0 8px var(--navy), 0 0 28px rgba(201, 145, 58, 0.35);
    border-color: var(--gold-light);
}

/* Card */
.tl-card {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 145, 58, 0.12);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tl-card:hover {
    background: rgba(201, 145, 58, 0.05);
    border-color: rgba(201, 145, 58, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(201, 145, 58, 0.1);
}

.tl-card-accent {
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
}

.tl-right .tl-card-accent {
    background: linear-gradient(90deg, transparent, var(--gold-light), var(--gold));
}

.tl-card-body {
    padding: 28px 30px 30px;
}

/* Connect lines from node to card */
.tl-left::after {
    content: "";
    position: absolute;
    top: 46px;
    right: 24px;
    width: 36px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold));
}

.tl-right::before {
    content: "";
    position: absolute;
    top: 46px;
    left: 24px;
    width: 36px;
    height: 1px;
    background: linear-gradient(to left, transparent, var(--gold));
    z-index: 1;
}

/* Meta */
.tl-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.tl-year {
    font-family: "Kanit", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--navy);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    padding: 5px 16px;
    border-radius: 2px;
}

.tl-year-ongoing {
    background: transparent;
    color: var(--gold-light);
    border: 1px solid var(--gold);
    padding: 4px 15px;
}

.tl-loc {
    font-family: "Roboto", sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.8px;
}

.tl-title {
    font-family: "Kanit", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.tl-card:hover .tl-title {
    color: var(--gold-pale);
}

.tl-desc {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.85;
    margin: 0;
}

/* Ongoing pulse */
.tl-node-pulse {
    border-color: var(--gold-light);
    animation: tlPulse 2.5s ease-in-out infinite;
}

@keyframes tlPulse {
    0%, 100% { box-shadow: 0 0 0 8px var(--navy), 0 0 20px rgba(201, 145, 58, 0.15); }
    50% { box-shadow: 0 0 0 8px var(--navy), 0 0 30px rgba(201, 145, 58, 0.45); }
}

/* Responsive */
@media (max-width: 900px) {
    .tl-entry,
    .tl-left,
    .tl-right {
        width: 100%;
        margin-left: 0;
        padding-left: 56px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .tl-line {
        left: 20px;
        transform: none;
    }

    .tl-left .tl-node,
    .tl-right .tl-node {
        left: -36px;
        right: auto;
    }

    .tl-left::after,
    .tl-right::before {
        left: 20px;
        right: auto;
        width: 28px;
        background: linear-gradient(to right, var(--gold), transparent);
    }

    .tl-card-accent,
    .tl-right .tl-card-accent {
        background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
    }

    .tl-entry {
        margin-bottom: 32px;
    }

    .tl-node {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        box-shadow: 0 0 0 6px var(--navy), 0 0 14px rgba(201, 145, 58, 0.1);
    }

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

    .tl-title {
        font-size: 1.05rem;
    }

    .tl-meta {
        flex-wrap: wrap;
        gap: 8px;
    }
}

/* PREVIOUS PROJECTS */
.projects {
    background: var(--cream);
    padding-top: 0;
}

.project-feature {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
    border: 1px solid rgba(201, 145, 58, 0.15);
    overflow: hidden;
    margin-top: 50px;
}

.project-sidebar {
    background: url(../../assets/images/past-project.jpeg);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    background-position: center;
}

.project-sidebar:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: #012c6b;
    z-index: 0;
}

.project-sidebar .sidebar-content {
    z-index: 1;
    position: relative;
}

.project-year {
    font-family: "Roboto", sans-serif;
    font-size: 2.5rem;
    color: #e8ae55;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.project-location {
    font-family: "Roboto", sans-serif;
    letter-spacing: 2px;
    color: rgb(255 255 255);
    margin-bottom: 24px;
    font-size: 12px;
}

.project-tag a {
    display: inline-block;
    background: rgba(201, 145, 58, 0.15);
    border: 1px solid rgb(201 145 58 / 96%);
    color: var(--gold-light);
    font-family: "Roboto", sans-serif;
    font-size: 0.6rem;
    letter-spacing: 2px;
    padding: 6px 14px;
    transition: 0.4s ease-in-out;
}

.project-tag a:hover {
    background: rgb(201 145 58 / 96%);
    border: 1px solid transparent;
    color: #000;
}

.project-body {
    padding: 30px 40px;
    background: var(--white);
}

.project-feature {
    box-shadow: 0px 10px 30px #d5d5d5;
    transition: 0.4s ease-in-out;
}

.project-feature.reveal.visible:hover {
    box-shadow: 0px 30px 50px #d5d5d5;
    transform: translateY(-8px);
}

.project-body h3 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 24px;
    font-weight: 700;
}

.project-body p {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 2;
    margin-bottom: 16px;
}

.tab-banner-wrap {
    position: relative;
    margin-bottom: 48px;
}

.tab-banner-wrap img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    filter: brightness(0.65) saturate(0.85);
    transition: transform 8s ease;
    object-position: 65% 35%;
}

.tab-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(12, 26, 46, 0.88) 0%, rgba(12, 26, 46, 0.3) 60%, transparent 100%);
    display: flex;
    align-items: center;
    padding: 0 52px;
    color: #fff;
}

.tab-banner-text {
    max-width: 500px;
}

.tab-banner-eyebrow {
    font-size: 1rem;
    letter-spacing: 2px;
    color: #ffb643;
    margin-bottom: 10px;
}

.tab-banner-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 10px;
}

.tab-banner-desc {
    font-size: 0.95rem;
    color: var(--white);
    line-height: 1.7;
}

/* ── LEADERSHIP ── */
.leadership {
    background: var(--cream);
    padding: 100px 0;
}

.leadership .section-label {
    justify-content: center;
    text-align: center;
}

.leadership .section-title {
    text-align: center;
}

.leadership .section-divider {
    margin: auto;
    margin-top: 15px;
    margin-bottom: 50px;
}

.leadership-block-title {
    font-family: "Kanit", sans-serif;
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 28px;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Directors Grid */
.directors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.director-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(201, 145, 58, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.director-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(201, 145, 58, 0.35);
}

.director-photo {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #e8dcc8 0%, #d4c4a8 100%);
}

.director-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.director-card:hover .director-photo img {
    transform: scale(1.05);
}

.director-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--white), transparent);
    pointer-events: none;
}

.director-info {
    padding: 24px 28px 28px;
    text-align: center;
}

.director-name {
    font-family: "Kanit", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.director-role {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
    opacity: 0.85;
}

/* Patrons & Advisors - Coming Soon */
.leadership-secondary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.leadership-soon-card {
    background: var(--white);
    border: 1px dashed rgba(201, 145, 58, 0.3);
    border-radius: 10px;
    padding: 36px 28px;
    text-align: center;
}

.leadership-soon-card .leadership-block-title {
    margin-bottom: 12px;
}

.coming-soon-badge {
    display: inline-block;
    font-family: "Roboto", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 145, 58, 0.08);
    border: 1px solid rgba(201, 145, 58, 0.2);
    padding: 8px 22px;
    border-radius: 3px;
}

/* Advisory Circle */
.leadership-advisory {
    background: var(--white);
    border: 1px solid rgba(201, 145, 58, 0.12);
    border-radius: 10px;
    padding: 44px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.leadership-advisory .leadership-block-title {
    margin-bottom: 24px;
}

.advisory-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
}

.advisory-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(12, 26, 46, 0.04);
    border: 1px solid rgba(12, 26, 46, 0.1);
    border-radius: 6px;
    padding: 10px 20px;
    font-family: "Roboto", sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--navy);
    transition: all 0.3s ease;
}

.advisory-tag:hover {
    background: rgba(201, 145, 58, 0.08);
    border-color: rgba(201, 145, 58, 0.3);
    color: var(--gold);
}

.advisory-tag svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
}

.advisory-desc {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto;
    opacity: 0.85;
}

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

    .directors-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .director-photo {
        height: 240px;
    }

    .leadership-secondary {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .leadership-advisory {
        padding: 28px 20px;
    }

    .advisory-tags {
        gap: 10px;
    }
}

/* ── GET INVOLVED ── */
.get-involved {
    background: var(--navy);
    padding: 100px 0;
}

.get-involved .section-label {
    color: var(--gold);
}

.get-involved .section-title {
    color: var(--white);
}

.get-involved .section-title em {
    color: var(--gold-light);
}

.get-involved .section-divider {
    background: var(--gold);
}

.get-involved-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.get-involved-card {
    background: var(--navy-mid);
    border: 1px solid rgba(201, 145, 58, 0.18);
    border-radius: 8px;
    padding: 40px;
    transition: 0.4s ease-in-out;
}

.get-involved-card:hover {
    border-color: rgba(201, 145, 58, 0.45);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Why It Matters */
.why-it-matters {
    background: linear-gradient(160deg, rgba(19, 34, 64, 0.9) 0%, rgba(12, 26, 46, 0.92) 100%), url(../../assets/images/hero.jpeg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgb(201 145 58);
    border-radius: 8px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.why-it-matters::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    border-radius: 20px 20px 0 0;
}

.wim-header {
    max-width: 720px;
}

.wim-intro {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    margin-top: 8px;
}

.wim-subtitle {
    font-family: "Kanit", sans-serif;
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 36px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201, 145, 58, 0.15);
}

.wim-pillars {
    display: flex;
    gap: 24px;
}

.wim-pillar {
    flex: 1;
    display: flex;
    gap: 18px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(201, 145, 58, 0.1);
    border-radius: 8px;
    padding: 28px 24px;
    transition: all 0.4s ease;
}

.wim-pillar:hover {
    background: rgba(201, 145, 58, 0.06);
    border-color: rgba(201, 145, 58, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.wim-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(201, 145, 58, 0.1);
    border: 1px solid rgba(201, 145, 58, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.wim-pillar:hover .wim-icon {
    background: rgba(201, 145, 58, 0.2);
    border-color: var(--gold);
    transform: scale(1.1);
}

.wim-icon svg {
    width: 20px;
    height: 20px;
    color: var(--gold-light);
}

.wim-pillar-title {
    font-family: "Kanit", sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 6px;
}

.wim-pillar-text p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
}

.get-involved-card-title {
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 20px;
    font-weight: 600;
}

.get-involved-card p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
    margin-bottom: 16px;
}

.get-involved-list {
    list-style: none;
    padding: 0;
    margin-top: 12px;
}

.get-involved-list li {
    position: relative;
    padding-left: 24px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 2.2;
}

.get-involved-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

.get-involved-list.collab-list li {
    font-size: 1.15rem;
    line-height: 2.4;
}

/* Collaboration Section */
.collab-section {
    background: var(--navy-mid);
    border: 1px solid rgba(201, 145, 58, 0.18);
    border-radius: 8px;
    padding: 40px;
}

.collab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
}

.collab-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 145, 58, 0.12);
    border-radius: 8px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.4s ease;
}

.collab-card:hover {
    background: rgba(201, 145, 58, 0.08);
    border-color: rgba(201, 145, 58, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.collab-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    background: rgba(201, 145, 58, 0.1);
    border: 1px solid rgba(201, 145, 58, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.collab-card:hover .collab-icon {
    background: rgba(201, 145, 58, 0.2);
    border-color: var(--gold);
    transform: scale(1.1);
}

.collab-icon svg {
    width: 24px;
    height: 24px;
    color: var(--gold-light);
}

.collab-label {
    font-family: "Kanit", sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
}

.collab-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.get-involved-cta {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

@media (max-width: 768px) {
    .get-involved-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .get-involved-card {
        padding: 28px 24px;
    }

    .collab-section {
        padding: 28px 24px;
    }

    .collab-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .wim-pillars {
        flex-direction: column;
        gap: 16px;
    }

    .why-it-matters {
        padding: 28px 24px;
    }

    .get-involved {
        padding: 60px 0;
    }
}

/* ── SUPPORT ── */
.support {
    background: linear-gradient(90deg, #172341 30%, #0d2b56 40%, transparent), url(../../assets/images/events-img4.jpeg);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.support::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(201, 145, 58, 0.08) 0%, transparent 60%);
}

.support-inner {
    position: relative;
    z-index: 1;
}

.support-inner .section-title {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
}

.support-inner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.9;
    max-width: 600px;
}

.support-btns {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.support-inner.reveal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.right-support img {
    width: 100%;
    border: 3px solid #ffb840;
}



/* ── SOCIAL ── */
.social-bar {
    background: var(--navy);
    border-top: 1px solid rgba(201, 145, 58, 0.2);
    padding: 60px 0;
}

.social-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
}

.follow-title {
    font-family: "Roboto", sans-serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(201, 145, 58, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.85rem;
    font-family: "Roboto", sans-serif;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.social-link:hover {
    color: var(--navy);
    border-color: var(--gold);
}

.social-link:hover::before {
    transform: translateY(0);
}

.social-link span {
    position: relative;
    z-index: 1;
}

.contact-email {
    font-family: "Roboto", sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-email:hover {
    color: var(--white);
}

/* FOOTER-CSS */

.site-footer {
    background: #011838;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 80%, rgba(201, 145, 58, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 145, 58, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* Torn top edge */
.footer-torn-top {
    width: 100%;
    line-height: 0;
    background: var(--navy-mid);
}

.footer-torn-top svg {
    display: block;
    width: 100%;
    height: 80px;
    background: var(--navy-mid);
}

/* Contact Us */
.contact-us {
    background: #4e463c;
    padding: 60px 0;
    text-align: center;
}

.contact-us-title {
    font-family: "Kanit", sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 40px;
}

.contact-us-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.contact-us-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
}

.contact-us-item svg {
    width: 28px;
    height: 28px;
    color: var(--white);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-us-item h4 {
    font-family: "Kanit", sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.contact-us-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.contact-us-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.contact-us-item a:hover {
    color: #fff;
}

/* Footer main body */
.footer-body {
    padding: 64px 60px 48px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 48px;
    align-items: start;
}

/* Brand column */
.footer-logo-mark {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.footer-logo-mark::before {
    content: '';
    position: absolute;
    inset: -3px;
    border: 1px solid rgba(201, 145, 58, 0.3);
}

.footer-logo-mark span {
    font-family: "Kanit", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 1px;
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--cream);
    line-height: 1.8;
    margin-bottom: 28px;
}

.footer-tagline strong {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
}

/* Social icons */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-social a svg {
    width: 16px;
    height: 16px;
    position: relative;
    z-index: 1;
}

.footer-social a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 0;
}

.footer-social a:hover {
    color: var(--navy);
    border-color: var(--gold);
}

.footer-social a:hover::before {
    transform: scale(1);
}

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

.footer-logo a {
    font-size: 30px;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
    display: block;
}

.footer-logo a span {
    font-size: 14px;
}

/* Nav columns */
.footer-col h4.footer-col-title,
.footer-newsletter h4.footer-col-title {
    font-family: "Kanit", sans-serif;
    font-size: 24px;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgb(201 145 58 / 63%);
    text-transform: capitalize;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0;
}

.footer-col ul li a {
    display: block;
    padding: 8px 0;
    font-size: 1rem;
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-col ul li a::before {
    content: '›';
    position: absolute;
    left: -14px;
    color: var(--gold);
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.footer-col ul li a:hover {
    color: var(--gold-light);
    padding-left: 14px;
}

.footer-col ul li a:hover::before {
    opacity: 1;
    left: 0;
}

/* Newsletter */
.footer-newsletter p {
    font-size: 0.9rem;
    color: var(--cream);
    line-height: 1.7;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    border: 1px solid rgba(201, 145, 58, 0.25);
    overflow: hidden;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

.newsletter-form:focus-within {
    border-color: var(--gold);
}

.newsletter-form input {
    flex: 1;
    color: var(--cream);
    border: 1px solid var(--cream);
    outline: none;
    padding: 12px 16px;
    font-size: 0.95rem;
    background: transparent;
}

.newsletter-form input::placeholder {
    color: #a0a0a0;
}

.newsletter-form input {
    border-right: none;
}

.newsletter-form button {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    border: none;
    cursor: pointer;
    padding: 12px 20px;
    font-family: "Kanit", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.newsletter-form button:hover {
    opacity: 0.85;
}

.footer-contact-info a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--cream);
    text-decoration: none;
    font-family: "Kanit", sans-serif;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.footer-contact-info a svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

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

/* Footer bottom bar */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px 60px 28px;
    border-top: 1px solid rgba(201, 145, 58, 0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: rgb(255 255 255);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: rgb(255 255 255);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Footer responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-newsletter {
        grid-column: span 2;
    }

    .footer-body {
        padding: 48px 40px 36px;
    }

    .footer-bottom {
        padding: 20px 40px 28px;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        display: block;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-newsletter {
        grid-column: span 1;
    }

    .footer-body {
        padding: 40px 20px 10px 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 12px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .footer-col {
        padding: 10px 0;
    }

    .footer-contact-info a {
        justify-content: center;
    }

    .tab-banner-wrap {
        position: relative;
        margin-bottom: 20px;
    }

    .events-gallery {
        margin-top: 30px;
    }


}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── HAMBURGER BUTTON ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    border: 1px solid rgba(201, 145, 58, 0.25);
    background: transparent;
    position: relative;
    z-index: 1100;
    flex-shrink: 0;
    transition: border-color 0.3s ease;
}

.hamburger:hover {
    border-color: rgba(201, 145, 58, 0.6);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--gold-light);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: center;
    position: absolute;
}

.hamburger span:nth-child(1) {
    transform: translateY(-7px);
}

.hamburger span:nth-child(2) {
    transform: translateY(0px);
    width: 14px;
    margin-left: -4px;
}

.hamburger span:nth-child(3) {
    transform: translateY(7px);
}

/* open state */
.hamburger.open span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
}

/* ── MOBILE MENU OVERLAY ── */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: rgba(8, 18, 32, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 40px 60px;
    border-left: 1px solid rgba(201, 145, 58, 0.15);
    transform: translateX(110%);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
}

.mobile-menu.open {
    transform: translateX(0);
}

/* menu backdrop */
.menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(3px);
}

.menu-backdrop.open {
    opacity: 1;
    pointer-events: all;
}

/* mobile nav brand inside panel */
.mobile-brand {
    position: absolute;
    top: 28px;
    left: 30px;
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--gold);
}

.mobile-brand img {
    max-width: 160px;
    height: auto;
    display: block;
}

.mobile-brand span {
    display: block;
    font-size: 10px;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
}

/* mobile nav links */
.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-links li {
    border-bottom: 1px solid rgba(201, 145, 58, 0.08);
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu.open .mobile-nav-links li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu.open .mobile-nav-links li:nth-child(1) {
    transition-delay: 0.08s;
}

.mobile-menu.open .mobile-nav-links li:nth-child(2) {
    transition-delay: 0.14s;
}

.mobile-menu.open .mobile-nav-links li:nth-child(3) {
    transition-delay: 0.20s;
}

.mobile-menu.open .mobile-nav-links li:nth-child(4) {
    transition-delay: 0.26s;
}

.mobile-menu.open .mobile-nav-links li:nth-child(5) {
    transition-delay: 0.32s;
}

.mobile-menu.open .mobile-nav-links li:nth-child(6) {
    transition-delay: 0.38s;
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    color: var(--cream);
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-links a .link-num {
    font-size: 0.6rem;
    color: var(--cream);
    letter-spacing: 1px;
    min-width: 18px;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:hover .link-num {
    color: var(--gold-light);
}

.mobile-nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.35s ease;
}

.mobile-nav-links a:hover::after {
    width: 100%;
}

/* mobile footer inside panel */
.mobile-menu-footer {
    position: absolute;
    bottom: 40px;
    left: 40px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s 0.45s ease, transform 0.5s 0.45s ease;
}

.mobile-menu.open .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-footer a {
    font-family: "Roboto", sans-serif;
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: var(--cream);
    text-decoration: none;
    display: flex;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .project-feature {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-sidebar {
        height: 350px;
        background-position: bottom;
    }

    .hero-content {
        max-width: 90%;
        width: 100%;
    }

}

@media (max-width: 900px) {

    .events-grid,
    .project-feature {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-pillars {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-banner-img {
        height: 300px;
    }

    .about-bottom-quote {
        padding: 28px 24px;
    }

    .ow-top,
    .ow-pillars {
        grid-template-columns: 1fr;
    }

    .project-sidebar {
        padding: 40px 20px 15px 20px;
    }

    .project-body {
        padding: 40px;
    }

    nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .container {
        padding: 0 20px;
    }

    .workshops-tabs {
        flex-wrap: wrap;
    }

    .tab-btn {
        padding: 14px 18px;
        font-size: 0.8rem;
    }

    footer {
        padding: 28px 0px;
    }

    .mobile-menu.open button#hamburger {
        display: flex !important;
        position: absolute;
        top: 10px;
        right: 20px;
    }

    .hero-content {
        max-width: 600px;
    }

    section {
        padding: 50px 0;
    }

    .project-sidebar:after {
        height: 120px;
    }

    .project-location {
        margin-bottom: 15px;
    }

    .project-year {
        font-size: 1.5rem;
    }

}


@media (max-width: 767px) {
    .hero-content {
        max-width: 100%;
        margin: 0 20px;
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
    }

    .ow-top {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }

    .ow-vision,
    .ow-mission {
        padding: 36px 28px 32px;
    }

    .ow-pillars {
        grid-template-columns: 1fr;
    }

    .ow-pillar {
        padding: 32px 24px;
    }

    .about-idea-challenges {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-idea-card {
        padding: 36px 28px 32px;
    }

    .about-idea-tracks {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-idea-approach {
        padding: 36px 24px;
    }

    .about-idea-approach-title {
        font-size: 1.5rem;
    }

    .about-idea-track {
        padding: 22px 20px;
    }

    .about-idea-track-arrow {
        display: none;
    }

    .about-idea-section {
        margin-top: 50px;
        padding-top: 40px;
    }

    .workshop-section-label {
        margin: 30px 0 28px;
        font-size: 24px;
        line-height: 1;
    }

    .event-block.reveal {
        padding: 20px;
    }

    .project-sidebar {
        height: 300px;
        background-position: bottom;
    }

    .project-body {
        padding: 20px;
    }

    .support-inner.reveal {
        grid-template-columns: 1fr;
    }

    .support {
        padding: 60px 0;
        background: linear-gradient(90deg, #0d2b56 60%, #0d2b56 100%, transparent), url(../../assets/images/events-img4.jpeg);
    }

    .tab-banner-overlay {
        padding: 0 20px;
    }

    .tab-banner-heading {
        font-size: 1.5rem;
    }

    .events-grid {
        margin-top: 30px;
    }

    .project-feature {
        margin-top: 30px;
    }

    .workshops .section-divider {
        margin: auto;
        margin-bottom: 30px;
        margin-top: 15px;
    }

    .hero-badge {
        margin-bottom: 20px;
    }

    .hero-subtitle {
        margin: 0 auto 20px;
    }

    .hero-scroll {
        display: none;
    }

    .about-banner-img {
        height: 240px;
    }

    .about-bottom-quote {
        padding: 24px 20px;
    }

    .about-bottom-quote-mark {
        font-size: 3rem;
    }

    .about-bottom-quote p {
        font-size: 1rem;
    }

    .about-header {
        margin-bottom: 40px;
    }

    .about-banner {
        margin-bottom: 40px;
    }

    .about-idea-card-title {
        font-size: 1.15rem;
    }

    .about-idea-lead {
        font-size: 1rem;
    }

    .ow-pillar-title {
        font-size: 1rem;
        line-height: 1.2;
    }

    footer.site-footer {
        padding-top: 0;
    }

    .workshop-card {
        padding: 20px 20px 20px 20px;
    }

    .btn-primary {
        padding: 14px 15px;
    }

    .btn-outline {
        padding: 14px 10px;
    }



    .workshop-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 575px) {
    .workshops-tabs {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .tab-btn {
        font-size: 1rem;
    }

    .event-block.reveal {
        padding: 30px 20px;
    }

    .event-block-title {
        margin-bottom: 10px;
    }

    .btn-outline {
        padding: 14px 10px;
        width: 100%;
        text-align: center;
        letter-spacing: 0.5px;
    }

    .btn-primary {
        padding: 14px 10px;
        width: 100%;
        text-align: center;
        letter-spacing: 0.5px;
    }

    .footer-logo a {
        font-size: 22px;
    }

    .footer-logo a span {
        font-size: 12px;
    }

    .newsletter-form input {
        width: 80%;
    }

    .hero-cta-group {
        gap: 10px;
    }

    .support-btns {
        flex-wrap: nowrap;
        gap: 6px;
    }

    .support-btns .btn-primary {
        font-size: 12px;
    }

    .support-btns .btn-outline {
        font-size: 12px;
    }

    .hero-badge {
        padding: 8px 0;
        font-size: 12px;
        width: 100%;
    }

    .hero-content {
        padding: 40px 10px;
        border-radius: 15px;
    }


}

@media (max-width: 676px) {
    .tl-left .tl-node, .tl-right .tl-node {
        left: -0px;
        right: auto;
    }
}