/* =============================================================
   U NYO SAW — OFFICIAL DIGITAL PRESENCE
   First Vice President of Myanmar
   ============================================================= */

:root {
    --crimson: #8B1A1A;
    --crimson-deep: #5C0F0F;
    --crimson-light: #B23A3A;
    --gold: #C9A24B;
    --gold-light: #E5C885;
    --gold-deep: #8C6F2C;
    --navy: #0E1A2B;
    --navy-soft: #1B2A40;
    --charcoal: #232323;
    --ink: #111418;
    --bone: #F6F2EA;
    --paper: #FBF8F2;
    --line: rgba(15, 26, 43, 0.12);
    --line-soft: rgba(15, 26, 43, 0.06);
    --shadow-sm: 0 2px 8px rgba(14, 26, 43, 0.06);
    --shadow-md: 0 14px 40px rgba(14, 26, 43, 0.10);
    --shadow-lg: 0 30px 80px rgba(14, 26, 43, 0.18);
    --serif: 'Playfair Display', 'Merriweather', Georgia, serif;
    --sans: 'Inter', 'Manrope', 'Helvetica Neue', Arial, sans-serif;
    --display: 'DM Serif Display', 'Playfair Display', serif;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s ease; }

/* =============================================================
   PASSCODE GATE
   ============================================================= */
.gate {
    position: fixed; inset: 0;
    background: radial-gradient(circle at 20% 30%, #1B2A40 0%, #0A0F1A 50%, #050810 100%);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
    overflow: hidden;
}

.gate.hidden { opacity: 0; visibility: hidden; transition: opacity .8s ease, visibility .8s ease; }

.gate__bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(201, 162, 75, 0.18), transparent 70%),
        radial-gradient(ellipse 60% 40% at 50% 0%, rgba(139, 26, 26, 0.25), transparent 70%);
    pointer-events: none;
}

.gate__skyline {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 35vh;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    pointer-events: none;
}

.gate__skyline svg { width: 100%; height: 100%; opacity: 0.35; }

.gate__particles {
    position: absolute; inset: 0; pointer-events: none;
}
.gate__particles span {
    position: absolute;
    width: 3px; height: 3px;
    background: var(--gold-light);
    border-radius: 50%;
    opacity: 0;
    animation: rise 8s linear infinite;
    box-shadow: 0 0 8px var(--gold);
}
@keyframes rise {
    0% { opacity: 0; transform: translateY(0) scale(0.5); }
    10% { opacity: 0.9; }
    100% { opacity: 0; transform: translateY(-100vh) scale(1.4); }
}

.gate__inner {
    position: relative;
    text-align: center;
    color: #fff;
    max-width: 540px;
    width: 90%;
    padding: 50px 40px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid rgba(201, 162, 75, 0.25);
    backdrop-filter: blur(18px);
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 50px 120px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
}

.gate__crest {
    width: 84px; height: 84px;
    margin: 0 auto 28px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    position: relative;
}
.gate__crest::before, .gate__crest::after {
    content: ''; position: absolute;
    border: 1px solid rgba(201, 162, 75, 0.4);
    border-radius: 50%;
}
.gate__crest::before { inset: -8px; }
.gate__crest::after { inset: -16px; opacity: 0.4; }
.gate__crest svg { width: 36px; height: 36px; color: var(--gold); }

.gate__eyebrow {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.35em;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.gate__title {
    font-family: var(--display);
    font-size: 38px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 400;
}
.gate__subtitle {
    font-size: 13px; color: rgba(255,255,255,0.6);
    margin-bottom: 36px; letter-spacing: 0.04em;
}

.gate__form { display: flex; flex-direction: column; gap: 16px; }

.gate__field {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid rgba(201, 162, 75, 0.35);
    background: rgba(0,0,0,0.25);
    border-radius: 2px;
    transition: all .35s ease;
}
.gate__field:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 162, 75, 0.12);
}

.gate__label {
    position: absolute;
    left: 20px; top: -9px;
    background: #0F1A2B;
    padding: 0 8px;
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--gold-light);
    text-transform: uppercase;
}

