:root {
    --navy: #123c69;
    --navy-dark: #0b2949;
    --teal: #109c95;
    --teal-dark: #08746f;
    --orange: #f28c28;
    --yellow: #ffb703;
    --ink: #1c2b39;
    --muted: #667788;
    --soft: #f3f8fb;
    --line: #dce6ed;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(17, 58, 94, 0.13);
    --radius: 22px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff; padding: 10px 14px; z-index: 1000; }
.skip-link:focus { left: 10px; top: 10px; }

.topbar { background: var(--navy-dark); color: #eaf4fa; font-size: 0.84rem; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar p { margin: 0; }
.topbar-links { display: flex; gap: 24px; align-items: center; }
.topbar a { color: #fff; font-weight: 700; }
.pulse-dot { width: 8px; height: 8px; background: var(--yellow); border-radius: 50%; display: inline-block; margin-right: 7px; box-shadow: 0 0 0 0 rgba(255,183,3,.7); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(255,183,3,0); } 100% { box-shadow: 0 0 0 0 rgba(255,183,3,0); } }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(18,60,105,.08); backdrop-filter: blur(14px); transition: box-shadow .25s ease; }
.site-header.scrolled { box-shadow: 0 12px 34px rgba(17, 58, 94, .11); }
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 14px; flex: 0 0 auto; padding: 4px 0; }
.brand .brand-icon { width: 78px; height: 78px; object-fit: contain; flex: 0 0 auto; }
.brand-name { color: #111; font-size: clamp(1.45rem, 2vw, 1.9rem); line-height: 1; font-weight: 950; letter-spacing: .015em; white-space: nowrap; }
.main-nav { display: flex; align-items: center; gap: 7px; }
.main-nav > a { padding: 10px 11px; font-size: .94rem; font-weight: 700; color: #3d5265; border-radius: 10px; }
.main-nav > a:hover, .main-nav > a.active { color: var(--teal-dark); background: #eaf8f7; }
.main-nav .nav-cta { background: var(--orange); color: #fff; padding-inline: 17px; margin-left: 4px; }
.main-nav .nav-cta:hover { background: #df7618; color: #fff; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.menu-toggle span { width: 26px; height: 2px; display: block; background: var(--navy); margin: 6px; transition: .2s; }

.hero { position: relative; overflow: hidden; background: #071c2d; }
.hero-slider { position: relative; width: 100%; aspect-ratio: 16 / 7; min-height: 480px; max-height: 700px; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .7s ease; }
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-slide::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,26,47,.76) 0%, rgba(5,26,47,.42) 40%, rgba(5,26,47,.06) 72%); z-index: 1; pointer-events: none; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; image-rendering: auto; }
.hero-slide-banner { background: #fff; }
.hero-slide-banner::before { display: none; }
.hero-slide-banner img { object-fit: contain; }
.hero-content { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; }
.hero-copy { max-width: 670px; color: #fff; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--teal-dark); font-size: .8rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 14px; }
.eyebrow::before { content: ""; width: 34px; height: 3px; border-radius: 5px; background: var(--orange); }
.hero .eyebrow { color: #7ce7e0; }
.hero-title { font-size: clamp(2.7rem, 6vw, 5rem); line-height: 1.04; margin: 0 0 20px; letter-spacing: -.04em; }
.hero-text { max-width: 600px; font-size: 1.14rem; color: #e4eef5; margin: 0 0 30px; }
.button-row { display: flex; flex-wrap: wrap; gap: 13px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; border: 0; border-radius: 12px; background: var(--teal); color: #fff; font-weight: 800; cursor: pointer; transition: transform .2s, background .2s, box-shadow .2s; }
.button:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 12px 25px rgba(16,156,149,.25); }
.button-outline { background: transparent; border: 1px solid rgba(255,255,255,.65); }
.button-outline:hover { background: #fff; color: var(--navy); }
.button-orange { background: var(--orange); }
.button-orange:hover { background: #d87316; }
.button-light { background: #fff; color: var(--navy); }
.button-light:hover { background: #eaf7f7; }
.button-small { min-height: 40px; padding-inline: 16px; font-size: .9rem; }
.hero-controls { position: absolute; left: 0; right: 0; bottom: 34px; z-index: 4; }
.hero-control-inner { display: flex; align-items: center; justify-content: space-between; }
.hero-dots { display: flex; gap: 8px; }
.hero-dot { width: 32px; height: 4px; border: 0; border-radius: 10px; background: rgba(255,255,255,.45); cursor: pointer; }
.hero-dot.active { background: var(--yellow); }
.hero-arrows { display: flex; gap: 8px; }
.hero-arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.45); background: rgba(4,28,49,.35); color: #fff; font-size: 1.2rem; cursor: pointer; }
.hero-arrow:hover { background: var(--teal); }

.section { padding: 92px 0; }
.section-sm { padding: 68px 0; }
.section-soft { background: var(--soft); }
.section-dark { background: var(--navy-dark); color: #fff; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 25px; margin-bottom: 38px; }
.section-heading.center { display: block; text-align: center; max-width: 760px; margin-inline: auto; margin-bottom: 45px; }
.section-heading h2, .page-hero h1 { color: var(--navy); font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.12; margin: 0; letter-spacing: -.035em; }
.section-dark .section-heading h2 { color: #fff; }
.section-heading p { max-width: 600px; margin: 10px 0 0; color: var(--muted); }
.section-dark .section-heading p { color: #c6d5e1; }

.quick-features { position: relative; z-index: 10; margin-top: -52px; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; background: transparent; border-radius: 0; box-shadow: none; overflow: visible; }
.feature-item { position: relative; padding: 30px 25px 28px; border-right: 0; border: 1px solid rgba(255,255,255,.7); border-radius: 24px; box-shadow: 0 14px 35px rgba(31, 56, 88, .10); overflow: hidden; transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; backdrop-filter: blur(8px); }
.feature-item::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.90), rgba(255,255,255,.68)); z-index: 0; }
.feature-item::after { content: ""; position: absolute; right: -18px; bottom: -18px; width: 108px; height: 108px; border-radius: 50%; background: rgba(255,255,255,.30); z-index: 0; }
.feature-item > * { position: relative; z-index: 1; }
.feature-item:hover { transform: translateY(-8px); box-shadow: 0 22px 45px rgba(31, 56, 88, .16); }
.feature-item:last-child { border-right: 0; }
.feature-icon { width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; color: #fff; font-size: 1.55rem; margin-bottom: 18px; box-shadow: 0 14px 26px rgba(0,0,0,.12); transition: transform .28s ease, box-shadow .28s ease; }
.feature-item:hover .feature-icon { transform: scale(1.07) rotate(-4deg); box-shadow: 0 18px 28px rgba(0,0,0,.18); }
.feature-item h3 { margin: 0 0 10px; color: var(--navy); font-size: 1.22rem; line-height: 1.25; }
.feature-item p { margin: 0; color: #485f73; font-size: .98rem; line-height: 1.72; }
.feature-item:nth-child(1) { background: linear-gradient(135deg, #eafaf7 0%, #dff8fb 100%); }
.feature-item:nth-child(1) .feature-icon { background: linear-gradient(135deg, #14b8a6 0%, #0f8f82 100%); }
.feature-item:nth-child(1) h3 { color: #0d8a82; }
.feature-item:nth-child(2) { background: linear-gradient(135deg, #fff0f6 0%, #fde8ef 100%); }
.feature-item:nth-child(2) .feature-icon { background: linear-gradient(135deg, #ff5d94 0%, #e73f7b 100%); }
.feature-item:nth-child(2) h3 { color: #ea4d81; }
.feature-item:nth-child(3) { background: linear-gradient(135deg, #fff8e8 0%, #fff0c9 100%); }
.feature-item:nth-child(3) .feature-icon { background: linear-gradient(135deg, #ffb300 0%, #f08a00 100%); }
.feature-item:nth-child(3) h3 { color: #ef8c00; }
.feature-item:nth-child(4) { background: linear-gradient(135deg, #eef5ff 0%, #deecff 100%); }
.feature-item:nth-child(4) .feature-icon { background: linear-gradient(135deg, #1f7bf2 0%, #0e5fd6 100%); }
.feature-item:nth-child(4) h3 { color: #1467db; }

.split { display: grid; grid-template-columns: 1.02fr .98fr; gap: 65px; align-items: center; }
.image-stack { position: relative; min-height: 500px; }
.image-stack .main-image { width: 88%; height: 470px; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow); }
.image-stack .float-card { position: absolute; right: 0; bottom: 0; width: 230px; padding: 24px; background: var(--navy); color: #fff; border-radius: 20px; box-shadow: var(--shadow); }
.image-stack .float-card strong { display: block; font-size: 1.45rem; color: var(--yellow); }
.lead { font-size: 1.11rem; color: #53687a; }
.check-list { list-style: none; padding: 0; margin: 25px 0 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px; }
.check-list li { position: relative; padding-left: 28px; font-weight: 700; color: #355065; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 900; }

.principal-card { display: grid; grid-template-columns: minmax(0, 1fr) 390px; background: #fff; border-radius: 28px; box-shadow: var(--shadow); overflow: hidden; }
.principal-card img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; object-position: center top; }
.principal-copy { padding: 55px; display: flex; flex-direction: column; justify-content: center; }
.quote-mark { color: var(--orange); font-family: Georgia, serif; font-size: 5rem; line-height: .5; }
.principal-copy blockquote { margin: 18px 0 20px; font-size: 1.14rem; color: #445c70; }
.principal-name { color: var(--navy); font-weight: 900; }
.principal-role { color: var(--muted); font-size: .92rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.info-card, .event-card, .program-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; transition: transform .25s, box-shadow .25s; }
.info-card:hover, .event-card:hover, .program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.info-card { padding: 30px; }
.info-card .feature-icon { margin-bottom: 20px; }
.info-card h3, .program-card h3, .event-card h3 { color: var(--navy); margin: 0 0 10px; }
.info-card p, .program-card p, .event-card p { color: var(--muted); margin: 0; }
.event-card img { width: 100%; height: 230px; object-fit: cover; }
.event-card-body { padding: 24px; }
.event-meta { color: var(--teal-dark); font-size: .8rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 9px; }
.program-card { padding: 28px; position: relative; }
.program-number { font-size: 3.8rem; line-height: 1; font-weight: 900; color: #e8f2f6; position: absolute; right: 22px; top: 15px; }

.notice-board { display: grid; grid-template-columns: 1.05fr .95fr; gap: 28px; }
.notice-panel { background: #fff; border-radius: 22px; border: 1px solid var(--line); padding: 30px; }
.notice-panel h3 { color: var(--navy); margin-top: 0; }
.notice-list { list-style: none; padding: 0; margin: 0; }
.notice-list li { display: grid; grid-template-columns: 58px 1fr; gap: 16px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.notice-list li:last-child { border-bottom: 0; }
.notice-date { background: #eaf8f7; color: var(--teal-dark); border-radius: 12px; text-align: center; padding: 7px 4px; font-weight: 900; line-height: 1.1; }
.notice-date small { display: block; font-size: .68rem; text-transform: uppercase; }
.notice-list a { font-weight: 800; color: #304b61; }
.notice-list p { margin: 3px 0 0; color: var(--muted); font-size: .9rem; }
.highlight-panel { border-radius: 22px; padding: 38px; background: linear-gradient(145deg, var(--teal), var(--navy)); color: #fff; min-height: 100%; display: flex; flex-direction: column; justify-content: center; }
.highlight-panel h3 { font-size: 2rem; margin: 0 0 15px; }
.highlight-panel p { color: #e5f2f4; }

.cta-banner { padding: 50px; border-radius: 28px; background: linear-gradient(120deg, var(--navy-dark), var(--navy) 55%, var(--teal)); color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 30px; overflow: hidden; position: relative; }
.cta-banner::after { content: ""; position: absolute; width: 240px; height: 240px; border: 45px solid rgba(255,255,255,.06); border-radius: 50%; right: -70px; top: -90px; }
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin: 0 0 10px; }
.cta-banner p { margin: 0; color: #d7e5ee; }
.cta-banner .button { position: relative; z-index: 2; flex: 0 0 auto; }

.page-hero { padding: 90px 0 80px; background: linear-gradient(135deg, #ecf9f8, #eef4fa); position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; width: 330px; height: 330px; border-radius: 50%; background: rgba(16,156,149,.08); right: -80px; top: -110px; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero p { max-width: 700px; font-size: 1.08rem; color: var(--muted); margin-bottom: 0; }
.breadcrumb { color: var(--teal-dark); font-weight: 800; margin-bottom: 16px; }
.breadcrumb a { color: var(--navy); }

.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.value-card { padding: 26px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.value-card h3 { color: var(--navy); margin-top: 0; }
.value-card p { margin-bottom: 0; color: var(--muted); }
.timeline { position: relative; max-width: 880px; margin: 0 auto; }
.timeline::before { content: ""; position: absolute; left: 25px; top: 0; bottom: 0; width: 2px; background: var(--line); }
.timeline-item { position: relative; padding: 0 0 34px 78px; }
.timeline-item::before { content: ""; position: absolute; left: 13px; top: 4px; width: 24px; height: 24px; border: 7px solid #dff4f2; background: var(--teal); border-radius: 50%; }
.timeline-item h3 { color: var(--navy); margin: 0 0 8px; }
.timeline-item p { color: var(--muted); margin: 0; }

.form-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 38px; align-items: start; }
.contact-card { padding: 34px; border-radius: 22px; background: var(--navy); color: #fff; }
.contact-card h2 { margin-top: 0; }
.contact-card p { color: #d5e2ec; }
.contact-block { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.contact-block:last-child { border-bottom: 0; }
.contact-block strong { color: var(--yellow); display: block; margin-bottom: 3px; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 34px; box-shadow: 0 16px 40px rgba(18,60,105,.08); }
.form-card h2 { color: var(--navy); margin-top: 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: grid; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
label { font-weight: 800; color: #344f64; font-size: .92rem; }
input, select, textarea { width: 100%; border: 1px solid #cfdce5; border-radius: 11px; padding: 12px 13px; color: var(--ink); background: #fff; outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(16,156,149,.12); }
textarea { min-height: 130px; resize: vertical; }
.alert { padding: 14px 16px; border-radius: 12px; margin-bottom: 18px; font-weight: 700; }
.alert-success { background: #e7f7ef; color: #11663e; border: 1px solid #b8e7ce; }
.alert-error { background: #fff0ef; color: #9b3029; border: 1px solid #efc2be; }
.error-list { margin: 0; padding-left: 20px; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 18px;
}
.gallery-item {
    position: relative;
    margin: 0;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    overflow: hidden;
    background: #e8f0f5;
    cursor: zoom-in;
    box-shadow: 0 10px 26px rgba(17, 58, 94, .10);
    isolation: isolate;
}
.gallery-item.portrait { aspect-ratio: 3 / 4; }
.gallery-item:nth-child(1),
.gallery-item:nth-child(10),
.gallery-item:nth-child(15),
.gallery-item:nth-child(20) { grid-column: span 2; aspect-ratio: 16 / 8.5; }
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease, filter .4s ease;
}
.gallery-item figcaption {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    padding: 40px 17px 16px;
    color: #fff;
    background: linear-gradient(transparent, rgba(5, 28, 49, .92));
    transform: translateY(24px);
    transition: transform .3s ease;
}
.gallery-item figcaption span {
    display: block;
    margin-bottom: 3px;
    color: #8ff0e9;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.gallery-item figcaption strong {
    display: block;
    font-size: .94rem;
    line-height: 1.35;
}
.gallery-item:hover img,
.gallery-item:focus-visible img { transform: scale(1.045); filter: saturate(1.05); }
.gallery-item:hover figcaption,
.gallery-item:focus-visible figcaption { transform: translateY(0); }
.gallery-item:focus-visible { outline: 4px solid rgba(16,156,149,.35); outline-offset: 3px; }

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 32px 82px;
    background: rgba(1, 13, 23, .94);
}
.lightbox.open { display: flex; }
.lightbox-content { display: grid; justify-items: center; max-width: min(1260px, 88vw); }
.lightbox img {
    display: block;
    max-width: 100%;
    max-height: 82vh;
    width: auto;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 22px 70px rgba(0,0,0,.4);
}
.lightbox-caption {
    margin: 13px 0 0;
    color: #fff;
    font-weight: 750;
    text-align: center;
}
.lightbox-close,
.lightbox-arrow {
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.96);
    color: var(--navy);
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(0,0,0,.25);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 46px;
    height: 46px;
    font-size: 1.55rem;
}
.lightbox-arrow {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    font-size: 2rem;
    line-height: 1;
}
.lightbox-close:hover,
.lightbox-arrow:hover { background: var(--teal); color: #fff; }

.faq { max-width: 880px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; background: none; border: 0; text-align: left; padding: 21px 5px; font-weight: 900; color: var(--navy); display: flex; justify-content: space-between; gap: 20px; cursor: pointer; }
.faq-answer { display: none; padding: 0 5px 22px; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question span { transform: rotate(45deg); }

.site-footer { background: #071f37; color: #d7e3ec; padding-top: 65px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .75fr 1.1fr .75fr; gap: 32px; padding-bottom: 50px; }
.footer-brand-lockup { display: inline-flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.footer-brand-lockup img { width: 96px; height: 96px; object-fit: contain; opacity: 1; flex: 0 0 auto; }
.footer-brand-lockup span { color: #fff; font-size: clamp(1.4rem, 1.65vw, 1.7rem); line-height: 1.05; font-weight: 950; letter-spacing: .02em; white-space: nowrap; }
.footer-brand p { max-width: 330px; }
.site-footer h3 { color: #fff; margin-top: 0; }
.footer-links, .contact-list { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin: 9px 0; }
.footer-links a:hover { color: #7ee0da; }
.contact-list li { margin-bottom: 10px; }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-links a { width: 37px; height: 37px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; font-weight: 900; }
.social-links a:hover { background: var(--teal); border-color: var(--teal); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom .container { min-height: 67px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: .86rem; }
.footer-bottom p { margin: 0; }
.footer-bottom .developer-credit a { color: #7ee0da; font-weight: 700; text-decoration: none; }
.footer-bottom .developer-credit a:hover { color: #fff; text-decoration: underline; }
.back-to-top { position: fixed; right: 22px; bottom: 22px; z-index: 80; width: 44px; height: 44px; border-radius: 50%; border: 0; background: var(--orange); color: #fff; font-size: 1.3rem; cursor: pointer; opacity: 0; transform: translateY(12px); pointer-events: none; transition: .25s; box-shadow: 0 10px 25px rgba(0,0,0,.18); }
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

@media (max-width: 1060px) {
    .menu-toggle { display: block; }
    .main-nav { position: absolute; left: 20px; right: 20px; top: calc(100% + 8px); display: none; background: #fff; padding: 16px; box-shadow: var(--shadow); border-radius: 16px; flex-direction: column; align-items: stretch; }
    .main-nav.open { display: flex; }
    .main-nav .nav-cta { margin-left: 0; text-align: center; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-item:nth-child(2) { border-right: 0; }
    .feature-item:nth-child(-n+2) { border-bottom: 0; }
    .split, .form-layout { grid-template-columns: 1fr; }
    .principal-card { grid-template-columns: minmax(0, 1fr) 330px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .topbar-inner { justify-content: center; min-height: 42px; }
    .topbar-links { display: none; }
    .header-inner { min-height: 72px; }
    .brand { gap: 10px; }
    .brand .brand-icon { width: 62px; height: 62px; }
    .brand-name { font-size: 1.28rem; }
    .hero-slider { aspect-ratio: auto; min-height: 500px; max-height: none; }
    .hero-slide img { height: 100%; }
    .hero-slide::before { background: linear-gradient(90deg, rgba(5,26,47,.80), rgba(5,26,47,.42)); }
    .hero-slide-banner img { object-fit: contain; background: #fff; }
    .hero-title { font-size: 2.65rem; }
    .hero-text { font-size: 1rem; }
    .hero-arrows { display: none; }
    .quick-features { margin-top: 0; padding-top: 20px; }
    .feature-grid, .card-grid, .values-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(10),
    .gallery-item:nth-child(15),
    .gallery-item:nth-child(20) { grid-column: span 2; }
    .gallery-item figcaption { transform: translateY(0); padding: 30px 12px 12px; }
    .gallery-item figcaption strong { font-size: .82rem; }
    .lightbox { padding: 65px 14px 24px; gap: 8px; }
    .lightbox-content { max-width: calc(100vw - 98px); }
    .lightbox img { max-height: 78vh; }
    .lightbox-arrow { width: 40px; height: 40px; font-size: 1.55rem; }
    .lightbox-close { top: 12px; right: 14px; }
    .feature-item { border-right: 0; border-bottom: 0; }
    .feature-item:last-child { border-bottom: 0; }
    .section { padding: 70px 0; }
    .section-sm { padding: 52px 0; }
    .section-heading { display: block; }
    .image-stack { min-height: 410px; }
    .image-stack .main-image { height: 380px; width: 94%; }
    .image-stack .float-card { width: 200px; }
    .check-list { grid-template-columns: 1fr; }
    .principal-card { grid-template-columns: 1fr; }
    .principal-card img { min-height: 380px; max-height: 520px; }
    .principal-copy { padding: 35px 25px; }
    .notice-board { grid-template-columns: 1fr; }
    .cta-banner { padding: 34px 25px; display: block; }
    .cta-banner .button { margin-top: 24px; }
    .page-hero { padding: 68px 0 58px; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full { grid-column: auto; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom .container { padding: 16px 0; display: block; text-align: center; }
    .footer-bottom p + p { margin-top: 5px; }
}

@media (max-width: 560px) {
    .brand { gap: 8px; }
    .brand .brand-icon { width: 54px; height: 54px; }
    .brand-name { font-size: 1.08rem; letter-spacing: 0; }
    .footer-brand-lockup { gap: 11px; }
    .footer-brand-lockup img { width: 88px; height: 88px; }
    .footer-brand-lockup span { font-size: 1.32rem; white-space: normal; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item,
    .gallery-item.portrait,
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(10),
    .gallery-item:nth-child(15),
    .gallery-item:nth-child(20) { grid-column: auto; aspect-ratio: 4 / 3; }
    .gallery-item.portrait { aspect-ratio: 3 / 4; }
    .lightbox { padding-inline: 8px; }
    .lightbox-content { max-width: calc(100vw - 74px); }
    .lightbox-arrow { width: 33px; height: 33px; font-size: 1.35rem; }
}

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

/* Mandatory Public Disclosure */
.topbar-disclosure{font-weight:900!important;color:#fff!important;background:rgba(239,138,36,.92);padding:5px 10px;border-radius:8px}.main-nav .mandatory-nav{background:#fff4e7;color:#b85e0a;border:1px solid #ffd4a6}.main-nav .mandatory-nav:hover,.main-nav .mandatory-nav.active{background:var(--orange);color:#fff}.home-disclosure-strip{background:#092a49;color:#fff;border-bottom:1px solid rgba(255,255,255,.12)}.home-disclosure-inner{min-height:70px;display:flex;align-items:center;justify-content:space-between;gap:24px;padding-block:12px}.home-disclosure-inner>div{display:flex;align-items:center;gap:12px;flex-wrap:wrap}.home-disclosure-inner strong{font-size:1.02rem}.home-disclosure-inner>div>span:last-child{color:#c8d8e6;font-size:.9rem}.home-disclosure-badge{display:inline-flex;padding:5px 9px;border-radius:999px;background:#e8f7f6;color:#087c77;font-size:.7rem;font-weight:900;text-transform:uppercase;letter-spacing:.08em}.disclosure-hero{background:radial-gradient(circle at 82% 12%,rgba(239,138,36,.17),transparent 26%),linear-gradient(135deg,#e9f8f7,#edf4fa)}.disclosure-hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:28px}.disclosure-outline{background:#fff;color:var(--navy);border:1px solid #bfd2df}.disclosure-outline:hover{background:#eaf7f7;color:var(--navy)}.disclosure-updated{font-size:.86rem!important;margin-top:18px!important;color:#65798b!important}.disclosure-section{background:#f6f9fb}.disclosure-index{display:flex;flex-wrap:wrap;gap:9px;margin-bottom:30px;position:sticky;top:84px;z-index:8;padding:13px;background:rgba(255,255,255,.94);border:1px solid #dce7ee;border-radius:15px;box-shadow:0 12px 30px rgba(23,57,80,.08);backdrop-filter:blur(12px)}.disclosure-index a{padding:8px 12px;border-radius:9px;background:#eef8f7;color:#087c77;font-size:.84rem;font-weight:850}.disclosure-index a:hover{background:var(--teal);color:#fff}.disclosure-tables{display:grid;gap:28px}.disclosure-card{background:#fff;border-radius:22px;box-shadow:var(--shadow);border:1px solid rgba(18,60,105,.09);overflow:hidden;scroll-margin-top:155px}.disclosure-card-heading{padding:25px 28px;display:flex;align-items:flex-start;justify-content:space-between;gap:25px;border-bottom:1px solid var(--line);background:linear-gradient(135deg,#fff,#f5fafc)}.disclosure-card-heading h2{margin:4px 0 8px;color:var(--navy);font-size:clamp(1.45rem,3vw,2rem)}.disclosure-card-heading p{margin:0;color:var(--muted)}.disclosure-kicker{font-size:.68rem;text-transform:uppercase;letter-spacing:.14em;font-weight:900;color:var(--orange)}.table-top-link{font-size:.78rem;font-weight:850;color:#477087;white-space:nowrap}.responsive-table{width:100%;overflow-x:auto}.disclosure-table{width:100%;border-collapse:collapse;min-width:720px}.disclosure-table th{background:#123c69;color:#fff;text-align:left;font-size:.78rem;text-transform:uppercase;letter-spacing:.055em;padding:15px 17px;border-right:1px solid rgba(255,255,255,.14)}.disclosure-table td{padding:16px 17px;border-bottom:1px solid #e4ebf0;border-right:1px solid #edf1f4;vertical-align:top;line-height:1.55;color:#314a5e}.disclosure-table tbody tr:nth-child(even){background:#f8fbfc}.disclosure-table tbody tr:hover{background:#eef8f7}.disclosure-table td:first-child{width:80px;font-weight:900;color:var(--navy)}.disclosure-table td:nth-child(2){font-weight:750;color:#223e54}.document-links{display:flex;flex-wrap:wrap;gap:8px;margin-top:10px}.document-button{display:inline-flex;align-items:center;gap:7px;padding:8px 11px;border-radius:9px;background:#fff4e7;color:#a95508;border:1px solid #ffd3a3;font-size:.78rem;font-weight:900}.document-button:hover{background:var(--orange);color:#fff}.document-icon{font-size:.58rem;line-height:1;background:#c94034;color:#fff;padding:4px;border-radius:4px;letter-spacing:.03em}.disclosure-note{display:flex;gap:17px;align-items:flex-start;padding:24px 27px;margin-top:28px;border-radius:18px;background:#0d3558;color:#fff}.disclosure-note h3{margin:0 0 7px}.disclosure-note p{margin:0;color:#ceddea;line-height:1.6}.disclosure-note-icon{flex:0 0 34px;width:34px;height:34px;display:grid;place-items:center;border-radius:50%;background:var(--orange);font-weight:900}
@media(max-width:1060px){.main-nav .mandatory-nav{text-align:center}.disclosure-index{top:12px}.home-disclosure-inner{align-items:flex-start;flex-direction:column}.home-disclosure-inner .button{width:100%}}
@media(max-width:700px){.topbar-disclosure{display:none}.disclosure-card-heading{padding:21px;display:block}.table-top-link{display:inline-block;margin-top:12px}.responsive-table{overflow:visible}.disclosure-table{min-width:0}.disclosure-table thead{display:none}.disclosure-table,.disclosure-table tbody,.disclosure-table tr,.disclosure-table td{display:block;width:100%}.disclosure-table tr{padding:13px 16px;border-bottom:1px solid var(--line)}.disclosure-table td{border:0;padding:7px 0;display:grid;grid-template-columns:minmax(105px,35%) 1fr;gap:13px}.disclosure-table td::before{content:attr(data-label);font-size:.69rem;text-transform:uppercase;letter-spacing:.06em;color:#6b7e8d;font-weight:900}.disclosure-table td:first-child{width:auto}.document-links{grid-column:2}.disclosure-index{overflow-x:auto;flex-wrap:nowrap}.disclosure-index a{white-space:nowrap}}

/* Keep the expanded navigation comfortable after adding the disclosure link. */
@media (max-width: 1500px) and (min-width: 1061px) {
    .menu-toggle { display: block; }
    .main-nav { position: absolute; left: 20px; right: 20px; top: calc(100% + 8px); display: none; background: #fff; padding: 16px; box-shadow: var(--shadow); border-radius: 16px; flex-direction: column; align-items: stretch; }
    .main-nav.open { display: flex; }
    .main-nav .nav-cta { margin-left: 0; text-align: center; }
}


/* Mandatory disclosure hosting-safe public PDF library */
.disclosure-primary{display:inline-flex;align-items:center;gap:9px}
.disclosure-downloads{background:#fff}
.disclosure-document-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;margin-top:28px}
.disclosure-document-card{display:grid;grid-template-columns:auto 1fr;align-items:center;gap:8px 11px;padding:18px;border:1px solid #dce7ee;border-radius:16px;background:#f8fbfc;color:#223e54;box-shadow:0 8px 22px rgba(23,57,80,.06);transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease}
.disclosure-document-card:hover{transform:translateY(-2px);border-color:#ef8a24;box-shadow:0 14px 30px rgba(23,57,80,.12)}
.disclosure-document-card>span:nth-child(2){font-weight:800;line-height:1.35}
.disclosure-document-card strong{grid-column:2;font-size:.78rem;color:#a95508}
@media(max-width:900px){.disclosure-document-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:600px){.disclosure-document-grid{grid-template-columns:1fr}.disclosure-hero-actions .button{width:100%;justify-content:center}}

/* 2026 homepage principal image and premium disclosure table refresh */
.principal-card {
    position: relative;
    border: 1px solid rgba(18,60,105,.08);
    box-shadow: 0 26px 70px rgba(17,58,94,.16);
}
.principal-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: linear-gradient(180deg,var(--orange),var(--teal));
    z-index: 2;
}
.principal-card img {
    object-position: center center;
    background: #f7f2ea;
}

.disclosure-section {
    position: relative;
    background:
        radial-gradient(circle at 7% 8%,rgba(16,156,149,.10),transparent 22%),
        radial-gradient(circle at 94% 25%,rgba(242,140,40,.10),transparent 20%),
        linear-gradient(180deg,#f7fafc 0%,#eef5f8 100%);
}
.disclosure-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(18,60,105,.055) 1px,transparent 1px);
    background-size: 24px 24px;
    mask-image: linear-gradient(to bottom,black,transparent 75%);
}
.disclosure-section > .container { position: relative; z-index: 1; }
.section-heading.centered {
    display: block;
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.centered h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(2rem,4vw,3.2rem);
    line-height: 1.12;
    letter-spacing: -.035em;
}
.section-heading.centered p { margin-inline: auto; }

.disclosure-index {
    top: 96px;
    gap: 10px;
    margin-bottom: 38px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    background: linear-gradient(135deg,rgba(11,41,73,.97),rgba(18,60,105,.96));
    box-shadow: 0 18px 42px rgba(11,41,73,.20);
}
.disclosure-index::before {
    content: "Jump to:";
    display: inline-flex;
    align-items: center;
    padding: 8px 7px 8px 10px;
    color: #b9d1df;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.disclosure-index a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
    transition: transform .2s ease,background .2s ease,border-color .2s ease;
}
.disclosure-index a:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,.38);
    background: linear-gradient(135deg,var(--teal),#0c817c);
}
.disclosure-tables { gap: 34px; }
.disclosure-card {
    border: 1px solid rgba(18,60,105,.11);
    border-radius: 28px;
    box-shadow: 0 22px 60px rgba(17,58,94,.12);
    transition: transform .25s ease,box-shadow .25s ease;
}
.disclosure-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 75px rgba(17,58,94,.16);
}
.disclosure-card-heading {
    min-height: 132px;
    padding: 28px 30px;
    align-items: center;
    border-bottom: 0;
    background:
        radial-gradient(circle at 93% 15%,rgba(255,183,3,.18),transparent 25%),
        linear-gradient(135deg,#0b2949 0%,#123c69 60%,#0b7775 125%);
}
.disclosure-heading-main {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}
.disclosure-section-number {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 18px;
    background: rgba(255,255,255,.11);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.15);
    font-size: 1.18rem;
    font-weight: 950;
}
.disclosure-card-heading h2 {
    margin: 4px 0 7px;
    color: #fff;
    text-wrap: balance;
}
.disclosure-card-heading p { color: #cbdde8; }
.disclosure-kicker { color: #ffc36a; }
.table-top-link {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 13px;
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    color: #fff;
    transition: background .2s ease,transform .2s ease;
}
.table-top-link:hover { background: rgba(255,255,255,.20); transform: translateY(-1px); }
.responsive-table { background: #fff; }
.disclosure-table { border-collapse: separate; border-spacing: 0; }
.disclosure-table th {
    position: sticky;
    top: 0;
    z-index: 2;
    padding: 17px 18px;
    border-right: 1px solid rgba(255,255,255,.15);
    background: linear-gradient(135deg,#117f7a,#109c95);
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.08);
    font-size: .75rem;
    letter-spacing: .075em;
}
.disclosure-table th:first-child { border-radius: 0; }
.disclosure-table td {
    padding: 18px;
    border-right: 1px solid #edf2f5;
    border-bottom: 1px solid #e4ebf0;
    background: #fff;
    transition: background .18s ease,color .18s ease;
}
.disclosure-table tbody tr:nth-child(even) td { background: #f7fbfc; }
.disclosure-table tbody tr:hover td { background: #eaf8f7; }
.disclosure-table tbody tr:last-child td { border-bottom: 0; }
.disclosure-table td:first-child {
    color: var(--teal-dark);
    font-size: .92rem;
    text-align: center;
}
.disclosure-table td:first-child::after {
    content: "";
    display: block;
    width: 24px;
    height: 3px;
    margin: 7px auto 0;
    border-radius: 999px;
    background: var(--orange);
}
.document-links { margin-top: 12px; }
.document-button {
    min-height: 38px;
    padding: 8px 13px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg,#f28c28,#df7111);
    color: #fff;
    box-shadow: 0 8px 18px rgba(223,113,17,.22);
    transition: transform .2s ease,box-shadow .2s ease,filter .2s ease;
}
.document-button:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg,#e57b17,#c95e07);
    box-shadow: 0 12px 24px rgba(201,94,7,.28);
}
.document-button .document-icon,
.disclosure-primary .document-icon {
    background: rgba(255,255,255,.20);
    color: #fff;
    border: 1px solid rgba(255,255,255,.26);
}
.disclosure-document-grid { gap: 18px; }
.disclosure-document-card {
    position: relative;
    min-height: 116px;
    padding: 20px;
    border-color: rgba(18,60,105,.12);
    border-radius: 20px;
    background: linear-gradient(145deg,#fff,#f4fafb);
    box-shadow: 0 12px 30px rgba(23,57,80,.08);
    overflow: hidden;
}
.disclosure-document-card::after {
    content: "";
    position: absolute;
    width: 88px;
    height: 88px;
    right: -35px;
    bottom: -45px;
    border-radius: 50%;
    background: rgba(16,156,149,.09);
}
.disclosure-document-card .document-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 13px;
    background: linear-gradient(135deg,#c94034,#a92e25);
    box-shadow: 0 9px 20px rgba(169,46,37,.20);
    font-size: .66rem;
}
.disclosure-document-card strong { color: var(--teal-dark); }
.disclosure-note {
    border: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(135deg,#0b2949,#123c69);
    box-shadow: 0 20px 50px rgba(11,41,73,.18);
}

@media(max-width:1060px) {
    .disclosure-index { top: 12px; }
}
@media(max-width:700px) {
    .principal-card::before { width: 100%; height: 5px; inset: 0 0 auto; }
    .principal-card img { object-position: center 30%; }
    .disclosure-index::before { display: none; }
    .disclosure-card { border-radius: 22px; }
    .disclosure-card-heading { min-height: 0; padding: 23px 20px; }
    .disclosure-heading-main { align-items: flex-start; gap: 13px; }
    .disclosure-section-number { flex-basis: 45px; width: 45px; height: 45px; border-radius: 14px; font-size: .9rem; }
    .table-top-link { margin-left: 58px; }
    .disclosure-table tr {
        margin: 12px;
        padding: 12px 15px;
        width: calc(100% - 24px);
        border: 1px solid #dfe9ee;
        border-radius: 16px;
        background: #fff;
        box-shadow: 0 8px 20px rgba(23,57,80,.06);
    }
    .disclosure-table td,
    .disclosure-table tbody tr:nth-child(even) td,
    .disclosure-table tbody tr:hover td { background: transparent; }
    .disclosure-table td:first-child { text-align: left; }
    .disclosure-table td:first-child::after { display: none; }
    .disclosure-table td::before { color: var(--teal-dark); }
    .document-button { width: fit-content; }
}
