:root {
    --navy: #163a5f;
    --navy-deep: #0f2740;
    --gold: #c4a35a;
    --ink: #243041;
    --muted: #6b7280;
    --line: #e5e7eb;
    --bg: #ffffff;
    --soft: #f7f8fa;
    --white: #ffffff;
    --shadow: 0 8px 24px rgba(15, 39, 64, 0.06);
    --radius: 8px;
    --font: "Segoe UI", system-ui, -apple-system, sans-serif;
    --max: 1120px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: auto; }

body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a {
    color: var(--navy);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}
a:hover { color: var(--navy-deep); }

.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--navy);
    color: #fff;
    padding: 0.6rem 1rem;
    z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.topbar {
    background: var(--soft);
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.8rem;
}
.topbar-inner {
    width: min(100% - 2rem, var(--max));
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.45rem 1.25rem;
    padding: 0.45rem 0;
}
.topbar-left {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1.35rem;
    align-items: center;
}
.topbar a { color: var(--muted); text-decoration: none; }
.topbar a:hover { color: var(--navy); }
.topbar-social {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: auto;
    color: var(--navy) !important;
    font-weight: 600;
    white-space: nowrap;
}
.topbar-social span { font-weight: 500; color: var(--muted); }
.topbar-social__icon {
    display: block;
    flex-shrink: 0;
}
.topbar-social:hover,
.topbar-social:hover span { color: #1877f2 !important; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.header-top {
    position: relative;
    width: min(100% - 2rem, var(--max));
    margin: 0 auto;
    padding: 0.9rem 0;
    min-height: 84px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 0;
    text-decoration: none;
    color: var(--navy);
}
.brand:hover { color: var(--navy-deep); }

.brand-logo {
    height: 58px;
    width: 58px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--white);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.brand-text strong {
    font-size: 1.2rem;
    letter-spacing: 0.03em;
    font-weight: 700;
}
.brand-text span {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 500;
}

.header-cta {
    margin-left: 0;
    margin-right: 0;
    display: none;
    align-items: center;
    background: var(--navy);
    color: #fff !important;
    text-decoration: none !important;
    padding: 0.55rem 1.15rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}
.header-cta:hover { background: var(--navy-deep); }

.header-actions {
    margin-left: auto;
    margin-right: 3rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: var(--soft);
}
.lang-switch a {
    text-decoration: none;
    padding: 0.38rem 0.55rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--muted);
}
.lang-switch a:hover { color: var(--navy); }
.lang-switch a.is-active {
    background: var(--navy);
    color: #fff !important;
}

.nav-desktop {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--line);
}

.menu-desktop {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    width: min(100% - 2rem, var(--max));
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.15rem;
}

.menu-desktop > li { position: relative; }

.menu-desktop > li > a,
.menu-desktop .dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 1rem 0.85rem;
    color: var(--navy);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    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: var(--navy-deep);
    box-shadow: inset 0 -2px 0 var(--navy);
}

.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.5;
}

.menu-desktop .dropdown {
    list-style: none;
    margin: 0;
    padding: 0.45rem;
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 240px;
    width: max-content;
    max-width: 320px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 90;
}

.menu-desktop .dropdown a {
    display: block;
    padding: 0.65rem 0.8rem;
    color: var(--ink);
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 6px;
}
.menu-desktop .dropdown a:hover,
.menu-desktop .dropdown a.is-active {
    background: var(--soft);
    color: var(--navy);
}

.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;
}

.nav-toggle {
    position: absolute;
    right: 0;
    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: var(--navy); }

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; }
    .header-actions { 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(--white);
    color: var(--ink);
    padding: 1.4rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    pointer-events: auto;
    border-left: 1px solid var(--line);
}
body.nav-open .offcanvas-panel { transform: translateX(0); }
.offcanvas-backdrop { position: fixed; inset: 0; background: rgba(15, 39, 64, 0.3); 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: var(--ink); font-size: 1.8rem; cursor: pointer; }

.menu { list-style: none; margin: 0; padding: 0; }
.menu > li { border-bottom: 1px solid var(--line); }
.menu a,
.menu-accordion {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 0.95rem 0.15rem;
    color: var(--ink);
    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(--navy); }
