:root {
    --rust: #C85A3F;
    --terracotta: #E07A5F;
    --sand: #F4E8D8;
    --earth: #8B6F47;
    --deep-earth: #5A4A36;
    --cream: #FFF9F0;
    --olive: #7B8B5D;
    --charcoal: #2D2D2D;
}

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

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--charcoal);
    background: var(--cream);
    overflow-x: hidden;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
    z-index: 1000;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

header {
    background: var(--cream);
    border-bottom: 1px solid rgba(139, 111, 71, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(255, 249, 240, 0.95);
}

.header-top {
    background: var(--deep-earth);
    color: var(--cream);
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.header-top-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-info {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.contact-info a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--terracotta);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--cream);
    transition: transform 0.3s, color 0.3s;
    display: inline-block;
}

.social-links a:hover {
    color: var(--terracotta);
    transform: translateY(-2px);
}

.header-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Crimson Pro', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rust);
    text-decoration: none;
    letter-spacing: -0.02em;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

nav a {
    text-decoration: none;
    color: var(--deep-earth);
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rust);
    transition: width 0.3s;
}

nav a:hover {
    color: var(--rust);
}

nav a:hover::after {
    width: 100%;
}

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--sand) 0%, var(--cream) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 120%;
    background: radial-gradient(circle, rgba(200, 90, 63, 0.08) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-family: 'Crimson Pro', serif;
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--deep-earth);
    margin-bottom: 1.5rem;
    font-weight: 700;
    animation: fadeInUp 0.8s ease-out;
}

.hero-text h1 span {
    color: var(--rust);
    display: block;
    font-style: italic;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--earth);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.btn {
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--rust);
    color: white;
    border-color: var(--rust);
}

.btn-primary:hover {
    background: var(--deep-earth);
    border-color: var(--deep-earth);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200, 90, 63, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--deep-earth);
    border-color: var(--deep-earth);
}

.btn-secondary:hover {
    background: var(--deep-earth);
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    animation: fadeIn 1s ease-out 0.6s backwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--olive) 0%, var(--earth) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zm32.284 0L49.8 6.485 48.384 7.9l-7.9-7.9h2.83zM16.686 0L10.2 6.485 11.616 7.9l7.9-7.9h-2.83z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.hero-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 8px;
}

.stats {
    background: white;
    padding: 4rem 2rem;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    border-left: 3px solid var(--rust);
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Crimson Pro', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--rust);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--earth);
}

.intro-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.intro-content h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 2.5rem;
    color: var(--deep-earth);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--earth);
    margin-bottom: 1.5rem;
}

.intro-content .highlight {
    background: linear-gradient(120deg, rgba(200, 90, 63, 0.1) 0%, rgba(200, 90, 63, 0.15) 100%);
    padding: 1.5rem;
    border-left: 4px solid var(--rust);
    margin-top: 2rem;
    font-style: italic;
}

.intro-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--rust) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.intro-image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.05) 10px,
        rgba(255, 255, 255, 0.05) 20px
    );
    animation: slide 20s linear infinite;
}

.intro-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: top;
    border-radius: 8px;
}

@keyframes slide {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.pillars {
    background: var(--sand);
    padding: 6rem 2rem;
}

.pillars-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 2.8rem;
    color: var(--deep-earth);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--earth);
    max-width: 700px;
    margin: 0 auto;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.pillar-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 8px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--rust);
    transition: height 0.4s;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pillar-card:hover::before {
    height: 100%;
}

.pillar-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--rust) 0%, var(--terracotta) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.pillar-card h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.8rem;
    color: var(--deep-earth);
    margin-bottom: 1rem;
}

.pillar-card p {
    color: var(--earth);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.pillar-link {
    color: var(--rust);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.pillar-link:hover {
    gap: 1rem;
}

.collaboration {
    background: var(--deep-earth);
    color: white;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.collaboration::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(200, 90, 63, 0.1) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.collaboration-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.collaboration-content h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.collaboration-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.collaboration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.collaboration-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.collaboration-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.collaboration-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--terracotta);
}

footer {
    background: var(--charcoal);
    color: var(--sand);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--terracotta);
}

.footer-section p {
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--sand);
    text-decoration: none;
    transition: color 0.3s;
    opacity: 0.9;
}

