/* ==========================================================
   华人MAGA协会 Chinese MAGA Association — chinesemagausa.com
   深海军蓝 + 旗帜红 + 香槟金 · 衬线中文标题
   ========================================================== */
:root {
    --navy: #0a1a33;
    --navy-2: #10264a;
    --navy-3: #1a3663;
    --red: #b3172f;
    --red-2: #8f1024;
    --gold: #c8a45a;
    --gold-2: #e3cc97;
    --ivory: #f7f4ee;
    --paper: #fffdf9;
    --ink: #17202e;
    --muted: #5b6474;
    --line: #e5dfd3;
    --white: #ffffff;
    --dark-color: var(--navy);
    --primary-color: var(--navy);
    --accent-color: var(--gold);
    --serif: "Noto Serif SC", "Songti SC", "STSong", "SimSun", serif;
    --display: "Playfair Display", "Noto Serif SC", Georgia, serif;
    --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
    --radius: 4px;
    --shadow: 0 18px 48px -18px rgba(10, 26, 51, .35);
    --transition: all .3s ease;
    --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.85;
    color: var(--ink);
    background: var(--paper);
    overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--red-2); }
h1, h2, h3, h4 { font-family: var(--serif); color: var(--navy); line-height: 1.35; margin: 0 0 .6em; font-weight: 700; letter-spacing: .02em; }
p { margin: 0 0 1.1em; }
ul { padding-left: 1.2em; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 820px; }
.center { text-align: center; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--gold); color: var(--navy); padding: 8px 14px; z-index: 999; }
.skip-link:focus { left: 12px; top: 12px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Topbar ---------- */
.topbar { background: var(--navy); color: rgba(255,255,255,.72); font-size: 13px; letter-spacing: .08em; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; min-height: 38px; gap: 16px; }
.topbar a { color: var(--gold-2); }
.topbar a:hover { color: var(--white); }
.topbar .stars { color: var(--gold); letter-spacing: .3em; margin-right: 10px; }
.topbar-social { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.topbar-social svg { width: 14px; height: 14px; fill: currentColor; }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255, 253, 249, .96);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 8px 30px -12px rgba(10,26,51,.25); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; min-height: 82px; gap: 24px; }
.logo a { display: flex; align-items: center; gap: 12px; color: var(--primary-color); text-decoration: none; transition: opacity .3s; }
.logo a:hover { opacity: .8; }
.logo-mark { width: 46px; height: 46px; flex: none; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong { font-family: var(--serif); font-size: 23px; font-weight: 900; color: var(--navy); letter-spacing: .06em; }
.logo-text strong em { font-style: normal; color: var(--red); }
.logo-text small { font-family: var(--display); font-size: 10.5px; letter-spacing: .28em; color: var(--muted); text-transform: uppercase; margin-top: 5px; }

.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 4px; }
.main-nav a {
    display: block; padding: 10px 14px; color: var(--ink); font-size: 16px; font-weight: 500;
    position: relative; letter-spacing: .04em;
}
.main-nav a::after {
    content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
    background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--red); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav .nav-cta a {
    margin-left: 10px; background: var(--red); color: var(--white); padding: 11px 24px; border-radius: var(--radius);
    font-weight: 600;
}
.main-nav .nav-cta a::after { display: none; }
.main-nav .nav-cta a:hover { background: var(--navy); color: var(--white); }