.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.85rem;
    padding: 0 0 0 0.85rem;
    display: none;
    border-left: 2px solid var(--line);
}
.menu > li.is-open > .menu-children { display: block; }
.menu-children a {
    padding: 0.55rem 0.35rem;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.92rem;
    min-height: 44px;
    display: flex;
    align-items: center;
}
body.nav-open { overflow: hidden; }

.breadcrumbs {
    background: var(--soft);
    border-bottom: 1px solid var(--line);
    font-size: 0.86rem;
}
.breadcrumbs ol {
    list-style: none;
    margin: 0;
    padding: 0.7rem 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(--muted); text-decoration: none; }
.breadcrumbs [aria-current="page"] { color: var(--ink); font-weight: 600; }

.hero {
    position: relative;
    min-height: clamp(340px, 48vh, 480px);
    overflow: hidden;
    color: #fff;
    background: #d7e0ea;
}
.hero__media-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center 82%;
}
.hero__overlay {
    position: relative;
    z-index: 1;
    min-height: inherit;
    display: flex;
    align-items: flex-end;
    padding: 3.5rem 0 2.75rem;
    background: linear-gradient(90deg, rgba(15, 39, 64, 0.55) 0%, rgba(15, 39, 64, 0.22) 55%, rgba(15, 39, 64, 0.1) 100%);
}
.hero__kicker {
    display: inline-block;
    margin: 0 0 0.6rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
}
.hero__title {
    margin: 0;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 1.2;
    font-weight: 700;
    max-width: 20ch;
}
.hero__subtitle {
    margin: 0.85rem 0 0;
    max-width: 38rem;
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.92);
}

.cta-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    padding: 1.5rem 1rem 0.25rem;
    margin-top: -1.5rem;
    position: relative;
    z-index: 2;
    background: transparent;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.3rem;
    border-radius: 8px;
    background: var(--navy);
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 600;
    border: 1px solid var(--navy);
    cursor: pointer;
    font: inherit;
    box-shadow: 0 6px 18px rgba(15, 39, 64, 0.12);
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover,
.btn:focus-visible {
    background: var(--navy-deep);
    border-color: var(--navy-deep);
    color: #fff !important;
}
.btn-ghost {
    background: var(--white);
    color: var(--navy) !important;
    border-color: var(--line);
    box-shadow: 0 6px 18px rgba(15, 39, 64, 0.06);
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff !important;
    box-shadow: 0 6px 18px rgba(15, 39, 64, 0.12);
}
.btn-navy {
    background: var(--navy);
    color: #fff !important;
}
.btn-navy:hover,
.btn-navy:focus-visible {
    background: var(--navy-deep);
    border-color: var(--navy-deep);
    color: #fff !important;
}

.cta-strip .btn-ghost {
    background: var(--white);
    color: var(--navy) !important;
    border-color: #d5dde6;
}
.cta-strip .btn-ghost:hover,
.cta-strip .btn-ghost:focus-visible {
    background: var(--navy);
    border-color: var(--gold);
    color: #fff !important;
}
.cta-compact { display: none; }

.section { padding: 4rem 0; }
.section-title {
    margin: 0 0 1.15rem;
    font-size: clamp(1.45rem, 2.5vw, 1.9rem);
    color: var(--navy);
    font-weight: 700;
}
.lead {
    font-size: 1.05rem;
    max-width: 46rem;
    color: var(--muted);
    margin-bottom: 1.6rem;
}