.gate__input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    padding: 22px 20px;
    font-family: var(--sans);
    font-size: 15px;
    letter-spacing: 0.4em;
}
.gate__input::placeholder { color: rgba(255,255,255,0.3); letter-spacing: 0.1em; }

.gate__submit {
    background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-deep) 100%);
    color: #fff;
    border: none;
    padding: 18px 28px;
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition: all .35s ease;
    border: 1px solid rgba(201,162,75,0.3);
}
.gate__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(139, 26, 26, 0.4);
}
.gate__submit::after {
    content: '→';
    margin-left: 12px;
    transition: transform .35s ease;
    display: inline-block;
}
.gate__submit:hover::after { transform: translateX(4px); }

.gate__error {
    color: #ff8a8a;
    font-size: 12px;
    letter-spacing: 0.1em;
    height: 16px;
    transition: opacity .3s ease;
    opacity: 0;
}
.gate__error.show { opacity: 1; animation: shake 0.45s ease; }
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

.gate__foot {
    margin-top: 32px;
    font-size: 10px;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
}

/* =============================================================
   TOP NAV
   ============================================================= */
.topbar {
    background: var(--ink);
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    letter-spacing: 0.08em;
    padding: 10px 0;
    border-bottom: 1px solid rgba(201, 162, 75, 0.15);
}
.topbar__inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex; justify-content: space-between; align-items: center;
}
.topbar__left { display: flex; gap: 24px; }
.topbar__left span { display: inline-flex; align-items: center; gap: 8px; }
.topbar__left .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.topbar__right { display: flex; gap: 14px; align-items: center; }
.topbar__right a { color: rgba(255,255,255,0.6); transition: color .3s ease; }
.topbar__right a:hover { color: var(--gold-light); }

.nav {
    position: sticky; top: 0;
    background: rgba(251, 248, 242, 0.96);
    backdrop-filter: blur(18px);
    z-index: 100;
    border-bottom: 1px solid var(--line);
    transition: all .35s ease;
}
.nav.scrolled { box-shadow: 0 12px 40px rgba(14, 26, 43, 0.08); }

.nav__inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex; justify-content: space-between; align-items: center;
    height: 92px;
}

.nav__brand { display: flex; align-items: center; gap: 14px; }
.nav__crest {
    width: 50px; height: 50px;
    background: var(--crimson);
    color: var(--gold-light);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--display); font-size: 22px;
    border: 1px solid var(--gold);
    position: relative;
}
.nav__crest::after {
    content: ''; position: absolute; inset: -4px;
    border: 1px solid var(--gold-light);
    opacity: 0.5;
}
.nav__brandtext { line-height: 1.15; }
.nav__brandtext strong {
    display: block;
    font-family: var(--display);
    font-size: 18px;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: 0.02em;
}
.nav__brandtext span {
    display: block;
    font-size: 10px;
    letter-spacing: 0.28em;
    color: var(--crimson);
    text-transform: uppercase;
    margin-top: 2px;
}

.nav__menu {
    display: flex;
    gap: 4px;
    list-style: none;
    align-items: center;
}
.nav__menu a {
    display: block;
    padding: 12px 18px;
    font-size: 13px;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: 0.04em;
    position: relative;
    transition: color .3s ease;
}
.nav__menu a::after {
    content: '';
    position: absolute;
    left: 18px; right: 18px; bottom: 6px;
    height: 1px;
    background: var(--crimson);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .35s ease;
}
.nav__menu a:hover, .nav__menu a.active {
    color: var(--crimson);
}
.nav__menu a:hover::after, .nav__menu a.active::after { transform: scaleX(1); }

.nav__cta {
    background: var(--ink);
    color: #fff !important;
    padding: 14px 22px !important;
    font-size: 11px !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase;
    transition: background .3s ease;
    border-left: 2px solid var(--gold);
}
.nav__cta:hover { background: var(--crimson) !important; color: #fff !important; }
.nav__cta::after { display: none !important; }

.nav__toggle {
    display: none;
    background: none; border: none; cursor: pointer;
    width: 40px; height: 40px;
    flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav__toggle span {
    width: 24px; height: 2px; background: var(--ink);
    transition: all .3s ease;
}
.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); }

