/* ============================================================
   AITIHYAKA EXPERIENCES – CSS Design System
   Primary: #1C2333 | Burnt Clay: #B65E3C | Sage: #7C8C6C
   Ochre: #D6A64C | Parchment: #F5EFE6 | Deep Ink: #11151E
   ============================================================ */

:root {
    --midnight: #1C2333;
    --clay: #B65E3C;
    --sage: #7C8C6C;
    --ochre: #D6A64C;
    --parchment: #F5EFE6;
    --deep-ink: #11151E;
    --text: #121212;
    --text-muted: #5a5a5a;
    --white: #ffffff;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Inter', -apple-system, sans-serif;
    --section-gap: 120px;
    --radius: 12px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--sans);
    color: var(--text);
    background: var(--parchment);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ── UTILITIES ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 40px; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
.hero-heading {
    font-family: var(--serif);
    font-size: clamp(4rem, 10vw, 10rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--midnight);
}
h1, h2, h3 { font-family: var(--serif); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 2rem); font-weight: 700; line-height: 1.2; }
h4 { font-family: var(--sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }
.editorial-text {
    font-family: var(--serif);
    font-size: clamp(1.4rem, 2.8vw, 2.4rem);
    line-height: 1.45;
    color: var(--midnight);
    font-weight: 400;
}
.section-label {
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clay);
    margin-bottom: 24px;
    display: block;
}
.body-text { font-size: 1.05rem; line-height: 1.8; color: var(--text-muted); }

/* ── NAVIGATION ── */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition);
}
.site-nav.scrolled {
    background: rgba(245, 239, 230, 0.96);
    backdrop-filter: blur(12px);
    padding: 16px 0;
    border-bottom: 1px solid rgba(28,35,51,0.08);
}
.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.nav-logo .logo-main {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    color: var(--midnight);
}
.nav-logo .logo-sub {
    font-family: var(--sans);
    font-size: 0.55rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--clay);
    margin-top: 2px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}
.nav-links > li { position: relative; }
.nav-links a {
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--midnight);
    opacity: 0.75;
    transition: opacity 0.25s;
    position: relative;
    padding-bottom: 3px;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--clay);
    transition: width 0.3s cubic-bezier(0.4,0,0.2,1);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { opacity: 1; }

/* Dropdowns */
.has-dropdown { position: relative; }
.dropdown {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--parchment);
    border: 1px solid rgba(28,35,51,0.1);
    border-radius: 8px;
    min-width: 180px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    overflow: hidden;
}
.has-dropdown:hover .dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}
.dropdown li a {
    display: block;
    padding: 12px 20px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    opacity: 0.8;
}
.dropdown li a:hover { background: rgba(28,35,51,0.04); opacity: 1; }
.dropdown li a::after { display: none; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--midnight);
    transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── BUTTONS ── */
.btn {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 2px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: var(--midnight);
    color: var(--white);
}
.btn-primary:hover { background: var(--clay); }
.btn-outline {
    background: transparent;
    color: var(--midnight);
    border: 1.5px solid var(--midnight);
}
.btn-outline:hover { background: var(--midnight); color: var(--white); }
.btn-clay { background: var(--clay); color: var(--white); }
.btn-clay:hover { background: #9d4f2f; }
.btn-text {
    background: none;
    color: var(--midnight);
    padding: 0;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--midnight);
    border-radius: 0;
}
.btn-text::after {
    content: ' →';
    transition: margin 0.3s;
}
.btn-text:hover::after { margin-left: 6px; }

/* ── HERO SECTION ── */
.hero {
    min-height: 100vh;
    background: var(--parchment);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 120px 40px 80px;
}
.hero-inner { position: relative; z-index: 2; max-width: 1100px; }
.hero .hero-heading { margin-bottom: 40px; }
.hero-sub {
    font-family: var(--sans);
    font-size: clamp(0.85rem, 1.5vw, 1.05rem);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--clay);
    margin-bottom: 20px;
}
.hero-desc {
    font-family: var(--serif);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.6;
    font-style: italic;
}
.hero-cta { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.hero-scroll-hint::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: var(--clay);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(0.6); }
}

/* ── CURSOR TRAIL ── */
.cursor-element {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    will-change: transform, opacity;
    transform-origin: center center;
    font-size: 40px;
    line-height: 1;
    user-select: none;
}

