:root {
    /* Color tokens */
    --color-bg: #f5fbfc;
    --color-bg-accent: #e2f0f2;
    --color-surface: #ffffff;
    --color-primary: #008994;
    --color-primary-dark: #006172;
    --color-secondary: #94d0cc;
    --color-text: #12343b;
    --color-muted: #4c6d74;
    --color-line: #d4e4e7;

    /* Typography tokens */
    --font-family-base: "IBM Plex Sans", sans-serif;
    --font-family-heading: "IBM Plex Sans", sans-serif;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.35rem;
    --line-height-base: 1.6;

    /* Spacing tokens */
    --space-xxs: 0.35rem;
    --space-xs: 0.6rem;
    --space-sm: 0.9rem;
    --space-md: 1.4rem;
    --space-lg: 2rem;
    --space-xl: 3.2rem;

    /* Radius tokens */
    --radius-sm: 0.6rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;

    /* Shadow tokens */
    --shadow-soft: 0 14px 28px rgba(18, 52, 59, 0.08);
    --shadow-strong: 0 22px 36px rgba(18, 52, 59, 0.12);
    --surface-radius: 1.4rem;
    --surface-border: 1px solid rgba(18, 52, 59, 0.08);
    --surface-shadow: 0 18px 32px rgba(18, 52, 59, 0.1);
    --surface-shadow-hover: 0 22px 38px rgba(0, 137, 148, 0.16);

    --max-width: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    background: linear-gradient(160deg, var(--color-bg) 0%, #ecf6f8 55%, #e1eef0 100%);
    color: var(--color-text);
    min-height: 100vh;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 8rem;
}

:focus-visible {
    outline: 3px solid rgba(0, 137, 148, 0.65);
    outline-offset: 4px;
}

.skip-link {
    position: absolute;
    left: 1.5rem;
    top: -4rem;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    background: var(--color-primary-dark);
    color: var(--color-surface);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: top 0.2s ease, transform 0.2s ease;
    z-index: 2000;
}

.skip-link:focus-visible {
    top: 1.2rem;
    transform: translateY(0);
}

main {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.6rem);
}

section[id],
footer[id] {
    scroll-margin-top: 8rem;
}

@supports (content-visibility: auto) {

    .highlight,
    .section,
    .site-footer {
        content-visibility: auto;
        contain-intrinsic-size: 1px 760px;
    }

    .section.news {
        contain-intrinsic-size: 1px 560px;
    }

    .site-footer {
        contain-intrinsic-size: 1px 460px;
    }
}

.site-footer {
    position: relative;
    padding: 2rem 0 1.2rem;
    background: linear-gradient(135deg, rgba(0, 97, 114, 0.92), rgba(0, 137, 148, 0.88));
    color: rgba(255, 255, 255, 0.92);
    overflow: hidden;
}

.site-footer::before,
.site-footer::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    filter: blur(72px);
    opacity: 0.26;
    pointer-events: none;
    background: radial-gradient(circle, rgba(148, 208, 204, 0.9) 0%, transparent 70%);
    animation: footerGlow 16s ease-in-out infinite;
}

.site-footer::before {
    top: -120px;
    left: -120px;
}

.site-footer::after {
    bottom: -120px;
    right: -90px;
}

.site-footer__inner {
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.8rem;
    display: grid;
    gap: 1rem;
}

.site-footer__main {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 0.9rem;
    align-items: stretch;
}


.site-footer__brand {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.9rem 1rem;
    align-items: start;
    max-width: 100%;
    padding: 1rem 1.1rem;
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__brand picture {
    display: block;
    width: clamp(84px, 11vw, 108px);
}

.site-footer__brand-body {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    max-width: none;
}

.site-footer__brand img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.18));
}

.site-footer__brand p {
    font-size: 0.94rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.84);
}