.footer-links a:hover {
    color: var(--terracotta);
    opacity: 1;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(244, 232, 216, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    opacity: 0.7;
}

.page-hero {
    background: var(--deep-earth);
    color: white;
    padding: 8rem 2rem 5rem;
    text-align: center;
}

.page-hero-content h1 {
    font-family: 'Crimson Pro', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.origin-story {
    padding: 6rem 2rem;
    background: white;
}

.origin-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.origin-text h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 2.5rem;
    color: var(--deep-earth);
    margin-bottom: 2rem;
}

.origin-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--earth);
    margin-bottom: 1.5rem;
}

.quote-box {
    background: var(--sand);
    padding: 2rem;
    border-left: 4px solid var(--rust);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--deep-earth);
    margin-top: 2rem;
}

.origin-image .image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--earth) 0%, var(--olive) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 2rem;
    text-align: center;
}

.mission-vision {
    background: var(--sand);
    padding: 6rem 2rem;
}

.mission-vision-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.mv-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}

.mv-card:hover {
    transform: translateY(-10px);
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rust);
}

.mv-card h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.8rem;
    color: var(--deep-earth);
    margin-bottom: 1rem;
}

.mv-card p {
    color: var(--earth);
    line-height: 1.7;
}

.values {
    padding: 6rem 2rem;
    background: white;
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
}

.values-container h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 2.8rem;
    color: var(--deep-earth);
    text-align: center;
    margin-bottom: 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.value-item {
    padding: 2rem;
    border-left: 3px solid var(--rust);
    background: var(--sand);
    transition: all 0.3s;
}

.value-item:hover {
    transform: translateX(10px);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-item h4 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.3rem;
    color: var(--deep-earth);
    margin-bottom: 0.8rem;
}

.value-item p {
    color: var(--earth);
    line-height: 1.6;
}

.theory-of-change {
    background: var(--cream);
    padding: 6rem 2rem;
}

.toc-container {
    max-width: 1400px;
    margin: 0 auto;
}

.toc-container h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 2.8rem;
    color: var(--deep-earth);
    text-align: center;
    margin-bottom: 2rem;
}

.toc-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--earth);
    max-width: 900px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.toc-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.toc-step {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    transition: all 0.3s;
}

.toc-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--rust);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.toc-step h4 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.3rem;
    color: var(--deep-earth);
    margin-bottom: 0.8rem;
}

.toc-step p {
    color: var(--earth);
    line-height: 1.6;
    font-size: 0.95rem;
}

.toc-arrow {
    font-size: 2rem;
    color: var(--rust);
    font-weight: 700;
}

.team {
    padding: 6rem 2rem;
    background: white;
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
}

.team-container h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 2.8rem;
    color: var(--deep-earth);
    text-align: center;
    margin-bottom: 1.5rem;
}

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--earth);
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 3rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: var(--sand);
    border-radius: 8px;
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.member-photo {
    margin-bottom: 1.5rem;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    background: var(--earth);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.team-member h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.4rem;
    color: var(--deep-earth);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--earth);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.member-email {
    display: block;
    color: var(--rust);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.member-email:hover {
    color: var(--deep-earth);
}

.member-socials {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
}

.member-socials a {
    color: var(--earth);
    transition: all 0.3s;
}

.member-socials a:hover {
    color: var(--rust);
    transform: translateY(-2px);
}

.profile-download {
    background: var(--sand);
    padding: 5rem 2rem;
}

.download-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.download-container h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 2.5rem;
    color: var(--deep-earth);
    margin-bottom: 1.5rem;
}

.download-container p {
    font-size: 1.1rem;
    color: var(--earth);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.collaborate-cta {
    background: var(--cream);
    padding: 6rem 2rem;
}

.collaborate-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.collaborate-content h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 2.8rem;
    color: var(--deep-earth);
    margin-bottom: 1.5rem;
}