@media (max-width: 1100px) {
    .nav__menu {
        position: fixed;
        top: 92px; left: 0; right: 0;
        flex-direction: column;
        background: var(--paper);
        padding: 24px;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height .4s ease;
        border-bottom: 1px solid var(--line);
    }
    .nav__menu.open { max-height: 80vh; }
    .nav__menu li { width: 100%; }
    .nav__menu a {
        padding: 18px 0;
        border-bottom: 1px solid var(--line-soft);
        text-align: left;
    }
    .nav__cta { margin-top: 12px; text-align: center; }
    .nav__toggle { display: flex; }
}

/* =============================================================
   HERO — HOME (cinematic)
   ============================================================= */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex; align-items: stretch;
    background: var(--ink);
    color: #fff;
    overflow: hidden;
}
.hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}
.hero__copy {
    padding: 100px 70px;
    display: flex; flex-direction: column; justify-content: center;
    position: relative;
    z-index: 2;
}
.hero__copy::before {
    content: '';
    position: absolute;
    top: 80px; left: 70px;
    width: 1px; height: 60px;
    background: var(--gold);
}
.hero__eyebrow {
    font-size: 12px;
    letter-spacing: 0.4em;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 28px;
    padding-left: 24px;
    position: relative;
}
.hero__eyebrow::before {
    content: ''; position: absolute; left: 0; top: 50%;
    width: 14px; height: 1px; background: var(--gold);
}
.hero__title {
    font-family: var(--display);
    font-size: clamp(44px, 5.6vw, 78px);
    line-height: 1.05;
    font-weight: 400;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}
.hero__title em {
    font-style: italic;
    color: var(--gold-light);
    font-family: var(--serif);
}
.hero__lead {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.78);
    max-width: 540px;
    margin-bottom: 44px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 18px 30px;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .35s ease;
    font-family: var(--sans);
}
.btn--primary {
    background: var(--crimson);
    color: #fff;
    border-color: var(--crimson);
}
.btn--primary:hover {
    background: var(--crimson-deep);
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(139,26,26,0.35);
}
.btn--ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.btn--dark {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}
.btn--dark:hover { background: var(--crimson); border-color: var(--crimson); }
.btn--outline-dark {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}
.btn--outline-dark:hover { background: var(--ink); color: #fff; }
.btn::after {
    content: '→';
    transition: transform .35s ease;
}
.btn:hover::after { transform: translateX(4px); }

.hero__media {
    position: relative;
    overflow: hidden;
    background: var(--navy);
}
.hero__media::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(14, 26, 43, 0.85) 0%, transparent 30%);
    z-index: 2;
}
.hero__media::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5) 100%);
    z-index: 2;
}
.hero__img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 22%;
    transform: scale(1.05);
    animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.15); }
}

.hero__sigil {
    position: absolute;
    bottom: 36px; right: 36px;
    z-index: 3;
    color: var(--gold-light);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-align: right;
    border-right: 1px solid var(--gold);
    padding-right: 14px;
}
.hero__sigil strong {
    display: block;
    font-family: var(--display);
    font-size: 16px;
    color: #fff;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
    font-weight: 400;
}

.hero__ticker {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(11, 16, 26, 0.92);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(201, 162, 75, 0.25);
    padding: 18px 40px;
    display: flex; align-items: center; gap: 24px;
    z-index: 3;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    overflow: hidden;
}
.hero__ticker strong {
    color: var(--gold-light);
    letter-spacing: 0.2em;
    font-size: 11px;
    text-transform: uppercase;
    border-right: 1px solid rgba(255,255,255,0.2);
    padding-right: 24px;
    white-space: nowrap;
}
.hero__ticker__track {
    display: flex; gap: 60px;
    animation: ticker 40s linear infinite;
    white-space: nowrap;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (max-width: 1000px) {
    .hero__grid { grid-template-columns: 1fr; }
    .hero__copy { padding: 70px 30px; }
    .hero__copy::before { left: 30px; top: 50px; }
    .hero__media { min-height: 420px; }
    .hero__ticker { position: static; }
}

/* =============================================================
   SECTION SCAFFOLDING
   ============================================================= */
.section {
    padding: 110px 0;
    position: relative;
}
.section--tight { padding: 80px 0; }
.section--ink { background: var(--ink); color: #fff; }
.section--bone { background: var(--bone); }
.section--paper { background: var(--paper); }
.section--navy { background: var(--navy); color: #fff; }

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

.section__head {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 70px;
    align-items: end;
}
.section__head--center { text-align: center; grid-template-columns: 1fr; max-width: 760px; margin-left: auto; margin-right: auto; margin-bottom: 70px; }

.eyebrow {
    font-size: 11px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--crimson);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.eyebrow::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--gold);
    display: inline-block;
}
.section--ink .eyebrow, .section--navy .eyebrow { color: var(--gold-light); }

.h-section {
    font-family: var(--display);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
    margin-top: 18px;
    letter-spacing: -0.01em;
    font-weight: 400;
}
.h-section em { font-family: var(--serif); font-style: italic; color: var(--crimson); }
.section--ink .h-section em, .section--navy .h-section em { color: var(--gold-light); }

.lead {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(0,0,0,0.65);
}
.section--ink .lead, .section--navy .lead { color: rgba(255,255,255,0.75); }

@media (max-width: 900px) {
    .section { padding: 80px 0; }
    .section__head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 50px; }
    .container { padding: 0 24px; }
}