.site-footer__cta {
    align-self: start;
    background: linear-gradient(135deg, #ffffff 0%, #d6f2f4 100%);
    color: var(--color-primary-dark);
    box-shadow: 0 12px 22px rgba(12, 53, 61, 0.24);
}

.site-footer__columns {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 0.75rem;
}

.site-footer__column {
    padding: 0.95rem 1rem;
    border-radius: 1.05rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__column h3 {
    font-size: 0.84rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.6rem;
}

.site-footer__column ul {
    list-style: none;
    display: grid;
    gap: 0.45rem;
    padding: 0;
}

.site-footer__column a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 0.93rem;
    line-height: 1.45;
    letter-spacing: 0.02em;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer__column a:hover,
.site-footer__column a:focus {
    color: #ffffff;
    transform: translateX(6px);
}

.site-footer__contact li {
    display: grid;
    gap: 0.2rem;
}

.site-footer__contact span {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(214, 242, 244, 0.75);
}

.site-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.6rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.86rem;
}

.site-footer__legals {
    color: rgba(255, 255, 255, 0.72);
}

.site-footer__top-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 40px;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.site-footer__top-link::after {
    content: "↑";
    font-size: 0.9rem;
}

.site-footer__top-link:hover,
.site-footer__top-link:focus-visible {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-1px);
}

/* Compact, icon-only footer control */
.site-footer__top-link {
    justify-content: center;
    width: 2.85rem;
    height: 2.85rem;
    min-height: 0;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
    box-shadow: 0 10px 18px rgba(7, 42, 48, 0.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.site-footer__top-link::after {
    content: none;
}

.site-footer__top-link.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.site-footer__top-link span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    line-height: 1;
}

.site-footer__top-link:hover,
.site-footer__top-link:focus-visible {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.12));
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 14px 22px rgba(7, 42, 48, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 960px) {
    .site-footer__inner {
        gap: 0.9rem;
    }

    .site-footer__main {
        grid-template-columns: 1fr;
    }

    .site-footer__columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer__brand {
        grid-template-columns: auto minmax(0, 1fr);
    }
}

@media (max-width: 720px) {
    .site-footer {
        padding: 1.8rem 0 1.2rem;
    }

    .site-footer__columns {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .site-footer__brand-body {
        text-align: left;
        align-items: flex-start;
    }

    .site-footer__brand {
        padding: 0.9rem;
    }

    .site-footer__top-link {
        align-self: flex-start;
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {

    .site-footer__column a,
    .site-footer__top-link,
    .site-footer__cta {
        transition: none;
    }
}

.section {
    position: relative;
    padding: clamp(1.9rem, 4vw, 3rem) 0;
    overflow: hidden;
    z-index: 0;
}

.section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 8% 12%, rgba(148, 208, 204, 0.35), transparent 40%),
        radial-gradient(circle at 92% 85%, rgba(0, 137, 148, 0.12), transparent 50%);
    pointer-events: none;
    opacity: 0.55;
    z-index: -1;
}

.section.section--accent::after {
    background: linear-gradient(120deg, rgba(226, 240, 242, 0.7), rgba(215, 238, 239, 0.65));
}

.section-inner {
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.8rem;
    display: flex;
    flex-direction: column;
    gap: clamp(0.9rem, 2vw, 1.35rem);
}

.section-title {
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-primary-dark);
    max-width: 18ch;
}

.section p {
    max-width: 48rem;
    color: var(--color-muted);
    line-height: 1.7;
}

.section-lead {
    max-width: 46rem;
    font-size: 1.02rem;
}

.section.section--accent p {
    color: var(--color-text);
}

.news-card,
.service-cards article,
.client-grid figure,
.about-credentials,
.location-card,
.location-directions,
.contact-card,
.contact-sidebar {
    border-radius: var(--surface-radius);
    border: var(--surface-border);
    box-shadow: var(--surface-shadow);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(0.85rem, 2vw, 1.3rem);
    align-items: stretch;
}

.service-cards article {
    padding: clamp(1.2rem, 2.6vw, 1.55rem) clamp(1.1rem, 2.4vw, 1.4rem);
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.92), rgba(226, 240, 242, 0.9));
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-cards article p {
    color: var(--color-text);
}

.service-cards article:hover,
.service-cards article:focus-within {
    transform: translateY(-6px);
    box-shadow: var(--surface-shadow-hover);
}

