/* =========================================================================
   ҮБХИС — site.css
   Design system + component library. Component reference: new/README.md
   ========================================================================= */

/* ---------- 1. Tokens ---------- */
:root {
    --navy-950: #060f1d;
    --navy-900: #0a1628;
    --navy-800: #0f2340;
    --navy-700: #16335c;
    --blue-600: #1565c0;
    --blue-50: #eaf2fc;
    --gold-500: #c9a227;
    --gold-600: #a4821a;
    --gold-100: #f8f0d8;
    --red-600: #b42318;
    --green-600: #1d7a46;

    --ink: #14202e;
    --ink-2: #3d4b5c;
    --muted: #6b7888;
    --bg: #ffffff;
    --bg-soft: #f4f6f9;
    --line: #e3e8ef;

    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 2px rgba(10, 22, 40, .06), 0 2px 8px rgba(10, 22, 40, .05);
    --shadow: 0 4px 12px rgba(10, 22, 40, .07), 0 16px 40px rgba(10, 22, 40, .08);
    --shadow-lg: 0 12px 24px rgba(10, 22, 40, .10), 0 32px 64px rgba(10, 22, 40, .12);

    --font-head: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

    --container: 1240px;
    --header-h: 76px;
    --ease: cubic-bezier(.33, 1, .68, 1);
}

/* ---------- 2. Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}
img, svg, video, iframe { max-width: 100%; }
img { height: auto; display: block; }
a { color: var(--blue-600); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold-600); }
h1, h2, h3, h4, h5 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.25;
    color: var(--navy-900);
    margin: 0 0 .6em;
}
h1 { font-size: clamp(2rem, 4.2vw, 3.1rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
address { font-style: normal; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 2px; }
::selection { background: var(--gold-100); color: var(--navy-900); }

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 1000;
    background: var(--gold-500); color: var(--navy-900); padding: .6rem 1rem; font-weight: 600;
}
.skip-link:focus { left: 1rem; top: 1rem; }
.visually-hidden {
    position: absolute !important; width: 1px; height: 1px; overflow: hidden;
    clip: rect(0 0 0 0); white-space: nowrap; border: 0; padding: 0; margin: -1px;
}

/* ---------- 3. Layout ---------- */
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.container--narrow { --container: 880px; }
.container--wide { --container: 1400px; }

.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--tight { padding: clamp(2.5rem, 5vw, 3.5rem) 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: linear-gradient(135deg, var(--navy-900), var(--navy-800)); color: #d3dce8; }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark a:not(.btn) { color: var(--gold-500); }

.section-head { max-width: 760px; margin: 0 auto 2.75rem; text-align: center; }
.section-head--left { margin-left: 0; text-align: left; }
.section-head p { margin-bottom: 0; }
.section-head__row { display: flex; align-items: end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.25rem; }
.section-head__row h2 { margin: 0; }

.eyebrow {
    display: inline-block; margin-bottom: .75rem;
    font-family: var(--font-head); font-size: .75rem; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase; color: var(--gold-600);
}
.section--dark .eyebrow, .page-hero .eyebrow { color: var(--gold-500); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--ink-2); line-height: 1.75; }
.section--dark .lead { color: #b9c6d6; }
.muted { color: var(--muted); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; } .mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-4 { margin-top: 2rem; } .mt-6 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0 !important; } .mb-2 { margin-bottom: 1rem; } .mb-4 { margin-bottom: 2rem; } .mb-6 { margin-bottom: 3rem; }
.stack > * + * { margin-top: 1.5rem; }
.stack-lg > * + * { margin-top: 3rem; }