/* =============================================================
   WELCOME / GOVERNANCE PRIORITIES (Home)
   ============================================================= */
.priorities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}
.priority {
    background: #fff;
    padding: 46px 36px;
    border: 1px solid var(--line);
    position: relative;
    transition: all .4s ease;
    overflow: hidden;
}
.priority::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--crimson), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s ease;
}
.priority:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.priority:hover::before { transform: scaleX(1); }
.priority__num {
    font-family: var(--display);
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 0.2em;
    margin-bottom: 22px;
    display: block;
}
.priority h3 {
    font-family: var(--display);
    font-size: 24px;
    color: var(--ink);
    margin-bottom: 16px;
    line-height: 1.25;
    font-weight: 400;
}
.priority p { color: rgba(0,0,0,0.65); font-size: 15px; line-height: 1.7; }

@media (max-width: 900px) { .priorities { grid-template-columns: 1fr; } }

/* =============================================================
   STAT BAR
   ============================================================= */
.statbar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.stat {
    padding: 50px 30px;
    border-right: 1px solid rgba(255,255,255,0.08);
    text-align: left;
}
.stat:last-child { border-right: none; }
.stat__num {
    font-family: var(--display);
    font-size: clamp(40px, 4.4vw, 60px);
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}
.stat__num span { font-size: 24px; vertical-align: super; margin-left: 4px; color: var(--gold); }
.stat__label {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}
@media (max-width: 800px) {
    .statbar { grid-template-columns: 1fr 1fr; }
    .stat { border-bottom: 1px solid rgba(255,255,255,0.08); }
}

/* =============================================================
   SPLIT BIO / FEATURE
   ============================================================= */
.split {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 80px;
    align-items: center;
}
.split--reverse > :first-child { order: 2; }
.split__media {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--navy);
}
.split__media img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 18%;
    transition: transform 1s ease;
}
.split__media:hover img { transform: scale(1.04); }
.split__media::after {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(201,162,75,0.5);
    pointer-events: none;
}
.split__caption {
    position: absolute;
    bottom: 30px; left: 30px;
    color: var(--gold-light);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    background: rgba(14,26,43,0.85);
    padding: 12px 18px;
    border-left: 2px solid var(--gold);
    z-index: 2;
}
.split__copy h2 { margin-bottom: 24px; }
.split__copy p { margin-bottom: 20px; color: rgba(0,0,0,0.7); font-size: 16px; line-height: 1.8; }
.split__copy .lead { font-size: 18px; color: var(--ink); margin-bottom: 28px; }

@media (max-width: 900px) {
    .split { grid-template-columns: 1fr; gap: 50px; }
    .split--reverse > :first-child { order: 0; }
}

/* =============================================================
   TIMELINE
   ============================================================= */