.service-cards h3 {
    color: var(--color-primary-dark);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

@media (max-width: 1280px) {
    .service-cards {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    .service-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .service-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .service-cards {
        grid-template-columns: 1fr;
    }
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: clamp(0.85rem, 2vw, 1.2rem);
    margin-top: clamp(0.85rem, 2vw, 1.2rem);
    align-items: stretch;
}

.client-grid figure {
    margin: 0;
    padding: 1.1rem 1rem;
    background: rgba(255, 255, 255, 0.94);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0.7rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.client-grid figure:hover,
.client-grid figure:focus-within {
    transform: translateY(-6px);
    box-shadow: var(--surface-shadow-hover);
}

.client-grid picture {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 16 / 10;
    min-height: 80px;
}

.client-grid img {
    display: block;
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: saturate(0.92);
}

.client-grid figcaption {
    margin-top: 0.55rem;
    text-align: center;
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--color-text);
}

@media (min-width: 1200px) {
    .client-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .client-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .client-grid figure {
        padding: 1.2rem 1rem;
    }

    .client-grid img {
        max-height: 70px;
    }
}

.location-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.1rem;
    padding: 1.45rem;
    background: var(--color-surface);
}

.location-card h3 {
    margin-bottom: 0.5rem;
    color: var(--color-primary-dark);
}

.location-card p {
    color: var(--color-text);
}

.location-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(1rem, 2.4vw, 1.6rem);
    align-items: stretch;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.location-directions {
    background: rgba(255, 255, 255, 0.88);
    padding: clamp(1.2rem, 2.5vw, 1.55rem);
}

.location-directions h3 {
    font-size: 1.15rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.6rem;
}

.location-directions p {
    color: var(--color-muted);
    margin-bottom: 0.9rem;
}

.direction-steps {
    counter-reset: step;
    list-style: none;
    display: grid;
    gap: 0.6rem;
    margin: 0 0 0.9rem;
    padding: 0;
}

.direction-steps li {
    position: relative;
    padding-left: 2.2rem;
    color: var(--color-text);
    line-height: 1.5;
}

.direction-steps li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0.15rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 0.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 137, 148, 0.15);
    color: var(--color-primary-dark);
    font-weight: 600;
    font-size: 0.85rem;
}

.location-directions-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 44px;
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    background: rgba(0, 137, 148, 0.14);
    color: var(--color-primary-dark);
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.location-directions-link::after {
    content: "→";
    font-size: 0.9rem;
}

.location-directions-link:hover,
.location-directions-link:focus-visible {
    background: rgba(0, 137, 148, 0.24);
    transform: translateX(3px);
}

.location-map {
    position: relative;
    border-radius: 1.6rem;
    overflow: hidden;
    box-shadow: 0 22px 36px rgba(18, 52, 59, 0.12);
    min-height: 360px;
}

.location-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 960px) {
    .location-wrapper {
        grid-template-columns: minmax(0, 1fr);
    }

    .location-map {
        min-height: 300px;
    }
}

@media (max-width: 600px) {

    .location-directions,
    .location-card {
        padding: 1.6rem;
    }

    .direction-steps li {
        padding-left: 2rem;
    }

    .direction-steps li::before {
        top: 0.2rem;
    }
}


.contact-section .section-inner {
    gap: clamp(1.2rem, 2.8vw, 1.8rem);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
    gap: clamp(1rem, 2.6vw, 1.4rem);
    align-items: stretch;
}

.contact-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2.2vw, 1.4rem);
    background: rgba(255, 255, 255, 0.9);
    padding: clamp(1.25rem, 2.6vw, 1.7rem);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.contact-card::before {
    content: "";
    position: absolute;
    inset: 1.3rem 1.5rem auto auto;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 137, 148, 0.28), rgba(0, 97, 114, 0.08));
    opacity: 0.6;
    pointer-events: none;
    animation: pulseAccent 11s ease-in-out infinite;
}

.contact-card-header {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.contact-chip {
    align-self: flex-start;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(0, 137, 148, 0.15);
    color: var(--color-primary-dark);
    font-weight: 600;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.contact-card-header h3 {
    font-size: clamp(1.35rem, 2.6vw, 1.8rem);
    color: var(--color-primary-dark);
    line-height: 1.3;
}

.contact-card-header p {
    color: var(--color-muted);
    max-width: 32rem;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.2rem;
}

.contact-form--enhanced .form-actions {
    margin-top: 0.4rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-row label {
    font-weight: 600;
    letter-spacing: 0.05em;
}

.form-row input,
.form-row textarea,
.form-row select {
    width: 100%;
    padding: 0.85rem 1.05rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(18, 52, 59, 0.16);
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-text);
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    resize: vertical;
}

.form-row select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, rgba(0, 97, 114, 0.6) 50%),
        linear-gradient(135deg, rgba(0, 97, 114, 0.6) 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
    background-size: 7px 7px, 7px 7px;
    background-repeat: no-repeat;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 137, 148, 0.18);
}