.grid { display: grid; gap: clamp(1rem, 2.2vw, 1.75rem); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid--auto { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.grid--auto-sm { grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--wide-text { grid-template-columns: 1.35fr 1fr; }
.split--wide-media { grid-template-columns: 1fr 1.35fr; }
.split--top { align-items: start; }
.split--reverse > :first-child { order: 2; }

.with-sidebar { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 2.5rem; align-items: start; }
.sidebar { position: sticky; top: calc(var(--header-h) + 1.5rem); display: grid; gap: 1.25rem; }

/* ---------- 4. Buttons, badges, chips ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
    padding: .8rem 1.4rem; border-radius: 999px; border: 2px solid transparent;
    font-family: var(--font-head); font-weight: 600; font-size: .92rem; line-height: 1.2;
    cursor: pointer; text-decoration: none; white-space: nowrap;
    transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--navy-900); color: #fff; }
.btn--primary:hover { background: var(--navy-700); color: #fff; }
.btn--gold { background: var(--gold-500); color: var(--navy-950); }
.btn--gold:hover { background: #d8b23a; color: var(--navy-950); box-shadow: 0 8px 24px rgba(201, 162, 39, .3); }
.btn--outline { border-color: var(--navy-900); color: var(--navy-900); background: transparent; }
.btn--outline:hover { background: var(--navy-900); color: #fff; }
.btn--light { border-color: rgba(255, 255, 255, .7); color: #fff; background: transparent; }
.btn--light:hover { background: #fff; color: var(--navy-900); }
.btn--sm { padding: .5rem 1rem; font-size: .82rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }

.link-arrow { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; font-family: var(--font-head); font-size: .92rem; }
.link-arrow i { transition: transform .2s var(--ease); }
.link-arrow:hover i { transform: translateX(3px); }

.badge {
    display: inline-flex; align-items: center; gap: .35rem; padding: .25rem .7rem; border-radius: 999px;
    font-size: .75rem; font-weight: 600; letter-spacing: .02em;
    background: var(--blue-50); color: var(--blue-600);
}
.badge--gold { background: var(--gold-100); color: var(--gold-600); }
.badge--success { background: #e3f4ea; color: var(--green-600); }
.badge--danger { background: #fdecea; color: var(--red-600); }
.badge--dark { background: var(--navy-900); color: #fff; }

.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
    padding: .45rem .95rem; border-radius: 999px; border: 1px solid var(--line); background: #fff;
    font: 500 .88rem/1.2 var(--font-body); color: var(--ink-2); cursor: pointer;
    transition: all .2s var(--ease);
}
.chip:hover { border-color: var(--navy-700); color: var(--navy-900); }
.chip.is-active, .chip[aria-pressed="true"] { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }
.chip__count { opacity: .65; margin-left: .25rem; }

/* ---------- 5. Topbar + Header + Nav ---------- */
.topbar { background: var(--navy-950); color: #aebbd0; font-size: .82rem; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 40px; }
.topbar a { color: #cfd8e6; }
.topbar a:hover { color: var(--gold-500); }
.topbar__contact, .topbar__links { display: flex; align-items: center; gap: 1.25rem; }
.topbar__contact i { color: var(--gold-500); margin-right: .35rem; }
.topbar__cta { background: var(--gold-500); color: var(--navy-950) !important; padding: .2rem .85rem; border-radius: 999px; font-weight: 600; }
.topbar__cta:hover { background: #d8b23a; }

.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: saturate(160%) blur(10px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .25s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(10, 22, 40, .08); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: var(--header-h); }

.brand { display: flex; align-items: center; gap: .75rem; color: var(--navy-900); flex-shrink: 0; }
.brand:hover { color: var(--navy-900); }
.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand__medal { width: auto !important; height: 34px !important; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__text strong { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; letter-spacing: .04em; }
.brand__text span { font-size: .7rem; color: var(--muted); max-width: 200px; }

.nav-list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: .15rem; }
.nav-item { position: relative; }
.nav-link {
    display: inline-flex; align-items: center; gap: .35rem;
    padding: .6rem .7rem; border: 0; background: none; border-radius: var(--radius-sm);
    font: 600 .88rem/1.2 var(--font-head); color: var(--navy-900); cursor: pointer; white-space: nowrap;
}
.nav-link i { font-size: .65rem; transition: transform .2s var(--ease); }
.nav-link:hover, .nav-item.is-open > .nav-link { color: var(--blue-600); background: var(--bg-soft); }
.nav-link.is-active { color: var(--gold-600); }
.nav-link.is-active::after {
    content: ""; position: absolute; left: .7rem; right: .7rem; bottom: .15rem; height: 2px; background: var(--gold-500); border-radius: 2px;
}

.subnav {
    list-style: none; margin: 0; padding: .5rem;
    position: absolute; top: calc(100% + 8px); left: 50%; min-width: 280px;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden; transform: translate(-50%, 6px);
    transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.subnav::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.nav-item.is-open > .subnav { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-item.is-open > .nav-link i { transform: rotate(180deg); }
.subnav a {
    display: flex; align-items: center; gap: .65rem; padding: .6rem .8rem; border-radius: var(--radius-sm);
    color: var(--ink); font-size: .9rem; line-height: 1.35;
}
.subnav a i { width: 1.1rem; text-align: center; color: var(--gold-600); font-size: .85rem; }
.subnav a:hover { background: var(--bg-soft); color: var(--navy-900); }
.subnav a.is-active { background: var(--gold-100); color: var(--navy-900); font-weight: 600; }

.nav-toggle {
    display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: var(--radius-sm);
    background: #fff; cursor: pointer; position: relative;
}
.nav-toggle span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--navy-900); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s; }
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-backdrop { display: none; }

/* ---------- 6. Heroes ---------- */
.hero {
    position: relative; isolation: isolate; overflow: hidden;
    min-height: min(88vh, 820px); display: flex; align-items: center;
    color: #fff; background: var(--navy-900);
}
.hero__slides, .hero__slide { position: absolute; inset: 0; }
.hero__slides { z-index: -2; }
.hero__slide { opacity: 0; transition: opacity 1.2s ease; }
.hero__slide.is-active { opacity: 1; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); transition: transform 7s linear; }
.hero__slide.is-active img { transform: scale(1); }
.hero::after {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(100deg, rgba(6, 15, 29, .92) 0%, rgba(6, 15, 29, .7) 45%, rgba(6, 15, 29, .25) 100%);
}
.hero__content { padding: 6rem 0 7rem; max-width: 720px; }
.hero__kicker { display: inline-flex; align-items: center; gap: .6rem; font: 600 .8rem/1 var(--font-head); letter-spacing: .28em; text-transform: uppercase; color: var(--gold-500); margin-bottom: 1.25rem; }
.hero__kicker::before { content: ""; width: 36px; height: 2px; background: var(--gold-500); }
.hero h1 { color: #fff; font-size: clamp(2.2rem, 5.4vw, 4rem); font-weight: 800; line-height: 1.08; text-transform: uppercase; margin-bottom: 1.25rem; }
.hero h1 span { color: var(--gold-500); }
.hero p { color: #cdd7e4; font-size: clamp(1.02rem, 1.6vw, 1.2rem); max-width: 600px; margin-bottom: 2rem; }
.hero__values { display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; margin: 2.5rem 0 0; padding: 0; list-style: none; }
.hero__values li { display: flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .92rem; color: #e8edf4; }
.hero__values i { color: var(--gold-500); }
.hero__dots { position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%); display: flex; gap: .6rem; }
.hero__dot { width: 34px; height: 4px; border-radius: 4px; border: 0; padding: 0; background: rgba(255, 255, 255, .35); cursor: pointer; transition: background .3s; }
.hero__dot.is-active { background: var(--gold-500); }

.page-hero {
    position: relative; isolation: isolate; overflow: hidden;
    padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 4.5rem);
    background: var(--navy-900); color: #cdd7e4;
}
.page-hero::before {
    content: ""; position: absolute; inset: 0; z-index: -2;
    background-image: var(--hero-img, none); background-size: cover; background-position: center;
}
.page-hero::after {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background:
        radial-gradient(circle at 85% 20%, rgba(201, 162, 39, .18), transparent 45%),
        linear-gradient(100deg, rgba(6, 15, 29, .95) 0%, rgba(10, 22, 40, .82) 55%, rgba(10, 22, 40, .6) 100%);
}
.page-hero h1 { color: #fff; margin-bottom: .5rem; }
.page-hero p { max-width: 720px; margin: 0; font-size: 1.1rem; }
.page-hero--center { text-align: center; }
.page-hero--center p { margin-inline: auto; }
.page-hero__logo { width: 96px; height: 96px; object-fit: contain; margin-bottom: 1.25rem; filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .35)); }
.page-hero--center .page-hero__logo { margin-inline: auto; }

.breadcrumb { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; padding: 0; margin: 0 0 1.25rem; font-size: .85rem; }
.breadcrumb li { display: flex; align-items: center; gap: .4rem; color: #9fb0c6; }
.breadcrumb li + li::before { content: "/"; opacity: .5; }
.breadcrumb a { color: #cfd8e6; }
.breadcrumb a:hover { color: var(--gold-500); }
.page-hero--center .breadcrumb { justify-content: center; }

/* ---------- 7. Cards ---------- */
.card {
    position: relative; display: flex; flex-direction: column;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow-sm); overflow: hidden;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
a.card, .card--hover { color: inherit; }
a.card:hover, .card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; color: inherit; }
.card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-soft); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
a.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.card__body > * { margin: 0; }
.card__title { font-size: 1.12rem; }
.card__text { color: var(--ink-2); font-size: .95rem; }
.card__footer { margin-top: auto; padding-top: .75rem; }
.card--accent { border-top: 4px solid var(--gold-500); }
.card--side { border-left: 4px solid var(--gold-500); }
.card--dark { background: var(--navy-900); border-color: var(--navy-900); color: #cdd7e4; }
.card--dark h3, .card--dark h4 { color: #fff; }
.card--pad { padding: clamp(1.5rem, 3vw, 2.25rem); }

.icon-card { padding: 1.75rem; }
.icon-card__icon {
    width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 1rem;
    background: var(--gold-100); color: var(--gold-600); font-size: 1.3rem;
}
.icon-card h3 { font-size: 1.08rem; margin-bottom: .4rem; }
.icon-card p { color: var(--ink-2); font-size: .95rem; margin: 0; }

.logo-card { flex-direction: row; align-items: center; gap: 1rem; padding: 1.25rem 1.4rem; }
.logo-card__img { width: 60px; height: 60px; flex-shrink: 0; object-fit: contain; }
.logo-card__icon { width: 56px; height: 56px; flex-shrink: 0; border-radius: 50%; display: grid; place-items: center; background: var(--navy-900); color: var(--gold-500); font-size: 1.3rem; }
.logo-card h3 { font-size: 1rem; margin: 0; line-height: 1.35; }
.logo-card p { font-size: .82rem; color: var(--muted); margin: .2rem 0 0; }
.logo-card .fa-arrow-right { margin-left: auto; color: var(--gold-600); transition: transform .2s var(--ease); }
a.logo-card:hover .fa-arrow-right { transform: translateX(4px); }

/* ---------- 8. Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { text-align: center; padding: 1rem; }
.stat__value { font: 800 clamp(2.2rem, 4.5vw, 3.2rem)/1 var(--font-head); color: var(--gold-500); margin-bottom: .5rem; }
.stat__label { font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: inherit; opacity: .85; }
.stats--boxed .stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.stats--boxed .stat__label { color: var(--ink-2); }

/* ---------- 9. Timeline ---------- */
.timeline { position: relative; list-style: none; margin: 0; padding: 0 0 0 2.25rem; }
.timeline::before { content: ""; position: absolute; left: 11px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--gold-500), var(--line)); }
.timeline__item { position: relative; padding-bottom: 2.25rem; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
    content: ""; position: absolute; left: calc(-2.25rem + 4px); top: 6px; width: 16px; height: 16px; border-radius: 50%;
    background: #fff; border: 3px solid var(--gold-500); box-shadow: 0 0 0 4px rgba(201, 162, 39, .15);
}
.timeline__year { display: inline-block; font: 800 1rem/1 var(--font-head); color: var(--gold-600); background: var(--gold-100); padding: .35rem .7rem; border-radius: 999px; margin-bottom: .6rem; }
.timeline__card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.25rem 1.5rem; box-shadow: var(--shadow-sm); }
.timeline__card h3 { font-size: 1.12rem; margin-bottom: .4rem; }
.timeline__card > :last-child { margin-bottom: 0; }
.timeline__card p, .timeline__card li { color: var(--ink-2); }

.year-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 1rem; list-style: none; padding: 0; margin: 0; }
.year-grid li { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.2rem; }
.year-grid strong { display: block; font: 800 1.5rem/1.1 var(--font-head); color: var(--gold-600); margin-bottom: .35rem; }
.year-grid span { font-size: .92rem; color: var(--ink-2); line-height: 1.45; display: block; }
.year-grid li.is-current { background: var(--navy-900); border-color: var(--navy-900); }
.year-grid li.is-current span { color: #fff; font-weight: 600; }
.year-grid li.is-current strong { color: var(--gold-500); }

.h-timeline { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(230px, 1fr); gap: 1rem; overflow-x: auto; padding: .5rem .25rem 1.25rem; scroll-snap-type: x mandatory; list-style: none; margin: 0; }
.h-timeline li { scroll-snap-align: start; background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--radius); padding: 1.35rem; }
.h-timeline strong { display: block; font: 800 1.6rem/1 var(--font-head); color: var(--gold-500); margin-bottom: .75rem; }
.h-timeline h3 { font-size: 1rem; color: #fff; margin-bottom: .4rem; }
.h-timeline p { font-size: .9rem; color: #b9c6d6; margin: 0; }

/* ---------- 10. Media ---------- */
.media-frame { position: relative; }
.media-frame img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); position: relative; z-index: 1; }
.media-frame::after { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 2px solid var(--gold-500); border-radius: var(--radius-lg); z-index: 0; }
.media-frame--plain::after { display: none; }
.logo-showcase { display: grid; place-items: center; padding: 2rem; background: radial-gradient(circle, var(--gold-100) 0%, transparent 70%); }
.logo-showcase img { max-width: 260px; filter: drop-shadow(0 12px 24px rgba(10, 22, 40, .18)); }

.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.gallery a, .gallery figure { display: block; margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--bg-soft); }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .4s var(--ease); cursor: zoom-in; }
.gallery a:hover img { transform: scale(1.05); }
.gallery figcaption { padding: .6rem .8rem; font-size: .85rem; color: var(--ink-2); }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-embed iframe { display: block; width: 100%; height: 420px; border: 0; }

/* ---------- 11. Rich text ---------- */
.prose { color: var(--ink-2); font-size: 1.04rem; line-height: 1.8; }
.prose > :first-child { margin-top: 0; }
.prose h2 { margin-top: 2.2rem; font-size: 1.6rem; }
.prose h3 { margin-top: 1.8rem; }
.prose h2, .prose h3, .prose h4 { color: var(--navy-900); }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose li { margin-bottom: .4em; }
.prose li::marker { color: var(--gold-600); }
.prose strong { color: var(--ink); }
.prose blockquote { margin: 1.5rem 0; padding: 1rem 1.5rem; border-left: 4px solid var(--gold-500); background: var(--bg-soft); border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; }
.prose img { border-radius: var(--radius); margin: 1.5rem 0; }
.prose--justify p { text-align: justify; }

.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem; }
.checklist li { position: relative; padding: .9rem 1rem .9rem 3rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink-2); line-height: 1.6; }
.checklist li::before {
    content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900;
    position: absolute; left: 1rem; top: .95rem; width: 1.3rem; height: 1.3rem; border-radius: 50%;
    display: grid; place-items: center; font-size: .65rem; background: var(--gold-500); color: #fff;
}
.checklist--plain li { background: none; border: 0; padding: .15rem 0 .15rem 2rem; }
.checklist--plain li::before { left: 0; top: .3rem; }
.checklist--cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.numbered { list-style: none; counter-reset: n; padding: 0; margin: 0; display: grid; gap: .9rem; }
.numbered li { counter-increment: n; position: relative; padding-left: 3.25rem; min-height: 2.25rem; color: var(--ink-2); }
.numbered li::before { content: counter(n); position: absolute; left: 0; top: 0; width: 2.25rem; height: 2.25rem; border-radius: 50%; display: grid; place-items: center; background: var(--navy-900); color: var(--gold-500); font: 700 .9rem/1 var(--font-head); }