.timeline {
    position: relative;
    padding-left: 40px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 8px; top: 6px; bottom: 6px;
    width: 1px;
    background: linear-gradient(180deg, var(--crimson), var(--gold), var(--ink));
}
.timeline__item {
    position: relative;
    padding-bottom: 50px;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 8px;
    width: 16px; height: 16px;
    background: var(--paper);
    border: 2px solid var(--crimson);
    border-radius: 50%;
}
.timeline__item::after {
    content: '';
    position: absolute;
    left: -33px;
    top: 13px;
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
}
.timeline__year {
    font-family: var(--display);
    font-size: 14px;
    color: var(--crimson);
    letter-spacing: 0.3em;
    margin-bottom: 8px;
}
.timeline__title {
    font-family: var(--display);
    font-size: 24px;
    margin-bottom: 10px;
    line-height: 1.3;
    font-weight: 400;
    color: var(--ink);
}
.timeline__body { font-size: 15px; color: rgba(0,0,0,0.7); line-height: 1.75; max-width: 640px; }

/* =============================================================
   FEATURED CARD GRID (News etc)
   ============================================================= */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.cards--2 { grid-template-columns: repeat(2, 1fr); }

.card {
    background: #fff;
    border: 1px solid var(--line);
    transition: all .4s ease;
    display: flex; flex-direction: column;
    overflow: hidden;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}
.card__media {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--navy);
    position: relative;
}
.card__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 22%;
    transition: transform .8s ease;
}
.card:hover .card__media img { transform: scale(1.08); }
.card__tag {
    position: absolute;
    top: 18px; left: 18px;
    background: var(--crimson);
    color: #fff;
    font-size: 10px;
    letter-spacing: 0.25em;
    padding: 6px 12px;
    text-transform: uppercase;
    z-index: 2;
}
.card__body { padding: 30px 28px; flex: 1; display: flex; flex-direction: column; }
.card__date { font-size: 11px; letter-spacing: 0.2em; color: var(--gold-deep); margin-bottom: 12px; text-transform: uppercase; }
.card__title {
    font-family: var(--display);
    font-size: 22px;
    margin-bottom: 14px;
    line-height: 1.3;
    color: var(--ink);
    font-weight: 400;
}
.card__excerpt { color: rgba(0,0,0,0.65); font-size: 15px; line-height: 1.6; margin-bottom: 20px; flex: 1; }
.card__more {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--crimson);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    border-top: 1px solid var(--line);
    padding-top: 18px;
    margin-top: auto;
}
.card__more::after { content: '→'; transition: transform .3s ease; }
.card:hover .card__more::after { transform: translateX(4px); }

@media (max-width: 900px) { .cards, .cards--2 { grid-template-columns: 1fr; } }

/* =============================================================
   PILLARS GRID (Governance / Administration)
   ============================================================= */
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}
.pillar {
    padding: 50px 40px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
    transition: all .4s ease;
    position: relative;
}
.pillar:hover { background: var(--bone); }
.pillar__icon {
    width: 56px; height: 56px;
    border: 1px solid var(--crimson);
    color: var(--crimson);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 26px;
    transition: all .4s ease;
}
.pillar:hover .pillar__icon { background: var(--crimson); color: #fff; }
.pillar__icon svg { width: 24px; height: 24px; }
.pillar h3 {
    font-family: var(--display);
    font-size: 22px;
    margin-bottom: 14px;
    line-height: 1.3;
    color: var(--ink);
    font-weight: 400;
}
.pillar p { color: rgba(0,0,0,0.65); font-size: 15px; line-height: 1.7; }

@media (max-width: 900px) { .pillars { grid-template-columns: 1fr; } }

/* =============================================================
   BANNER CTA
   ============================================================= */
.banner {
    background: linear-gradient(135deg, var(--crimson-deep) 0%, var(--crimson) 60%, #6e1313 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 90% 30%, rgba(201,162,75,0.18), transparent 40%),
        radial-gradient(circle at 10% 80%, rgba(255,255,255,0.06), transparent 50%);
    pointer-events: none;
}
.banner__inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.banner h2 {
    font-family: var(--display);
    font-size: clamp(30px, 3.8vw, 48px);
    line-height: 1.1;
    margin-bottom: 16px;
    font-weight: 400;
}
.banner h2 em { font-style: italic; color: var(--gold-light); }
.banner p { color: rgba(255,255,255,0.85); font-size: 16px; max-width: 560px; }
.banner .btn--gold {
    background: var(--gold);
    color: var(--ink);
    border-color: var(--gold);
}
.banner .btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }

@media (max-width: 800px) { .banner__inner { grid-template-columns: 1fr; } }

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
    background: var(--ink);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 30px;
    border-top: 4px solid var(--crimson);
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: -4px; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--crimson) 0%, var(--gold) 50%, var(--crimson-deep) 100%);
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}
.footer h4 {
    font-family: var(--display);
    font-size: 16px;
    color: #fff;
    margin-bottom: 22px;
    letter-spacing: 0.04em;
    font-weight: 400;
}
.footer__brand { display: flex; gap: 14px; align-items: center; margin-bottom: 22px; }
.footer__brand strong {
    display: block;
    font-family: var(--display);
    font-size: 20px;
    color: #fff;
    font-weight: 400;
}
.footer__brand span {
    display: block;
    font-size: 10px;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: 4px;
}
.footer p { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.65); }
.footer__list { list-style: none; }
.footer__list li { margin-bottom: 12px; }
.footer__list a { color: rgba(255,255,255,0.7); font-size: 14px; transition: color .3s ease; }
.footer__list a:hover { color: var(--gold-light); }
.footer__contact a { color: rgba(255,255,255,0.85); font-size: 14px; display: block; margin-bottom: 8px; }
.footer__contact a:hover { color: var(--gold-light); }