.form-row textarea {
    min-height: 140px;
}

.form-row--full {
    grid-column: 1 / -1;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.form-actions .cta {
    margin-top: 0;
    border: none;
    cursor: pointer;
}

.contact-response-time {
    font-size: 0.85rem;
    color: var(--color-muted);
}


.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: clamp(0.9rem, 2vw, 1.2rem);
    background: rgba(255, 255, 255, 0.78);
    overflow: hidden;
}

.contact-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
}

.news-media {
    min-height: 100%;
    aspect-ratio: 4 / 3;
}

.news-media picture,
.contact-media picture {
    display: block;
    height: 100%;
    width: 100%;
}

.contact-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.contact-sidebar-body {
    display: flex;
    flex-direction: column;
    gap: clamp(0.65rem, 1.6vw, 0.9rem);
    padding: clamp(1.15rem, 2.2vw, 1.45rem) clamp(1.2rem, 2.4vw, 1.55rem) clamp(1.25rem, 2.6vw, 1.6rem);
}

.contact-sidebar-body h3 {
    font-size: 1.2rem;
    color: var(--color-primary-dark);
}

.contact-sidebar-body p {
    color: var(--color-muted);
    line-height: 1.6;
}


.contact-direct {
    list-style: none;
    display: grid;
    gap: 0.7rem;
    margin: 0;
    padding: 0;
}

.contact-direct li {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-direct-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-muted);
}

.contact-direct a {
    font-weight: 600;
    color: var(--color-primary-dark);
    text-decoration: none;
    transition: transform 0.2s ease;
}

.contact-direct a:hover,
.contact-direct a:focus-visible {
    text-decoration: underline;
    transform: translateX(2px);
}

.contact-cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.45rem;
    min-height: 44px;
    padding: 0.8rem 1.3rem;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-surface);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-cta:hover,
.contact-cta:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(0, 137, 148, 0.24);
}

.contact-section .cta {
    margin-top: 0;
}

@media (max-width: 980px) {
    .contact-wrapper {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-sidebar {
        flex-direction: row;
        align-items: stretch;
        gap: 0;
    }

    .contact-media {
        flex: 0 0 210px;
    }
}

@media (max-width: 720px) {
    .contact-form {
        grid-template-columns: minmax(0, 1fr);
    }

    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-response-time {
        text-align: center;
    }

    .contact-sidebar {
        flex-direction: column;
        gap: 1.4rem;
    }

    .contact-media {
        flex: initial;
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(18, 52, 59, 0.08);
    box-shadow: 0 10px 28px rgba(10, 40, 45, 0.08);
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    padding: 0.55rem 1.8rem;
    background: linear-gradient(90deg, rgba(236, 246, 248, 0.92), rgba(228, 241, 243, 0.86));
    border-bottom: 1px solid rgba(18, 52, 59, 0.06);
    font-size: 0.78rem;
    color: var(--color-muted);
    max-height: 260px;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
}

.topbar.is-collapsed {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    visibility: hidden;
    pointer-events: none;
}

.topbar-contact {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.55rem;
    font-style: normal;
}

.topbar-contact span,
.topbar-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(18, 52, 59, 0.08);
    color: inherit;
    text-decoration: none;
}

.topbar-contact span:last-child {
    background: rgba(0, 137, 148, 0.08);
    color: var(--color-primary-dark);
    font-weight: 600;
}

.topbar-contact a {
    color: var(--color-primary-dark);
    font-weight: 600;
    padding: 0;
    border: 0;
    background: transparent;
}

.topbar-contact a:hover,
.topbar-contact a:focus {
    text-decoration: underline;
}

.topbar-meta {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.65rem;
    text-align: right;
}

.header-date {
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--color-primary-dark);
    padding: 0.42rem 0.82rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(0, 137, 148, 0.14);
    text-transform: uppercase;
    white-space: nowrap;
}

.header-signature {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text);
}

.header-main {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0.95rem 1.8rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.4rem 2rem;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
    color: inherit;
    text-decoration: none;
}

