/* ==========================================================================
   ZBiUK Kłodawa — design tokens
   ========================================================================== */
:root {
    --color-navy: #0f172a;
    --color-navy-mid: #1e3a5f;
    --color-navy-light: #334155;
    --color-green: #15803d;
    --color-green-hover: #166534;
    --color-green-light: #dcfce7;
    --color-blue-accent: #3b82f6;
    --color-white: #ffffff;
    --color-gray-50: #f8fafc;
    --color-gray-100: #f1f5f9;
    --color-gray-200: #e2e8f0;
    --color-gray-400: #94a3b8;
    --color-gray-600: #475569;
    --color-gray-800: #1e293b;
    --color-text: #1e293b;
    --color-text-muted: #64748b;
    --font-sans: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-readable: Georgia, "Times New Roman", serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.12);
    --header-height: 96px;
    --logo-header-width: 160px;
    --logo-header-max-height: 84px;
    --header-padding-x: clamp(16px, 3vw, 40px);
    --header-logo-gap: clamp(20px, 3vw, 36px);
    --wcag-toolbar-height: 0px;
    --font-scale: 1;
    --letter-spacing: 0;
    --line-height-extra: 0;
    --transition: 0.2s ease;
}

/* WCAG high contrast mode */
body.wcag-high-contrast {
    --color-navy: #000000;
    --color-navy-mid: #000000;
    --color-green: #ffff00;
    --color-green-hover: #ffff00;
    --color-text: #000000;
    --color-text-muted: #000000;
    --color-gray-50: #ffffff;
    --color-gray-100: #ffffff;
    --color-white: #ffffff;
    background: #ffffff !important;
    color: #000000 !important;
}

body.wcag-high-contrast .hero,
body.wcag-high-contrast .site-header,
body.wcag-high-contrast .site-footer {
    background: #000000 !important;
    color: #ffff00 !important;
}

body.wcag-high-contrast a,
body.wcag-high-contrast .btn-primary {
    color: #000000 !important;
    background: #ffff00 !important;
    border: 2px solid #000000 !important;
}

body.wcag-readable-font {
    font-family: var(--font-readable) !important;
}

body.wcag-increased-spacing {
    letter-spacing: 0.08em;
    line-height: 1.8;
}

body.wcag-increased-spacing p,
body.wcag-increased-spacing li {
    margin-bottom: 1.25em;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + var(--wcag-toolbar-height) + 16px);
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: calc(16px * var(--font-scale));
    line-height: calc(1.6 + var(--line-height-extra));
    letter-spacing: var(--letter-spacing);
    background: var(--color-gray-50);
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-navy-mid);
    transition: color var(--transition);
}

a:hover,
a:focus-visible {
    color: var(--color-green);
}

:focus-visible {
    outline: 3px solid var(--color-blue-accent);
    outline-offset: 2px;
}

.container {
    width: min(92%, 1200px);
    margin-inline: auto;
}