.footer__social {
    display: flex; gap: 10px;
    margin-top: 22px;
}
.footer__social a {
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,0.18);
    display: flex; align-items: center; justify-content: center;
    transition: all .3s ease;
    color: rgba(255,255,255,0.7);
}
.footer__social a:hover {
    background: var(--crimson);
    color: #fff;
    border-color: var(--crimson);
    transform: translateY(-3px);
}
.footer__social svg { width: 16px; height: 16px; }

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 30px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12px;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.55);
    flex-wrap: wrap; gap: 16px;
}
.footer__credit a { color: var(--gold-light); }
.footer__credit a:hover { color: var(--gold); }

@media (max-width: 900px) {
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer__bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) { .footer__grid { grid-template-columns: 1fr; } }

/* =============================================================
   PAGE HERO (inner pages)
   ============================================================= */
.pagehero {
    position: relative;
    padding: 130px 0 100px;
    background: var(--ink);
    color: #fff;
    overflow: hidden;
}
.pagehero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(139,26,26,0.4), transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(201,162,75,0.15), transparent 60%),
        var(--ink);
}
.pagehero__bg::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
}
.pagehero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: end;
}
.pagehero__crumbs {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 22px;
}
.pagehero__crumbs span { color: var(--gold-light); }
.pagehero h1 {
    font-family: var(--display);
    font-size: clamp(44px, 6vw, 86px);
    line-height: 1.02;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 22px;
}
.pagehero h1 em { font-style: italic; color: var(--gold-light); font-family: var(--serif); }
.pagehero p { color: rgba(255,255,255,0.75); font-size: 17px; line-height: 1.7; max-width: 560px; }
.pagehero__meta {
    border-left: 1px solid rgba(255,255,255,0.18);
    padding-left: 30px;
}
.pagehero__meta__row { margin-bottom: 22px; }
.pagehero__meta__label {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}
.pagehero__meta__value {
    font-family: var(--display);
    font-size: 18px;
    color: #fff;
    font-weight: 400;
}
@media (max-width: 900px) { .pagehero__inner { grid-template-columns: 1fr; gap: 40px; } .pagehero__meta { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.18); padding-top: 30px; } }

/* =============================================================
   GALLERY MASONRY
   ============================================================= */
.gallery {
    columns: 3;
    column-gap: 22px;
}
.gallery__item {
    margin-bottom: 22px;
    break-inside: avoid;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--navy);
    display: block;
}
.gallery__item img {
    width: 100%;
    display: block;
    transition: transform .8s ease;
    object-fit: cover;
    object-position: center 20%;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(14,26,43,0.85) 100%);
    opacity: 0;
    transition: opacity .35s ease;
}
.gallery__item:hover::after { opacity: 1; }
.gallery__caption {
    position: absolute;
    bottom: 22px; left: 22px; right: 22px;
    color: #fff;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: all .35s ease;
}
.gallery__item:hover .gallery__caption { transform: translateY(0); opacity: 1; }
.gallery__caption strong {
    display: block;
    font-family: var(--display);
    font-size: 18px;
    margin-bottom: 4px;
    font-weight: 400;
}
.gallery__caption span {
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--gold-light);
    text-transform: uppercase;
}