.nav-toggle {
    display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: var(--white);
    border-radius: var(--radius); cursor: pointer; padding: 0; position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
    position: absolute; left: 12px; width: 20px; height: 2px; background: var(--navy); content: ""; transition: var(--transition);
}
.nav-toggle span { top: 22px; }
.nav-toggle span::before { left: 0; top: -7px; }
.nav-toggle span::after { left: 0; top: 7px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 10px; padding: 15px 34px; border-radius: var(--radius);
    font-weight: 600; font-size: 16px; letter-spacing: .08em; border: 1px solid transparent; cursor: pointer;
    transition: var(--transition); font-family: var(--sans);
}
.btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform .3s ease; }
.btn:hover svg { transform: translateX(4px); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-2); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-2); color: var(--navy); }
.btn-ghost { border-color: rgba(255,255,255,.55); color: var(--white); }
.btn-ghost:hover { background: var(--white); color: var(--navy); }
.btn-outline { border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Hero ---------- */
.hero {
    position: relative; min-height: min(calc(100vh - 120px), 880px); min-height: min(calc(100svh - 120px), 880px);
    display: flex; align-items: center; color: var(--white); overflow: hidden; background: var(--navy);
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 22s ease-in-out infinite alternate; }
.hero::before {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(100deg, rgba(10,26,51,.94) 0%, rgba(10,26,51,.78) 42%, rgba(10,26,51,.25) 100%),
        linear-gradient(0deg, rgba(10,26,51,.7), transparent 40%);
}
.hero .container { position: relative; z-index: 2; padding-top: 80px; padding-bottom: 110px; }
.hero-kicker {
    display: inline-flex; align-items: center; gap: 14px; font-family: var(--display); font-size: 14px;
    letter-spacing: .38em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 26px;
}
.hero-kicker::before { content: ""; width: 44px; height: 1px; background: var(--gold); }
.hero h1 {
    color: var(--white); font-size: clamp(40px, 6.4vw, 84px); font-weight: 900; line-height: 1.15;
    letter-spacing: .06em; margin-bottom: 14px; max-width: 11em;
}
.hero h1 .accent { color: var(--gold-2); }
.hero-en { font-family: var(--display); font-size: clamp(18px, 2.2vw, 26px); letter-spacing: .22em; color: rgba(255,255,255,.8); margin-bottom: 26px; text-transform: uppercase; }
.hero-lead { max-width: 560px; font-size: 18px; color: rgba(255,255,255,.86); margin-bottom: 38px; }
.hero-scroll {
    position: absolute; left: 50%; bottom: 30px; z-index: 2; transform: translateX(-50%);
    font-size: 12px; letter-spacing: .3em; color: rgba(255,255,255,.7); text-transform: uppercase; text-align: center;
}
.hero-scroll::after { content: ""; display: block; width: 1px; height: 38px; margin: 10px auto 0; background: linear-gradient(var(--gold), transparent); animation: scrollcue 2s ease-in-out infinite; }
.hero-stripe { position: absolute; left: 0; right: 0; bottom: 0; height: 6px; z-index: 3; background: linear-gradient(90deg, var(--red) 0 33.3%, var(--white) 33.3% 66.6%, var(--navy-3) 66.6%); }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.12) translate(-2%, -1%); } }
@keyframes scrollcue { 0%,100% { opacity: .3; transform: scaleY(.6); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }

/* ---------- Page hero (sub pages) ---------- */
.page-hero { position: relative; color: var(--white); background: var(--navy); overflow: hidden; }
.page-hero img.page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,26,51,.95), rgba(10,26,51,.55)); }
.page-hero .container { position: relative; z-index: 2; padding-top: 96px; padding-bottom: 88px; }
.page-hero h1 { color: var(--white); font-size: clamp(34px, 4.6vw, 58px); font-weight: 900; letter-spacing: .06em; margin-bottom: 12px; }
.page-hero p { max-width: 640px; color: rgba(255,255,255,.82); font-size: 18px; margin: 0; }
.breadcrumb { font-size: 13px; letter-spacing: .12em; color: rgba(255,255,255,.6); margin-bottom: 22px; }
.breadcrumb a { color: var(--gold-2); }
.breadcrumb span { margin: 0 8px; }

/* ---------- Sections ---------- */
.section { padding: 110px 0; }
.section-sm { padding: 76px 0; }
.section-ivory { background: var(--ivory); }
.section-dark { background: var(--navy); color: rgba(255,255,255,.82); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.eyebrow {
    display: inline-flex; align-items: center; gap: 12px; font-family: var(--display); font-size: 13px; font-weight: 600;
    letter-spacing: .34em; text-transform: uppercase; color: var(--red); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.section-dark .eyebrow { color: var(--gold); }
.section-title { font-size: clamp(30px, 3.6vw, 46px); font-weight: 900; margin-bottom: 8px; }
.section-sub { font-family: var(--display); font-style: italic; font-size: 20px; color: var(--muted); margin-bottom: 30px; }
.section-dark .section-sub { color: var(--gold-2); }
.section-head { margin-bottom: 56px; }
.section-head.center .eyebrow::after { content: ""; width: 34px; height: 1px; background: currentColor; }
.lead { font-size: 19px; color: var(--muted); }
.section-dark .lead { color: rgba(255,255,255,.78); }

/* Split */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 72px; align-items: center; }
.split.reverse > :first-child { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.split-media::before {
    content: ""; position: absolute; left: -18px; top: -18px; width: 45%; height: 55%;
    border-left: 2px solid var(--gold); border-top: 2px solid var(--gold); z-index: -1;
}
.split.reverse .split-media::before { left: auto; right: -18px; border-left: 0; border-right: 2px solid var(--gold); }
.media-caption { margin-top: 16px; font-size: 14px; color: var(--muted); border-left: 3px solid var(--red); padding-left: 14px; line-height: 1.7; }
.section-dark .media-caption { color: rgba(255,255,255,.66); }
.media-stack { display: grid; gap: 18px; }

/* Pillars */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); background: var(--white); }
.pillar { padding: 44px 32px; border-right: 1px solid var(--line); position: relative; transition: var(--transition); }
.pillar:last-child { border-right: 0; }
.pillar:hover { background: var(--navy); }
.pillar:hover h3, .pillar:hover .pillar-num { color: var(--white); }
.pillar:hover p { color: rgba(255,255,255,.75); }
.pillar-num { font-family: var(--display); font-size: 15px; color: var(--gold); letter-spacing: .2em; display: block; margin-bottom: 26px; transition: var(--transition); }
.pillar-icon { width: 48px; height: 48px; margin-bottom: 20px; color: var(--red); }
.pillar-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.5; }
.pillar h3 { font-size: 23px; margin-bottom: 10px; transition: var(--transition); }
.pillar p { margin: 0; color: var(--muted); font-size: 16px; transition: var(--transition); }