/* ==========================================================================
   Skip link & WCAG toolbar
   ========================================================================== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    padding: 12px 20px;
    background: var(--color-navy);
    color: var(--color-white);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.skip-link:focus {
    top: 8px;
}

.wcag-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: var(--color-navy);
    color: var(--color-white);
    font-size: 0.8125rem;
    min-height: var(--wcag-toolbar-height);
}

.wcag-toolbar__label {
    font-weight: 600;
    margin-right: 4px;
}

.wcag-toolbar button {
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--color-white);
    cursor: pointer;
    font-size: 0.8125rem;
    font-weight: 600;
    transition: background var(--transition);
}

.wcag-toolbar button:hover,
.wcag-toolbar button:focus-visible {
    background: rgba(255, 255, 255, 0.15);
}

.wcag-toolbar button[aria-pressed="true"] {
    background: var(--color-green);
    border-color: var(--color-green);
}

/* ==========================================================================
   Header & navigation
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-gray-200);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: var(--header-height);
    min-height: unset;
    width: min(98%, 1440px);
    margin-inline: auto;
    padding: 0 var(--header-padding-x);
    gap: var(--header-logo-gap);
}

.header-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: 100%;
    margin-right: auto;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    line-height: 0;
}

.logo--header {
    padding-left: clamp(2px, 0.5vw, 8px);
}

.logo__img {
    display: block;
    width: var(--logo-header-width);
    height: auto;
    max-height: var(--logo-header-max-height);
    object-fit: contain;
    object-position: left center;
    filter: contrast(1.12) saturate(1.08) brightness(1.03);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    image-rendering: -webkit-optimize-contrast;
}

body.wcag-high-contrast .logo__img {
    filter: none;
    image-rendering: auto;
}

.logo--header:focus-visible .logo__img {
    outline: 3px solid var(--color-blue-accent);
    outline-offset: 4px;
    border-radius: var(--radius-sm);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 8px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: var(--radius-sm);
}

.nav-toggle__bar {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--color-navy);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.site-nav {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 2px;
    margin-left: clamp(12px, 2vw, 28px);
    height: 100%;
}

.site-nav a {
    padding: 8px 14px;
    text-decoration: none;
    color: var(--color-gray-600);
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: var(--radius-sm);
    white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--color-navy);
    background: var(--color-gray-100);
}

.site-nav__cta {
    background: var(--color-green) !important;
    color: var(--color-white) !important;
    margin-left: 4px;
}

.site-nav__cta:hover,
.site-nav__cta:focus-visible {
    background: var(--color-green-hover) !important;
    color: var(--color-white) !important;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--color-green);
    color: var(--color-white);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--color-green-hover);
    color: var(--color-white);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-navy);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background: var(--color-gray-100);
    color: var(--color-navy);
}

.btn-outline {
    background: transparent;
    color: var(--color-navy-mid);
    border-color: var(--color-gray-200);
}

.btn-outline:hover,
.btn-outline:focus-visible {
    border-color: var(--color-navy-mid);
    background: var(--color-gray-50);
}

.btn-sm {
    padding: 10px 18px;
    font-size: 0.875rem;
}

.btn-text {
    padding: 0;
    background: none;
    border: none;
    color: var(--color-green);
    font-weight: 600;
    font-size: 0.9375rem;
}

.btn-text--muted {
    color: var(--color-text-muted);
}

.link-arrow {
    color: var(--color-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
}

.link-arrow::after {
    content: " →";
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
    position: relative;
    overflow: hidden;
    color: var(--color-white);
    background-color: var(--color-navy);
    padding: clamp(64px, 8vw, 96px) 0 clamp(72px, 9vw, 108px);
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: var(--color-navy);
}

.hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: none;
}

.hero__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero__decor-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__decor-ring--1 {
    width: 420px;
    height: 420px;
    top: -120px;
    right: -80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
}

.hero__decor-ring--2 {
    width: 280px;
    height: 280px;
    bottom: -60px;
    left: -40px;
    border-color: rgba(21, 128, 61, 0.2);
}

.hero__decor-line {
    position: absolute;
    top: 50%;
    right: 8%;
    width: 1px;
    height: 40%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: translateY(-50%);
}

.hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: clamp(32px, 5vw, 64px);
    max-width: 1180px;
}

.hero__content {
    text-align: left;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 7px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero__eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-green);
    box-shadow: 0 0 12px rgba(21, 128, 61, 0.6);
}

.hero h1 {
    font-size: clamp(1.875rem, 4.2vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
    max-width: 680px;
}

.hero__subtitle {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    opacity: 0.9;
    margin: 0 0 32px;
    max-width: 52ch;
    line-height: 1.65;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
    margin-bottom: 28px;
}

.hero__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero__pills li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--color-white);
}

.hero__pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
}

.hero__visual {
    position: relative;
    min-height: 320px;
}

.hero__ui-card {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 18px 20px;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    color: var(--color-white);
}

.hero__ui-card--primary {
    top: 8%;
    right: 12%;
    background: rgba(255, 255, 255, 0.12);
}

.hero__ui-card--secondary {
    top: 42%;
    left: 4%;
    background: rgba(21, 128, 61, 0.18);
    border-color: rgba(21, 128, 61, 0.3);
}

.hero__ui-card--accent {
    bottom: 6%;
    right: 0;
    background: rgba(59, 130, 246, 0.14);
    border-color: rgba(59, 130, 246, 0.25);
}

.hero__ui-icon {
    font-size: 1.375rem;
    line-height: 1;
}

.hero__ui-label {
    font-weight: 700;
    font-size: 0.9375rem;
}

.hero__ui-meta {
    font-size: 0.75rem;
    opacity: 1;
    line-height: 1.4;
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section {
    padding: 72px 0;
}

.section--alt {
    background: var(--color-white);
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--color-navy);
    margin: 0 0 20px;
    line-height: 1.25;
}

.section-title--center {
    text-align: center;
    margin-bottom: 40px;
}

.section-intro {
    color: var(--color-text-muted);
    font-size: 1.0625rem;
    max-width: 720px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

/* ==========================================================================
   Service cards (quick links)
   ========================================================================== */
.quick-links {
    padding: 72px 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    display: flex;
    flex-direction: column;
    padding: 32px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--color-gray-200);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover,
.service-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-green);
    color: inherit;
}

.service-card__icon {
    font-size: 2rem;
    margin-bottom: 16px;
    line-height: 1;
}

.service-card h3 {
    margin: 0 0 10px;
    font-size: 1.125rem;
    color: var(--color-navy);
}

.service-card p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-green);
}

/* ==========================================================================
   About
   ========================================================================== */
.about {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-gray-200);
}

.about__header {
    margin-bottom: 40px;
    max-width: 720px;
}

.about__header .section-title {
    margin-bottom: 0;
}

.about__layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(32px, 5vw, 56px);
    align-items: center;
    margin-bottom: 56px;
}

.about__intro p {
    color: var(--color-text-muted);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin: 0 0 1.25em;
}

.about__intro p:first-of-type {
    color: var(--color-navy);
}

.about__intro p:not(:first-of-type) {
    color: var(--color-text-muted);
}

.about__intro p:last-child {
    margin-bottom: 0;
}

.about__lead {
    font-size: 1.1875rem !important;
    color: var(--color-navy) !important;
    font-weight: 500;
    line-height: 1.7 !important;
}

.about__highlights {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about__highlight {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 22px;
    background: var(--color-gray-50);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-green);
    transition: box-shadow var(--transition);
}

.about__highlight:hover {
    box-shadow: var(--shadow-sm);
}