@media (max-width: 900px) { .gallery { columns: 2; } }
@media (max-width: 600px) { .gallery { columns: 1; } }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0;
    background: rgba(5, 8, 16, 0.96);
    display: flex; align-items: center; justify-content: center;
    z-index: 9000;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
}
.lightbox.show { opacity: 1; visibility: visible; }
.lightbox img {
    max-width: 90vw;
    max-height: 88vh;
    border: 1px solid rgba(201,162,75,0.3);
}
.lightbox__close {
    position: absolute;
    top: 30px; right: 30px;
    width: 50px; height: 50px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    cursor: pointer;
    font-size: 24px;
    transition: all .3s ease;
}
.lightbox__close:hover { background: var(--crimson); border-color: var(--crimson); }

/* =============================================================
   FORM
   ============================================================= */
.form {
    background: #fff;
    padding: 50px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.form__group { display: flex; flex-direction: column; }
.form__group--full { grid-column: span 2; }
.form__group label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 10px;
    font-weight: 600;
}
.form__group input, .form__group textarea, .form__group select {
    border: 1px solid var(--line);
    background: var(--bone);
    padding: 16px 18px;
    font-family: var(--sans);
    font-size: 15px;
    color: var(--ink);
    outline: none;
    transition: all .3s ease;
}
.form__group input:focus, .form__group textarea:focus, .form__group select:focus {
    border-color: var(--crimson);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(139,26,26,0.08);
}
.form__group textarea { min-height: 140px; resize: vertical; }

@media (max-width: 700px) { .form__row { grid-template-columns: 1fr; } .form__group--full { grid-column: span 1; } .form { padding: 30px; } }

/* =============================================================
   CONTACT GRID
   ============================================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
}
.contact-card {
    background: var(--ink);
    color: #fff;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}
.contact-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(201,162,75,0.12) 0%, transparent 70%);
}
.contact-card h3 {
    font-family: var(--display);
    font-size: 28px;
    margin-bottom: 8px;
    font-weight: 400;
}
.contact-card .eyebrow { color: var(--gold-light); }
.contact-card__divider {
    width: 40px; height: 1px;
    background: var(--gold);
    margin: 30px 0;
}
.contact-card__row {
    display: flex; align-items: flex-start; gap: 16px;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    line-height: 1.6;
}
.contact-card__row svg {
    width: 20px; height: 20px; color: var(--gold);
    flex-shrink: 0; margin-top: 2px;
}
.contact-card__row strong { display: block; color: #fff; font-weight: 500; }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* =============================================================
   QUOTE
   ============================================================= */
.quote {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
    position: relative;
}
.quote::before {
    content: '"';
    position: absolute;
    top: -20px; left: 50%;
    transform: translateX(-50%);
    font-family: var(--display);
    font-size: 140px;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
}
.quote p {
    font-family: var(--display);
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.4;
    font-style: italic;
    color: var(--ink);
    margin-bottom: 30px;
    font-weight: 400;
}
.section--ink .quote p, .section--navy .quote p { color: #fff; }
.quote cite {
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.3em;
    color: var(--crimson);
    text-transform: uppercase;
}
.section--ink .quote cite, .section--navy .quote cite { color: var(--gold-light); }

/* =============================================================
   PROGRAM LIST (Economy / Administration)
   ============================================================= */
.proglist { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--line); }
.prog {
    display: grid;
    grid-template-columns: 80px 1fr 240px 60px;
    gap: 30px;
    padding: 32px 0;
    border-bottom: 1px solid var(--line);
    align-items: center;
    transition: all .3s ease;
    cursor: pointer;
}
.prog:hover { background: var(--bone); padding-left: 14px; padding-right: 14px; }
.prog__num {
    font-family: var(--display);
    font-size: 22px;
    color: var(--gold);
    letter-spacing: 0.1em;
}
.prog h3 {
    font-family: var(--display);
    font-size: 22px;
    color: var(--ink);
    font-weight: 400;
    line-height: 1.3;
}
.prog__tag {
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--crimson);
    text-transform: uppercase;
    border-left: 2px solid var(--crimson);
    padding-left: 14px;
}
.prog__arrow {
    color: var(--ink);
    font-size: 22px;
    text-align: right;
    transition: transform .3s ease;
}
.prog:hover .prog__arrow { transform: translateX(8px); color: var(--crimson); }