/* ── EDITORIAL INTRO ── */
.editorial-intro {
    padding: var(--section-gap) 0;
    background: var(--parchment);
}
.editorial-intro .container-narrow { text-align: center; }
.editorial-intro .editorial-text { margin-bottom: 40px; }
.editorial-intro .section-label { justify-content: center; display: flex; }

/* ── CORE PILLARS ── */
.core-pillars {
    padding: var(--section-gap) 0;
    background: var(--midnight);
}
.core-pillars .section-header {
    text-align: center;
    margin-bottom: 80px;
}
.core-pillars .section-header h2 { color: var(--parchment); }
.core-pillars .section-label { color: var(--ochre); }
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.pillar-card {
    padding: 72px 48px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    cursor: default;
}
.pillar-card:nth-child(1) { background: rgba(255,255,255,0.04); }
.pillar-card:nth-child(2) { background: rgba(182,94,60,0.15); }
.pillar-card:nth-child(3) { background: rgba(124,140,108,0.12); }
.pillar-card:hover { transform: translateY(-8px); }
.pillar-icon {
    font-size: 2.5rem;
    margin-bottom: 32px;
    display: block;
    opacity: 0.8;
}
.pillar-card h3 {
    color: var(--parchment);
    font-size: 2rem;
    margin-bottom: 20px;
}
.pillar-card p {
    color: rgba(245,239,230,0.65);
    font-size: 1rem;
    line-height: 1.75;
}
.pillar-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 3px;
    background: var(--clay);
    transition: width 0.4s;
}
.pillar-card:hover::before { width: 80px; }

/* ── THEMATIC GRID ── */
.thematic-grid-section {
    padding: var(--section-gap) 0;
    background: var(--parchment);
}
.thematic-grid-section .section-header {
    text-align: center;
    margin-bottom: 64px;
}
.thematic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
}
.theme-tile {
    padding: 52px 36px;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.theme-tile:nth-child(4n+1) { background: var(--midnight); }
.theme-tile:nth-child(4n+2) { background: var(--clay); }
.theme-tile:nth-child(4n+3) { background: var(--sage); }
.theme-tile:nth-child(4n+4) { background: var(--ochre); }
.theme-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.35s;
}
.theme-tile:hover { transform: scale(0.97); }
.theme-tile:hover::after { background: rgba(0,0,0,0.15); }
.theme-tile h3 {
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--white);
    position: relative;
    z-index: 1;
    line-height: 1.2;
    margin-bottom: 8px;
}
.theme-tile:nth-child(4n+4) h3 { color: var(--midnight); }
.theme-tile p {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    position: relative;
    z-index: 1;
}
.theme-tile:nth-child(4n+4) p { color: rgba(28,35,51,0.6); }
.theme-tile .tile-number {
    position: absolute;
    top: 32px; right: 32px;
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255,255,255,0.08);
    line-height: 1;
}
.theme-tile:nth-child(4n+4) .tile-number { color: rgba(28,35,51,0.06); }

/* ── EDITORIAL STATEMENT ── */
.editorial-statement {
    padding: var(--section-gap) 0;
    background: var(--ochre);
    position: relative;
    overflow: hidden;
}
.statement-frame {
    position: absolute;
    top: 40px; left: 40px; right: 40px; bottom: 40px;
    border: 1px solid rgba(17,21,30,0.15);
    pointer-events: none;
}
.statement-frame::before, .statement-frame::after {
    content: '';
    position: absolute;
    width: 20px; height: 20px;
    border-color: var(--deep-ink);
    border-style: solid;
}
.statement-frame::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.statement-frame::after { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
.editorial-statement .container-narrow { text-align: center; position: relative; z-index: 1; }
.editorial-statement .editorial-text { color: var(--deep-ink); font-size: clamp(1.5rem, 3vw, 2.6rem); }

/* ── FEATURED EXPERIENCES ── */
.featured-experiences {
    padding: var(--section-gap) 0;
    background: var(--parchment);
}
.featured-experiences .section-header { margin-bottom: 80px; }
.experience-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}
.experience-split:last-child { margin-bottom: 0; }
.experience-split.reverse { direction: rtl; }
.experience-split.reverse > * { direction: ltr; }
.experience-image {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--midnight);
    position: relative;
}
.experience-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.experience-image:hover img { transform: scale(1.04); }
.experience-image .img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: rgba(245,239,230,0.4);
    font-family: var(--serif);
    font-size: 1.2rem;
}
.experience-content { display: flex; flex-direction: column; gap: 24px; }
.experience-meta {
    display: flex;
    gap: 24px;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--clay);
    font-weight: 500;
}
.experience-meta span { display: flex; align-items: center; gap: 6px; }
.experience-content h3 { font-size: clamp(1.8rem, 3vw, 2.8rem); color: var(--midnight); }
.experience-content p { font-size: 1.05rem; line-height: 1.8; color: var(--text-muted); }

