@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Myanmar:wght@400;700&family=Pyidaungsu:wght@400;700&family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=DM+Sans:wght@300;400;500;600&family=DM+Serif+Display:ital@0;1&display=swap');

/* ═══════════════════════════════════════════════════════════
   DESIGN TOKENS
════════════════════════════════════════════════════════════ */
:root {
    --bg-navy:        #0B252A;
    --navy-mid:       #0E2E35;
    --card-navy:      #122F36;
    --card-hover:     #163840;
    --text-color:     #E2ECEE;
    --text-muted:     #8BADB5;
    --highlight-gold: #F3C642;
    --teal-bright:    #2BBCCC;
    --teal-dim:       #1A8A97;
    --border-color:   #1F4F56;
    --border-light:   #2A6570;
    --accent-rust:    #C95B34;
}

/* ═══════════════════════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--bg-navy);
    color: var(--text-color);
    font-family: 'DM Sans', 'Pyidaungsu', 'Padauk', 'Noto Serif Myanmar', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
img { display: block; max-width: 100%; }
a { transition: color 0.2s; }

/* ═══════════════════════════════════════════════════════════
   HEADER / NAV
════════════════════════════════════════════════════════════ */
header {
    background: var(--navy-mid);
    border-bottom: 2px solid var(--highlight-gold);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 200;
    backdrop-filter: blur(8px);
}
.nav-bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
img.logo { height: 44px; width: auto; }
nav { display: flex; gap: 6px; align-items: center; }
nav a, .nav-dropdown > button {
    color: var(--text-color); text-decoration: none; font-size: 0.88rem; font-weight: 500;
    letter-spacing: 0.03em; opacity: 0.85; padding: 8px 12px; border-radius: 4px;
    transition: color 0.2s, opacity 0.2s, background 0.2s; background: none; border: none;
    cursor: pointer; font-family: 'DM Sans', sans-serif;
}
nav a:hover, .nav-dropdown > button:hover {
    color: var(--highlight-gold); opacity: 1; background: rgba(243,198,66,0.08);
}
nav a.active, .nav-dropdown > button.active { color: var(--highlight-gold); opacity: 1; }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
    display: none; position: absolute; top: calc(100% + 6px); left: 0; background: var(--navy-mid);
    border: 1px solid var(--border-light); border-top: 2px solid var(--highlight-gold); border-radius: 6px;
    min-width: 240px; box-shadow: 0 12px 40px rgba(0,0,0,0.5); padding: 6px 0; z-index: 300;
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
    display: block; padding: 10px 18px; color: var(--text-color); text-decoration: none;
    font-size: 0.86rem; opacity: 0.85; transition: background 0.15s, color 0.15s; border-radius: 0;
}
.nav-dropdown-menu a:hover { background: rgba(43,188,204,0.1); color: var(--teal-bright); opacity: 1; }
.dropdown-caret { display: inline-block; margin-left: 4px; font-size: 0.7em; transition: transform 0.2s; }
.nav-dropdown.open .dropdown-caret { transform: rotate(180deg); }

/* #lang-btn replaced by .lang-toggle in nav.js */

/* ═══════════════════════════════════════════════════════════
   PAGE BANNER
════════════════════════════════════════════════════════════ */
.page-banner {
    background: var(--card-navy); border-bottom: 3px solid var(--highlight-gold);
    padding: 60px 0 48px; position: relative; overflow: hidden;
}
.page-banner::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(43,188,204,0.06) 0%, transparent 60%); pointer-events: none;
}
.page-banner .breadcrumb { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 14px; letter-spacing: 0.08em; }
.page-banner .breadcrumb a { color: var(--text-muted); text-decoration: none; }
.page-banner .breadcrumb a:hover { color: var(--highlight-gold); }
.page-banner .breadcrumb span { color: var(--highlight-gold); margin: 0 6px; }
.page-banner h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; line-height: 1.15; margin-bottom: 14px; }
.page-banner p.lead { font-size: 1rem; opacity: 0.78; max-width: 620px; line-height: 1.75; }

/* ═══════════════════════════════════════════════════════════
   HERO 
════════════════════════════════════════════════════════════ */
.hero { position: relative; min-height: 520px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg {
    position: absolute; inset: 0; background: url('images/cafe.jpg') center/cover no-repeat;
    filter: brightness(0.28) saturate(0.5); transform: scale(1.04); transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1.0); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,37,42,0.55) 0%, rgba(11,37,42,0.72) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 760px; text-align: center; }