@media (max-width: 800px) {
    .prog { grid-template-columns: 1fr; gap: 8px; }
    .prog__arrow { display: none; }
    .prog__tag { padding-left: 12px; }
}

/* =============================================================
   FEATURED HORIZONTAL ARTICLE
   ============================================================= */
.feature-article {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    background: #fff;
    border: 1px solid var(--line);
    margin-bottom: 50px;
    overflow: hidden;
}
.feature-article__media { aspect-ratio: 4/3; overflow: hidden; }
.feature-article__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.feature-article__body { padding: 50px 50px; display: flex; flex-direction: column; justify-content: center; }
.feature-article__tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--crimson);
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 600;
}
.feature-article h2 {
    font-family: var(--display);
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.2;
    margin-bottom: 18px;
    color: var(--ink);
    font-weight: 400;
}
.feature-article p { color: rgba(0,0,0,0.65); font-size: 16px; margin-bottom: 24px; line-height: 1.75; }

@media (max-width: 900px) { .feature-article { grid-template-columns: 1fr; } .feature-article__body { padding: 36px 30px; } }

/* =============================================================
   PROFILE STATS BAR (About)
   ============================================================= */
.profile-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--bone);
    padding: 40px;
    border: 1px solid var(--line);
    margin-top: 50px;
}
.profile-stat { text-align: left; padding: 0 30px; border-right: 1px solid var(--line); }
.profile-stat:last-child { border-right: none; }
.profile-stat strong {
    display: block;
    font-family: var(--display);
    font-size: 18px;
    color: var(--crimson);
    margin-bottom: 6px;
    font-weight: 400;
}
.profile-stat span { font-size: 13px; color: rgba(0,0,0,0.65); line-height: 1.5; display: block; }

@media (max-width: 800px) { .profile-stats { grid-template-columns: 1fr 1fr; gap: 20px; } .profile-stat { border-right: none; padding: 0; } }

/* =============================================================
   ROLES TILES
   ============================================================= */
.roles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border: 1px solid var(--line);
}
.role {
    padding: 36px 36px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
    transition: all .35s ease;
    position: relative;
}
.role:nth-child(2n) { border-right: none; }
.role:nth-last-child(-n+2) { border-bottom: none; }
.role:hover { background: var(--ink); color: #fff; }
.role__year {
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 600;
}
.role h4 {
    font-family: var(--display);
    font-size: 19px;
    color: var(--ink);
    margin-bottom: 10px;
    font-weight: 400;
    line-height: 1.3;
    transition: color .35s ease;
}
.role:hover h4 { color: #fff; }
.role p {
    font-size: 14px;
    color: rgba(0,0,0,0.6);
    line-height: 1.6;
    transition: color .35s ease;
}
.role:hover p { color: rgba(255,255,255,0.7); }

@media (max-width: 700px) {
    .roles { grid-template-columns: 1fr; }
    .role { border-right: none !important; }
    .role:last-child { border-bottom: none; }
}

/* =============================================================
   TWO-COLUMN PROSE
   ============================================================= */
.prose-2col {
    columns: 2;
    column-gap: 60px;
    color: rgba(0,0,0,0.7);
    font-size: 16px;
    line-height: 1.85;
}
.prose-2col p { margin-bottom: 18px; break-inside: avoid; }

@media (max-width: 800px) { .prose-2col { columns: 1; } }

/* =============================================================
   ANIMATIONS
   ============================================================= */
.reveal { opacity: 0; transform: translateY(30px); transition: all .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* =============================================================
   UTILITY
   ============================================================= */
.text-center { text-align: center; }
.mt-30 { margin-top: 30px; }
.mt-50 { margin-top: 50px; }
.mb-30 { margin-bottom: 30px; }
