/* ==========================================================================
   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;
    }
}

/* Layout refinements: global notice, schedule and PSZOK */
.public-notice__inner {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    gap: 18px;
    padding-top: 18px;
    padding-bottom: 18px;
}
.public-notice__content p:last-child { max-width: 920px; }
.public-notice__close { align-self: center; flex: 0 0 auto; }

.schedule-panel {
    grid-template-columns: minmax(330px, 400px) minmax(0, 1fr);
    gap: clamp(24px, 3vw, 42px);
    align-items: start;
    padding: clamp(24px, 3vw, 38px);
}
.schedule-controls {
    padding: 22px;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
}
.schedule-search { padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--color-gray-200); }
.schedule-search .form-hint { min-height: 20px; margin-bottom: 0; }
.schedule-downloads { display: grid; gap: 9px; }
.schedule-downloads .btn { width: 100%; }
.my-schedule {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px 14px;
    padding: 18px;
    margin: 18px 0;
}
.my-schedule__icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #ffffff;
    background: #15803d;
    font-weight: 900;
}
.my-schedule .btn { grid-column: 1 / -1; width: 100%; }
.schedule-table-wrap { min-width: 0; border-radius: var(--radius-lg); }

.pszok__grid {
    grid-template-columns: minmax(300px, .82fr) minmax(520px, 1.18fr);
    gap: clamp(42px, 6vw, 86px);
    align-items: stretch;
}
.pszok__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 560px;
    padding-block: 28px;
}
.pszok__content .section-title { margin-bottom: 18px; }
.pszok__content > p:not(.section-eyebrow) { color: var(--color-text-muted); font-size: 1.06rem; line-height: 1.75; }
.pszok__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.pszok-card { display: flex; flex-direction: column; padding: clamp(26px, 4vw, 40px); }
.pszok-card__accepted { display: grid; grid-template-columns: minmax(180px, .8fr) minmax(240px, 1.2fr); gap: 28px; align-items: start; }
.pszok-card__accepted > div > p:last-child { margin: 8px 0 0; color: rgba(255,255,255,.78); line-height: 1.55; }
.pszok-card__eyebrow { margin: 0 0 6px; color: #86efac; font-size: .75rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.pszok-card__accepted ul { columns: 2; column-gap: 28px; }
.pszok-card__accepted li { break-inside: avoid; margin-bottom: 4px; }
.pszok-map { margin-top: 28px; padding-top: 28px; }
.pszok-map iframe { height: 320px; }

@media (max-width: 1050px) {
    .schedule-panel { grid-template-columns: minmax(300px, 350px) minmax(0, 1fr); }
    .pszok__grid { grid-template-columns: 1fr; }
    .pszok__content { max-width: 760px; padding-block: 0; }
}

@media (max-width: 820px) {
    .public-notice__inner {
        grid-template-columns: auto minmax(0, 1fr) auto;
        align-items: start;
        gap: 12px;
    }
    .public-notice .btn { grid-column: 1 / -1; width: 100%; }
    .public-notice__close { grid-column: 3; grid-row: 1; }
    .schedule-panel { grid-template-columns: 1fr; }
    .schedule-controls { padding: 18px; }
}

@media (max-width: 620px) {
    .public-notice__inner { grid-template-columns: minmax(0, 1fr) auto; }
    .public-notice__icon { display: none; }
    .public-notice__content { grid-column: 1; }
    .public-notice__close { grid-column: 2; }
    .pszok-card__accepted { grid-template-columns: 1fr; }
    .pszok-card__accepted ul { columns: 1; }
    .pszok__actions, .pszok__actions .btn, .pszok-map__actions, .pszok-map__actions .btn { width: 100%; }
    .pszok-map iframe { height: 250px; }
}

/* Waste guide */
.service-card--featured {
    border-color: #86efac;
    background: linear-gradient(145deg, #f0fdf4, #ffffff);
}

.waste-home__panel {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
    gap: clamp(28px, 5vw, 64px);
    padding: clamp(28px, 5vw, 56px);
    border-radius: var(--radius-lg);
    color: #ffffff;
    background: linear-gradient(135deg, #0f3d2e, #14532d 62%, #166534);
    box-shadow: var(--shadow-lg);
}

.waste-home__panel h2,
.waste-home__panel h3,
.waste-home__panel p,
.waste-home__panel label { color: inherit; }
.waste-home__panel .section-eyebrow { color: #bbf7d0; }
.waste-home__search label { display: block; margin-bottom: 8px; font-weight: 750; }
.waste-home__search > div { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; }
.waste-home__search input,
.waste-search input {
    min-width: 0;
    min-height: 54px;
    padding: 12px 16px;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    background: #ffffff;
    color: #0f172a;
    font: inherit;
}
.waste-home__search input:focus,
.waste-search input:focus { border-color: #facc15; outline: 3px solid rgba(250, 204, 21, 0.35); }
.waste-home__popular { padding-left: clamp(0px, 3vw, 34px); border-left: 1px solid rgba(255,255,255,.25); }
.waste-home__popular ul { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; list-style: none; }
.waste-home__popular li a,
.waste-popular a {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.38);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255,255,255,.09);
    text-decoration: none;
    font-weight: 700;
}
.waste-home__popular li a:hover,
.waste-home__popular li a:focus-visible,
.waste-popular a:hover,
.waste-popular a:focus-visible { background: #ffffff; color: #14532d; }

.waste-hero { background: linear-gradient(135deg, #052e16, #14532d 62%, #0f766e); }
.waste-hero .container > p { max-width: 780px; }
.waste-search { max-width: 850px; margin-top: 28px; }
.waste-search label { display: block; margin-bottom: 9px; color: #ffffff; font-size: 1.08rem; font-weight: 800; }
.waste-search__row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; }
.waste-search input { min-height: 60px; font-size: 1.05rem; }
.waste-popular { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 20px; }
.waste-popular > span { margin-right: 4px; font-weight: 800; }
.waste-popular a { padding: 6px 10px; font-size: .9rem; }

.waste-results { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.waste-result {
    display: grid;
    gap: 18px;
    padding: clamp(22px, 3vw, 30px);
    border: 1px solid #dbe4ea;
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}
.waste-result__category { color: #475569; font-size: .78rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.waste-result h3 { margin: 5px 0 0; font-size: 1.35rem; }
.waste-result h3 a { color: #0f172a; text-decoration-color: #86efac; text-decoration-thickness: 3px; text-underline-offset: 4px; }
.waste-destination { padding: 16px 18px; border-left: 5px solid #15803d; border-radius: 8px; background: #f0fdf4; }
.waste-destination--paper { border-color: #2563eb; background: #eff6ff; }
.waste-destination--plastic { border-color: #ca8a04; background: #fefce8; }
.waste-destination--glass { border-color: #15803d; }
.waste-destination--mixed { border-color: #475569; background: #f1f5f9; }
.waste-destination--hazardous { border-color: #b91c1c; background: #fef2f2; }
.waste-destination span,
.waste-destination strong { display: block; }
.waste-destination span { margin-bottom: 3px; color: #475569; font-size: .82rem; font-weight: 700; text-transform: uppercase; }
.waste-destination strong { color: #0f172a; font-size: 1.06rem; }
.waste-destination p { margin: 7px 0 0; color: #334155; font-size: .92rem; }
.waste-empty { grid-column: 1 / -1; }
.waste-disclaimer { display: flex; gap: 16px 28px; align-items: center; margin-top: 28px; padding: 20px 24px; border-radius: var(--radius-md); background: #e2e8f0; }
.waste-disclaimer p { margin: 0; }

.waste-detail__layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(30px, 6vw, 74px); align-items: start; }
.waste-answer { padding: clamp(25px, 4vw, 42px); border-radius: var(--radius-lg); color: #ffffff; background: linear-gradient(135deg, #166534, #15803d); }
.waste-answer--paper { background: linear-gradient(135deg, #1e40af, #2563eb); }
.waste-answer--plastic { color: #1c1917; background: linear-gradient(135deg, #facc15, #fde047); }
.waste-answer--mixed { background: linear-gradient(135deg, #334155, #475569); }
.waste-answer h2, .waste-answer p { color: inherit; }
.waste-answer h2 { margin: 4px 0 10px; font-size: clamp(1.55rem, 4vw, 2.35rem); }
.waste-answer__label { margin: 0; font-size: .84rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; opacity: .9; }
.waste-instruction { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 18px; padding: 30px 0; border-bottom: 1px solid #dbe4ea; }
.waste-instruction__number { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; color: #14532d; background: #dcfce7; font-size: 1.15rem; font-weight: 850; }
.waste-instruction h2 { margin: 3px 0 8px; font-size: 1.3rem; }
.waste-instruction p { margin: 0; }
.waste-pszok { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: center; margin-top: 30px; padding: 25px; border-radius: var(--radius-lg); background: #f1f5f9; }
.waste-pszok .btn { grid-column: 1 / -1; justify-self: start; }
.waste-detail__aside { position: sticky; top: 100px; padding: 26px; border: 1px solid #dbe4ea; border-radius: var(--radius-lg); background: #ffffff; box-shadow: var(--shadow-sm); }
.waste-detail__aside h2 { margin-top: 0; font-size: 1.2rem; }
.waste-detail__aside ul { padding-left: 20px; }
.waste-detail__aside li + li { margin-top: 9px; }
.waste-detail__aside .btn { width: 100%; margin-top: 10px; }

@media (max-width: 900px) {
    .waste-home__panel, .waste-detail__layout { grid-template-columns: 1fr; }
    .waste-home__popular { padding: 24px 0 0; border-top: 1px solid rgba(255,255,255,.25); border-left: 0; }
    .waste-detail__aside { position: static; }
}

@media (max-width: 680px) {
    .waste-home__search > div, .waste-search__row, .waste-results, .waste-pszok { grid-template-columns: 1fr; }
    .waste-home__search .btn, .waste-search .btn { width: 100%; }
    .waste-disclaimer { display: block; }
    .waste-disclaimer strong { display: block; margin-bottom: 6px; }
    .waste-pszok .btn { grid-column: auto; }
}

/* Resident tools: saved schedule, map, notices and PWA */
.my-schedule {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 16px;
    margin-top: 14px;
    border: 1px solid #86efac;
    border-radius: var(--radius-md);
    background: #f0fdf4;
}
.my-schedule strong { display: block; color: #14532d; }
.my-schedule p { margin: 3px 0 0; color: #334155; font-size: .9rem; }

.pszok-map { padding-top: 22px; margin-top: 22px; border-top: 1px solid rgba(255,255,255,.3); }
.pszok-map iframe { display: block; width: 100%; height: 280px; border: 0; border-radius: var(--radius-md); background: #e2e8f0; }
.pszok-map__actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 14px; }
.pszok-map small { display: block; margin-top: 10px; opacity: .78; }

.public-notice { position: relative; }
.public-notice__close {
    align-self: start;
    width: 42px;
    height: 42px;
    border: 2px solid currentColor;
    border-radius: 50%;
    color: inherit;
    background: transparent;
    cursor: pointer;
    font: 800 1.5rem/1 sans-serif;
}
.public-notice__close:hover,
.public-notice__close:focus-visible { background: rgba(255,255,255,.2); }

.waste-result__category { display: flex; align-items: center; gap: 8px; }
.waste-category-icon {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    color: #14532d;
    background: #dcfce7;
    font-size: 1rem;
}
.waste-hazard-badge {
    padding: 12px 14px;
    margin: 0;
    border-left: 5px solid #b91c1c;
    border-radius: 7px;
    color: #7f1d1d;
    background: #fef2f2;
}
.waste-hazard-badge--hero { display: inline-block; color: #7f1d1d !important; }

.pwa-install {
    min-height: 44px;
    padding: 10px 16px;
    margin-top: 18px;
    border: 1px solid rgba(255,255,255,.65);
    border-radius: 999px;
    color: #ffffff;
    background: transparent;
    cursor: pointer;
    font: inherit;
    font-weight: 750;
}
.pwa-install:hover,
.pwa-install:focus-visible { color: #14532d; background: #ffffff; }

@media (max-width: 680px) {
    .my-schedule { grid-template-columns: 1fr; }
    .my-schedule .btn { width: 100%; }
    .public-notice__inner { grid-template-columns: auto minmax(0, 1fr) auto; }
    .public-notice .btn { grid-column: 1 / -1; }
    .pszok-map iframe { height: 230px; }
}

/* FAQ and knowledge base. */
.knowledge-hero {
    padding-bottom: clamp(64px, 9vw, 104px);
}

.knowledge-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    max-width: 850px;
    padding: 10px;
    margin-top: 30px;
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.knowledge-search input {
    width: 100%;
    min-height: 52px;
    padding: 12px 16px;
    border: 2px solid #64748b;
    border-radius: var(--radius-md);
    background: #ffffff;
    color: #000000;
    font: inherit;
}

.knowledge-search input:focus-visible {
    outline: 3px solid #fbbf24;
    outline-offset: 2px;
}

.knowledge-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 42px;
}

.knowledge-categories a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    background: #ffffff;
    color: #1e3a5f;
    font-weight: 700;
    text-decoration: none;
}

.knowledge-categories a:hover,
.knowledge-categories a:focus-visible,
.knowledge-categories a[aria-current="page"] {
    border-color: #14532d;
    background: #14532d;
    color: #ffffff;
}

.knowledge-categories a span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 0.78rem;
}

.knowledge-categories a:not([aria-current="page"]) span {
    background: #e2e8f0;
    color: #334155;
}

.knowledge-results-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.knowledge-results-heading h2,
.knowledge-results-heading p {
    margin-bottom: 0;
}

.knowledge-results-heading > p {
    color: #475569;
    font-weight: 700;
}

.faq-list {
    display: grid;
    gap: 12px;
    max-width: 980px;
}

.faq-item {
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: 0 5px 16px rgba(15, 23, 42, 0.04);
    overflow: hidden;
}

.faq-item[open] {
    border-color: #15803d;
    box-shadow: 0 12px 28px rgba(21, 128, 61, 0.1);
}

.faq-item summary {
    position: relative;
    display: grid;
    grid-template-columns: minmax(110px, auto) minmax(0, 1fr) 28px;
    align-items: center;
    gap: 16px;
    min-height: 74px;
    padding: 16px 20px;
    color: #0f172a;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker,
.home-faq__item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:focus-visible,
.home-faq__item summary:focus-visible {
    outline: 3px solid #f59e0b;
    outline-offset: -3px;
}

.faq-item__category {
    color: #166534;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.faq-item__question {
    font-size: 1.05rem;
    font-weight: 750;
    line-height: 1.45;
}

.faq-item__toggle,
.home-faq__item summary span {
    position: relative;
    width: 24px;
    height: 24px;
}

.faq-item__toggle::before,
.faq-item__toggle::after,
.home-faq__item summary span::before,
.home-faq__item summary span::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 11px;
    width: 14px;
    height: 2px;
    background: currentColor;
}

.faq-item__toggle::after,
.home-faq__item summary span::after {
    transform: rotate(90deg);
    transition: transform var(--transition);
}

.faq-item[open] .faq-item__toggle::after,
.home-faq__item[open] summary span::after {
    transform: rotate(0deg);
}

.faq-item__answer {
    padding: 0 68px 22px 146px;
    color: #334155;
    line-height: 1.7;
}

.faq-item__answer p:first-child {
    margin-top: 0;
}

.faq-item__updated {
    margin: 16px 0 0;
    color: #64748b;
    font-size: 0.82rem;
}

.knowledge-empty {
    padding: 36px;
    border: 1px dashed #94a3b8;
    border-radius: var(--radius-lg);
    background: #ffffff;
    text-align: center;
}

.knowledge-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: clamp(26px, 4vw, 42px);
    margin-top: 48px;
    border-radius: var(--radius-lg);
    color: #ffffff;
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
}

.knowledge-contact h2,
.knowledge-contact p {
    color: inherit;
}

.knowledge-contact h2 {
    margin: 4px 0 8px;
}

.knowledge-contact p:last-child {
    margin-bottom: 0;
}

.knowledge-contact__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.knowledge-contact .btn-outline {
    border-color: #ffffff;
    color: #ffffff;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: #ffffff;
}

.knowledge-article {
    padding: 64px 0 80px;
    background: #f8fafc;
}

.knowledge-article__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
    gap: 52px;
}

.knowledge-article__content {
    padding: clamp(26px, 4vw, 44px);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.knowledge-article__content > *:first-child {
    margin-top: 0;
}

.knowledge-article__aside {
    position: sticky;
    top: 24px;
    padding: 24px;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-lg);
    background: #ffffff;
}

.knowledge-article__aside h2 {
    margin-top: 0;
    font-size: 1.2rem;
}

.knowledge-article__aside ul {
    padding: 0;
    margin: 0 0 24px;
    list-style: none;
}

.knowledge-article__aside li + li {
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid #e2e8f0;
}

.knowledge-article__aside li a {
    color: #1e3a5f;
    font-weight: 700;
}

.knowledge-document {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    margin-top: 32px;
    border-radius: var(--radius-md);
    background: #f0fdf4;
}

.knowledge-document strong,
.knowledge-document span {
    display: block;
}

.knowledge-document span {
    margin-top: 4px;
    color: #475569;
}

.knowledge-article__updated {
    padding-top: 20px;
    margin: 32px 0 0;
    border-top: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 0.875rem;
}

.home-faq {
    background: linear-gradient(135deg, #f8fafc, #f0fdf4);
}

.home-faq__layout {
    display: grid;
    grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
    align-items: start;
    gap: 54px;
}

.home-faq__intro {
    position: sticky;
    top: 24px;
}

.home-faq__intro > p:not(.section-eyebrow) {
    color: #475569;
    line-height: 1.7;
}

.home-faq__list {
    display: grid;
    gap: 10px;
}

.home-faq__item {
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-md);
    background: #ffffff;
    overflow: hidden;
}

.home-faq__item summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 28px;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    color: #0f172a;
    cursor: pointer;
    font-weight: 750;
    line-height: 1.45;
    list-style: none;
}

.home-faq__item > div {
    padding: 0 56px 20px 20px;
    color: #334155;
    line-height: 1.7;
}

.home-faq__item > div p {
    margin-top: 0;
}

@media (max-width: 960px) {
    .knowledge-article__layout,
    .home-faq__layout {
        grid-template-columns: 1fr;
    }

    .knowledge-article__aside,
    .home-faq__intro {
        position: static;
    }
}

@media (max-width: 768px) {
    .knowledge-search {
        grid-template-columns: 1fr;
    }

    .knowledge-search .btn {
        width: 100%;
    }

    .knowledge-results-heading,
    .knowledge-contact,
    .knowledge-document {
        align-items: flex-start;
        flex-direction: column;
    }

    .faq-item summary {
        grid-template-columns: minmax(0, 1fr) 28px;
        gap: 12px;
    }

    .faq-item__category {
        grid-column: 1 / -1;
    }

    .faq-item__answer {
        padding: 0 20px 20px;
    }

    .knowledge-contact__actions,
    .knowledge-contact__actions .btn,
    .knowledge-document .btn {
        width: 100%;
    }

    .knowledge-categories {
        flex-wrap: nowrap;
        padding-bottom: 8px;
        overflow-x: auto;
        scroll-snap-type: x proximity;
    }

    .knowledge-categories a {
        flex: 0 0 auto;
        scroll-snap-align: start;
    }
}

/* 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;
}

/* Service features: notices, searchable schedule, articles and case status. */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.public-notice {
    color: #0f172a;
    background: #dbeafe;
    border-bottom: 3px solid #1d4ed8;
}

.public-notice--warning {
    background: #fef3c7;
    border-color: #b45309;
}

.public-notice--emergency {
    color: #ffffff;
    background: #991b1b;
    border-color: #7f1d1d;
}

.public-notice__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 22px;
    padding-bottom: 22px;
}

.public-notice__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 2px solid currentColor;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1;
}

.public-notice__content {
    min-width: 0;
}

.public-notice__label {
    margin: 0 0 4px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.public-notice h2,
.public-notice p:last-child {
    margin: 0;
    color: inherit;
}

.public-notice h2 {
    font-size: clamp(1.15rem, 2vw, 1.4rem);
}

.public-notice h2 + p {
    margin-top: 5px;
}

.schedule-search {
    padding: 18px;
    margin-bottom: 24px;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-md);
    background: #f8fafc;
}

.schedule-search label {
    display: block;
    margin-bottom: 8px;
    color: #0f172a;
    font-weight: 700;
}

.schedule-search__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.schedule-search input {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    border: 2px solid #334155;
    border-radius: var(--radius-sm);
    background: #ffffff;
    color: #000000;
    font: inherit;
}

.schedule-downloads {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.info-list__rich .rich-text,
.info-list__rich p {
    margin: 8px 0 0;
}

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

.document-group {
    padding: 24px;
    border: 1px solid #dbe3ec;
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.document-group h3 {
    margin: 0 0 16px;
    color: var(--color-navy);
}

.document-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.document-list li + li {
    padding-top: 14px;
    margin-top: 14px;
    border-top: 1px solid #e2e8f0;
}

.document-list a,
.document-list span {
    display: block;
}

.document-list a {
    color: #14532d;
    font-weight: 700;
}

.document-list span {
    margin-top: 4px;
    color: #475569;
    font-size: 0.875rem;
}

.section-actions {
    margin: 30px 0 0;
    text-align: center;
}

.form-group--checkbox {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 10px;
}

.form-group--checkbox input {
    width: 22px;
    height: 22px;
    margin-top: 2px;
}

.form-group--checkbox label {
    margin: 0;
    font-weight: 500;
}

.report-status-link {
    margin: 16px 0 0;
}

.subpage-hero {
    padding: clamp(54px, 8vw, 88px) 0;
    color: #ffffff;
    background: linear-gradient(135deg, #0f172a, #1e3a5f 65%, #14532d);
}

.subpage-hero h1,
.subpage-hero p,
.subpage-hero time {
    color: inherit;
}

.subpage-hero h1 {
    max-width: 900px;
    margin: 0 0 12px;
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.subpage-hero p:last-child {
    max-width: 760px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.news-card__title a {
    color: inherit;
    text-decoration: none;
}

.news-card__title a:hover,
.news-card__title a:focus-visible {
    text-decoration: underline;
}

.article-page__content {
    max-width: 900px;
    padding-top: 48px;
    padding-bottom: 72px;
}

.article-page__image {
    margin: 0 0 32px;
}

.article-page__img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

.article-page__lead {
    color: #1e293b;
    font-size: 1.25rem;
    font-weight: 650;
    line-height: 1.7;
}

.rich-content {
    color: #1e293b;
    font-size: 1.0625rem;
    line-height: 1.8;
}

.article-page__attachment {
    margin: 34px 0;
}

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

.status-lookup__form,
.status-card {
    padding: clamp(24px, 4vw, 36px);
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.status-card {
    border-top: 6px solid #15803d;
}

.status-card__reference {
    margin: 0 0 8px;
    color: #475569;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.status-card h2 {
    margin: 0 0 22px;
    color: #14532d;
}

.status-card dl div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid #e2e8f0;
}

.status-card dt {
    color: #475569;
}

.status-card dd {
    margin: 0;
    color: #0f172a;
    font-weight: 700;
}

.status-card__response {
    padding: 18px;
    margin-top: 20px;
    border-radius: var(--radius-md);
    background: #f0fdf4;
}

.form-error {
    color: #991b1b;
    font-weight: 700;
}

.empty-state {
    grid-column: 1 / -1;
    padding: 28px;
    border-radius: var(--radius-md);
    background: #ffffff;
    text-align: center;
}

@media (max-width: 768px) {
    .public-notice__inner,
    .status-lookup {
        display: grid;
        grid-template-columns: 1fr;
    }

    .public-notice__icon {
        width: 36px;
        height: 36px;
    }

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

    .schedule-search__row {
        grid-template-columns: 1fr;
    }

    .schedule-search__row .btn,
    .public-notice .btn {
        width: 100%;
    }
}