.header-brand picture {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: clamp(78px, 8vw, 94px);
    aspect-ratio: 1;
    padding: 0.45rem;
    border-radius: 1rem;
    background: linear-gradient(160deg, rgba(233, 246, 247, 0.95), rgba(221, 240, 242, 0.9));
    border: 1px solid rgba(18, 52, 59, 0.08);
    box-shadow: 0 14px 24px rgba(10, 40, 45, 0.06);
}

.header-brand:hover .brand-name,
.header-brand:focus-visible .brand-name {
    color: var(--color-primary);
}

.brand-logo {
    height: clamp(52px, 5vw, 72px);
    width: auto;
    max-width: 230px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.brand-name {
    font-size: clamp(1.45rem, 2vw, 1.95rem);
    font-weight: 600;
    color: var(--color-primary-dark);
    letter-spacing: 0.03em;
}

.brand-tagline {
    font-size: 0.96rem;
    color: var(--color-muted);
    max-width: 31rem;
    line-height: 1.4;
}


.site-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.45rem;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(247, 251, 252, 0.98), rgba(236, 246, 248, 0.96));
    border: 1px solid rgba(18, 52, 59, 0.08);
    box-shadow: 0 14px 24px rgba(10, 40, 45, 0.06);
}

.header-main .site-nav {
    flex: 0 1 auto;
    justify-content: flex-end;
    min-width: 0;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(18, 52, 59, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    box-shadow: 0 10px 18px rgba(10, 40, 45, 0.06);
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.menu-toggle span {
    display: block;
    width: 55%;
    height: 2px;
    margin: 0 auto;
    background-color: var(--color-text);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.topbar-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin: 0 auto;
    padding: 0.35rem 0.8rem;
    border: 1px solid rgba(18, 52, 59, 0.08);
    border-top: 0;
    border-radius: 0 0 999px 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--color-muted);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
}

.topbar-toggle:not([hidden]) {
    display: inline-flex;
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--color-text);
    font-size: 0.94rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 0.6rem 0.92rem;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible {
    color: var(--color-surface);
    background: var(--color-primary);
    box-shadow: none;
    transform: translateY(-1px);
}

.hero {
    max-width: var(--max-width);
    margin: clamp(1.8rem, 4vw, 2.8rem) auto;
    padding: 0 1.8rem;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(1.1rem, 2.6vw, 1.7rem);
    align-items: stretch;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.35rem, 2.4vw, 1.8rem);
    border-radius: 1.6rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(224, 241, 242, 0.9));
    box-shadow: 0 28px 48px rgba(0, 137, 148, 0.12);
    border: 1px solid rgba(18, 52, 59, 0.06);
}

.hero-content h1 {
    font-size: clamp(2.5rem, 4vw, 3.6rem);
    line-height: 1.08;
    color: var(--color-primary-dark);
}

.hero-content p {
    max-width: 28rem;
    color: var(--color-muted);
}

.hero-carousel {
    position: relative;
}

.hero-carousel__inner {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem;
}

.hero-carousel__viewport {
    position: relative;
    border-radius: 1.6rem;
    overflow: hidden;
    box-shadow: 0 30px 46px rgba(0, 65, 74, 0.22);
    background: rgba(0, 97, 114, 0.12);
    aspect-ratio: 16 / 11;
}

.hero-carousel__track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 1.6rem;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.96);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 32%;
}

.hero-slide figcaption {
    position: relative;
    z-index: 1;
    padding: 0.9rem 1.2rem;
    font-size: 0.95rem;
    color: var(--color-surface);
    letter-spacing: 0.03em;
    background: linear-gradient(180deg, rgba(10, 40, 45, 0) 0%, rgba(10, 40, 45, 0.75) 100%);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.hero-carousel__control {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(18, 52, 59, 0.14);
    background: rgba(255, 255, 255, 0.88);
    color: var(--color-primary-dark);
    font-size: 1.6rem;
    line-height: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-carousel__control span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.hero-carousel__control:hover,
.hero-carousel__control:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(0, 97, 114, 0.24);
}

.hero-slide--logo {
    background: linear-gradient(135deg, rgba(245, 251, 252, 0.95), rgba(224, 241, 242, 0.85));
}

.hero-slide--logo img {
    object-fit: contain;
    padding: clamp(1.5rem, 3vw, 2.2rem);
}

.hero-slide--logo figcaption {
    background: rgba(255, 255, 255, 0.88);
    color: var(--color-primary-dark);
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
}

.hero-carousel__indicators {
    margin-top: 0.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}

.hero-carousel__indicator {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: none;
    background: rgba(0, 137, 148, 0.22);
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.hero-carousel__indicator.is-active {
    background: var(--color-primary);
    transform: scale(1.3);
}

.hero-carousel__indicator:focus-visible {
    outline: 2px solid rgba(0, 137, 148, 0.25);
    outline-offset: 2px;
}

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-content {
        order: 2;
    }

    .hero-carousel__inner {
        grid-template-columns: 1fr;
    }

    .hero-carousel__control--prev,
    .hero-carousel__control--next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
    }

    .hero-carousel__control--prev {
        left: 0.8rem;
    }

    .hero-carousel__control--next {
        right: 0.8rem;
    }

    .hero-carousel__inner {
        gap: 0;
    }
}

