:root {
    --navy: #0c2340;
    --navy-deep: #071628;
    --gold: #c9a227;
    --gold-soft: #e4c56a;
    --cream: #f7f3ea;
    --paper: #fffdf8;
    --teal: #1d5c63;
    --ink: #1c1917;
    --muted: #5c5854;
    --line: rgba(12, 35, 64, 0.12);
    --white: #ffffff;
    --shadow: 0 16px 40px rgba(12, 35, 64, 0.12);
    --radius: 14px;
    --font: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --serif: Georgia, "Times New Roman", serif;
    --max: 1140px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: auto; }

body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    overflow-x: hidden;
    background:
        radial-gradient(900px 420px at 0% -10%, rgba(201, 162, 39, 0.12), transparent 55%),
        radial-gradient(800px 380px at 100% 0%, rgba(29, 92, 99, 0.08), transparent 50%),
        var(--cream);
    line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }

a {
    color: var(--teal);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

a:hover { color: var(--navy); }

.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

.breadcrumbs {
    background: rgba(255, 255, 255, 0.55);
    border-bottom: 1px solid var(--line);
    font-size: 0.86rem;
}
.breadcrumbs ol {
    list-style: none;
    margin: 0;
    padding: 0.55rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0.45rem;
}
.breadcrumbs li:not(:last-child)::after {
    content: "/";
    margin-left: 0.45rem;
    color: var(--muted);
}
.breadcrumbs a { color: var(--teal); text-decoration: none; }
.breadcrumbs [aria-current="page"] { color: var(--navy); font-weight: 600; }

.faq-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.7rem 1rem;
    margin: 0 0 0.55rem;
}
.faq-item summary { cursor: pointer; font-weight: 600; color: var(--navy); }
.faq-item p { margin: 0.55rem 0 0; color: var(--muted); }

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--navy);
    color: #fff;
    padding: 0.6rem 1rem;
    z-index: 1000;
    clip: rect(0, 0, 0, 0);
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    clip: auto;
    width: auto;
    height: auto;
    overflow: visible;
}

.topbar {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.82rem;
}

.topbar-inner {
    width: min(100% - 2rem, var(--max));
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1.25rem;
    padding: 0.45rem 0;
}

.topbar a { color: #fff; text-decoration: none; }
.topbar a:hover { color: var(--gold-soft); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #000;
    box-shadow: 0 4px 18px rgba(12, 35, 64, 0.08);
}

.header-top {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.55rem 1rem;
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    min-width: 0;
    text-decoration: none;
}

.brand-logo {
    height: 58px;
    width: auto;
    max-width: min(420px, 72vw);
    object-fit: contain;
    object-position: left center;
}

.header-cta {
    margin-left: auto;
    margin-right: 3rem;
    display: none;
    align-items: center;
    background: var(--gold);
    color: var(--navy) !important;
    text-decoration: none !important;
    padding: 0.55rem 1.05rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
}

.header-cta:hover { background: var(--gold-soft); }

.nav-desktop {
    display: none;
    background: var(--navy);
    position: relative;
}

.menu-desktop {
    list-style: none;
    margin: 0 auto;
    padding: 0 0.5rem;
    max-width: 1200px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}

.menu-desktop > li { position: relative; }

.menu-desktop > li > a,
.menu-desktop .dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.75rem 0.72rem;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border: 0;
    background: transparent;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
}

.menu-desktop > li > a:hover,
.menu-desktop .dropdown-trigger:hover,
.menu-desktop > li > a.is-active,
.menu-desktop .dropdown-trigger.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 -3px 0 var(--gold);
}

.menu-desktop .dropdown-trigger::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: 0.75;
}

.menu-desktop .dropdown {
    list-style: none;
    margin: 0;
    padding: 0.45rem;
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    transform: translate(-50%, 10px);
    min-width: 250px;
    width: max-content;
    max-width: 340px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 90;
    overflow: visible;
}