.hero-content .tagline {
    display: inline-block; background: var(--highlight-gold); color: var(--bg-navy);
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
    padding: 4px 12px; border-radius: 2px; margin-bottom: 22px;
}
.hero-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-weight: 900; line-height: 1.2; margin-bottom: 16px; color: #fff; }
.hero-content h1.hero-title-my { font-family: 'Pyidaungsu', 'Padauk', 'Noto Serif Myanmar', serif; font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 700; line-height: 1.5; color: #fff; }
.hero-content .mm-title { font-family: 'Noto Serif Myanmar', serif; font-size: clamp(0.95rem, 2.2vw, 1.3rem); color: var(--highlight-gold); margin-bottom: 22px; font-weight: 400; }
.hero-content p.hero-desc { font-size: 1rem; opacity: 0.86; max-width: 560px; margin: 0 auto 34px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ═══════════════════════════════════════════════════════════
   BANNERS & LAYOUTS
════════════════════════════════════════════════════════════ */
.yellow-banner { background: var(--highlight-gold); color: #000; padding: 52px 0; text-align: center; }
.yellow-banner h2 { font-family: 'Playfair Display', serif; font-size: 2.1rem; font-weight: 900; margin-bottom: 12px; }
.yellow-banner p { font-size: 1rem; max-width: 580px; margin: 0 auto; opacity: 0.82; font-weight: 500; }

.photo-mosaic { padding: 64px 0; }
.photo-mosaic-header { margin-bottom: 36px; }
.section-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--highlight-gold); margin-bottom: 10px; }
.photo-mosaic-header h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; }

.cross-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; grid-template-rows: 280px 200px; gap: 8px; }
.cross-grid .photo-cell { overflow: hidden; border-radius: 6px; position: relative; }
.cross-grid .photo-cell img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.75) brightness(0.88); transition: filter 0.5s ease, transform 0.5s ease; }
.cross-grid .photo-cell:hover img { filter: saturate(1) brightness(1); transform: scale(1.04); }
.photo-cell--tall { grid-column: 1 / 2; grid-row: 1 / 3; }
.photo-cell--wide { grid-column: 2 / 4; grid-row: 1 / 2; }
.photo-cell--sq-a { grid-column: 2 / 3; grid-row: 2 / 3; }
.photo-cell--sq-b { grid-column: 3 / 4; grid-row: 2 / 3; }

.photo-cell .photo-cap {
    position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(11,37,42,0.85));
    padding: 20px 14px 12px; font-size: 0.76rem; color: rgba(226,236,238,0.8); opacity: 0; transition: opacity 0.3s; font-style: italic;
}
.photo-cell:hover .photo-cap { opacity: 1; }

.alt-grid { display: grid; grid-template-columns: 1fr 1.4fr 1fr; grid-template-rows: 240px 240px; gap: 8px; margin-top: 8px; }
.alt-grid .photo-cell img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.75) brightness(0.88); transition: filter 0.5s ease, transform 0.5s ease; }
.alt-grid .photo-cell:hover img { filter: saturate(1) brightness(1); transform: scale(1.04); }
.alt-cell--left-tall { grid-column: 1/2; grid-row: 1/3; }
.alt-cell--center-top { grid-column: 2/3; grid-row: 1/2; }
.alt-cell--right-mid { grid-column: 3/4; grid-row: 1/2; }
.alt-cell--center-bottom { grid-column: 2/4; grid-row: 2/3; }

.vision-section { padding: 72px 0; border-bottom: 1px solid var(--border-color); }
.vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.vision-section h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; margin-bottom: 20px; color: var(--teal-bright); }
.vision-grid p { font-size: 0.96rem; opacity: 0.84; line-height: 1.85; }

/* Program cards used in vision-grid on index */
.vision-card {
    background: var(--card-navy);
    border-radius: 8px;
    border-top: 3px solid var(--teal-bright);
    padding: 32px 28px 34px;
    display: flex;
    flex-direction: column;
}
.vision-card .vision-icon { font-size: 1.8rem; margin-bottom: 14px; }
.vision-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; color: #fff; }
.vision-card p { font-size: 0.9rem; opacity: 0.78; line-height: 1.7; flex: 1; }

.mission-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.mission-list li { display: flex; gap: 12px; font-size: 0.95rem; opacity: 0.84; line-height: 1.65; }
.mission-list li::before { content: '▸'; color: var(--highlight-gold); flex-shrink: 0; margin-top: 2px; }