.about__highlight-icon {
    flex-shrink: 0;
    font-size: 1.5rem;
    line-height: 1;
    margin-top: 2px;
}

.about__highlight strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--color-navy);
    margin-bottom: 4px;
}

.about__highlight p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.about__scope {
    padding-top: 48px;
    border-top: 1px solid var(--color-gray-200);
}

.about__scope-title {
    margin: 0 0 12px;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--color-navy);
}

.about__scope-intro {
    margin: 0 0 28px;
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 680px;
}

.about__services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.about__service-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
    background: #ffffff;
    border: 1px solid #dbe4ee;
    border-left: 4px solid #1d8f4e;
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-navy);
    line-height: 1.55;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    transition: all .25s ease;
}

.about__service-card:hover {
    border-color: rgba(21, 128, 61, 0.35);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.about__service-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-sm);
    font-size: 1.125rem;
    line-height: 1;
}

/* ==========================================================================
   Schedule
   ========================================================================== */
.schedule-panel {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    background: var(--color-gray-50);
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid var(--color-gray-200);
}

.schedule-controls label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-navy);
}

.schedule-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    background: var(--color-white);
    margin-bottom: 12px;
}

.form-hint {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin: 0 0 20px;
}

.schedule-region-description {
    margin: 4px 0 12px;
    color: var(--color-text);
    font-size: 0.875rem;
    line-height: 1.5;
}

.schedule-error {
    color: #9f1c1c;
    font-weight: 600;
}

.schedule-table-wrap {
    overflow-x: auto;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.schedule-table th,
.schedule-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--color-gray-200);
}

.schedule-table th {
    background: var(--color-navy);
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.875rem;
}

.schedule-table tbody tr:last-child td {
    border-bottom: none;
}

.schedule-table tbody tr:hover {
    background: var(--color-green-light);
}

/* ==========================================================================
   PSZOK
   ========================================================================== */
.pszok__grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

.pszok-card {
    padding: 28px;
    background: var(--color-navy);
    color: var(--color-white);
    border-radius: var(--radius-lg);
}

.pszok-card h3 {
    margin: 0 0 16px;
    font-size: 1.125rem;
}

.pszok-card ul {
    margin: 0;
    padding-left: 20px;
    line-height: 1.8;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.info-list li {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 8px 0;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.schedule-table tbody th {
    color: var(--color-navy);
    background: var(--color-white);
    font-weight: 600;
}

.info-list__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    color: var(--color-green);
    font-size: 0.875rem;
    font-weight: 700;
}

.info-list a {
    color: var(--color-green);
}

/* ==========================================================================
   News
   ========================================================================== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.news-card {
    display: flex;
    flex-direction: column;
    background: var(--color-gray-50);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-gray-200);
    transition: box-shadow var(--transition);
}

.news-card:hover {
    box-shadow: var(--shadow-md);
}

.news-card__image {
    height: clamp(220px, 22vw, 260px);
    overflow: hidden;
    background: var(--color-gray-200);
}

.news-card__image--placeholder {
    background: linear-gradient(135deg, var(--color-gray-200), var(--color-gray-100));
}

.news-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.news-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-card__date {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.news-card__title {
    margin: 8px 0 12px;
    font-size: 1.125rem;
    color: var(--color-navy);
    line-height: 1.35;
}

.news-card__summary {
    margin: 0 0 16px;
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    line-height: 1.65;
    flex: 1;
}

/* ==========================================================================
   Reports form
   ========================================================================== */
.reports__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: stretch;
}

.reports__intro p {
    color: var(--color-text-muted);
    line-height: 1.75;
}

.reports__intro {
    display: flex;
    flex-direction: column;
}

.reports__info-panel {
    position: relative;
    margin-top: 30px;
    padding: 0;
    flex: 1;
    color: var(--color-text);
}

.reports__info-panel::after {
    content: none;
}

.reports__illustration {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
    margin-bottom: 22px;
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.12);
}

.reports__info-content {
    position: relative;
    padding: 22px;
    border: 1px solid rgba(21, 128, 61, 0.16);
    border-radius: var(--radius-lg);
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.reports__info-content h3 {
    margin: 0 0 18px;
    font-size: 1.125rem;
    line-height: 1.35;
    color: var(--color-navy);
}

.reports__steps {
    position: relative;
    display: grid;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.reports__steps::before {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 29px;
    width: 1px;
    background: linear-gradient(to bottom, rgba(21, 128, 61, 0.36), rgba(21, 128, 61, 0.08));
    z-index: 0;
}

.reports__steps li {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 12px;
    border: 1px solid rgba(21, 128, 61, 0.12);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.76);
    color: var(--color-navy);
    font-weight: 600;
}

.reports__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--color-green-light);
    color: var(--color-green-hover);
    font-size: 0.875rem;
    font-weight: 800;
}

.report-form {
    min-height: 100%;
    background: var(--color-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-gray-200);
}

.form-messages {
    margin-bottom: 18px;
}

.form-message {
    margin: 0 0 10px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-gray-200);
    background: var(--color-white);
    color: var(--color-navy);
    font-weight: 600;
}

.form-message--success {
    border-color: rgba(21, 128, 61, 0.35);
    background: var(--color-green-light);
    color: var(--color-green-hover);
}