.menu-desktop .dropdown a,
.menu-desktop .subdropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    padding: 0.65rem 0.75rem;
    color: var(--navy);
    text-decoration: none;
    font-size: 0.9rem;
    border: 0;
    background: transparent;
    font: inherit;
    width: 100%;
    text-align: left;
    cursor: pointer;
    border-radius: 8px;
}

.menu-desktop .dropdown a:hover,
.menu-desktop .subdropdown-trigger:hover,
.menu-desktop .dropdown a.is-active { background: var(--cream); }

.menu-desktop .has-subdropdown { position: relative; }
.menu-desktop .subdropdown-trigger::after {
    content: "›";
    font-size: 1.25rem;
    line-height: 1;
    opacity: 0.7;
}
.menu-desktop .submenu {
    list-style: none;
    margin: 0;
    padding: 0.45rem;
    position: absolute;
    top: 0;
    left: calc(100% + 4px);
    min-width: 240px;
    width: max-content;
    max-width: 320px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 95;
}
.menu-desktop .has-subdropdown:hover > .submenu,
.menu-desktop .has-subdropdown:focus-within > .submenu,
.menu-desktop .has-subdropdown.is-open > .submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.menu-desktop .has-dropdown:hover > .dropdown,
.menu-desktop .has-dropdown:focus-within > .dropdown,
.menu-desktop .has-dropdown.is-open > .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}
.menu-desktop > li:nth-last-child(-n+3) .dropdown { left: auto; right: 0; transform: translate(0, 10px); }
.menu-desktop > li:nth-last-child(-n+3).has-dropdown:hover > .dropdown,
.menu-desktop > li:nth-last-child(-n+3).has-dropdown:focus-within > .dropdown,
.menu-desktop > li:nth-last-child(-n+3).has-dropdown.is-open > .dropdown { transform: translate(0, 0); }
.menu-desktop > li:nth-last-child(-n+3) .submenu {
    left: auto;
    right: calc(100% + 4px);
}

.menu-desktop > li.has-mega { position: static; }
.mega-panel {
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    width: min(1080px, calc(100vw - 2rem));
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    border-radius: 0 0 16px 16px;
    box-shadow: 0 22px 48px rgba(12, 35, 64, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 8px);
    z-index: 90;
}
.menu-desktop .has-mega:hover > .mega-panel,
.menu-desktop .has-mega:focus-within > .mega-panel,
.menu-desktop .has-mega.is-open > .mega-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}
.mega-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 1.35rem;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    font-weight: 700;
    font-size: 0.95rem;
}
.mega-panel__head a {
    color: var(--teal);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
}
.mega-panel__head a:hover { color: var(--navy); text-decoration: underline; }
.mega-panel__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 1.05rem 0.4rem 1.2rem;
}
.mega-col {
    padding: 0.15rem 1.15rem 0.35rem;
    border-left: 1px solid var(--line);
}
.mega-col:first-child { border-left: 0; }
.mega-col__title {
    display: block;
    margin: 0 0 0.55rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal);
    text-decoration: none;
}
.mega-col__title:hover { color: var(--navy); }
.mega-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mega-col a:not(.mega-col__title) {
    display: block;
    width: auto;
    padding: 0.38rem 0;
    color: var(--navy);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.35;
    border-radius: 0;
    background: transparent;
}
.mega-col a:not(.mega-col__title):hover,
.mega-col a:not(.mega-col__title).is-active {
    background: transparent;
    color: var(--teal);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}
@media (max-width: 1100px) {
    .mega-panel { width: min(720px, calc(100vw - 2rem)); }
    .mega-panel__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .mega-col:nth-child(2n+1) { border-left: 0; }
    .mega-col:nth-child(n+3) { margin-top: 0.85rem; padding-top: 0.85rem; border-top: 1px solid var(--line); }
}

.nav-toggle {
    position: absolute;
    right: max(0.35rem, env(safe-area-inset-right));
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    display: grid;
    place-content: center;
    gap: 5px;
    cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; }