/* Quote band */
.quote-band { position: relative; padding: 120px 0; color: var(--white); text-align: center; overflow: hidden; background: var(--navy); }
.quote-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.quote-band .container { position: relative; }
.quote-band blockquote { margin: 0 auto; max-width: 900px; font-family: var(--serif); font-size: clamp(26px, 3.4vw, 42px); font-weight: 700; line-height: 1.55; letter-spacing: .06em; }
.quote-band blockquote::before { content: "“"; display: block; font-family: var(--display); font-size: 110px; line-height: .6; color: var(--gold); margin-bottom: 16px; }
.quote-band cite { display: block; margin-top: 26px; font-style: normal; font-family: var(--display); letter-spacing: .3em; font-size: 14px; color: var(--gold-2); text-transform: uppercase; }

/* Timeline */
.timeline { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 26px; }
.timeline::before { content: ""; position: absolute; left: 0; right: 0; top: 17px; height: 1px; background: rgba(200,164,90,.5); }
.tl-item { position: relative; padding-top: 50px; }
.tl-item::before { content: ""; position: absolute; top: 10px; left: 0; width: 15px; height: 15px; border-radius: 50%; background: var(--navy); border: 2px solid var(--gold); }
.tl-year { font-family: var(--display); font-size: 30px; font-weight: 700; color: var(--gold-2); line-height: 1.1; margin-bottom: 10px; }
.tl-item h3 { font-size: 18px; margin-bottom: 6px; }
.tl-item p { font-size: 15px; margin: 0; color: rgba(255,255,255,.7); line-height: 1.75; }

/* Movement cards */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.feature-card { background: var(--white); border: 1px solid var(--line); padding: 44px 36px; position: relative; transition: var(--transition); }
.feature-card::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--red); transition: width .4s ease; }
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.feature-card:hover::before { width: 100%; }
.feature-card .en { font-family: var(--display); font-size: 13px; letter-spacing: .28em; color: var(--gold); text-transform: uppercase; display: block; margin-bottom: 14px; }
.feature-card h3 { font-size: 25px; }
.feature-card p { color: var(--muted); margin-bottom: 20px; }
.text-link { font-weight: 600; letter-spacing: .06em; display: inline-flex; align-items: center; gap: 8px; }
.text-link::after { content: "→"; transition: transform .3s ease; }
.text-link:hover::after { transform: translateX(4px); }

/* Video */
.video-frame { position: relative; border: 1px solid rgba(200,164,90,.4); padding: 12px; background: rgba(255,255,255,.03); }
.video-frame video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: #000; }

/* Posts */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.post-card { background: var(--white); border: 1px solid var(--line); display: flex; flex-direction: column; transition: var(--transition); }
.post-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.post-thumb { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy); }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.post-card:hover .post-thumb img { transform: scale(1.06); }
.post-body { padding: 30px 30px 34px; display: flex; flex-direction: column; flex: 1; }
.post-meta { font-size: 13px; letter-spacing: .14em; color: var(--red); margin-bottom: 12px; text-transform: uppercase; }
.post-card h3 { font-size: 22px; margin-bottom: 12px; }
.post-card h3 a { color: var(--navy); }
.post-card h3 a:hover { color: var(--red); }
.post-card p { color: var(--muted); font-size: 16px; flex: 1; }