/* ── PARTNERS SECTION ── */
.partners {
    padding: var(--section-gap) 0;
    background: var(--deep-ink);
}
.partners .section-header { text-align: center; margin-bottom: 64px; }
.partners .section-header h2 { color: var(--parchment); }
.partners .section-label { color: var(--ochre); }
.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
}
.partner-item {
    padding: 40px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.06);
    opacity: 0.5;
    transition: opacity 0.3s;
    font-family: var(--serif);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
}
.partner-item:hover { opacity: 1; }

/* ── INQUIRY CTA ── */
.inquiry-cta {
    padding: var(--section-gap) 0;
    background: var(--clay);
    text-align: center;
}
.inquiry-cta h2 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: clamp(2rem, 4vw, 3.5rem);
}
.inquiry-cta p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 48px;
}
.inquiry-cta .btn-primary { background: var(--deep-ink); }
.inquiry-cta .btn-primary:hover { background: var(--midnight); }
.inquiry-cta .btn-outline { border-color: rgba(255,255,255,0.5); color: var(--white); }
.inquiry-cta .btn-outline:hover { background: rgba(255,255,255,0.15); }
.cta-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ── PAGE HERO BANNER ── */
.page-hero {
    padding: 180px 0 100px;
    background: var(--midnight);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clay), var(--ochre), var(--sage));
}
.page-hero h1 {
    font-size: clamp(3rem, 7vw, 7rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--parchment);
    margin-bottom: 32px;
}
.page-hero .hero-sub { color: var(--ochre); }
.page-hero .hero-desc { color: rgba(245,239,230,0.6); margin-bottom: 0; }

/* ── PROGRAMS / EXPERIENCES PAGES ── */
.page-intro { padding: 100px 0 0; }
.page-intro .editorial-text { color: var(--midnight); }
.programs-grid {
    padding: 80px 0 var(--section-gap);
}
.program-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 64px;
}
.program-card {
    background: var(--white);
    padding: 48px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s;
}
.program-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(0,0,0,0.08); }
.program-card .card-category {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clay);
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}
.program-card h3 { font-size: 1.5rem; color: var(--midnight); margin-bottom: 16px; }
.program-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 32px; }
.program-card .card-link { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--midnight); font-weight: 600; }
.program-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: var(--clay);
    transition: width 0.4s;
}
.program-card:hover::after { width: 100%; }
.program-card.featured { background: var(--midnight); }
.program-card.featured .card-category { color: var(--ochre); }
.program-card.featured h3 { color: var(--parchment); }
.program-card.featured p { color: rgba(245,239,230,0.6); }
.program-card.featured .card-link { color: var(--parchment); }

/* ── VALUES / COMMITMENTS ── */
.values-section {
    padding: var(--section-gap) 0;
    background: var(--deep-ink);
}
.values-section h2 { color: var(--parchment); margin-bottom: 60px; }
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.value-item {
    padding: 40px;
    border-left: 3px solid var(--clay);
    background: rgba(255,255,255,0.03);
}
.value-item h4 { color: var(--ochre); margin-bottom: 16px; }
.value-item p { color: rgba(245,239,230,0.65); font-size: 0.95rem; line-height: 1.75; }

/* ── ABOUT PAGE ── */
.about-story { padding: var(--section-gap) 0; }
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image {
    aspect-ratio: 3/4;
    border-radius: 12px;
    overflow: hidden;
    background: var(--midnight);
    position: relative;
}
.about-image .img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem;
    color: rgba(245,239,230,0.1);
}
.about-content h2 { color: var(--midnight); margin-bottom: 32px; }
.about-content p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 24px; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 64px;
}
.team-card { text-align: center; }
.team-card .team-avatar {
    width: 100px; height: 100px;
    border-radius: 50%;
    background: var(--sage);
    margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
}
.team-card h3 { font-size: 1.2rem; color: var(--midnight); margin-bottom: 6px; }
.team-card p { font-size: 0.85rem; color: var(--clay); letter-spacing: 0.08em; }