.form-message--error {
    border-color: rgba(220, 38, 38, 0.35);
    background: #fef2f2;
    color: #991b1b;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--color-navy);
    font-size: 0.9375rem;
}

.required {
    color: #dc2626;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    background: var(--color-white);
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-blue-accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ==========================================================================
   Search
   ========================================================================== */
.search-page h1 {
    margin: 0 0 24px;
    color: var(--color-navy);
}

.search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: end;
    max-width: 720px;
    margin-bottom: 36px;
}

.search-form label {
    grid-column: 1 / -1;
    font-weight: 700;
    color: var(--color-navy);
}

.search-form input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #64748b;
    border-radius: var(--radius-sm);
    font: inherit;
}

.search-results {
    display: grid;
    gap: 16px;
    max-width: 820px;
    padding: 0;
    margin: 0 0 28px;
    list-style: none;
}

.search-results li {
    padding: 20px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-md);
}

.search-results h2 {
    margin: 0 0 8px;
    font-size: 1.125rem;
}

.search-results p {
    margin: 0;
    color: var(--color-text-muted);
}

.search-pagination {
    display: flex;
    gap: 16px;
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact {
    position: relative;
    background: var(--color-white);
}

.contact::before {
    content: "";
    position: absolute;
    top: 42px;
    right: clamp(24px, 6vw, 96px);
    width: 220px;
    height: 220px;
    border: 1px solid rgba(21, 128, 61, 0.16);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(21, 128, 61, 0.08) 0%, rgba(15, 23, 42, 0.035) 48%, transparent 70%);
    pointer-events: none;
}

.contact::after {
    content: "";
    position: absolute;
    bottom: 54px;
    left: clamp(24px, 6vw, 96px);
    width: 132px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-green), var(--color-navy-mid));
    opacity: 0.28;
    pointer-events: none;
}

.contact__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact__lead {
    max-width: 620px;
    margin: 0 0 28px;
    color: var(--color-navy);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.7;
}

.contact__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-card {
    min-height: 136px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.contact-card:hover {
    border-color: rgba(21, 128, 61, 0.32);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
    transform: translateY(-2px);
}

.contact-card--wide {
    grid-column: 1 / -1;
}

.contact-card--primary {
    background:
        linear-gradient(135deg, rgba(21, 128, 61, 0.08), rgba(30, 58, 95, 0.045)),
        var(--color-white);
    border-color: rgba(21, 128, 61, 0.32);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
}

.contact-card__label {
    display: block;
    margin: 0 0 12px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-green);
}

.contact-card p {
    margin: 0;
    color: var(--color-navy);
    font-weight: 650;
    line-height: 1.6;
    overflow-wrap: anywhere;
}

.contact-card a {
    color: var(--color-navy-mid);
    text-decoration: none;
}

.contact-card--primary a {
    color: var(--color-green-hover);
}

.contact-card a:hover,
.contact-card a:focus-visible {
    color: var(--color-green);
    text-decoration: underline;
}

.map-link-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 360px;
    padding: clamp(28px, 4vw, 40px);
    background: var(--color-navy);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.18);
    overflow: hidden;
}

.map-link-panel::before {
    content: "";
    position: absolute;
    inset: 18px 18px auto auto;
    width: 92px;
    height: 92px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
}

.map-link-panel::after {
    content: "";
    position: absolute;
    right: -42px;
    bottom: -42px;
    width: 148px;
    height: 148px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.map-link-panel__eyebrow {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #bbf7d0;
}

.map-link-panel h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 12px;
    font-size: clamp(1.25rem, 2.4vw, 1.5rem);
    color: var(--color-white);
    line-height: 1.3;
}

.map-link-panel p {
    position: relative;
    z-index: 1;
    margin: 0 0 28px;
    line-height: 1.7;
}

.map-link-panel .btn {
    position: relative;
    z-index: 1;
    background: var(--color-white);
    color: var(--color-navy);
    border-color: var(--color-white);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.map-link-panel .btn:hover,
.map-link-panel .btn:focus-visible {
    background: #e8f7ee;
    border-color: #e8f7ee;
    color: var(--color-navy);
}

/* ==========================================================================
   Accessibility declaration page
   ========================================================================== */
.declaration-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(56px, 8vw, 92px) 0;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-mid) 58%, #17634a 100%);
}

.declaration-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 80%, rgba(21, 128, 61, 0.28) 0%, transparent 44%),
        radial-gradient(circle at 82% 18%, rgba(187, 247, 208, 0.14) 0%, transparent 36%);
}

.declaration-hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 320px;
    gap: clamp(32px, 6vw, 72px);
    align-items: center;
}

.declaration-hero__eyebrow {
    display: inline-flex;
    margin: 0 0 18px;
    padding: 7px 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-white);
}

.declaration-hero h1 {
    max-width: 760px;
    margin: 0 0 18px;
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    line-height: 1.12;
}

.declaration-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    line-height: 1.7;
}

.declaration-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.declaration-hero__symbol {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
}

.declaration-hero__icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #bbf7d0;
    font-weight: 800;
    letter-spacing: 0.08em;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.declaration-hero__ring {
    position: absolute;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    border: 1px solid rgba(187, 247, 208, 0.22);
}

.declaration-section {
    padding: 72px 0;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.025), rgba(21, 128, 61, 0.04)),
        var(--color-gray-50);
}