.collaborate-content > p {
    font-size: 1.2rem;
    color: var(--earth);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.collaborate-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.collab-option {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.collab-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.collab-option h4 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.4rem;
    color: var(--rust);
    margin-bottom: 0.8rem;
}

.collab-option p {
    color: var(--earth);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .intro-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .origin-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .toc-arrow {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    nav ul {
        gap: 1.5rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .header-top-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-text h1, .page-hero-content h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

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

    .toc-flow {
        flex-direction: column;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* OUR PILLARS PAGE STYLES */

.pillars-intro {
    background: white;
    padding: 4rem 2rem;
}

.pillars-intro-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.pillars-intro-container p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--earth);
}

.pillar-detail {
    padding: 6rem 2rem;
    background: white;
}

.pillar-detail.alt {
    background: var(--sand);
}

.pillar-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.pillar-detail.alt .pillar-detail-container {
    grid-template-columns: 1fr 1fr;
}

.pillar-detail-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.pillar-detail-icon {
    width: 80px;
    height: 80px;
    background: var(--rust);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.pillar-detail-content h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 2.5rem;
    color: var(--deep-earth);
    line-height: 1.2;
}

.situation-box {
    background: var(--cream);
    padding: 2.5rem;
    border-left: 4px solid var(--rust);
    margin-bottom: 3rem;
}

.situation-box h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.6rem;
    color: var(--deep-earth);
    margin-bottom: 1.5rem;
}

.situation-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--earth);
    margin-bottom: 1.2rem;
}

.situation-box p:last-child {
    margin-bottom: 0;
}

.aims-objectives {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.aim-block h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.4rem;
    color: var(--rust);
    margin-bottom: 1rem;
}

.aim-block h4 {
    font-size: 1.1rem;
    color: var(--deep-earth);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.aim-block ul {
    list-style: none;
    padding: 0;
}

.aim-block ul li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: var(--earth);
    line-height: 1.7;
}

.aim-block ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--rust);
    font-weight: 700;
}

.pillar-detail-image .image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--olive) 0%, var(--earth) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 2rem;
    text-align: center;
    font-size: 1rem;
    position: sticky;
    top: 120px;
}

.approaches-section {
    background: var(--deep-earth);
    color: white;
    padding: 6rem 2rem;
}

.approaches-container {
    max-width: 1400px;
    margin: 0 auto;
}

.approaches-container h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.approaches-intro {
    text-align: center;
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 4rem;
}

.approaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.approach-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.approach-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.approach-card h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.5rem;
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.approach-card p {
    line-height: 1.7;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .pillar-detail-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pillar-detail.alt .pillar-detail-container {
        grid-template-columns: 1fr;
    }

    .pillar-detail-image .image-placeholder {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .pillar-detail-header {
        flex-direction: column;
        text-align: center;
    }

    .pillar-detail-content h2 {
        font-size: 2rem;
    }

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

/* PARTNERSHIPS PAGE STYLES */

.partnerships-intro {
    background: white;
    padding: 5rem 2rem;
}

.partnerships-intro-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.partnerships-intro-container h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 2.2rem;
    color: var(--deep-earth);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.partnerships-intro-container p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--earth);
}

.partners-list {
    background: var(--cream);
    padding: 4rem 2rem;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.partner-card {
    background: white;
    border-radius: 8px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.partner-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-left-color: var(--rust);
}

.partner-logo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.logo-placeholder {
    width: 160px;
    height: 160px;
    background: var(--sand);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--earth);
    font-size: 0.9rem;
    border: 2px solid var(--cream);
}

.partner-content h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.8rem;
    color: var(--deep-earth);
    margin-bottom: 0.8rem;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--rust);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.partner-link:hover {
    gap: 0.8rem;
    color: var(--deep-earth);
}

.partner-link svg {
    transition: transform 0.3s;
}

.partner-link:hover svg {
    transform: translate(2px, -2px);
}

.partner-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--earth);
    margin-bottom: 1.2rem;
}

.partner-content p:last-of-type {
    margin-bottom: 0;
}

.coordination-note {
    margin-top: 1.5rem;
    padding: 1.2rem;
    background: var(--sand);
    border-left: 3px solid var(--rust);
    font-style: italic;
    color: var(--deep-earth);
    font-size: 1rem;
}

.partnership-cta {
    background: var(--deep-earth);
    color: white;
    padding: 6rem 2rem;
}

.partnership-cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.partnership-cta-content h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.partnership-cta-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