/* Leaders */
.leader { display: grid; grid-template-columns: 360px 1fr; gap: 60px; align-items: start; padding: 56px 0; border-bottom: 1px solid var(--line); }
.leader:first-of-type { padding-top: 0; }
.leader:last-of-type { border-bottom: 0; }
.leader-photo { position: relative; }
.leader-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 20%; box-shadow: var(--shadow); }
.leader-photo::after { content: ""; position: absolute; right: -14px; bottom: -14px; width: 60%; height: 60%; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold); z-index: -1; }
.leader-role { font-family: var(--display); font-size: 13px; letter-spacing: .3em; color: var(--red); text-transform: uppercase; display: block; margin-bottom: 8px; }
.leader h2, .leader h3 { font-size: 38px; font-weight: 900; margin-bottom: 4px; }
.leader-title { font-size: 18px; color: var(--muted); margin-bottom: 24px; }
.book-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 10px; }
.book-list li { padding: 12px 18px; background: var(--ivory); border-left: 3px solid var(--gold); font-size: 16px; }
.book-list li em { font-style: normal; color: var(--muted); font-family: var(--display); margin-left: 8px; }
.board { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 18px; }
.board-member { background: var(--white); border: 1px solid var(--line); padding: 28px 20px; text-align: center; transition: var(--transition); }
.board-member:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.board-member .initial {
    width: 64px; height: 64px; margin: 0 auto 14px; border-radius: 50%; display: grid; place-items: center;
    background: var(--navy); color: var(--gold-2); font-family: var(--serif); font-size: 24px; font-weight: 700;
}
.board-member strong { display: block; font-family: var(--serif); font-size: 20px; color: var(--navy); }
.board-member span { font-size: 13px; letter-spacing: .12em; color: var(--muted); }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: clamp(240px, 27vw, 380px); gap: 18px; }
.gallery figure { margin: 0; position: relative; overflow: hidden; background: var(--navy); }
.gallery figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 50px 22px 18px; color: var(--white); font-size: 15px; line-height: 1.6;
    background: linear-gradient(0deg, rgba(10,26,51,.92), transparent);
}
.g-7 { grid-column: span 7; } .g-5 { grid-column: span 5; } .g-6 { grid-column: span 6; } .g-4 { grid-column: span 4; } .g-8 { grid-column: span 8; }
.g-h { height: 100%; }

.tweet-card { max-width: 440px; margin: 0 auto; background: var(--white); padding: 14px; box-shadow: var(--shadow); border: 1px solid var(--line); }

/* Stats (facts) */
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid rgba(255,255,255,.12); margin-top: 60px; }
.fact { padding: 34px 24px 0 0; }
.fact strong { display: block; font-family: var(--display); font-size: 42px; color: var(--gold-2); line-height: 1.1; margin-bottom: 8px; }
.fact span { font-size: 15px; color: rgba(255,255,255,.72); }

/* Benefits */
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.benefit { text-align: center; padding: 40px 24px; background: var(--white); border: 1px solid var(--line); }
.benefit-icon { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; background: var(--ivory); display: grid; place-items: center; color: var(--red); }
.benefit-icon svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.benefit h3 { font-size: 21px; margin-bottom: 6px; }
.benefit p { margin: 0; font-size: 15px; color: var(--muted); }