/* ── EXPERTISE PAGE ── */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    margin-top: 64px;
}
.expertise-item {
    padding: 60px 48px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.expertise-item:nth-child(odd) { background: var(--midnight); }
.expertise-item:nth-child(odd) h3 { color: var(--parchment); }
.expertise-item:nth-child(odd) p { color: rgba(245,239,230,0.65); }
.expertise-item:nth-child(odd) .expertise-num { color: rgba(245,239,230,0.06); }
.expertise-num {
    font-family: var(--serif);
    font-size: 5rem;
    font-weight: 900;
    color: rgba(28,35,51,0.05);
    position: absolute;
    top: 20px; right: 32px;
    line-height: 1;
}
.expertise-item h3 { font-size: 1.6rem; color: var(--midnight); margin-bottom: 20px; }
.expertise-item p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; }

/* ── BLOG PAGE ── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 80px 0 var(--section-gap);
}
.blog-card { display: flex; flex-direction: column; }
.blog-card-image {
    aspect-ratio: 16/10;
    background: var(--midnight);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 28px;
    position: relative;
}
.blog-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.blog-card:hover .blog-card-image img { transform: scale(1.04); }
.blog-card-image .img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    color: rgba(245,239,230,0.15);
}
.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--clay);
}
.blog-card h3 { font-size: 1.35rem; color: var(--midnight); margin-bottom: 12px; line-height: 1.3; }
.blog-card h3 a:hover { color: var(--clay); transition: color 0.25s; }
.blog-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; flex: 1; }

/* ── EXPLORE PAGE ── */
.explore-intro { padding: var(--section-gap) 0 60px; }
.explore-map {
    padding: 0 0 var(--section-gap);
}
.explore-regions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    margin-top: 64px;
}
.region-card {
    padding: 72px 56px;
    background: var(--midnight);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s;
}
.region-card:nth-child(even) { background: var(--sage); }
.region-card:hover { transform: scale(0.99); }
.region-card h3 { font-size: 2rem; color: var(--parchment); margin-bottom: 16px; }
.region-card p { color: rgba(245,239,230,0.65); font-size: 1rem; line-height: 1.75; }
.region-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245,239,230,0.6);
    margin-bottom: 24px;
}

/* ── CONTACT PAGE ── */
.contact-page { padding: var(--section-gap) 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}
.contact-info h2 { color: var(--midnight); margin-bottom: 24px; font-size: 2.2rem; }
.contact-info p { color: var(--text-muted); line-height: 1.8; margin-bottom: 40px; }
.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-item { display: flex; flex-direction: column; gap: 4px; }
.contact-item .label { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--clay); font-weight: 600; }
.contact-item .value { font-size: 1rem; color: var(--midnight); }
.contact-form-wrapper { background: var(--white); padding: 60px; border-radius: 4px; }
.contact-form-wrapper h3 { font-size: 1.8rem; color: var(--midnight); margin-bottom: 40px; }
.form-group { margin-bottom: 28px; }
.form-group label { display: block; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--text-muted); margin-bottom: 10px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 20px;
    background: var(--parchment);
    border: 1.5px solid rgba(28,35,51,0.12);
    border-radius: 4px;
    font-family: var(--sans);
    font-size: 0.95rem;
    color: var(--text);
    transition: border-color 0.25s;
    outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--clay);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-success { display: none; padding: 20px 28px; background: rgba(124,140,108,0.15); border-left: 3px solid var(--sage); margin-top: 20px; }
.form-success.visible { display: block; }
.form-success p { color: var(--sage); font-size: 0.9rem; }

/* ── TESTIMONIALS ── */
.testimonials-section {
    padding: var(--section-gap) 0;
    background: var(--midnight);
}
.testimonials-section h2 { color: var(--parchment); margin-bottom: 64px; text-align: center; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.testimonial-card { padding: 52px 40px; background: rgba(255,255,255,0.04); }
.testimonial-card blockquote {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(245,239,230,0.8);
    line-height: 1.7;
    margin-bottom: 32px;
}
.testimonial-card blockquote::before { content: '\201C'; font-size: 3rem; color: var(--clay); line-height: 0; vertical-align: -1.2rem; margin-right: 4px; }
.testimonial-author { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; }
.testimonial-author strong { display: block; color: var(--parchment); font-family: var(--sans); font-size: 0.9rem; }
.testimonial-author span { font-size: 0.75rem; color: var(--clay); letter-spacing: 0.08em; }

/* ── IMPACT SECTION ── */
.impact-section { padding: var(--section-gap) 0; background: var(--ochre); }
.impact-section h2 { color: var(--deep-ink); text-align: center; margin-bottom: 64px; }
.impact-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}
.stat-item { padding: 48px; text-align: center; background: rgba(17,21,30,0.06); }
.stat-item .stat-num {
    font-family: var(--serif);
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 900;
    color: var(--deep-ink);
    line-height: 1;
    margin-bottom: 12px;
}
.stat-item .stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(17,21,30,0.65);
    font-weight: 500;
}