.home-cards,
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.25rem;
}
.info-card,
.home-cards a {
    display: block;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 1.5rem 1.45rem;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.info-card:hover,
.home-cards a:hover {
    border-color: #c9d2de;
    box-shadow: var(--shadow);
}
.info-card h2,
.info-card h3,
.home-cards h2,
.home-cards h3 {
    margin: 0 0 0.4rem;
    font-size: 1.08rem;
    color: var(--navy);
}
.info-card p,
.home-cards p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.card-more {
    display: inline-block;
    margin-top: 0.8rem;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.88rem;
}

.split {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: start;
}
@media (max-width: 800px) { .split { grid-template-columns: 1fr; gap: 1.75rem; } }

.page-hero {
    position: relative;
    overflow: hidden;
    color: var(--ink);
    padding: 3rem 0 2.5rem;
    border-bottom: 1px solid rgba(22, 58, 95, 0.14);
    background:
        linear-gradient(90deg,
            #c5d4e6 0%,
            #dce6f0 22%,
            #f0f4f8 48%,
            #ebe0c4 76%,
            #d9c48a 100%
        );
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(22, 58, 95, 0.16) 0%, transparent 40%, transparent 60%, rgba(196, 163, 90, 0.28) 100%);
    pointer-events: none;
}
.page-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy-deep) 0%, var(--navy) 30%, var(--gold) 70%, #a8863d 100%);
    pointer-events: none;
}
.page-hero-inner {
    position: relative;
    z-index: 1;
    width: min(var(--max), 100% - 2rem);
    margin: 0 auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}
.page-hero-inner::before {
    content: none;
}
.page-hero h1 {
    margin: 0;
    padding-left: 0;
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    color: var(--navy);
    font-weight: 700;
    letter-spacing: -0.01em;
}
.page-hero p {
    margin: 0.85rem 0 0;
    padding-left: 0;
    max-width: 42rem;
    color: var(--muted);
    line-height: 1.65;
    font-size: 1.02rem;
}

.content-section { padding: 2.5rem 0 4rem; }
.prose { background: transparent; border: 0; padding: 0; }
.prose h2, .prose h3 { color: var(--navy); }
.prose ul { padding-left: 1.2rem; }
.service-back { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.7rem; }

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}
.contact-card {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 1.5rem;
}
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { margin: 0 0 0.45rem; }

.form-grid { display: grid; gap: 0.9rem; }
.form-grid label { font-weight: 600; color: var(--navy); }
.form-grid input,
.form-grid textarea,
.form-grid select {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    font: inherit;
    background: #fff;
}
.form-note { color: var(--muted); font-size: 0.9rem; }

.contact-form-section {
    margin: 2rem 0 0;
    padding: 1.6rem 1.5rem 1.4rem;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 10px;
}
.contact-form-section h2 {
    margin: 0 0 0.4rem;
    color: var(--navy);
}
.contact-form-intro {
    margin: 0 0 1rem;
    color: var(--muted);
}
.contact-form { margin: 0; }
.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 1rem;
}
.contact-field {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.contact-field-full { grid-column: 1 / -1; }
.contact-field label {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.92rem;
}
.contact-field input,
.contact-field textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    font: inherit;
    background: #fff;
}
.contact-field input:focus,
.contact-field textarea:focus {
    outline: 2px solid var(--gold);
    outline-offset: 1px;
    border-color: var(--navy);
}
.contact-field textarea {
    resize: vertical;
    min-height: 130px;
}
.contact-actions { margin: 1rem 0 0.45rem; }
.contact-note {
    margin: 0;
    font-size: 0.88rem;
    color: var(--muted);
}
.contact-alert {
    margin: 0 0 1rem;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
}
.contact-alert ul { margin: 0; padding-left: 1.1rem; }
.contact-alert-ok {
    background: #e8f6ee;
    border: 1px solid #9dceb0;
    color: #1d5c38;
}
.contact-alert-err {
    background: #fdeeee;
    border: 1px solid #e2a3a3;
    color: #8a1f1f;
}
.contact-hp {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.newsletter {
    background: var(--soft);
    color: var(--ink);
    border-block: 1px solid var(--line);
}
.newsletter .section-title { color: var(--navy); }
.newsletter p { color: var(--muted); }
.newsletter .btn-ghost {
    color: var(--navy) !important;
    border-color: var(--line);
    background: var(--white);
}
.newsletter .btn-ghost:hover,
.newsletter .btn-ghost:focus-visible {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff !important;
}

.news-list { display: grid; gap: 1.15rem; }
.news-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 1.5rem;
}
.news-item time {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.news-item h2 { margin: 0.35rem 0 0.45rem; font-size: 1.1rem; color: var(--navy); }

.highlight-panel {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 1.7rem 1.6rem;
}
.highlight-panel h2 {
    margin-top: 0;
    color: var(--navy);
    font-size: 1.15rem;
}

.section-subnav {
    margin: 0 0 2rem;
    padding: 0.4rem;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow-x: auto;
}
.section-subnav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}
.section-subnav a {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.9rem;
    border-radius: 6px;
    text-decoration: none;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
}
.section-subnav a:hover,
.section-subnav a.is-active {
    background: var(--white);
    color: var(--navy);
}