.declaration-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.declaration-summary {
    display: grid;
    gap: 16px;
    position: sticky;
    top: calc(var(--header-height) + var(--wcag-toolbar-height) + 24px);
}

.declaration-summary__card,
.declaration-card,
.declaration-download {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
}

.declaration-summary__card {
    padding: 20px;
}

.declaration-summary__card h2 {
    margin: 12px 0 8px;
    color: var(--color-navy);
    font-size: 1rem;
}

.declaration-summary__card p {
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.declaration-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.declaration-card {
    padding: clamp(24px, 3vw, 32px);
}

.declaration-card--wide,
.declaration-download {
    grid-column: 1 / -1;
}

.declaration-card__heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.declaration-card__heading h2,
.declaration-download h2 {
    margin: 0;
    color: var(--color-navy);
    font-size: clamp(1.25rem, 2.4vw, 1.5rem);
    line-height: 1.3;
}

.declaration-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--color-green-light);
    color: var(--color-green-hover);
    font-weight: 800;
}

.declaration-card p,
.declaration-download p {
    color: var(--color-text-muted);
    line-height: 1.75;
}

.declaration-status {
    margin-top: 24px;
    padding: 18px 20px;
    border-left: 4px solid var(--color-green);
    border-radius: var(--radius-md);
    background: rgba(21, 128, 61, 0.08);
    color: var(--color-navy) !important;
    font-weight: 600;
}

.declaration-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 24px 0 0;
}

.declaration-meta div {
    padding: 16px;
    border-radius: var(--radius-md);
    background: var(--color-gray-50);
    border: 1px solid var(--color-gray-200);
}

.declaration-meta dt {
    margin-bottom: 6px;
    color: var(--color-text-muted);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
}

.declaration-meta dd {
    margin: 0;
    color: var(--color-navy);
    font-weight: 700;
}

.declaration-list,
.declaration-contact {
    margin: 16px 0 0;
    padding-left: 1.2rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.declaration-list--checks {
    list-style: none;
    padding-left: 0;
}

.declaration-list--checks li {
    position: relative;
    padding-left: 30px;
}

.declaration-list--checks li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-green);
    font-weight: 800;
}

.declaration-contact {
    list-style: none;
    padding-left: 0;
}

.declaration-contact a {
    color: var(--color-green);
    font-weight: 700;
}

.declaration-person {
    margin: 8px 0 0;
    color: var(--color-navy) !important;
    font-weight: 700;
}

.declaration-timeline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.declaration-timeline li {
    padding: 18px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(21, 128, 61, 0.08), rgba(30, 58, 95, 0.045));
    border: 1px solid rgba(21, 128, 61, 0.14);
}

.declaration-timeline span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 12px;
    border-radius: 50%;
    background: var(--color-green);
    color: var(--color-white);
    font-weight: 800;
}

.declaration-timeline strong {
    display: block;
    color: var(--color-navy);
}

.declaration-timeline p {
    margin: 8px 0 0;
    font-size: 0.9375rem;
}

.declaration-address {
    margin-top: 16px;
    color: var(--color-navy);
    font-style: normal;
    font-weight: 600;
    line-height: 1.7;
}

.declaration-download {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 32px;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 58, 95, 0.92) 58%, rgba(21, 128, 61, 0.88)),
        var(--color-navy);
}

.declaration-download h2,
.declaration-download p {
    color: var(--color-white);
}

.declaration-download p {
    margin: 8px 0 0;
    opacity: 0.82;
}

/* ==========================================================================
   RODO page
   ========================================================================== */
.rodo-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(56px, 8vw, 92px) 0;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-mid) 56%, #17634a 100%);
}

.rodo-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 82%, rgba(21, 128, 61, 0.28) 0%, transparent 44%),
        radial-gradient(circle at 82% 18%, rgba(187, 247, 208, 0.14) 0%, transparent 38%);
}

.rodo-hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 340px;
    gap: clamp(32px, 6vw, 72px);
    align-items: center;
}

.rodo-hero__eyebrow {
    display: inline-flex;
    margin: 0 0 18px;
    padding: 7px 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.rodo-hero h1 {
    max-width: 760px;
    margin: 0 0 18px;
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    line-height: 1.12;
}

.rodo-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    line-height: 1.7;
}

.rodo-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.rodo-hero__visual {
    position: relative;
    min-height: 280px;
}

.rodo-hero__shield {
    position: absolute;
    left: 32px;
    top: 36px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 146px;
    height: 146px;
    border-radius: 48% 48% 54% 54%;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #bbf7d0;
    font-weight: 800;
    letter-spacing: 0.08em;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.rodo-hero__document {
    position: absolute;
    right: 24px;
    top: 18px;
    width: 132px;
    height: 170px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.rodo-hero__document::before,
.rodo-hero__document::after {
    content: "";
    position: absolute;
    left: 24px;
    height: 6px;
    border-radius: 999px;
    background: rgba(30, 58, 95, 0.22);
}

.rodo-hero__document::before {
    top: 46px;
    width: 74px;
}

.rodo-hero__document::after {
    top: 66px;
    width: 54px;
}

.rodo-hero__lock {
    position: absolute;
    right: 92px;
    bottom: 22px;
    width: 76px;
    height: 58px;
    border-radius: var(--radius-md);
    background: #bbf7d0;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.rodo-hero__lock::before {
    content: "";
    position: absolute;
    left: 18px;
    top: -30px;
    width: 40px;
    height: 38px;
    border: 8px solid #bbf7d0;
    border-bottom: 0;
    border-radius: 24px 24px 0 0;
}

.rodo-section {
    padding: 72px 0;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.025), rgba(21, 128, 61, 0.04)),
        var(--color-gray-50);
}