/* ── FOOTER ── */
.site-footer { background: var(--deep-ink); }
.footer-top { padding: 100px 0 80px; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}
.footer-logo { display: flex; flex-direction: column; line-height: 1; margin-bottom: 24px; }
.footer-logo .logo-main {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    color: var(--parchment);
}
.footer-logo .logo-sub {
    font-family: var(--sans);
    font-size: 0.55rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--clay);
    margin-top: 4px;
}
.footer-tagline {
    font-family: var(--serif);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--ochre);
    margin-bottom: 20px;
}
.footer-desc { font-size: 0.88rem; color: rgba(245,239,230,0.5); line-height: 1.7; }
.footer-grid h4 { color: var(--ochre); margin-bottom: 28px; font-size: 0.65rem; letter-spacing: 0.2em; }
.footer-nav ul, .footer-programs ul { display: flex; flex-direction: column; gap: 14px; }
.footer-nav a, .footer-programs a {
    font-size: 0.88rem;
    color: rgba(245,239,230,0.55);
    transition: color 0.25s;
}
.footer-nav a:hover, .footer-programs a:hover { color: var(--parchment); }
.footer-contact p { font-size: 0.88rem; color: rgba(245,239,230,0.55); margin-bottom: 24px; line-height: 1.6; }
.footer-cta {
    display: inline-block;
    padding: 12px 28px;
    background: var(--clay);
    color: var(--white);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    transition: background 0.25s;
    margin-bottom: 28px;
}
.footer-cta:hover { background: #9d4f2f; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(245,239,230,0.5);
    transition: all 0.25s;
    border-radius: 2px;
}
.footer-social a:hover { border-color: var(--clay); color: var(--clay); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 28px 0;
    display: flex;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(245,239,230,0.3); }

/* ── ANIMATIONS ── */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.9s cubic-bezier(0.4,0,0.2,1), transform 0.9s cubic-bezier(0.4,0,0.2,1);
}
.slide-left.in-view { opacity: 1; transform: translateX(0); }
.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.9s cubic-bezier(0.4,0,0.2,1), transform 0.9s cubic-bezier(0.4,0,0.2,1);
}
.slide-right.in-view { opacity: 1; transform: translateX(0); }