.content-section { padding: 72px 0; }
.section-header { margin-bottom: 40px; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 700; margin-top: 8px; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.program-card {
    background: var(--card-navy); border-radius: 10px; border-top: 3px solid var(--highlight-gold); overflow: hidden;
    transition: transform 0.25s, background 0.25s; text-decoration: none; color: inherit; display: flex; flex-direction: column;
}
.program-card:hover { transform: translateY(-5px); background: var(--card-hover); }
.program-card img { width: 100%; height: 200px; object-fit: cover; filter: saturate(0.75) brightness(0.88); transition: filter 0.35s; }
.program-card:hover img { filter: saturate(1) brightness(1); }
.card-body { padding: 22px 20px 26px; flex: 1; display: flex; flex-direction: column; }
.card-icon { font-size: 1.4rem; margin-bottom: 10px; }
.card-body h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.card-body p { font-size: 0.88rem; opacity: 0.75; line-height: 1.65; flex: 1; }
.card-link { display: inline-block; margin-top: 16px; font-size: 0.82rem; font-weight: 600; color: var(--highlight-gold); text-decoration: none; letter-spacing: 0.04em; }
.card-link:hover { text-decoration: underline; }

.history-strip { background: var(--card-navy); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); padding: 64px 0; }
.history-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.history-inner img { width: 100%; border-radius: 8px; border: 1px solid var(--border-light); filter: sepia(0.25); }
.history-text h2 { font-family: 'Playfair Display', serif; font-size: 1.7rem; margin-bottom: 16px; }
.history-text p { font-size: 0.93rem; opacity: 0.8; line-height: 1.8; margin-bottom: 8px; }

/* ═══════════════════════════════════════════════════════════
   CAFE / OPINION LIST
════════════════════════════════════════════════════════════ */
.cafe-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; padding: 56px 0; }
.cafe-card {
    background: var(--card-navy); border-radius: 10px; border-left: 4px solid var(--teal-bright); padding: 28px 26px 30px;
    transition: transform 0.25s, background 0.25s; cursor: pointer; text-decoration: none; color: inherit; display: block;
}
.cafe-card:hover { transform: translateY(-4px); background: var(--card-hover); }
.cafe-card .cafe-icon { font-size: 2rem; margin-bottom: 16px; }
.cafe-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 12px; color: #fff; }
.cafe-card p { font-size: 0.88rem; opacity: 0.75; line-height: 1.65; margin-bottom: 18px; }
.cafe-card .cafe-link { font-size: 0.82rem; font-weight: 600; color: var(--teal-bright); letter-spacing: 0.04em; }

.opinion-grid { display: grid; grid-template-columns: 1fr; gap: 0; padding: 48px 0 64px; }
.opinion-item { display: grid; grid-template-columns: 100px 1fr; gap: 28px; align-items: start; padding: 32px 0; border-bottom: 1px solid var(--border-color); text-decoration: none; color: inherit; transition: background 0.2s; }
.opinion-item:first-child { border-top: 1px solid var(--border-color); }
.opinion-item:hover { background: rgba(43,188,204,0.04); padding-left: 12px; padding-right: 12px; margin: 0 -12px; }
.opinion-date { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.3; padding-top: 4px; }
.opinion-meta { flex: 1; }
.opinion-category { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-bright); border: 1px solid var(--teal-dim); padding: 2px 8px; border-radius: 2px; margin-bottom: 10px; }
.opinion-item h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.3; transition: color 0.2s; }
.opinion-item:hover h3 { color: var(--highlight-gold); }
.opinion-item p.excerpt { font-size: 0.88rem; opacity: 0.72; line-height: 1.65; margin-bottom: 10px; }
.opinion-author { font-size: 0.8rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════
   ARTICLE VIEW
════════════════════════════════════════════════════════════ */
.article-hero-img { width: 100%; height: 400px; object-fit: cover; border-radius: 8px; margin-bottom: 40px; }
.article-wrapper { display: grid; grid-template-columns: 1fr 300px; gap: 56px; padding: 20px 0 80px; align-items: start; }
.article-body h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 900; line-height: 1.15; margin-bottom: 16px; }
.article-byline { display: flex; align-items: center; gap: 18px; padding: 16px 0 28px; border-bottom: 1px solid var(--border-color); margin-bottom: 32px; font-size: 0.85rem; color: var(--text-muted); flex-wrap: wrap; }
.article-byline strong { color: var(--text-color); }
.article-body .article-text h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; margin: 36px 0 14px; color: var(--teal-bright); }
.article-body .article-text p { font-size: 0.97rem; line-height: 1.85; opacity: 0.88; margin-bottom: 18px; }
.article-body .article-text blockquote { border-left: 3px solid var(--highlight-gold); padding: 4px 0 4px 20px; margin: 28px 0; font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.1rem; opacity: 0.85; line-height: 1.7; }
.article-sidebar { position: sticky; top: 80px; }
.sidebar-box { background: var(--card-navy); border-radius: 8px; border-top: 3px solid var(--teal-bright); padding: 22px 20px 24px; margin-bottom: 20px; }
.sidebar-box h4 { font-family: 'Playfair Display', serif; font-size: 1rem; margin-bottom: 14px; color: var(--teal-bright); }
.sidebar-box ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.sidebar-box ul li a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; line-height: 1.4; transition: color 0.2s; }
.sidebar-box ul li a:hover { color: var(--highlight-gold); }