@media (max-width: 1024px) {
    .partner-card {
        grid-template-columns: 150px 1fr;
        gap: 2rem;
        padding: 2.5rem;
    }

    .logo-placeholder {
        width: 130px;
        height: 130px;
    }
}

@media (max-width: 768px) {
    .partner-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .partner-logo {
        justify-content: flex-start;
    }

    .logo-placeholder {
        width: 120px;
        height: 120px;
    }

    .partner-content h3 {
        font-size: 1.5rem;
    }

    .partnerships-intro-container h2 {
        font-size: 1.8rem;
    }
}

/* GALLERY PAGE STYLES */

.gallery-section {
    background: var(--cream);
    padding: 4rem 2rem 6rem;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: white;
}

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

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

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    color: var(--earth);
    font-size: 1rem;
    transition: all 0.3s;
}

.gallery-item:hover .gallery-placeholder {
    background: var(--earth);
    color: white;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 3rem;
    color: white;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--terracotta);
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: white;
    padding: 1.5rem;
    font-size: 1.1rem;
}

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 1rem 1.5rem;
    color: white;
    font-weight: bold;
    font-size: 2rem;
    transition: all 0.3s;
    user-select: none;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 4px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--rust);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 80vh;
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
        font-size: 2.5rem;
    }

    .lightbox-prev,
    .lightbox-next {
        padding: 0.8rem 1rem;
        font-size: 1.5rem;
    }

    .lightbox-prev {
        left: 0.5rem;
    }

    .lightbox-next {
        right: 0.5rem;
    }

    .lightbox-caption {
        font-size: 1rem;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-container {
        grid-template-columns: 1fr;
    }
}

/* CONTACT PAGE STYLES */

.contact-section {
    background: white;
    padding: 6rem 2rem;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info-block h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 2.5rem;
    color: var(--deep-earth);
    margin-bottom: 1.5rem;
}

.contact-info-block > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--earth);
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rust);
    flex-shrink: 0;
}

.contact-details h4 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.3rem;
    color: var(--deep-earth);
    margin-bottom: 0.5rem;
}

.contact-details a {
    display: block;
    color: var(--rust);
    text-decoration: none;
    margin-bottom: 0.3rem;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--deep-earth);
}

.contact-details p {
    color: var(--earth);
    line-height: 1.7;
}

.social-links-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-links-vertical a {
    color: var(--rust);
    text-decoration: none;
    transition: color 0.3s;
}

.social-links-vertical a:hover {
    color: var(--deep-earth);
}

.contact-form-block {
    background: var(--sand);
    padding: 3rem;
    border-radius: 8px;
}

.contact-form-block h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 2rem;
    color: var(--deep-earth);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--deep-earth);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid var(--cream);
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    background: white;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rust);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.ways-to-engage {
    background: var(--cream);
    padding: 6rem 2rem;
}

.engage-container {
    max-width: 1400px;
    margin: 0 auto;
}

.engage-container h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 2.8rem;
    color: var(--deep-earth);
    text-align: center;
    margin-bottom: 4rem;
}

.engage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.engage-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
    border-top: 4px solid transparent;
}

.engage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-top-color: var(--rust);
}

.engage-icon {
    width: 70px;
    height: 70px;
    background: var(--sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rust);
    margin: 0 auto 1.5rem;
}

.engage-card h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.6rem;
    color: var(--deep-earth);
    margin-bottom: 1rem;
}

.engage-card p {
    color: var(--earth);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .engage-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .contact-form-block {
        padding: 2rem;
    }

    .contact-info-block h2,
    .contact-form-block h3 {
        font-size: 1.8rem;
    }

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

    .engage-container h2 {
        font-size: 2.2rem;
    }
}

/* HAMBURGER MENU */

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

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

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 199;
}

.nav-overlay.open {
    display: block;
}

/* MOBILE */