.rodo-section__header {
    max-width: 940px;
    margin-bottom: 34px;
}

.rodo-section__header p:last-child {
    color: var(--color-text-muted);
    line-height: 1.8;
}

.rodo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.rodo-card,
.rodo-iod-panel {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
}

.rodo-card {
    padding: clamp(24px, 3vw, 32px);
}

.rodo-card--wide {
    grid-column: 1 / -1;
}

.rodo-card__heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.rodo-card__heading h2,
.rodo-iod-panel h2 {
    margin: 0;
    color: var(--color-navy);
    font-size: clamp(1.25rem, 2.4vw, 1.5rem);
    line-height: 1.3;
}

.rodo-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--color-green-light);
    color: var(--color-green-hover);
    font-size: 0.875rem;
    font-weight: 800;
}

.rodo-card p {
    color: var(--color-text-muted);
    line-height: 1.75;
}

.rodo-card a,
.rodo-iod-panel a {
    color: var(--color-green);
    font-weight: 700;
}

.rodo-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.rodo-split p {
    margin: 0;
    padding: 18px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(21, 128, 61, 0.08), rgba(30, 58, 95, 0.045));
    border: 1px solid rgba(21, 128, 61, 0.14);
    color: var(--color-navy);
    font-weight: 600;
}

.rodo-rights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}

.rodo-rights li {
    position: relative;
    padding: 14px 16px 14px 42px;
    border-radius: var(--radius-md);
    background: var(--color-gray-50);
    border: 1px solid var(--color-gray-200);
    color: var(--color-navy);
    font-weight: 600;
}

.rodo-rights li::before {
    content: "✓";
    position: absolute;
    left: 16px;
    top: 14px;
    color: var(--color-green);
    font-weight: 800;
}

.rodo-address {
    margin-top: 16px;
    color: var(--color-navy);
    font-style: normal;
    font-weight: 600;
    line-height: 1.7;
}

.rodo-iod-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 24px;
    padding: 28px 32px;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 58, 95, 0.92) 58%, rgba(21, 128, 61, 0.88)),
        var(--color-navy);
    color: var(--color-white);
}

.rodo-iod-panel h2,
.rodo-iod-panel p {
    color: var(--color-white);
}

.rodo-iod-panel p {
    margin: 8px 0 0;
    opacity: 0.86;
}

.rodo-iod-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.8;
}

.rodo-iod-panel a {
    color: #bbf7d0;
}

/* ==========================================================================
   Cookie policy page
   ========================================================================== */
.cookies-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(56px, 8vw, 92px) 0;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-mid) 56%, #17634a 100%);
}

.cookies-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 82%, rgba(21, 128, 61, 0.28) 0%, transparent 44%),
        radial-gradient(circle at 82% 18%, rgba(187, 247, 208, 0.14) 0%, transparent 38%);
}

.cookies-hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 320px;
    gap: clamp(32px, 6vw, 72px);
    align-items: center;
}

.cookies-hero__eyebrow {
    display: inline-flex;
    margin: 0 0 18px;
    padding: 7px 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.cookies-hero h1 {
    max-width: 760px;
    margin: 0 0 18px;
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    line-height: 1.12;
}

.cookies-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    line-height: 1.7;
}

.cookies-hero__actions,
.cookies-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cookies-hero__actions {
    margin-top: 30px;
}

.cookies-hero__visual {
    position: relative;
    min-height: 260px;
}

.cookies-hero__cookie {
    position: absolute;
    left: 24px;
    top: 38px;
    width: 146px;
    height: 146px;
    border-radius: 50%;
    background: rgba(187, 247, 208, 0.92);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.cookies-hero__cookie::before,
.cookies-hero__cookie::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.22);
}

.cookies-hero__cookie::before {
    left: 38px;
    top: 38px;
    width: 18px;
    height: 18px;
    box-shadow: 42px 18px 0 rgba(15, 23, 42, 0.22), 22px 58px 0 rgba(15, 23, 42, 0.22);
}

.cookies-hero__cookie::after {
    right: -2px;
    top: 16px;
    width: 46px;
    height: 46px;
    background: var(--color-navy-mid);
}

.cookies-hero__shield {
    position: absolute;
    right: 36px;
    top: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 104px;
    height: 104px;
    border-radius: 48% 48% 54% 54%;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #bbf7d0;
    font-size: 2rem;
    font-weight: 800;
}

.cookies-hero__card {
    position: absolute;
    right: 72px;
    bottom: 20px;
    width: 140px;
    height: 86px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.cookies-section {
    padding: 72px 0;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.025), rgba(21, 128, 61, 0.04)),
        var(--color-gray-50);
}

.cookies-section__header {
    max-width: 940px;
    margin-bottom: 34px;
}

.cookies-section__header p:last-child {
    color: var(--color-text-muted);
    line-height: 1.8;
}