.legal-quote {
    margin: 1.1rem 0 1.5rem;
    padding: 1.1rem 1.2rem;
    border-left: 3px solid var(--navy);
    background: var(--soft);
    border-radius: 0 8px 8px 0;
    color: var(--ink);
    font-style: italic;
}
.legal-quote cite {
    display: block;
    margin-top: 0.75rem;
    font-style: normal;
    font-size: 0.86rem;
    color: var(--muted);
    font-weight: 700;
}

.site-footer {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.78);
    margin-top: 3.5rem;
    font-size: 0.88rem;
}
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-inner {
    width: min(100% - 2rem, var(--max));
    margin: 0 auto;
    padding: 2.2rem 0 1.5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    text-align: left;
}
.footer-brand {
    font-size: 1.15rem;
    color: #fff;
    margin: 0 0 0.4rem;
    font-weight: 700;
}
.footer-inner p { margin: 0 0 0.35rem; }
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1.1rem;
    align-content: start;
}
.footer-copy {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.8rem 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.82rem;
}
.footer-copy p { margin: 0; }
.footer-copy span { margin: 0 0.35rem; opacity: 0.45; }

.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 80;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 1.1rem 1.2rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.cookie-banner[hidden] { display: none !important; }
.cookie-banner p { margin: 0; max-width: 46rem; }

.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.4rem 1.5rem;
}
.sitemap-tree > li > a {
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
}
.sitemap-tree__children {
    margin: 0.5rem 0 0;
    padding-left: 0.9rem;
    border-left: 2px solid var(--line);
}
.sitemap-tree__children a {
    display: block;
    padding: 0.25rem 0;
    text-decoration: none;
    color: var(--muted);
}

.faq {
    margin-top: 2rem;
    padding-top: 0.25rem;
}
.faq h2 {
    margin: 0 0 1rem;
    color: var(--navy);
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
}
.faq-list {
    display: grid;
    gap: 0.65rem;
}
.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    padding: 0.15rem 0.9rem 0.15rem;
}
.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 0.85rem 0;
    font-weight: 600;
    color: var(--navy);
}
.faq-item summary h3 {
    display: inline;
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    float: right;
    font-weight: 700;
    color: var(--gold);
}
.faq-item[open] summary::after { content: "–"; }
.faq-answer {
    padding: 0 0 0.95rem;
    color: var(--muted);
}
.faq-answer p { margin: 0; }

@media (max-width: 800px) {
    .topbar-left span { display: none; }
    .topbar-social span { display: none; }
    .contact-form-grid { grid-template-columns: 1fr; }
    .cta-strip {
        flex-wrap: nowrap;
        gap: 0.35rem;
        padding: 1rem 0.55rem 0.15rem;
    }
    .cta-strip .btn {
        flex: 1 1 0;
        min-width: 0;
        padding: 0.45rem 0.35rem;
        font-size: 0.78rem;
        line-height: 1.2;
        border-radius: 6px;
        box-shadow: 0 3px 10px rgba(15, 39, 64, 0.08);
    }
    .cta-full { display: none; }
    .cta-compact { display: inline; }
}

@media (max-width: 640px) {
    .cookie-banner { left: 0.75rem; right: 0.75rem; bottom: 0.75rem; }
    .brand-logo { height: 50px; width: 50px; }
    .brand-text strong { font-size: 1.05rem; }
    .cta-strip { margin-top: -0.75rem; padding-top: 1rem; }
    .cta-strip .btn { font-size: 0.72rem; padding: 0.4rem 0.28rem; }
}