/* ── ADMIN ── */
.admin-body { font-family: var(--sans); background: #f0f0f0; min-height: 100vh; }
.admin-login {
    min-height: 100vh;
    background: var(--midnight);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.login-box {
    background: var(--parchment);
    padding: 60px;
    border-radius: 8px;
    width: 100%;
    max-width: 440px;
}
.login-box .logo { text-align: center; margin-bottom: 48px; }
.login-box .logo .logo-main { font-family: var(--serif); font-size: 1.8rem; font-weight: 900; color: var(--midnight); letter-spacing: 0.06em; display: block; }
.login-box .logo .logo-sub { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--clay); margin-top: 4px; display: block; }
.login-box h2 { font-size: 1.4rem; color: var(--midnight); margin-bottom: 36px; font-weight: 700; }
.admin-header {
    background: var(--midnight);
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.admin-header .logo-main { font-family: var(--serif); font-size: 1.1rem; font-weight: 900; color: var(--parchment); letter-spacing: 0.06em; }
.admin-header .logo-sub { font-size: 0.5rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--clay); }
.admin-header a { color: rgba(245,239,230,0.6); font-size: 0.8rem; text-decoration: none; }
.admin-header a:hover { color: var(--parchment); }
.admin-wrapper { display: flex; min-height: calc(100vh - 64px); }
.admin-sidebar {
    width: 240px;
    background: var(--deep-ink);
    padding: 32px 0;
    flex-shrink: 0;
}
.admin-sidebar ul { list-style: none; padding: 0; margin: 0; }
.admin-sidebar li a {
    display: block;
    padding: 14px 28px;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    color: rgba(245,239,230,0.5);
    transition: all 0.25s;
    border-left: 3px solid transparent;
}
.admin-sidebar li a:hover, .admin-sidebar li a.active {
    color: var(--parchment);
    background: rgba(255,255,255,0.05);
    border-left-color: var(--clay);
}
.admin-sidebar .sidebar-label {
    display: block;
    padding: 16px 28px 8px;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245,239,230,0.25);
    margin-top: 16px;
}
.admin-content { flex: 1; padding: 48px; background: #f5f5f0; }
.admin-content h1 { font-size: 2rem; color: var(--midnight); margin-bottom: 8px; }
.admin-content .page-sub { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 40px; }
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 48px; }
.stat-card { background: var(--white); padding: 28px 32px; border-radius: 6px; border-left: 4px solid var(--clay); }
.stat-card .s-num { font-family: var(--serif); font-size: 2.5rem; font-weight: 900; color: var(--midnight); line-height: 1; }
.stat-card .s-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-top: 8px; }
.admin-table-wrap { background: var(--white); border-radius: 6px; overflow: hidden; margin-bottom: 32px; }
.admin-table-header { padding: 20px 28px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; }
.admin-table-header h3 { font-size: 0.9rem; font-weight: 600; color: var(--midnight); }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 14px 28px; text-align: left; font-size: 0.85rem; }
th { background: #fafaf8; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; border-bottom: 1px solid #eee; }
td { border-bottom: 1px solid #f0f0f0; color: var(--text); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: #fafaf8; }
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 2px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.badge-published { background: rgba(124,140,108,0.15); color: #5a7050; }
.badge-draft { background: rgba(182,94,60,0.12); color: var(--clay); }
.badge-new { background: rgba(214,166,76,0.2); color: #8a6a1a; }
.admin-form { background: var(--white); padding: 48px; border-radius: 6px; }
.admin-form h2 { font-size: 1.5rem; color: var(--midnight); margin-bottom: 36px; }
.alert { padding: 14px 20px; border-radius: 4px; margin-bottom: 24px; font-size: 0.88rem; }
.alert-success { background: rgba(124,140,108,0.15); border-left: 3px solid var(--sage); color: #4a6040; }
.alert-error { background: rgba(182,94,60,0.12); border-left: 3px solid var(--clay); color: var(--clay); }
.action-btns { display: flex; gap: 8px; }
.action-btns a { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--clay); font-weight: 600; }
.action-btns a:hover { text-decoration: underline; }
.action-btns .del { color: #cc3333; }
.btn-sm { padding: 8px 20px; font-size: 0.72rem; }

/* ── NOTICE / MESSAGES ── */
.no-results {
    padding: 80px 40px;
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    :root { --section-gap: 80px; }
    .thematic-grid { grid-template-columns: repeat(3, 1fr); }
    .partners-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}
@media (max-width: 900px) {
    .container, .container-narrow { padding: 0 24px; }
    .pillars-grid { grid-template-columns: 1fr; }
    .thematic-grid { grid-template-columns: repeat(2, 1fr); }
    .experience-split, .experience-split.reverse { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
    .about-split, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .program-cards { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .impact-stats { grid-template-columns: repeat(2, 1fr); }
    .explore-regions { grid-template-columns: 1fr; }
    .expertise-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .admin-stats { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    :root { --section-gap: 60px; }
    .nav-links { 
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--midnight);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 999;
    }
    .nav-links.open { display: flex; }
    .nav-links a { color: var(--parchment); font-size: 1rem; }
    .dropdown { position: static; transform: none; opacity: 1; pointer-events: all; background: transparent; border: none; box-shadow: none; }
    .dropdown li a { color: rgba(245,239,230,0.6); }
    .nav-toggle { display: flex; z-index: 1001; }
    .thematic-grid { grid-template-columns: repeat(2, 1fr); }
    .theme-tile { aspect-ratio: auto; padding: 36px 24px; }
    .program-cards { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .impact-stats { grid-template-columns: 1fr 1fr; }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-form-wrapper { padding: 36px 24px; }
    .admin-wrapper { flex-direction: column; }
    .admin-sidebar { width: 100%; }
    .admin-content { padding: 24px; }
    .admin-stats { grid-template-columns: 1fr 1fr; }
    .pillar-card { padding: 48px 32px; }
    .hero-cta { flex-direction: column; align-items: center; }
    .team-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .thematic-grid { grid-template-columns: 1fr 1fr; }
    .impact-stats { grid-template-columns: 1fr; }
    .admin-stats { grid-template-columns: 1fr; }
}