.cookies-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.cookies-card {
    padding: clamp(24px, 3vw, 32px);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
}

.cookies-card--wide {
    grid-column: 1 / -1;
}

.cookies-card__heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.cookies-card__heading h2 {
    margin: 0;
    color: var(--color-navy);
    font-size: clamp(1.25rem, 2.4vw, 1.5rem);
    line-height: 1.3;
}

.cookies-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--color-green-light);
    color: var(--color-green-hover);
}

.cookies-card__icon svg {
    display: block;
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.cookies-card p,
.cookies-address,
.cookies-contact {
    color: var(--color-text-muted);
    line-height: 1.75;
}

.cookies-types {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}

.cookies-types li {
    padding: 18px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(21, 128, 61, 0.08), rgba(30, 58, 95, 0.045));
    border: 1px solid rgba(21, 128, 61, 0.14);
}

.cookies-types strong,
.cookies-types span,
.cookies-types em {
    display: block;
}

.cookies-types strong {
    color: var(--color-navy);
    margin-bottom: 6px;
}

.cookies-types span {
    color: var(--color-text-muted);
    line-height: 1.6;
}

.cookies-types em {
    margin-top: 10px;
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    font-style: normal;
    line-height: 1.6;
}

.cookies-help-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.cookies-help-links a {
    display: block;
    padding: 14px 16px;
    border: 1px solid rgba(21, 128, 61, 0.14);
    border-radius: var(--radius-md);
    background: rgba(21, 128, 61, 0.06);
    color: var(--color-navy-mid);
    font-weight: 700;
    text-decoration: none;
}

.cookies-help-links a:hover,
.cookies-help-links a:focus-visible {
    color: var(--color-green);
    background: rgba(21, 128, 61, 0.1);
}

.cookies-preferences-button {
    font-family: inherit;
}

.cookies-address {
    font-style: normal;
    font-weight: 600;
    color: var(--color-navy);
}

.cookies-contact {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.cookies-contact a {
    color: var(--color-green);
    font-weight: 700;
}

.cookies-actions {
    margin-top: 28px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--color-navy);
    color: rgba(255, 255, 255, 0.85);
    padding: 56px 0 0;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand__title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 0.75rem;
    border: 0;
    box-shadow: none;
    outline: 0;
    text-shadow: none;
}

.footer-tagline {
    margin: 0 0 16px;
    font-size: 0.875rem;
    opacity: 0.8;
}

.footer-address {
    margin: 0 0 12px;
    font-size: 0.9375rem;
    line-height: 1.7;
    font-style: normal;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.7;
    overflow-wrap: anywhere;
}

