@font-face {
    font-family: "Be Vietnam Pro";
    src: url("../fonts/BeVietnamPro-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Be Vietnam Pro";
    src: url("../fonts/BeVietnamPro-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Be Vietnam Pro";
    src: url("../fonts/BeVietnamPro-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Be Vietnam Pro";
    src: url("../fonts/BeVietnamPro-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Be Vietnam Pro";
    src: url("../fonts/BeVietnamPro-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

:root {
    --blue-950: #082a4c;
    --blue-900: #0a365f;
    --blue-800: #0d477d;
    --blue-700: #1260a0;
    --blue-100: #e9f3fb;
    --blue-50: #f4f9fd;
    --gold: #f2b134;
    --gold-dark: #d68a08;
    --ink: #142333;
    --muted: #5e6e7e;
    --line: #dce5ec;
    --white: #fff;
    --shadow: 0 16px 40px rgba(7, 42, 76, .10);
    --radius: 18px;
    --font: "Be Vietnam Pro", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
svg { width: 1.35em; height: 1.35em; flex: none; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(850px, calc(100% - 40px)); }
.screen-reader-text {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link { position: fixed; left: 12px; top: -100px; z-index: 1000; background: #fff; padding: 10px 16px; }
.skip-link:focus { top: 12px; }

.utility-bar { background: var(--blue-950); color: #cbdcec; font-size: 12px; }
.utility-bar__inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; }
.utility-bar__links { display: flex; gap: 20px; text-transform: uppercase; letter-spacing: .05em; }
.utility-bar a:hover { color: var(--gold); }
.site-header { position: relative; z-index: 20; background: #fff; box-shadow: 0 2px 12px rgba(8, 42, 76, .08); }
.brand-row { min-height: 112px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 16px; min-width: 0; }
.brand__mark { width: 67px; color: var(--blue-700); }
.brand__text { display: flex; flex-direction: column; line-height: 1.35; }
.brand__parent { color: var(--blue-700); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.brand__text strong { color: var(--blue-950); font-size: clamp(21px, 2.2vw, 30px); font-weight: 800; text-transform: uppercase; }
.brand__text > span:last-child { color: var(--muted); font-size: 14px; }
.header-actions { display: flex; gap: 10px; }
.icon-button, .menu-toggle {
    border: 1px solid var(--line); background: #fff; color: var(--blue-900); border-radius: 10px;
    min-height: 44px; padding: 0 13px; cursor: pointer; align-items: center; justify-content: center;
}
.icon-button { display: flex; }
.menu-toggle { display: none; gap: 8px; }
.primary-nav { background: var(--blue-800); color: #fff; border-bottom: 4px solid var(--gold); }
.primary-nav .menu { display: flex; align-items: stretch; list-style: none; margin: 0; padding: 0; }
.primary-nav .menu > li { position: relative; }
.primary-nav .menu > li > a {
    display: flex; min-height: 52px; padding: 0 20px; align-items: center; font-size: 14px;
    font-weight: 600; border-right: 1px solid rgba(255,255,255,.12);
}
.primary-nav .menu > li > a:hover, .primary-nav .current-menu-item > a { background: rgba(255,255,255,.12); }
.primary-nav .sub-menu {
    position: absolute; min-width: 250px; list-style: none; padding: 8px; margin: 0; background: #fff;
    color: var(--ink); box-shadow: var(--shadow); border-radius: 0 0 12px 12px; opacity: 0;
    visibility: hidden; transform: translateY(6px); transition: .2s;
}
.primary-nav li:hover > .sub-menu, .primary-nav li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.primary-nav .sub-menu a { display: block; padding: 10px 12px; border-radius: 7px; }
.primary-nav .sub-menu a:hover { background: var(--blue-50); color: var(--blue-700); }
.header-search { padding: 16px 0; background: var(--blue-50); border-bottom: 1px solid var(--line); }
.search-form { display: flex; gap: 8px; }
.search-form label { flex: 1; }
.search-field { width: 100%; min-height: 46px; border: 1px solid var(--line); border-radius: 9px; padding: 0 14px; background: #fff; }
.search-form button {
    display: flex; gap: 8px; align-items: center; justify-content: center; border: 0; border-radius: 9px;
    background: var(--blue-700); color: #fff; padding: 0 18px; cursor: pointer;
}

.hero {
    position: relative; min-height: 480px; overflow: hidden; color: #fff;
    background: linear-gradient(115deg, var(--blue-950), #0d558d 68%, #1671ab);
}
.hero::before {
    content: ""; position: absolute; inset: 0; opacity: .22;
    background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 44px 44px;
}
.hero__backdrop { position: absolute; inset: 0; overflow: hidden; }
.mountain { position: absolute; bottom: -90px; width: 620px; height: 340px; background: rgba(8,42,76,.5); transform: rotate(45deg); border-radius: 24px; }
.mountain--one { right: -110px; }
.mountain--two { right: 260px; bottom: -210px; background: rgba(255,255,255,.05); }
.road {
    position: absolute; right: 10%; bottom: -130px; width: 160px; height: 520px;
    border-radius: 50%; border-left: 46px solid rgba(255,255,255,.13); transform: rotate(25deg);
}
.road::after { content: ""; position: absolute; left: -28px; top: 60px; width: 3px; height: 260px; background: repeating-linear-gradient(#f2b134 0 22px, transparent 22px 40px); }
.hero__inner { position: relative; min-height: 480px; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.hero__intro { max-width: 720px; padding: 64px 0 78px; }
.kicker { display: block; color: var(--gold-dark); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero .kicker { color: var(--gold); }
.hero h1 { max-width: 660px; margin: 12px 0 18px; font-size: clamp(38px, 5vw, 64px); line-height: 1.13; letter-spacing: -.03em; }
.hero p { max-width: 630px; margin: 0; color: #d8e7f3; font-size: 17px; }
.hero__links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
    min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    border-radius: 9px; padding: 0 18px; font-size: 14px; font-weight: 700;
}
.button--gold { background: var(--gold); color: var(--blue-950); }
.button--gold:hover { background: #ffc653; }
.button--ghost { color: #fff; border: 1px solid rgba(255,255,255,.35); }
.button--ghost:hover { background: rgba(255,255,255,.1); }
.button--blue { background: var(--blue-700); color: #fff; }
.hero__status {
    min-width: 250px; align-self: flex-end; margin-bottom: 40px; display: flex; gap: 12px; align-items: center;
    padding: 15px 18px; border: 1px solid rgba(255,255,255,.18); border-radius: 12px; background: rgba(8,42,76,.45); backdrop-filter: blur(10px);
}
.hero__status div { display: flex; flex-direction: column; }
.hero__status strong { font-size: 13px; }
.hero__status span:last-child { color: #c8d9e8; font-size: 11px; }
.status-dot { width: 10px; height: 10px; background: #65db8a; border-radius: 50%; box-shadow: 0 0 0 5px rgba(101,219,138,.15); }

.quick-links { position: relative; z-index: 2; margin-top: -25px; }
.quick-links__grid { display: grid; grid-template-columns: repeat(3, 1fr); background: #fff; border-radius: 15px; box-shadow: var(--shadow); overflow: hidden; }
.quick-links__grid > a { min-height: 96px; display: flex; align-items: center; gap: 14px; padding: 20px 24px; border-right: 1px solid var(--line); }
.quick-links__grid > a:hover { background: var(--blue-50); }
.quick-links__grid > a > svg { margin-left: auto; color: var(--blue-700); }
.quick-links__icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 11px; background: var(--blue-100); color: var(--blue-700); }
.quick-links__grid strong, .quick-links__grid small { display: block; }
.quick-links__grid strong { font-size: 14px; }
.quick-links__grid small { color: var(--muted); font-size: 11px; }

.section { padding: 80px 0; }
.section--tint { background: var(--blue-50); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.section-heading h2, .document-panel h2 { margin: 5px 0 0; color: var(--blue-950); font-size: clamp(27px, 3vw, 38px); line-height: 1.25; }
.section-heading > a, .text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--blue-700); font-size: 13px; font-weight: 700; }
.news-layout { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(330px, .7fr); gap: 30px; }
.lead-story { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 10px 30px rgba(7,42,76,.06); }
.lead-story__image { position: relative; display: block; aspect-ratio: 16/9; overflow: hidden; background: var(--blue-100); }
.lead-story__image img, .content-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.lead-story:hover img, .content-card:hover img { transform: scale(1.025); }
.lead-story__label { position: absolute; left: 18px; top: 18px; padding: 5px 10px; border-radius: 6px; background: var(--gold); color: var(--blue-950); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.lead-story__body { padding: 24px 27px 28px; }
.lead-story h3 { margin: 8px 0 10px; color: var(--blue-950); font-size: clamp(22px, 2.5vw, 30px); line-height: 1.35; }
.lead-story p, .content-card p { margin: 0; color: var(--muted); font-size: 14px; }
.post-date { display: flex; align-items: center; gap: 6px; color: #718190; font-size: 11px; font-weight: 600; }
.post-date svg { width: 15px; height: 15px; }
.story-list { display: flex; flex-direction: column; }
.compact-story { flex: 1; display: grid; grid-template-columns: 128px 1fr; gap: 17px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
.compact-story:first-child { padding-top: 0; }
.compact-story__image { aspect-ratio: 1.2; overflow: hidden; border-radius: 10px; background: var(--blue-100); }
.compact-story__image img { width: 100%; height: 100%; object-fit: cover; }
.compact-story h3 { margin: 5px 0 0; font-size: 15px; line-height: 1.45; }
.compact-story h3 a:hover, .content-card h3 a:hover, .lead-story h3 a:hover { color: var(--blue-700); }
.image-placeholder { width: 100%; height: 100%; display: grid; place-items: center; color: var(--blue-700); background: linear-gradient(135deg, var(--blue-100), #d9eafb); }
.image-placeholder { padding: 18px; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-align: center; }
.image-placeholder svg { width: 40px; height: 40px; opacity: .45; }
.card-grid, .archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.content-card { overflow: hidden; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.content-card__image { display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--blue-100); }
.content-card__body { display: flex; flex-direction: column; flex: 1; padding: 21px 22px 24px; }
.content-card h3 { margin: 8px 0 10px; color: var(--blue-950); font-size: 17px; line-height: 1.5; }
.content-card .text-link { margin-top: auto; padding-top: 18px; }
.document-panel { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; padding: 55px; border-radius: 24px; color: #fff; background: var(--blue-950); }
.document-panel .kicker { color: var(--gold); }
.document-panel h2 { color: #fff; }
.document-panel__heading p { color: #b9cede; font-size: 14px; }
.document-panel__heading .button { margin-top: 12px; background: var(--gold); color: var(--blue-950); }
.document-list { display: flex; flex-direction: column; }
.document-item { display: grid; grid-template-columns: 42px 1fr auto; gap: 15px; align-items: center; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.document-item:hover strong { color: var(--gold); }
.document-item__icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 9px; color: var(--gold); background: rgba(255,255,255,.08); }
.document-item strong, .document-item small { display: block; }
.document-item strong { font-size: 13px; line-height: 1.45; }
.document-item small { margin-top: 3px; color: #9bb5ca; font-size: 10px; }

.inner-main { min-height: 55vh; padding: 65px 0 80px; background: var(--blue-50); }
.content-with-sidebar { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 40px; align-items: start; }
.page-heading { margin-bottom: 28px; }
.page-heading h1 { margin: 7px 0 0; color: var(--blue-950); font-size: clamp(30px, 4vw, 44px); line-height: 1.25; }
.archive-grid { grid-template-columns: repeat(2, 1fr); }
.sidebar { position: sticky; top: 24px; }
.side-widget { margin-bottom: 20px; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.side-widget__title { margin: 0 0 16px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); color: var(--blue-950); font-size: 18px; }
.side-widget ul { margin: 0; padding: 0; list-style: none; }
.side-widget li { padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.single-article { padding: 40px 46px; background: #fff; border-radius: var(--radius); box-shadow: 0 10px 35px rgba(7,42,76,.07); }
.article-header h1 { margin: 14px 0; color: var(--blue-950); font-size: clamp(30px, 4vw, 46px); line-height: 1.3; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; color: var(--blue-700); font-size: 12px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 22px; color: var(--muted); font-size: 12px; }
.article-meta span { display: flex; align-items: center; gap: 6px; }
.article-featured { margin: 30px 0; }
.article-featured img { width: 100%; border-radius: 12px; }
.article-content { font-family: var(--font); color: #273746; font-size: 16px; line-height: 1.85; }
.article-content h2, .article-content h3 { color: var(--blue-950); line-height: 1.4; }
.article-content a { color: var(--blue-700); text-decoration: underline; }
.article-content table { width: 100%; border-collapse: collapse; }
.article-content td, .article-content th { padding: 10px; border: 1px solid var(--line); }
.article-content iframe { max-width: 100%; }
.nav-links { display: flex; gap: 8px; justify-content: center; margin-top: 35px; }
.page-numbers { display: grid; place-items: center; min-width: 40px; height: 40px; padding: 0 10px; border-radius: 8px; background: #fff; border: 1px solid var(--line); }
.page-numbers.current { background: var(--blue-700); color: #fff; }
.error-page { padding: 80px 20px; text-align: center; }
.error-page__code { color: var(--blue-100); font-size: 120px; font-weight: 800; line-height: 1; }
.error-page h1 { color: var(--blue-950); }

.site-footer { color: #d5e3ee; background: #071f36; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1.2fr .7fr; gap: 60px; padding-top: 60px; padding-bottom: 55px; }
.footer-brand__eyebrow { color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.footer-brand h2 { margin: 9px 0; color: #fff; font-size: 22px; line-height: 1.45; text-transform: uppercase; }
.footer-brand p { margin: 0; color: #91aabd; font-size: 13px; }
.footer-contact p { display: flex; gap: 13px; margin: 0 0 17px; }
.footer-contact svg { margin-top: 3px; color: var(--gold); }
.footer-contact span { display: flex; flex-direction: column; font-size: 13px; }
.footer-contact strong, .footer-nav h3 { color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: .07em; }
.footer-nav h3 { margin-top: 0; }
.footer-agency-link {
    display: block;
    margin-bottom: 18px;
    padding: 5px;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
}
.footer-agency-link img {
    width: 100%;
    height: auto;
    max-height: 90px;
    object-fit: contain;
}
.footer-agency-link:hover { box-shadow: 0 0 0 2px var(--gold); }
.footer-nav ul { list-style: none; margin: 0; padding: 0; }
.footer-nav li { margin-bottom: 8px; font-size: 13px; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.09); color: #7892a6; font-size: 11px; }
.footer-bottom .container { min-height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }

@media (max-width: 960px) {
    .menu-toggle { display: flex; }
    .primary-nav .menu { display: none; flex-direction: column; padding: 8px 0; }
    .primary-nav .menu.is-open { display: flex; }
    .primary-nav .menu > li > a { min-height: 46px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
    .primary-nav .sub-menu { position: static; display: block; visibility: visible; opacity: 1; transform: none; color: #fff; background: rgba(0,0,0,.1); box-shadow: none; border-radius: 0; }
    .hero__status { display: none; }
    .news-layout, .document-panel { grid-template-columns: 1fr; }
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .content-with-sidebar { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
    body { font-size: 15px; }
    .container, .narrow { width: min(100% - 28px, 1160px); }
    .utility-bar__inner > span { display: none; }
    .utility-bar__inner { justify-content: flex-end; }
    .brand-row { min-height: 92px; }
    .brand__mark { width: 48px; }
    .brand__parent, .brand__text > span:last-child { display: none; }
    .brand__text strong { max-width: 220px; font-size: 15px; line-height: 1.45; }
    .menu-toggle span { display: none; }
    .hero, .hero__inner { min-height: 510px; }
    .hero__intro { padding: 52px 0 72px; }
    .hero h1 { font-size: 40px; }
    .hero p { font-size: 15px; }
    .hero__links { align-items: stretch; flex-direction: column; }
    .quick-links { margin-top: -18px; }
    .quick-links__grid { grid-template-columns: 1fr; }
    .quick-links__grid > a { min-height: 78px; padding: 14px 17px; border-right: 0; border-bottom: 1px solid var(--line); }
    .section { padding: 58px 0; }
    .section-heading { align-items: start; }
    .section-heading > a { white-space: nowrap; padding-top: 6px; }
    .news-layout { gap: 20px; }
    .lead-story__body { padding: 20px; }
    .compact-story { grid-template-columns: 105px 1fr; }
    .card-grid, .archive-grid { grid-template-columns: 1fr; }
    .document-panel { gap: 28px; padding: 30px 22px; border-radius: 18px; }
    .document-item { grid-template-columns: 38px 1fr auto; }
    .document-item__icon { width: 38px; height: 38px; }
    .inner-main { padding: 42px 0 60px; }
    .single-article { padding: 26px 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 35px; padding-top: 45px; }
    .footer-bottom .container { flex-direction: column; align-items: flex-start; justify-content: center; padding: 14px 0; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