/* CTA band */
.cta-band { position: relative; background: var(--red); color: var(--white); padding: 90px 0; overflow: hidden; }
.cta-band::before {
    content: ""; position: absolute; inset: 0; opacity: .12;
    background-image: radial-gradient(circle at 1px 1px, #fff 1.2px, transparent 1.4px); background-size: 26px 26px;
}
.cta-band .container { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-band h2 { color: var(--white); font-size: clamp(28px, 3.4vw, 44px); font-weight: 900; margin-bottom: 8px; }
.cta-band p { margin: 0; color: rgba(255,255,255,.86); font-size: 18px; }
.cta-band .btn-gold:hover { background: var(--white); }

/* Article */
.article-wrap { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 70px; align-items: start; }
.article-cover { margin: 0 0 44px; }
.article-cover img { width: 100%; box-shadow: var(--shadow); }
.article-body { font-size: 18px; line-height: 2; }
.article-body h2 { font-size: 26px; margin: 1.8em 0 .7em; padding-left: 16px; border-left: 4px solid var(--red); }
.article-body ul { list-style: none; padding: 22px 26px; background: var(--ivory); border-left: 3px solid var(--gold); margin: 0 0 1.3em; }
.article-body ul li { position: relative; padding-left: 22px; }
.article-body ul li::before { content: "★"; position: absolute; left: 0; color: var(--red); font-size: 12px; top: 3px; }
.article-body strong { color: var(--navy); background: linear-gradient(transparent 62%, rgba(200,164,90,.35) 0); }
.article-body .pull { font-family: var(--serif); font-size: 24px; font-weight: 700; color: var(--navy); text-align: center; padding: 30px 10px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 1.6em 0; line-height: 1.7; }
.article-meta { display: flex; flex-wrap: wrap; gap: 18px; font-size: 14px; color: rgba(255,255,255,.7); letter-spacing: .08em; margin-top: 18px; }
.sidebar { position: sticky; top: 110px; display: grid; gap: 26px; }
.side-box { background: var(--ivory); padding: 30px 28px; border-top: 3px solid var(--red); }
.side-box h3 { font-size: 19px; margin-bottom: 14px; }
.side-box ul { list-style: none; padding: 0; margin: 0; }
.side-box li { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 16px; line-height: 1.6; }
.side-box li:last-child { border-bottom: 0; }
.side-box p { font-size: 15px; color: var(--muted); }
.side-box.dark { background: var(--navy); color: rgba(255,255,255,.8); border-top-color: var(--gold); }
.side-box.dark h3 { color: var(--white); }
.side-box.dark p { color: rgba(255,255,255,.75); }
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 60px; padding-top: 34px; border-top: 1px solid var(--line); }
.post-nav a { display: block; padding: 22px 24px; border: 1px solid var(--line); color: var(--navy); font-family: var(--serif); font-weight: 700; font-size: 18px; line-height: 1.5; }
.post-nav a small { display: block; font-family: var(--sans); font-weight: 400; font-size: 13px; letter-spacing: .14em; color: var(--red); margin-bottom: 6px; }
.post-nav a:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.post-nav .next { text-align: right; }

/* Contact / form */
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 70px; align-items: start; }
.info-list { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 22px; }
.info-list li { display: flex; gap: 18px; align-items: flex-start; }
.info-list .ico { flex: none; width: 50px; height: 50px; border-radius: 50%; background: var(--navy); color: var(--gold-2); display: grid; place-items: center; }
.info-list .ico svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.info-list .ico svg.fill { fill: currentColor; stroke: none; }
.info-list strong { display: block; font-family: var(--serif); font-size: 18px; color: var(--navy); }
.info-list span { color: var(--muted); font-size: 16px; }
.form-card { background: var(--white); border: 1px solid var(--line); border-top: 4px solid var(--red); padding: 48px 44px; box-shadow: var(--shadow); }
.form-card h2 { font-size: 30px; margin-bottom: 6px; }
.form-card > p { color: var(--muted); margin-bottom: 28px; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form .full { grid-column: 1 / -1; }
.contact-form label { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 7px; letter-spacing: .04em; }
.contact-form label .req { color: var(--red); }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%; padding: 14px 16px; border: 1px solid var(--line); background: var(--paper); font: inherit; font-size: 16px;
    color: var(--ink); border-radius: var(--radius); transition: var(--transition);
}
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,164,90,.2); background: var(--white); }
.contact-form button { justify-self: start; }
.form-note { font-size: 14px; color: var(--muted); margin: 0; }

/* FAQ */
.faq { display: grid; gap: 14px; }
.faq details { background: var(--white); border: 1px solid var(--line); padding: 0 28px; transition: var(--transition); }
.faq details[open] { border-color: var(--gold); box-shadow: var(--shadow); }
.faq summary { cursor: pointer; list-style: none; padding: 24px 30px 24px 0; font-family: var(--serif); font-size: 19px; font-weight: 700; color: var(--navy); position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 18px; font-size: 28px; color: var(--red); font-weight: 400; transition: transform .3s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding-bottom: 8px; }