.footer-contact-list__spaced {
    margin-top: 10px;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.footer-contact-list a:hover,
.footer-contact-list a:focus-visible {
    color: var(--color-white);
    text-decoration: underline;
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-white);
    margin: 0 0 16px;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-legal a,
.footer-legal span {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color var(--transition);
}

.footer-links a:hover,
.footer-legal a:hover,
.footer-links a:focus-visible,
.footer-legal a:focus-visible {
    color: var(--color-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.8125rem;
    opacity: 0.65;
}

.footer-bottom p + p {
    margin-top: 0.35rem;
}

.footer-bottom .footer-credits {
    opacity: 0.8;
}

.footer-credits strong {
    color: var(--color-white);
    font-weight: 700;
    letter-spacing: 0.025em;
}

/* ==========================================================================
   Rich text from CMS
   ========================================================================== */
.about__content ul,
.about__intro ul,
.contact__info ul,
.section-intro ul {
    padding-left: 1.25rem;
    color: var(--color-text-muted);
    line-height: 1.75;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
    .about__layout,
    .pszok__grid,
    .reports__grid,
    .contact__grid,
    .schedule-panel,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .about__highlights {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .about__highlight {
        flex: 1;
        min-width: 220px;
    }

    .map-link-panel {
        min-height: 280px;
    }

    .declaration-hero__inner,
    .declaration-layout,
    .declaration-content,
    .rodo-hero__inner,
    .rodo-grid,
    .cookies-hero__inner,
    .cookies-grid {
        grid-template-columns: 1fr;
    }

    .declaration-summary {
        position: static;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .declaration-hero__symbol {
        min-height: 180px;
    }

    .declaration-timeline {
        grid-template-columns: 1fr;
    }

    .rodo-hero__visual {
        min-height: 220px;
    }

    .rodo-split,
    .rodo-rights,
    .cookies-types,
    .cookies-help-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1200px) {
    :root {
        --header-height: 92px;
        --logo-header-width: 150px;
        --logo-header-max-height: 78px;
        --header-logo-gap: 20px;
    }

    .site-nav a {
        padding: 8px 8px;
        font-size: 0.875rem;
    }

    .site-nav a:not(.site-nav__cta) {
        padding-inline: 6px;
    }

    .site-nav__cta {
        padding-inline: 10px;
    }

    .site-nav {
        gap: 0;
        margin-left: 14px;
    }
}

@media (max-width: 960px) {
    :root {
        --header-height: 88px;
        --logo-header-width: 140px;
        --logo-header-max-height: 72px;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__content {
        text-align: center;
    }

    .hero h1 {
        max-width: none;
        margin-inline: auto;
    }

    .hero__subtitle {
        margin-inline: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero__pills {
        justify-content: center;
    }

    .hero__visual {
        display: none;
    }

    .hero__decor-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        padding: 16px var(--header-padding-x) 20px;
        margin-left: 0;
        background: var(--color-white);
        border-bottom: 1px solid var(--color-gray-200);
        box-shadow: var(--shadow-md);
        gap: 4px;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 12px 16px;
    }

    .site-nav__cta {
        margin-left: 0;
        text-align: center;
    }

    .site-header {
        position: relative;
    }

    .site-header .header-inner {
        position: relative;
        justify-content: space-between;
        height: auto;
        min-height: var(--header-height);
        gap: 12px;
        padding: 8px var(--header-padding-x);
    }

    :root {
        --header-height: 84px;
        --logo-header-width: 128px;
        --logo-header-max-height: 66px;
    }

    .hero {
        padding: 48px 0 64px;
    }

    .about__highlights {
        flex-direction: column;
    }

    .about__highlight {
        min-width: unset;
    }

    .about__services {
        grid-template-columns: 1fr;
    }

    .reports__info-panel {
        padding: 0;
    }

    .reports__illustration {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .contact__cards {
        grid-template-columns: 1fr;
    }

    .declaration-section {
        padding: 48px 0;
    }

    .declaration-summary,
    .declaration-meta {
        grid-template-columns: 1fr;
    }

    .declaration-download {
        align-items: flex-start;
        flex-direction: column;
    }

    .declaration-download .btn {
        width: 100%;
    }

    .rodo-section {
        padding: 48px 0;
    }

    .rodo-hero__actions .btn,
    .rodo-iod-panel {
        width: 100%;
    }

    .rodo-iod-panel {
        align-items: flex-start;
        flex-direction: column;
    }

    .rodo-hero__visual {
        display: none;
    }

    .cookies-section {
        padding: 48px 0;
    }

    .cookies-hero__actions .btn,
    .cookies-actions .btn {
        width: 100%;
    }

    .cookies-hero__visual {
        display: none;
    }

    .contact::before {
        width: 160px;
        height: 160px;
        top: 24px;
        right: -48px;
    }

    .contact::after {
        left: 24px;
        bottom: 28px;
        width: 96px;
    }

    .section {
        padding: 48px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .wcag-toolbar {
        justify-content: center;
    }

    .wcag-toolbar__label {
        width: 100%;
        text-align: center;
        margin-bottom: 2px;
    }
}

@media (max-width: 480px) {
    :root {
        --header-height: 80px;
        --logo-header-width: 112px;
        --logo-header-max-height: 58px;
        --header-padding-x: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .search-form {
        grid-template-columns: 1fr;
    }
}

/* Solid fallbacks and explicit colors for reliable WCAG contrast evaluation. */
.hero__ui-card--primary,
.hero__ui-card--accent {
    background: #1e3a5f;
}

.hero__ui-card--secondary {
    background: #14532d;
}

.info-list__icon {
    color: #0f172a;
}

.info-list__icon::before {
    content: attr(data-icon);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #ffffff !important;
    color: #000000 !important;
    -webkit-text-fill-color: #000000;
    border: 2px solid #334155;
    opacity: 1;
}

.form-group textarea::placeholder {
    color: #334155;
    -webkit-text-fill-color: #334155;
    opacity: 1;
}

.contact {
    background: #ffffff;
    color: #0f172a;
}

.contact::before,
.contact::after,
.map-link-panel::before,
.map-link-panel::after {
    content: none;
}

.contact-card {
    background: #ffffff;
    color: #0f172a;
}

.contact-card--primary {
    background: #f0fdf4;
}

.map-link-panel p {
    color: #ffffff;
}

.declaration-hero,
.rodo-hero,
.cookies-hero {
    background: #0f172a;
    color: #ffffff;
}

.declaration-hero::before,
.rodo-hero::before,
.cookies-hero::before {
    content: none;
}

.declaration-section,
.rodo-section,
.cookies-section {
    background: #f8fafc;
    color: #0f172a;
}

.declaration-summary__card,
.declaration-card,
.declaration-download,
.rodo-card,
.rodo-iod-panel,
.cookies-card,
.cookies-actions {
    background: #ffffff;
    color: #0f172a;
}

.declaration-hero .btn-secondary,
.rodo-hero .btn-secondary,
.cookies-hero .btn-secondary {
    background: #ffffff;
    color: #0f172a;
    border-color: #ffffff;
}

.declaration-card__icon,
.rodo-card__icon {
    background: #dcfce7;
    color: #14532d;
}

.declaration-card__icon::before {
    content: attr(data-icon);
}

.declaration-timeline li,
.rodo-split p,
.cookies-types li {
    background: #ffffff;
    color: #0f172a;
}

.declaration-timeline strong,
.declaration-timeline p,
.cookies-types strong,
.cookies-types span,
.cookies-types em {
    color: #0f172a;
}

.declaration-download,
.rodo-iod-panel {
    background: #0f172a;
    color: #ffffff;
}

.declaration-download h2,
.declaration-download p,
.rodo-iod-panel h2,
.rodo-iod-panel p {
    color: #ffffff;
    opacity: 1;
}

.rodo-iod-panel a {
    color: #dcfce7;
}
.form-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}