body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1040px) {
    .nav-desktop { display: block; }
    .nav-toggle { display: none; }
    .header-cta { display: inline-flex; margin-right: 0; }
}

.offcanvas[hidden],
.offcanvas-backdrop[hidden] { display: none; }

.offcanvas { position: fixed; inset: 0; z-index: 60; pointer-events: none; }
.offcanvas-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(360px, 92vw);
    height: 100dvh;
    background: var(--navy-deep);
    color: #fff;
    padding: 1.25rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    pointer-events: auto;
}
body.nav-open .offcanvas-panel { transform: translateX(0); }
.offcanvas-backdrop { position: fixed; inset: 0; background: rgba(7, 22, 40, 0.55); z-index: 55; }
.offcanvas-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; font-weight: 600; }
.nav-close { border: 0; background: transparent; color: #fff; font-size: 1.8rem; cursor: pointer; }

.menu { list-style: none; margin: 0; padding: 0; }
.menu > li { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.menu a,
.menu-accordion {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0.15rem;
    color: #fff;
    text-decoration: none;
    background: transparent;
    border: 0;
    font: inherit;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
}
.menu a.is-active,
.menu-accordion.is-active { color: var(--gold-soft); }
.menu-accordion::after {
    content: "";
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid currentColor;
}
.menu > li.is-open > .menu-accordion::after { transform: rotate(180deg); }
.menu-children {
    list-style: none;
    margin: 0 0 0.75rem;
    padding: 0 0 0 0.75rem;
    display: none;
    border-left: 2px solid rgba(255, 255, 255, 0.14);
}
.menu > li.is-open > .menu-children { display: block; }
.menu-children a,
.menu-children__label {
    padding: 0.55rem 0.35rem;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 0.92rem;
    min-height: 44px;
    display: flex;
    align-items: center;
}
.menu-children--nested { display: block; margin: 0.2rem 0 0.5rem; padding-left: 0.65rem; }
body.nav-open { overflow: hidden; }

.hero {
    position: relative;
    min-height: clamp(380px, 56vh, 540px);
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg, var(--navy-deep), var(--teal));
}
.hero__media-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
}
.hero__overlay {
    position: relative;
    z-index: 1;
    min-height: inherit;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(180deg, rgba(7, 22, 40, 0.2), rgba(7, 22, 40, 0.82));
    padding: 3.5rem 0 2.5rem;
}
.hero__title {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(1.55rem, 6vw, 3.2rem);
    line-height: 1.15;
    font-weight: 700;
    overflow-wrap: anywhere;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}
.hero__subtitle {
    margin: 0.85rem 0 0;
    max-width: 40rem;
    font-size: clamp(0.95rem, 2.4vw, 1.08rem);
    color: rgba(255, 255, 255, 0.92);
    overflow-wrap: anywhere;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.cta-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    padding: 1.1rem;
    background: var(--navy);
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.2rem;
    border-radius: 999px;
    background: var(--gold);
    color: var(--navy) !important;
    text-decoration: none !important;
    font-weight: 700;
    border: 0;
    cursor: pointer;
    font: inherit;
}
.btn:hover { background: var(--gold-soft); }
.btn-ghost {
    background: transparent;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.section { padding: 3rem 0; }
.section-title {
    margin: 0 0 1rem;
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--navy);
}
.lead { font-size: 1.08rem; max-width: 46rem; }

.home-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}
.info-card,
.home-cards a {
    display: block;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem 1.3rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 24px rgba(12, 35, 64, 0.05);
}
.info-card:hover,
.home-cards a:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 162, 39, 0.45);
    box-shadow: var(--shadow);
}
.info-card h2,
.home-cards h2 {
    margin: 0 0 0.4rem;
    font-size: 1.15rem;
    color: var(--navy);
}
.info-card p,
.home-cards p { margin: 0; color: var(--muted); }

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: start;
}
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } }

.page-hero {
    background: linear-gradient(135deg, var(--navy), var(--teal));
    color: #fff;
    padding: 3rem 1rem 2.2rem;
}
.page-hero-inner { width: min(var(--max), 100% - 2rem); margin: 0 auto; }
.page-hero h1 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
}
.page-hero p { margin: 0.7rem 0 0; max-width: 42rem; color: rgba(255, 255, 255, 0.88); }

.content-section { padding: 2rem 0 3.5rem; }
.prose {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem 1.6rem;
}
.prose h2, .prose h3 { color: var(--navy); font-family: var(--serif); }
.legacy-content ul { padding-left: 1.2rem; }

.document-list { list-style: none; margin: 0; padding: 0; }
.document-list__item + .document-list__item { margin-top: 0.55rem; }
.document-list__link {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 0.85rem 1rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    text-decoration: none;
    background: #fff;
    color: inherit;
    min-height: 48px;
}
.document-list__link:hover { border-color: rgba(201, 162, 39, 0.5); background: #fffaf0; }
.document-list__title { font-weight: 600; word-break: break-word; }
.document-list__meta { color: var(--muted); font-size: 0.88rem; white-space: nowrap; }

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}
.contact-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.3rem;
}
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { margin: 0 0 0.45rem; }

.table-wrap { overflow-x: auto; }
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}
.data-table th,
.data-table td {
    border-bottom: 1px solid var(--line);
    padding: 0.55rem 0.65rem;
    text-align: left;
    vertical-align: top;
}
.data-table th { background: var(--navy); color: #fff; position: sticky; top: 0; }
.filter-bar {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.filter-bar input,
.filter-bar select {
    flex: 1;
    min-width: 180px;
    padding: 0.7rem 0.85rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    font: inherit;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
}
.gallery-grid a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid var(--line);
}
.gallery-grid img { width: 100%; height: 160px; object-fit: cover; }

.home-photos {
    background: var(--white);
    border-block: 1px solid var(--line);
}
.home-gallery {
    display: flex;
    gap: 0.5rem;
}
.home-gallery a {
    flex: 1 1 0;
    min-width: 0;
}
.home-gallery img { height: 118px; }

.site-footer {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.82);
    margin-top: 2rem;
    font-size: 0.88rem;
}
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { color: var(--gold-soft); }
.footer-inner {
    width: min(100% - 2rem, var(--max));
    margin: 0 auto;
    padding: 1.05rem 0 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    align-items: center;
    text-align: center;
}
.footer-meta {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
}
.footer-meta span,
.footer-copy span { margin: 0 0.35rem; opacity: 0.45; }
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem 1rem;
}
.footer-copy {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.65rem 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
}
.footer-copy p { margin: 0; }

@media (max-width: 800px) {
    .topbar-inner span { display: none; }
}

.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 80;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 1rem 1.1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    contain: layout;
}
.cookie-banner[hidden] {
    display: none !important;
}
.cookie-banner p { margin: 0; max-width: 46rem; }

@media (max-width: 640px) {
    .cookie-banner {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
        padding: 0.85rem;
    }
    .cta-strip { padding: 1rem 0.75rem; }
    .brand-logo { height: 48px; }
}

.sitemap-tree,
.sitemap-tree__children {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sitemap-tree {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem 1.5rem;
}
.sitemap-tree > li > a {
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
}
.sitemap-tree__children {
    margin: 0.45rem 0 0;
    padding-left: 0.85rem;
    border-left: 2px solid var(--line);
}
.sitemap-tree__children a {
    display: block;
    padding: 0.22rem 0;
    text-decoration: none;
}
.sitemap-tree__children .sitemap-tree__children {
    margin-top: 0.2rem;
    margin-bottom: 0.45rem;
}

.org-block { margin: 0 0 1.4rem; }
.org-block h2 { margin: 0 0 0.35rem; font-size: 1.05rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--teal); }
.org-block p { margin: 0; font-weight: 600; }