.quote {
    position: relative; margin: 0; padding: 2rem 2rem 2rem 4.5rem; background: var(--bg-soft); border-radius: var(--radius-lg);
    font-size: 1.12rem; line-height: 1.8; color: var(--ink);
}
.quote::before { content: "\201C"; position: absolute; left: 1.25rem; top: .5rem; font: 800 4.5rem/1 Georgia, serif; color: var(--gold-500); }
.quote footer { margin-top: 1rem; font-size: .92rem; color: var(--muted); font-style: normal; }
.quote footer strong { color: var(--navy-900); display: block; font-family: var(--font-head); }

.callout { display: flex; gap: 1rem; padding: 1.25rem 1.5rem; border-radius: var(--radius); background: var(--blue-50); color: var(--ink); border-left: 4px solid var(--blue-600); }
.callout > i { color: var(--blue-600); font-size: 1.25rem; margin-top: .2rem; }
.callout > div > :last-child { margin-bottom: 0; }
.callout--gold { background: var(--gold-100); border-color: var(--gold-500); }
.callout--gold > i { color: var(--gold-600); }
.callout--danger { background: #fdecea; border-color: var(--red-600); }
.callout--danger > i { color: var(--red-600); }

.meta-list { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; list-style: none; padding: 0; margin: 0; font-size: .88rem; color: var(--muted); }
.meta-list li { display: inline-flex; align-items: center; gap: .4rem; }
.meta-list i { color: var(--gold-600); }

.dl { display: grid; grid-template-columns: max-content 1fr; gap: .6rem 1.5rem; margin: 0; }
.dl dt { font-weight: 600; color: var(--navy-900); }
.dl dd { margin: 0; color: var(--ink-2); }

/* ---------- 12. Tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.table { width: 100%; border-collapse: collapse; font-size: .94rem; }
.table th, .table td { padding: .85rem 1rem; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.table thead th { background: var(--navy-900); color: #fff; font: 600 .85rem/1.3 var(--font-head); white-space: nowrap; }
.table tbody tr:nth-child(even) { background: var(--bg-soft); }
.table tbody tr:hover { background: var(--gold-100); }
.table tbody tr:last-child td { border-bottom: 0; }
.table td.num, .table th.num { text-align: right; font-variant-numeric: tabular-nums; }
.table tfoot td { font-weight: 700; background: var(--bg-soft); border-top: 2px solid var(--line); }

/* <span class="meter" style="--value: 52.1%"></span> — horizontal percentage bar, e.g. inside a table cell */
.meter { display: block; height: 8px; min-width: 90px; margin-top: .4rem; border-radius: 999px; background: var(--line); overflow: hidden; }
.meter::before { content: ""; display: block; height: 100%; width: var(--value, 0%); border-radius: inherit; background: linear-gradient(90deg, var(--gold-500), var(--blue-600)); }

/* ---------- 13. Tabs + Accordion ---------- */
.tabs__list { display: flex; flex-wrap: wrap; gap: .5rem; padding: .4rem; margin-bottom: 1.75rem; background: var(--bg-soft); border-radius: 999px; width: fit-content; max-width: 100%; }
.tabs__tab {
    border: 0; background: none; padding: .65rem 1.2rem; border-radius: 999px; cursor: pointer;
    font: 600 .9rem/1.2 var(--font-head); color: var(--ink-2); display: inline-flex; align-items: center; gap: .5rem;
}
.tabs__tab:hover { color: var(--navy-900); }
.tabs__tab[aria-selected="true"] { background: #fff; color: var(--navy-900); box-shadow: var(--shadow-sm); }
.tabs__tab .chip__count { font-weight: 500; }
.tabs__panel[hidden] { display: none; }
.tabs--vertical { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 2rem; align-items: start; }
.tabs--vertical .tabs__list { flex-direction: column; border-radius: var(--radius); width: auto; position: sticky; top: calc(var(--header-h) + 1.5rem); }
.tabs--vertical .tabs__tab { border-radius: var(--radius-sm); justify-content: flex-start; text-align: left; }

.accordion { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; }
.accordion + .accordion { margin-top: .75rem; }
.accordion summary {
    list-style: none; cursor: pointer; padding: 1.1rem 3rem 1.1rem 1.4rem; position: relative;
    font: 600 1rem/1.4 var(--font-head); color: var(--navy-900);
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
    content: "\f078"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: .8rem;
    position: absolute; right: 1.4rem; top: 50%; transform: translateY(-50%); color: var(--gold-600); transition: transform .2s var(--ease);
}
.accordion[open] summary::after { transform: translateY(-50%) rotate(180deg); }
.accordion[open] summary { border-bottom: 1px solid var(--line); }
.accordion__body { padding: 1.25rem 1.4rem; }
.accordion__body > :last-child { margin-bottom: 0; }

/* ---------- 14. Documents / people / contacts ---------- */
.doc-list { display: grid; gap: .75rem; list-style: none; padding: 0; margin: 0; }
.doc-list--grid { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.doc-item {
    display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink);
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
.doc-item:hover { color: var(--ink); border-color: var(--gold-500); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.doc-item__icon { width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0; display: grid; place-items: center; background: #fdecea; color: var(--red-600); font-size: 1.2rem; }
.doc-item__title { font-weight: 600; line-height: 1.4; }
.doc-item__meta { display: block; font-size: .8rem; color: var(--muted); font-weight: 400; margin-top: .15rem; }
.doc-item__action { margin-left: auto; color: var(--gold-600); }

.person { text-align: center; }
.person__photo { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); margin-bottom: 1rem; background: var(--bg-soft); }
.person__avatar { width: 96px; height: 96px; margin: 0 auto 1rem; border-radius: 50%; display: grid; place-items: center; background: var(--navy-900); color: var(--gold-500); font-size: 2rem; }
.person__name { font-size: 1.05rem; margin-bottom: .2rem; }
.person__role { font-size: .88rem; color: var(--muted); margin: 0; }

.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem; }
.contact-list li { display: flex; gap: .85rem; align-items: flex-start; }
.contact-list i { width: 1.2rem; margin-top: .3rem; color: var(--gold-600); text-align: center; }
.contact-list span { display: block; font-size: .8rem; color: var(--muted); line-height: 1.3; }
.contact-list a, .contact-list strong { color: var(--navy-900); font-weight: 600; }

/* ---------- 15. Forms / search ---------- */
.search { position: relative; }
.search input, .input {
    width: 100%; padding: .8rem 1rem .8rem 2.75rem; border: 1px solid var(--line); border-radius: 999px; background: #fff;
    font: 400 .95rem/1.2 var(--font-body); color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.input { padding-left: 1rem; border-radius: var(--radius-sm); }
.search input:focus, .input:focus { outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 4px rgba(201, 162, 39, .15); }
.search > i { position: absolute; left: 1.05rem; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }

.toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; }
.toolbar .search { flex: 1 1 280px; max-width: 420px; }

.empty-state { text-align: center; padding: 3.5rem 1.5rem; color: var(--muted); }
.empty-state i { font-size: 2.75rem; color: var(--line); margin-bottom: 1rem; display: block; }
.empty-state h3 { color: var(--ink-2); }

.pagination { display: flex; justify-content: center; flex-wrap: wrap; gap: .4rem; margin-top: 2.5rem; }
.pagination button {
    min-width: 42px; height: 42px; padding: 0 .75rem; border-radius: 10px; border: 1px solid var(--line); background: #fff;
    font: 600 .9rem/1 var(--font-head); color: var(--ink-2); cursor: pointer;
}
.pagination button:hover:not(:disabled) { border-color: var(--navy-900); color: var(--navy-900); }
.pagination button[aria-current="page"] { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }
.pagination button:disabled { opacity: .4; cursor: default; }
.pagination span { align-self: center; color: var(--muted); padding: 0 .25rem; }

/* ---------- 16. News ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.news-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.news-card .card__media { aspect-ratio: 16 / 10; }
.news-card__date { font-size: .8rem; color: var(--muted); display: flex; align-items: center; gap: .4rem; }
.news-card__date i { color: var(--gold-600); }
.news-card__title { font-size: 1.05rem; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-card__text { font-size: .92rem; color: var(--ink-2); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-card .badge { position: absolute; top: 1rem; left: 1rem; z-index: 1; }

.news-featured { display: grid; grid-template-columns: 1.3fr 1fr; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 1.75rem; color: inherit; }
.news-featured:hover { color: inherit; box-shadow: var(--shadow); }
.news-featured__media { min-height: 320px; background: var(--bg-soft); }
.news-featured__media img { width: 100%; height: 100%; object-fit: cover; }
.news-featured__body { padding: clamp(1.5rem, 3vw, 2.5rem); display: flex; flex-direction: column; justify-content: center; gap: .75rem; }
.news-featured__body h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); margin: 0; }
.news-featured__body p { color: var(--ink-2); margin: 0; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }

.skeleton { background: linear-gradient(90deg, var(--bg-soft) 25%, #e9edf2 37%, var(--bg-soft) 63%); background-size: 400% 100%; animation: skeleton 1.4s ease infinite; border-radius: var(--radius); min-height: 340px; }
@keyframes skeleton { 0% { background-position: 100% 50%; } 100% { background-position: 0 50%; } }

.article { max-width: 820px; margin: 0 auto; }
.article__header { margin-bottom: 2rem; }
.article__header h1 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); line-height: 1.25; }
.article__image { margin: 0 0 2rem; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.article__image img { width: 100%; cursor: zoom-in; }
.article__body { font-size: 1.08rem; line-height: 1.85; color: var(--ink-2); }
.article__body p { white-space: pre-line; }
.article__footer { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.share { display: flex; gap: .5rem; }
.share a, .share button { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line); background: #fff; color: var(--navy-900); cursor: pointer; }
.share a:hover, .share button:hover { background: var(--navy-900); color: #fff; }

/* ---------- 17. Quick links / CTA ---------- */
.quick-links { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 1rem; }
.quick-link {
    display: flex; flex-direction: column; align-items: center; gap: .75rem; text-align: center;
    padding: 1.5rem 1rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); color: var(--navy-900);
    font: 600 .9rem/1.3 var(--font-head); transition: all .25s var(--ease);
}
.quick-link i { font-size: 1.5rem; color: var(--gold-600); transition: transform .25s var(--ease); }
.quick-link:hover { background: var(--navy-900); border-color: var(--navy-900); color: #fff; transform: translateY(-3px); }
.quick-link:hover i { color: var(--gold-500); transform: scale(1.1); }

.cta-band {
    display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center;
    padding: clamp(2rem, 4vw, 3rem); border-radius: var(--radius-lg);
    background: radial-gradient(circle at 90% 10%, rgba(201, 162, 39, .25), transparent 50%), linear-gradient(135deg, var(--navy-900), var(--navy-700));
    color: #cdd7e4;
}
.cta-band h2 { color: #fff; margin-bottom: .4rem; }
.cta-band p { margin: 0; }

/* ---------- 18. Footer ---------- */
.site-footer { background: var(--navy-950); color: #9fb0c6; font-size: .92rem; padding-top: clamp(3rem, 6vw, 4.5rem); }
.site-footer a { color: #cfd8e6; }
.site-footer a:hover { color: var(--gold-500); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand { display: flex; align-items: center; gap: .85rem; margin-bottom: 1rem; }
.footer-brand img { width: 60px; height: 60px; object-fit: contain; }
.footer-brand strong { display: block; font: 800 1.25rem/1.1 var(--font-head); color: #fff; letter-spacing: .04em; }
.footer-brand span { font-size: .78rem; color: #9fb0c6; }
.footer-slogan { color: var(--gold-500); font-family: var(--font-head); font-weight: 600; font-size: .88rem; letter-spacing: .04em; }
.site-footer h4 { color: #fff; font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 1.1rem; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer-contact li { display: flex; gap: .65rem; }
.footer-contact i { color: var(--gold-500); width: 1rem; margin-top: .3rem; text-align: center; }
.footer-contact span { color: #7f90a8; }
.socials { display: flex; gap: .5rem; margin-top: 1.25rem; }
.socials a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, .06); color: #fff; }
.socials a:hover { background: var(--gold-500); color: var(--navy-950); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .08); padding: 1.25rem 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem; font-size: .82rem; color: #7f90a8; }
.footer-bottom nav { display: flex; gap: 1.25rem; }

.back-to-top {
    position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 90; width: 46px; height: 46px; border-radius: 50%;
    border: 0; background: var(--gold-500); color: var(--navy-950); cursor: pointer; box-shadow: var(--shadow);
    opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .25s var(--ease);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: #fff; }

/* ---------- 19. Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 2rem; background: rgba(6, 15, 29, .92); opacity: 0; visibility: hidden; transition: opacity .2s; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(1400px, 100%); max-height: 86vh; width: auto; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox__caption { color: #cfd8e6; text-align: center; margin-top: .75rem; font-size: .9rem; }
.lightbox__btn { position: absolute; width: 48px; height: 48px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, .1); color: #fff; font-size: 1.2rem; cursor: pointer; }
.lightbox__btn:hover { background: var(--gold-500); color: var(--navy-950); }
.lightbox__close { top: 1rem; right: 1rem; }
.lightbox__prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1rem; top: 50%; transform: translateY(-50%); }

/* ---------- 20. Motion ---------- */
.reveal-ready { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-ready.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    .reveal-ready { opacity: 1; transform: none; }
}

/* ---------- 21. Responsive ---------- */
@media (max-width: 1180px) {
    .nav-toggle { display: block; }
    .site-nav {
        position: fixed; top: 0; right: 0; bottom: 0; z-index: 120; width: min(360px, 88vw);
        background: #fff; box-shadow: var(--shadow-lg); padding: 5rem 1rem 2rem; overflow-y: auto;
        transform: translateX(100%); transition: transform .3s var(--ease);
    }
    .site-nav.is-open { transform: none; }
    .nav-toggle { z-index: 130; }
    .nav-backdrop { display: block; position: fixed; inset: 0; z-index: 110; background: rgba(6, 15, 29, .5); opacity: 0; visibility: hidden; transition: opacity .3s; }
    .nav-backdrop.is-open { opacity: 1; visibility: visible; }
    .nav-list { flex-direction: column; align-items: stretch; gap: .15rem; }
    .nav-link { width: 100%; justify-content: space-between; padding: .85rem 1rem; font-size: .95rem; }
    .nav-link.is-active::after { display: none; }
    .subnav { position: static; transform: none; min-width: 0; box-shadow: none; border: 0; padding: 0 0 .5rem .75rem; display: none; opacity: 1; visibility: visible; }
    .subnav::before { display: none; }
    .nav-item.is-open > .subnav { display: block; transform: none; }
    body.nav-open { overflow: hidden; }
    .quick-links { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
    .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid--3, .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .split, .split--wide-text, .split--wide-media { grid-template-columns: 1fr; }
    .split--reverse > :first-child { order: 0; }
    .with-sidebar, .tabs--vertical { grid-template-columns: 1fr; }
    .sidebar, .tabs--vertical .tabs__list { position: static; }
    .tabs--vertical .tabs__list { flex-direction: row; overflow-x: auto; flex-wrap: nowrap; border-radius: 999px; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .news-featured { grid-template-columns: 1fr; }
    .news-featured__media { min-height: 220px; aspect-ratio: 16 / 9; }
    .cta-band { grid-template-columns: 1fr; }
    .checklist--cols { grid-template-columns: 1fr; }
    .media-frame::after { inset: 12px -12px -12px 12px; }
}
@media (max-width: 640px) {
    .topbar__contact a:last-child, .topbar__links a:not(.topbar__cta) { display: none; }
    .brand__text span { display: none; }
    .brand__medal { display: none; }
    .grid--2, .grid--3, .grid--4, .news-grid, .news-grid--2 { grid-template-columns: 1fr; }
    .quick-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero__content { padding: 4rem 0 5.5rem; }
    .dl { grid-template-columns: 1fr; gap: .2rem; }
    .dl dd { margin-bottom: .6rem; }
    .quote { padding: 1.5rem 1.25rem 1.5rem 3.25rem; }
    .quote::before { left: .75rem; font-size: 3.5rem; }
    .map-embed iframe { height: 320px; }
}

@media print {
    .topbar, .site-header, .site-footer, .back-to-top, .hero__dots, .share { display: none !important; }
    .page-hero { background: none; color: #000; padding: 1rem 0; }
    .page-hero::before, .page-hero::after { display: none; }
    .page-hero h1 { color: #000; }
    .reveal-ready { opacity: 1; transform: none; }
}