/* ═══════════════════════════════════════════════════════════
   SESSIONS LIST
════════════════════════════════════════════════════════════ */
.session-list { padding: 48px 0 72px; display: flex; flex-direction: column; gap: 0; }
.session-item { display: grid; grid-template-columns: 80px 1fr auto; gap: 24px; align-items: start; padding: 28px 0; border-bottom: 1px solid var(--border-color); }
.session-item:first-child { border-top: 1px solid var(--border-color); }
.session-number { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; color: var(--border-light); line-height: 1.1; padding-top: 4px; }
.session-content h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; color: #fff; }
.session-content p { font-size: 0.88rem; opacity: 0.75; line-height: 1.65; }
.session-content .session-meta { font-size: 0.78rem; color: var(--text-muted); margin-top: 8px; display: flex; gap: 16px; flex-wrap: wrap; }
.session-tag { display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; background: rgba(43,188,204,0.12); color: var(--teal-bright); border: 1px solid var(--teal-dim); padding: 2px 8px; border-radius: 2px; white-space: nowrap; margin-top: 6px; }

/* ═══════════════════════════════════════════════════════════
   BUTTONS & MISC
════════════════════════════════════════════════════════════ */
.pullquote-band { background: var(--highlight-gold); padding: 52px 0; text-align: center; }
.pullquote-band blockquote { font-family: 'Playfair Display', serif; font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-style: italic; color: #000; max-width: 720px; margin: 0 auto; line-height: 1.55; }
.pullquote-band cite { display: block; font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-style: normal; font-weight: 600; letter-spacing: 0.08em; opacity: 0.65; margin-top: 16px; text-transform: uppercase; }

.btn-cta { display: inline-block; background: var(--highlight-gold); color: var(--bg-navy); padding: 12px 30px; border-radius: 5px; text-decoration: none; font-weight: 700; font-size: 0.92rem; letter-spacing: 0.03em; transition: opacity 0.2s, transform 0.2s; }
.btn-cta:hover { opacity: 0.88; transform: translateY(-2px); }
.btn-outline { display: inline-block; border: 1.5px solid var(--highlight-gold); color: var(--highlight-gold); padding: 11px 28px; border-radius: 5px; text-decoration: none; font-weight: 600; font-size: 0.92rem; transition: background 0.2s, color 0.2s; }
.btn-outline:hover { background: var(--highlight-gold); color: var(--bg-navy); }


/* ═══════════════════════════════════════════════════════════
   PROGRAMS GRID (4-up on index)
════════════════════════════════════════════════════════════ */
.programs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; border: 1px solid var(--border-color); border-radius: 8px; overflow: hidden; }
.program-block { display: flex; gap: 22px; align-items: flex-start; padding: 36px 32px; background: var(--card-navy); border: 1px solid var(--border-color); transition: background 0.2s; }
.program-block:hover { background: var(--card-hover); }
.prog-icon { font-size: 2rem; flex-shrink: 0; margin-top: 2px; }
.prog-body h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.prog-body p { font-size: 0.9rem; opacity: 0.76; line-height: 1.7; margin-bottom: 14px; }
.prog-link { font-size: 0.83rem; font-weight: 600; color: var(--teal-bright); text-decoration: none; letter-spacing: 0.03em; }
.prog-link:hover { color: var(--highlight-gold); }
.bilingual-block { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; border-top: 1px solid var(--border-color); padding-top: 28px; }
.mission-bilingual { display: flex; flex-direction: column; gap: 28px; }
.mission-item { display: flex; gap: 16px; align-items: flex-start; padding: 24px; background: var(--card-navy); border-radius: 6px; border-left: 3px solid var(--highlight-gold); }
.mission-bullet { color: var(--highlight-gold); font-size: 1.1rem; flex-shrink: 0; margin-top: 3px; }
.commitment-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.commitment-list li { display: flex; flex-direction: column; font-size: 0.93rem; opacity: 0.85; line-height: 1.75; padding: 20px 24px; background: var(--bg-navy); border-radius: 6px; border-left: 3px solid var(--teal-bright); }
.commitment-list li strong { color: var(--teal-bright); margin-bottom: 4px; font-size: 0.88rem; }
.contact-row { display: flex; flex-wrap: wrap; gap: 24px; font-size: 0.93rem; margin-top: 16px; }
.contact-row a { color: var(--highlight-gold); text-decoration: none; }
.contact-row a:hover { text-decoration: underline; }
/* FOOTER */
footer { background: var(--navy-mid); border-top: 2px solid var(--border-color); padding: 48px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.footer-brand img { height: 38px; margin-bottom: 12px; }
.footer-brand p { font-size: 0.84rem; opacity: 0.6; max-width: 260px; line-height: 1.7; }
.social-links { display: flex; gap: 10px; margin-top: 16px; }
.social-links a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 6px; background: var(--card-navy); border: 1px solid var(--border-color); color: var(--text-muted); text-decoration: none; font-size: 0.82rem; font-weight: 700; transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s; }
.social-links a:hover { background: var(--highlight-gold); border-color: var(--highlight-gold); color: var(--bg-navy); transform: translateY(-2px); }
.footer-col h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--highlight-gold); }
footer .footer-copy { font-size: 0.8rem; opacity: 0.42; border-top: 1px solid var(--border-color); padding-top: 22px; text-align: center; }