@media (max-width: 640px) {
    .hero {
        margin: 2.2rem auto;
    }

    .hero-content {
        padding: 1.3rem;
    }

    .hero-carousel__viewport {
        aspect-ratio: 4 / 3;
    }

    .hero-slide figcaption {
        font-size: 0.82rem;
        padding: 0.85rem 1rem;
    }

    .news-card {
        min-height: auto;
    }

    .news-content {
        padding: 1.4rem;
    }

    .news-media {
        min-height: 230px;
    }
}

@keyframes footerGlow {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(10px, -12px, 0) scale(1.06);
    }
}

@keyframes pulseAccent {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.55;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.8;
    }
}

.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 44px;
    padding: 0.8rem 1.35rem;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-surface);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover,
.cta:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(0, 137, 148, 0.25);
}

a.cta[target="_blank"]::after,
.contact-cta[target="_blank"]::after {
    content: "\2197";
    font-size: 0.9rem;
}

.highlight {
    max-width: var(--max-width);
    margin: 0 auto 1.8rem;
    padding: 0 1.8rem;
}

.highlight-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.95rem 1.2rem;
    border-radius: 1.2rem;
    background: linear-gradient(120deg, rgba(0, 137, 148, 0.12), rgba(148, 208, 204, 0.2));
    border: 1px solid rgba(0, 137, 148, 0.22);
    box-shadow: 0 20px 36px rgba(18, 52, 59, 0.12);
}

.highlight-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    color: var(--color-primary-dark);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.highlight-items {
    display: grid;
    gap: 0.6rem;
    flex: 1;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.35rem 0.4rem;
    border-radius: 0.75rem;
    color: var(--color-text);
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.highlight-item:hover,
.highlight-item:focus {
    background: rgba(255, 255, 255, 0.5);
    transform: translateX(4px);
}

.highlight-title {
    font-weight: 600;
    letter-spacing: 0.02em;
}

.highlight-item[target="_blank"] .highlight-title::after {
    content: "\2197";
    margin-left: 0.4rem;
    font-size: 0.82em;
    color: var(--color-primary-dark);
}

.highlight-desc {
    font-size: 0.85rem;
    color: var(--color-muted);
}

.news {
    padding-top: 0;
}

.news-card {
    display: grid;
    grid-template-columns: minmax(320px, 0.96fr) minmax(320px, 1.04fr);
    align-items: stretch;
    background: var(--color-surface);
    overflow: hidden;
    min-height: clamp(290px, 31vw, 360px);
}

@media (max-width: 1040px) {
    .news-card {
        grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
    }
}

.news-media {
    position: relative;
    min-height: 100%;
    aspect-ratio: auto;
    background: linear-gradient(180deg, rgba(217, 235, 239, 0.9), rgba(201, 227, 231, 0.95));
}

.news-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.news-media--photo picture {
    display: block;
    width: 100%;
    height: 100%;
}

.news-media--photo::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 42%;
    background: linear-gradient(180deg, rgba(10, 40, 45, 0), rgba(10, 40, 45, 0.58));
    pointer-events: none;
}

.news-media__badge {
    position: absolute;
    z-index: 1;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(0, 60, 173, 0.92);
    color: var(--color-surface);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.news-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.65rem;
    padding: clamp(1.35rem, 2.8vw, 1.8rem);
}

.news-content .cta {
    align-self: flex-start;
    margin-top: 0.2rem;
}

.news-tag {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary-dark);
    font-weight: 600;
}

.news-title {
    font-size: clamp(1.35rem, 2.3vw, 1.85rem);
    color: var(--color-text);
    line-height: 1.28;
}