/* ---------- Footer ---------- */
footer { background: var(--dark-color); color: var(--white); padding: 5rem 0 1.5rem; margin-top: 0; position: relative; }
footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--red) 0 33.3%, var(--white) 33.3% 66.6%, var(--gold) 66.6%); }
.footer-content { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-section h3 { color: var(--white); margin-bottom: 1.2rem; font-size: 1.2rem; letter-spacing: .08em; }
.footer-section p, .footer-section a { color: rgba(255,255,255,.72); line-height: 1.9; font-size: 15px; }
.footer-section p { margin-bottom: .4rem; }
.footer-section a:hover { color: var(--accent-color); }
.footer-brand .logo a { margin-bottom: 18px; }
.footer-brand .logo-text strong { color: var(--white); }
.footer-brand .logo-text strong em { color: var(--gold-2); }
.footer-brand .logo-text small { color: rgba(255,255,255,.55); }
.footer-motto { font-family: var(--serif); color: var(--gold-2) !important; font-size: 17px !important; letter-spacing: .12em; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.55); font-size: 14px; }
.footer-bottom p { margin-bottom: .5rem; }
.footer-partner { margin-top: 1rem; font-size: .9rem; color: rgba(255,255,255,.65); }
.footer-partner a { color: var(--accent-color); text-decoration: none; transition: var(--transition); }
.footer-partner a:hover { color: var(--white); }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .hero-bg img, .hero-scroll::after { animation: none; }
    .js .reveal { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
    .pillars { grid-template-columns: repeat(2, 1fr); }
    .pillar:nth-child(2) { border-right: 0; }
    .pillar:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .timeline { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
    .timeline::before { display: none; }
    .benefits { grid-template-columns: repeat(2, 1fr); }
    .article-wrap { grid-template-columns: 1fr; }
    .sidebar { position: static; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
    .nav-toggle { display: block; }
    .main-nav {
        position: fixed; top: 0; right: 0; width: min(340px, 86vw); height: 100vh; height: 100dvh; background: var(--navy);
        transform: translateX(100%); transition: transform .35s ease; padding: 96px 30px 30px; z-index: 150; overflow-y: auto;
    }
    .nav-open .main-nav { transform: none; box-shadow: -20px 0 60px rgba(0,0,0,.35); }
    .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
    .main-nav a { color: var(--white); padding: 16px 4px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 18px; }
    .main-nav a::after { display: none; }
    .main-nav a.active, .main-nav a:hover { color: var(--gold-2); }
    .main-nav .nav-cta a { margin: 24px 0 0; text-align: center; border: 0; }
    .nav-toggle { z-index: 160; }
    .nav-open .nav-toggle { position: fixed; right: 24px; top: 18px; }
    .nav-backdrop { position: fixed; inset: 0; background: rgba(10,26,51,.5); z-index: 140; opacity: 0; pointer-events: none; transition: opacity .3s; }
    .nav-open .nav-backdrop { opacity: 1; pointer-events: auto; }
    .split, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .split.reverse > :first-child { order: 0; }
    .cards-3, .posts { grid-template-columns: 1fr 1fr; }
    .leader { grid-template-columns: 1fr; gap: 36px; }
    .leader-photo { max-width: 360px; }
    .cta-band .container { flex-direction: column; align-items: flex-start; }
    .section { padding: 84px 0; }
    .g-7, .g-5, .g-6, .g-4, .g-8 { grid-column: span 12; }
}
@media (max-width: 640px) {
    body { font-size: 16px; }
    .container { padding: 0 18px; }
    .topbar .motto { display: none; }
    .topbar .container { justify-content: center; }
    .site-header .container { min-height: 70px; }
    .logo-mark { width: 40px; height: 40px; }
    .logo-text strong { font-size: 20px; }
    .logo-text small { font-size: 9px; letter-spacing: .18em; }
    .hero .container { padding-top: 60px; padding-bottom: 120px; }
    .hero-lead { font-size: 16px; }
    .hero-kicker { font-size: 11px; letter-spacing: .2em; gap: 10px; }
    .hero-kicker::before { width: 26px; }
    .hero-en { font-size: 15px; letter-spacing: .12em; }
    .eyebrow { flex-wrap: wrap; font-size: 12px; letter-spacing: .2em; }
    .leader-role, .feature-card .en { letter-spacing: .18em; }
    .topbar-social { font-size: 12px; letter-spacing: .02em; }
    .pillars, .cards-3, .posts, .benefits, .sidebar, .post-nav, .contact-form { grid-template-columns: 1fr; }
    .pillar { border-right: 0 !important; border-bottom: 1px solid var(--line); }
    .pillar:last-child { border-bottom: 0; }
    .timeline { grid-template-columns: 1fr 1fr; }
    .facts { grid-template-columns: 1fr; }
    .fact { padding-top: 24px; }
    .section { padding: 68px 0; }
    .section-head { margin-bottom: 38px; }
    .form-card { padding: 34px 22px; }
    .footer-content { grid-template-columns: 1fr; gap: 2rem; }
    .post-nav .next { text-align: left; }
    .quote-band { padding: 84px 0; }
    .article-body { font-size: 17px; }
}