/* LANG TOGGLE — two-button */
.lang-toggle {
    display: flex;
    border: 1.5px solid var(--highlight-gold);
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}
.lang-toggle button {
    background: transparent;
    border: none;
    color: var(--highlight-gold);
    padding: 5px 13px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: background 0.2s, color 0.2s;
    line-height: 1;
}
.lang-toggle button:first-child { border-right: 1.5px solid var(--highlight-gold); }
.lang-toggle button.active { background: var(--highlight-gold); color: var(--bg-navy); }
.lang-toggle button:not(.active):hover { background: rgba(243,198,66,0.12); }

.lang-mm { display: none; }
body.mm-active .lang-en { display: none; }
body.mm-active .lang-mm { display: block; }
.hamburger { display: none; background: none; border: none; color: var(--text-color); font-size: 1.5rem; cursor: pointer; padding: 4px; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .article-wrapper { grid-template-columns: 1fr; }
    .article-sidebar { position: static; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
    .vision-grid, .history-inner, .footer-inner, .programs-grid, .bilingual-block { grid-template-columns: 1fr; }
    .program-block { padding: 24px 18px; }
    nav { display: none; }
    nav.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy-mid); padding: 12px 24px 20px; border-bottom: 2px solid var(--border-color); gap: 4px; }
    .hamburger { display: block; }
    .hero { min-height: 460px; }
    .cross-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 160px 160px; }
    .photo-cell--tall { grid-row: 1/2; grid-column: 1/2; }
    .photo-cell--wide { grid-column: 2/3; grid-row: 1/2; }
    .photo-cell--sq-a { grid-column: 1/2; grid-row: 2/3; }
    .photo-cell--sq-b { grid-column: 2/3; grid-row: 2/3; }
    .alt-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px; }
    .opinion-item { grid-template-columns: 1fr; gap: 8px; }
    .session-item { grid-template-columns: 60px 1fr; }
    .session-item .session-tag { display: none; }
}
/* ═══════════════════════════════════════════════════════════
   FOOTER — full with social links
════════════════════════════════════════════════════════════ */
.footer-full { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; padding: 40px 24px 24px; }
.footer-brand-row { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer-logo { height: 40px; width: auto; }
.footer-brand-row p { font-size: 0.84rem; opacity: 0.62; line-height: 1.6; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--card-navy); border: 1px solid var(--border-color);
    color: var(--text-muted); text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.footer-social a:hover { background: var(--highlight-gold); border-color: var(--highlight-gold); color: var(--bg-navy); transform: translateY(-3px); }