.news p {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.6;
}

@media (max-width: 960px) {
    .news-card {
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto auto;
        min-height: auto;
    }

    .news-media {
        order: -1;
        aspect-ratio: 16 / 10;
        min-height: clamp(220px, 52vw, 320px);
    }

    .news-content {
        padding: 1.35rem;
    }
}

@media (max-width: 600px) {
    .news-media {
        aspect-ratio: 4 / 3;
        min-height: 0;
    }

    .news-content {
        gap: 0.75rem;
        padding: 1.15rem;
    }

    .news-title {
        font-size: clamp(1.2rem, 7vw, 1.45rem);
    }

    .news-media__badge {
        top: 0.85rem;
        left: 0.85rem;
        min-height: 28px;
        padding: 0.35rem 0.65rem;
        font-size: 0.68rem;
        letter-spacing: 0.08em;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.6rem;
    align-items: start;
}

.about-intro p+p {
    margin-top: 0.9rem;
}

.about-credentials {
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    border-radius: 1.25rem;
    padding: 1.35rem;
    box-shadow: 0 16px 28px rgba(18, 52, 59, 0.08);
}

.about-credentials h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: var(--color-primary-dark);
}

.about-credentials ul {
    list-style: none;
    display: grid;
    gap: 0.7rem;
    padding: 0;
    margin: 0;
}

.about-credentials li {
    position: relative;
    padding-left: 1.4rem;
    color: var(--color-text);
    line-height: 1.5;
}

.about-credentials li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--color-primary);
}

@media (max-width: 960px) {
    .topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
        padding: 0.6rem 1.5rem;
    }

    .topbar-contact {
        gap: 0.6rem;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .topbar-meta {
        width: 100%;
        justify-content: space-between;
        text-align: left;
    }

    .topbar.is-collapsed {
        margin: 0;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .header-main {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 0.85rem 1rem;
        padding: 0.8rem 1.5rem 0.75rem;
    }

    .highlight-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .highlight-badge {
        margin-bottom: 0.4rem;
    }

    .highlight-items {
        width: 100%;
    }

    .header-brand {
        justify-content: flex-start;
        text-align: left;
        padding: 0.2rem 0;
    }

    .brand-text {
        align-items: flex-start;
    }

    .brand-tagline {
        max-width: 100%;
    }

    .header-main .site-nav {
        width: auto;
        flex-direction: column;
        align-items: flex-end;
        gap: 0;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        position: relative;
        justify-self: end;
    }

    .menu-toggle {
        align-self: center;
        display: flex;
        width: 3rem;
        height: 3rem;
        border-radius: 1rem;
        background: linear-gradient(180deg, rgba(247, 251, 252, 0.98), rgba(232, 244, 246, 0.96));
        border-color: rgba(18, 52, 59, 0.1);
        box-shadow: 0 14px 24px rgba(10, 40, 45, 0.08);
    }

    .nav-list {
        width: min(18rem, calc(100vw - 2rem));
        flex-direction: column;
        align-items: stretch;
        gap: 0.45rem;
        margin-top: 0;
        padding: 0.85rem;
        border: 1px solid rgba(18, 52, 59, 0.08);
        border-radius: 1.1rem;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 22px 32px rgba(10, 40, 45, 0.12);
        position: absolute;
        top: calc(100% + 0.7rem);
        right: 0;
        z-index: 20;
        display: none;
    }

    .nav-list a {
        width: 100%;
        justify-content: flex-start;
        text-align: left;
    }

    .site-nav.is-open .nav-list {
        display: flex;
    }

    .site-nav.is-open .menu-toggle span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .site-nav.is-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .site-nav.is-open .menu-toggle span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media (max-width: 560px) {
    .topbar {
        padding: 0.55rem 1rem;
    }

    .topbar-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.45rem;
    }

    .header-main {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .header-brand {
        gap: 0.8rem;
    }

    .header-brand picture {
        width: 68px;
        padding: 0.4rem;
    }

    .brand-name {
        font-size: 1.05rem;
    }

    .brand-tagline {
        font-size: 0.82rem;
    }

    .menu-toggle {
        width: 2.8rem;
        height: 2.8rem;
    }

    .nav-list {
        width: min(16.5rem, calc(100vw - 1.5rem));
    }
}