@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 3rem; }
    .intro-section { grid-template-columns: 1fr; gap: 3rem; }
    .origin-container { grid-template-columns: 1fr; gap: 3rem; }
    .pillar-detail-container { grid-template-columns: 1fr; gap: 3rem; }
    .pillar-detail.alt .pillar-detail-container { grid-template-columns: 1fr; }
    .pillar-detail-image .image-placeholder { position: relative; top: 0; }
    .partner-card { grid-template-columns: 150px 1fr; gap: 2rem; padding: 2.5rem; }
    .toc-arrow { display: none; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .hero-text h1 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .header-top { display: none; }
    .header-main { padding: 1rem 1.5rem; }
    .nav-toggle { display: flex; }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: var(--deep-earth);
        z-index: 200;
        padding: 6rem 2rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    }

    nav.open { right: 0; }
    nav ul { flex-direction: column; gap: 0; }
    nav ul li { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
    nav a { display: block; padding: 1.2rem 0; color: var(--cream); font-size: 1.1rem; }
    nav a::after { display: none; }
    nav a:hover { color: var(--terracotta); }

    .hero { min-height: auto; padding: 2rem 0; }
    .hero-content { padding: 2rem 1.5rem; gap: 2rem; }
    .hero-text h1 { font-size: 2rem; }
    .hero-text p { font-size: 1rem; }
    .cta-buttons { flex-direction: column; }
    .btn { text-align: center; }

    .page-hero { padding: 5rem 1.5rem 3rem; }
    .page-hero-content h1 { font-size: 2rem; }
    .page-hero-content p { font-size: 1rem; }

    .stats { padding: 3rem 1.5rem; }
    .stats-container { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .stat-item { padding: 1.5rem 1rem; }
    .stat-number { font-size: 2.5rem; }

    .intro-section { padding: 3rem 1.5rem; }
    .intro-content h2 { font-size: 1.8rem; }

    .pillars { padding: 3rem 1.5rem; }
    .pillars-grid { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 2rem; }

    .collaboration { padding: 3rem 1.5rem; }
    .collaboration-content h2 { font-size: 2rem; }
    .collaboration-grid { grid-template-columns: 1fr; }

    .origin-story { padding: 3rem 1.5rem; }
    .origin-text h2 { font-size: 1.8rem; }
    .mission-vision { padding: 3rem 1.5rem; }
    .mission-vision-container { grid-template-columns: 1fr; }
    .values { padding: 3rem 1.5rem; }
    .values-container h2 { font-size: 2rem; }
    .values-grid { grid-template-columns: 1fr; }
    .theory-of-change { padding: 3rem 1.5rem; }
    .toc-container h2 { font-size: 2rem; }
    .toc-flow { flex-direction: column; }
    .toc-step { max-width: 100%; }
    .team { padding: 3rem 1.5rem; }
    .team-container h2 { font-size: 2rem; }
    .team-grid { grid-template-columns: 1fr; }
    .collaborate-cta { padding: 3rem 1.5rem; }
    .collaborate-content h2 { font-size: 2rem; }
    .collaborate-options { grid-template-columns: 1fr; }

    .pillars-intro { padding: 3rem 1.5rem; }
    .pillar-detail { padding: 3rem 1.5rem; }
    .pillar-detail-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .pillar-detail-content h2 { font-size: 1.8rem; }
    .approaches-section { padding: 3rem 1.5rem; }
    .approaches-container h2 { font-size: 2rem; }
    .approaches-grid { grid-template-columns: 1fr; }

    .partnerships-intro { padding: 3rem 1.5rem; }
    .partnerships-intro-container h2 { font-size: 1.8rem; }
    .partners-list { padding: 3rem 1.5rem; }
    .partner-card { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem; }
    .partner-logo { justify-content: flex-start; }
    .logo-placeholder { width: 120px; height: 120px; }
    .partner-content h3 { font-size: 1.5rem; }
    .partnership-cta { padding: 3rem 1.5rem; }
    .partnership-cta-content h2 { font-size: 2rem; }

    .gallery-section { padding: 3rem 1.5rem; }

    .contact-section { padding: 3rem 1.5rem; }
    .contact-info-block h2 { font-size: 1.8rem; }
    .contact-form-block { padding: 2rem 1.5rem; }
    .contact-form-block h3 { font-size: 1.8rem; }
    .ways-to-engage { padding: 3rem 1.5rem; }
    .engage-container h2 { font-size: 2rem; }
    .engage-grid { grid-template-columns: 1fr; }

    .footer-content { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
    .stats-container { grid-template-columns: 1fr; }
    .gallery-container { grid-template-columns: 1fr; }
    .hero-text h1, .page-hero-content h1 { font-size: 1.8rem; }
}