:root {
--navy: #103271;
--sky: #0198E4;
--indigo: #26348D;
--magenta: #DA1790;
--magenta-deep: #B00E73;
--gold: #FECA6B;
--orange: #F67439;
--green: #0A977D;
--cyan: #00CCCE;
--ink: #1d2340;
--paper: #ffffff;
--mist: #f2f7fc;
--line: #dbe4f0;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
margin: 0;
font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
color: var(--ink);
background: var(--paper);
line-height: 1.65;
font-size: 17px;
}
img { max-width: 100%; height: auto; }
a { color: var(--sky); }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
h1, h2, h3 { color: var(--navy); line-height: 1.2; font-weight: 800; }
h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
::placeholder { color: rgba(29, 35, 64, 0.25); }
.spectrum { display: flex; gap: 6px; margin: 14px 0 0; padding: 0; list-style: none; }
.spectrum i { width: 34px; height: 7px; border-radius: 4px; display: block; }
.spectrum li:nth-child(1) i { background: var(--sky); }
.spectrum li:nth-child(2) i { background: var(--gold); }
.spectrum li:nth-child(3) i { background: var(--magenta); }
.spectrum li:nth-child(4) i { background: var(--green); }
.spectrum li:nth-child(5) i { background: var(--orange); }
.top { background: var(--paper); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 40; }
.top .wrap { display: flex; align-items: center; gap: 18px; min-height: 74px; }
.top .logo img { display: block; width: min(250px, 52vw); height: auto; }
.top nav { margin-left: auto; display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.top nav a { color: var(--navy); text-decoration: none; font-weight: 700; font-size: 0.95rem; padding: 8px 10px; border-radius: 8px; }
.top nav a:hover { background: var(--mist); }
.top nav a.cta { background: var(--magenta); color: #fff; padding: 10px 18px; border-radius: 999px; margin-left: 6px; }
.top nav a.cta:hover { background: var(--magenta-deep); }
.menu-btn { display: none; }
@media (max-width: 880px) {
.menu-btn { display: inline-flex; margin-left: auto; background: none; border: 2px solid var(--navy); color: var(--navy); font-weight: 800; border-radius: 8px; padding: 7px 12px; font-size: 0.95rem; }
.top nav { display: none; width: 100%; flex-direction: column; align-items: stretch; padding: 8px 0 14px; }
.top nav a { padding: 12px 10px; }
.top nav a.cta { text-align: center; margin: 8px 0 0; }
.top.open nav { display: flex; }
.top .wrap { flex-wrap: wrap; }
}
.band { padding: 56px 0; }
.band.tint { background: var(--mist); }
.band.navy { background: var(--navy); color: #fff; }
.band.navy h2, .band.navy h3 { color: #fff; }
.hero { background: linear-gradient(160deg, var(--mist) 0 60%, #e6f4fd); padding: 72px 0 60px; }
.hero p.lead { font-size: 1.15rem; max-width: 46rem; }
.hero .btn { margin-top: 10px; }
.btn { display: inline-block; background: var(--magenta); color: #fff; font-weight: 800; text-decoration: none; padding: 13px 26px; border-radius: 999px; border: 0; font-size: 1rem; cursor: pointer; }
.btn:hover { background: var(--magenta-deep); }
.btn.ghost { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn.ghost:hover { background: var(--navy); color: #fff; }
.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; margin-top: 26px; }
.tile { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 22px 20px 18px; border-top: 6px solid var(--sky); }
.tiles .tile:nth-child(4n+2) { border-top-color: var(--gold); }
.tiles .tile:nth-child(4n+3) { border-top-color: var(--magenta); }
.tiles .tile:nth-child(4n+4) { border-top-color: var(--green); }
.tile h3 { margin: 0 0 8px; font-size: 1.1rem; }
.tile p { margin: 0; font-size: 0.97rem; }
.cols { display: flex; gap: 32px; flex-wrap: wrap; }
.cols .col { flex: 1 1 300px; min-width: 0; }
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; margin-top: 8px; }
.n-card { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; border-bottom: 6px solid var(--sky); }
.news-grid .n-card:nth-child(5n+2) { border-bottom-color: var(--gold); }
.news-grid .n-card:nth-child(5n+3) { border-bottom-color: var(--magenta); }
.news-grid .n-card:nth-child(5n+4) { border-bottom-color: var(--green); }
.news-grid .n-card:nth-child(5n+5) { border-bottom-color: var(--orange); }
.n-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.n-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; }
.n-meta { font-size: 0.82rem; color: #5a6382; margin: 0; display: flex; gap: 10px; flex-wrap: wrap; }
.n-cat { color: var(--indigo); font-weight: 700; }
.n-body h3 { margin: 0; font-size: 1.08rem; }
.n-body h3 a { color: var(--navy); text-decoration: none; }
.n-body h3 a:hover { text-decoration: underline; }
.n-body p { margin: 0; font-size: 0.95rem; }
.n-more { font-weight: 700; color: var(--magenta); text-decoration: none; font-size: 0.93rem; }
.pager { display: flex; justify-content: space-between; align-items: center; margin-top: 34px; gap: 12px; }
.pager a { font-weight: 700; text-decoration: none; color: var(--navy); }
.pager span { color: #5a6382; font-size: 0.92rem; }
.article-head { background: var(--mist); padding: 46px 0 30px; }
.article-head h1 { max-width: 52rem; }
.a-meta { color: #5a6382; font-size: 0.92rem; }
.article { max-width: 760px; }
.article img { border-radius: 12px; margin: 10px 0; }
.article h2 { margin-top: 2em; }
.article table { border-collapse: collapse; width: 100%; overflow-x: auto; display: block; }
.article td, .article th { border: 1px solid var(--line); padding: 8px 12px; text-align: left; }
.article blockquote { border-left: 5px solid var(--gold); margin: 1.4em 0; padding: 4px 0 4px 18px; color: #414a6b; }
.dir { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; margin-top: 20px; }
.dir .tile h3 { font-size: 1.02rem; }
.dir .tile a { word-break: break-word; }
.enquiry { background: var(--navy); color: #fff; padding: 60px 0; }
.enquiry h2 { color: #fff; margin-top: 0; }
.enquiry p { max-width: 44rem; }
.eq-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; position: relative; }
.eq-form label { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 5px; }
.eq-form input, .eq-form select, .eq-form textarea {
width: 100%; padding: 12px; border-radius: 9px; border: 1px solid #3d5494;
background: #fff; color: var(--ink); font: inherit; font-size: 0.97rem;
}
.eq-form textarea { min-height: 110px; resize: vertical; }
.eq-wide { grid-column: 1 / -1; }
.eq-form .btn { grid-column: 1 / -1; justify-self: start; background: var(--gold); color: var(--navy); }
.eq-form .btn:hover { background: #ffd98d; }
.eq-note { grid-column: 1 / -1; background: #0A977D; color: #fff; padding: 12px 16px; border-radius: 9px; }
.eq-note.err { background: #c22f4b; }
[hidden] { display: none !important; }
@media (max-width: 640px) { .eq-form { grid-template-columns: 1fr; } }
footer { background: #0b2452; color: #cdd8ef; padding: 44px 0 30px; font-size: 0.95rem; }
footer .wrap { display: flex; gap: 40px; flex-wrap: wrap; align-items: flex-start; }
footer .f-brand { max-width: 320px; }
footer .f-brand img { width: 220px; filter: brightness(0) invert(1); opacity: 0.95; }
footer nav { display: flex; flex-direction: column; gap: 8px; }
footer a { color: #fff; text-decoration: none; }
footer a:hover { text-decoration: underline; }
footer .f-note { flex-basis: 100%; border-top: 1px solid #27406f; margin-top: 10px; padding-top: 16px; font-size: 0.85rem; color: #9fb1d6; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }