:root {
    --ink: #102338;
    --muted: #5d7181;
    --aqua: #18bdd2;
    --teal: #087f89;
    --sun: #ffc84a;
    --coral: #ff735c;
    --foam: #eefafa;
    --navy: #062b3d;
    --white: #ffffff;
    --line: rgba(16, 32, 51, .1);
    --shadow-soft: 0 22px 70px rgba(10, 47, 65, .16);
    --shadow-card: 0 16px 38px rgba(17, 57, 70, .12);
    --radius-lg: 28px;
    --radius-md: 20px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--foam);
    font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

body.is-loading {
    overflow: hidden;
}

.page-loader {
    position: fixed;
    z-index: 9999;
    inset: 0;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 35%, rgba(24, 189, 210, .18), transparent 30%),
        linear-gradient(180deg, #f8fefe, #eefafa);
    transition: opacity .45s ease, visibility .45s ease;
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-card {
    display: grid;
    place-items: center;
    gap: 18px;
    width: min(280px, calc(100% - 48px));
    padding: 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(255, 255, 255, .8);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.loader-logo {
    max-width: 170px;
    max-height: 72px;
    object-fit: contain;
}

.loader-wave {
    width: 150px;
    height: 46px;
    overflow: visible;
}

.loader-wave path {
    fill: none;
    stroke: var(--aqua);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-dasharray: 80 190;
    animation: waveStroke 1.45s ease-in-out infinite;
}

.loader-wave path:nth-child(2) {
    stroke: var(--sun);
    stroke-width: 4;
    animation-delay: .18s;
    opacity: .9;
}

.loader-text {
    color: var(--muted);
    font-size: 13px;
    font-weight: 650;
}

@keyframes waveStroke {
    0% {
        stroke-dashoffset: 220;
        transform: translateX(-8px);
    }
    50% {
        transform: translateX(6px);
    }
    100% {
        stroke-dashoffset: -80;
        transform: translateX(-8px);
    }
}

a {
    color: inherit;
    text-decoration: none;
}

img,
video {
    display: block;
    max-width: 100%;
}

.section {
    padding: 96px 0;
    position: relative;
}

.section-inner {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.section-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal);
    font-size: 12px;
    font-weight: 650;
    letter-spacing: 0;
    text-transform: uppercase;
}

.section-kicker::before,
.eyebrow::before {
    content: "";
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: var(--sun);
}

.section-heading {
    max-width: 680px;
    margin-bottom: 34px;
}

.section-heading.with-action {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    max-width: none;
    align-items: end;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 760px;
    font-size: clamp(38px, 5.8vw, 52px);
    line-height: 1.02;
    font-weight: 720;
    font-family: "Plus Jakarta Sans", "Manrope", ui-sans-serif, system-ui, sans-serif;
    letter-spacing: 0;
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(30px, 4.2vw, 52px);
    line-height: 1.08;
    font-weight: 720;
    font-family: "Plus Jakarta Sans", "Manrope", ui-sans-serif, system-ui, sans-serif;
    letter-spacing: 0;
    margin: 12px 0 18px;
}

h3 {
    font-size: 20px;
    font-weight: 680;
    letter-spacing: 0;
}

p {
    color: var(--muted);
    line-height: 1.72;
}

.rich-copy {
    color: var(--muted);
    line-height: 1.72;
}

.rich-copy p,
.rich-copy ul,
.rich-copy ol {
    margin: 0 0 10px;
}

.rich-copy p:last-child,
.rich-copy ul:last-child,
.rich-copy ol:last-child {
    margin-bottom: 0;
}

.site-header {
    position: fixed;
    z-index: 50;
    top: 16px;
    left: 0;
    right: 0;
    transition: transform .3s ease, top .3s ease;
}

.header-shell {
    width: min(1160px, calc(100% - 28px));
    min-height: 74px;
    margin: 0 auto;
    padding: 12px 14px 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(18px);
    box-shadow: 0 16px 46px rgba(3, 37, 55, .16);
}

.site-header.is-scrolled .header-shell,
body.menu-open .header-shell {
    background: rgba(255, 255, 255, .78);
    border-color: rgba(12, 79, 97, .12);
}

.brand-link,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 720;
}

.brand-logo {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

.brand-logo-dark {
    display: none;
}

.site-header.is-scrolled .brand-logo-light,
body.menu-open .brand-logo-light {
    display: none;
}

.site-header.is-scrolled .brand-logo-dark,
body.menu-open .brand-logo-dark {
    display: block;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--aqua), var(--sun));
    color: var(--ink);
    font-weight: 760;
}

.brand-name {
    color: var(--white);
    transition: color .25s ease;
}

.site-header.is-scrolled .brand-name,
body.menu-open .brand-name {
    color: var(--ink);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    border-radius: 999px;
    /*background: rgba(255, 255, 255, .12);*/
}

.desktop-nav a {
    color: rgba(255, 255, 255, .92);
    font-size: 14px;
    font-weight: 650;
    padding: 11px 15px;
    border-radius: 999px;
    transition: color .2s ease, background .2s ease;
}

.site-header.is-scrolled .desktop-nav a {
    color: var(--ink);
}

.desktop-nav a:hover {
    background: rgba(255, 255, 255, .24);
}

.header-cta,
.btn,
.small-admin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 720;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.header-cta,
.btn-primary {
    color: var(--ink);
    background: var(--sun);
    box-shadow: 0 12px 26px rgba(255, 208, 77, .32);
}

.btn-ghost {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .38);
    background: rgba(255, 255, 255, .14);
    backdrop-filter: blur(12px);
}

.btn:hover,
.header-cta:hover,
.small-admin-link:hover {
    transform: translateY(-2px);
}

.menu-toggle {
    width: 52px;
    height: 52px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 0;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 999px;
    transition: transform .25s ease, opacity .25s ease;
}

body.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    width: min(420px, calc(100% - 28px));
    margin: 10px auto 0;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow-soft);
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
}

body.menu-open .mobile-nav {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-nav a {
    display: block;
    padding: 15px 14px;
    border-radius: 16px;
    font-weight: 680;
}

.mobile-nav a:hover {
    background: var(--foam);
}

.hero-section {
    min-height: 100svh;
    position: relative;
    overflow: hidden;
    background: var(--ink);
}

.hero-swiper,
.hero-slide {
    min-height: 100svh;
}

.hero-slide {
    position: relative;
    overflow: hidden;
}

.hero-media,
.hero-slide picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-media {
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 5s ease;
}

.hero-video {
    min-height: 100vh;
}

.swiper-slide-active .hero-media {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 33, 48, var(--overlay-opacity)) 0%, rgba(3, 50, 63, .46) 47%, rgba(5, 52, 66, .14) 100%),
        linear-gradient(0deg, rgba(4, 34, 49, .54), transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1160px, calc(100% - 40px));
    min-height: 100svh;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 150px 0 96px;
    color: var(--hero-text-color);
}

.hero-content h1 {
    max-width: 500px;
}

.hero-content-right {
    align-items: flex-end;
    text-align: right;
}

.hero-content p {
    max-width: 610px;
    color: rgba(255, 255, 255, .86);
    font-size: 19px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.hero-pagination.swiper-pagination-bullets {
    bottom: 34px;
    left: max(22px, calc((100vw - 1160px) / 2));
    right: auto;
    width: auto;
}

.hero-nav {
    position: absolute;
    z-index: 4;
    top: auto;
    bottom: 38px;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .36);
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, .14);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
    cursor: pointer;
    transform: none;
    transition: background .2s ease, transform .2s ease;
}

.hero-nav:hover {
    background: rgba(255, 255, 255, .26);
    transform: scale(1.04);
}

.hero-nav-prev {
    left: auto;
    right: max(92px, calc((100vw - 1160px) / 2 + 70px));
}

.hero-nav-next {
    right: max(26px, calc((100vw - 1160px) / 2));
}

.swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: rgba(255, 255, 255, .9);
    opacity: .55;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--sun);
}

.scroll-cue {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 28px;
    width: 30px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, .46);
    border-radius: 999px;
    transform: translateX(-50%);
}

.scroll-cue span {
    position: absolute;
    left: 50%;
    top: 10px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--white);
    transform: translateX(-50%);
    animation: cue 1.7s ease infinite;
}

@keyframes cue {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 18px); }
}

.about-section {
    background:
        radial-gradient(circle at 80% 10%, rgba(255, 200, 74, .22), transparent 25%),
        linear-gradient(180deg, #f6fdfd, #ffffff);
}

.about-grid,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, .82fr);
    gap: 56px;
    align-items: center;
}

.about-copy p {
    max-width: 640px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 30px;
}

.stats-row div {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .66);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-card);
}

.stats-row strong {
    display: block;
    font-size: 30px;
    line-height: 1;
}

.stats-row span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 750;
    margin-top: 8px;
}

.about-visual,
.contact-image {
    position: relative;
}

.about-visual img,
.contact-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.floating-note {
    position: absolute;
    left: -26px;
    bottom: 28px;
    width: min(280px, 82%);
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-soft);
    font-weight: 650;
}

.floating-note i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    color: var(--white);
    background: var(--aqua);
}

.experience-section {
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 208, 77, .2), transparent 25%),
        linear-gradient(180deg, #ffffff, #eefbfa);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-card {
    min-height: 242px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, .68);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-card);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 169, 199, .28);
    box-shadow: 0 22px 48px rgba(17, 57, 70, .15);
}

.feature-card i {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    color: var(--ink);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 169, 199, .2), rgba(255, 208, 77, .55));
    font-size: 22px;
}

.carousel-section {
    background:
        radial-gradient(circle at 18% 10%, rgba(24, 189, 210, .3), transparent 28%),
        linear-gradient(145deg, #062436, #094f5e 68%, #0a3345);
    color: var(--white);
}

.top-carousel-section {
    padding-top: 56px;
    overflow: hidden;
}

.carousel-layout {
    display: block;
}

.compact-heading {
    max-width: 680px;
    margin-bottom: 34px;
}

.compact-heading h2 {
    font-size: clamp(38px, 5vw, 48px);
    line-height: 1.05;
}

.carousel-section p,
.carousel-section .section-kicker {
    color: rgba(255, 255, 255, .76);
}

.highlight-swiper {
    width: 100%;
    min-width: 0;
    overflow: visible;
    padding-bottom: 48px;
}

.highlight-card {
    height: auto;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
}

.highlight-card img {
    width: 100%;
    aspect-ratio: 1.25 / 1;
    object-fit: cover;
}

.highlight-card div {
    padding: 22px;
}

.highlight-card span {
    color: var(--sun);
    font-weight: 720;
}

.highlight-card h3 {
    margin: 8px 0;
}

.highlight-card p {
    color: rgba(255, 255, 255, .74);
    margin-bottom: 0;
}

.highlight-card .rich-copy {
    color: rgba(255, 255, 255, .74);
}

.gallery-section {
    background: #ffffff;
}

.video-section {
    background:
        radial-gradient(circle at 82% 12%, rgba(255, 200, 74, .22), transparent 28%),
        linear-gradient(180deg, #ffffff, #f4fcfb);
}

.video-layout {
    display: grid;
    grid-template-columns: minmax(260px, .48fr) minmax(0, 1fr);
    gap: 34px;
    align-items: center;
}

.video-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    background: var(--navy);
    box-shadow: var(--shadow-soft);
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.mobile-story-video-section {
    display: none;
}

.mobile-story-video-frame {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, .72);
    box-shadow: var(--shadow-soft);
}

.mobile-story-video-frame::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .24);
    border-radius: inherit;
}

.mobile-story-video-frame video {
    width: 100%;
    max-height: 78vh;
    display: block;
    object-fit: cover;
    background: var(--navy);
}

.mobile-video-play {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 50%;
    color: var(--ink);
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .22);
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.mobile-video-play i {
    /*margin-left: 4px;*/
    font-size: 24px;
}

.mobile-story-video-frame.is-playing .mobile-video-play {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%) scale(.9);
    pointer-events: none;
}

.qa-section {
    background:
        radial-gradient(circle at 12% 18%, rgba(24, 189, 210, .16), transparent 28%),
        radial-gradient(circle at 88% 6%, rgba(255, 200, 74, .2), transparent 26%),
        linear-gradient(180deg, #f7fdfd, #ffffff);
}

.qa-layout {
    display: grid;
    grid-template-columns: minmax(260px, .45fr) minmax(0, 1fr);
    gap: 42px;
    align-items: start;
}

.qa-heading {
    position: sticky;
    top: 120px;
    margin-bottom: 0;
}

.qa-accordion {
    display: grid;
    gap: 14px;
}

.qa-item {
    overflow: hidden;
    border: 1px solid rgba(16, 32, 51, .08);
    border-radius: 22px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 12px 32px rgba(10, 47, 65, .08);
    backdrop-filter: blur(16px);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.qa-item.is-active {
    border-color: rgba(24, 189, 210, .28);
    box-shadow: 0 18px 46px rgba(10, 47, 65, .12);
}

.qa-toggle {
    width: 100%;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 0;
    padding: 20px 22px;
    color: var(--ink);
    background: transparent;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.qa-toggle span {
    font-size: 18px;
    font-weight: 680;
    line-height: 1.35;
}

.qa-toggle i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    color: var(--teal);
    background: rgba(24, 189, 210, .12);
    transition: transform .22s ease, background .22s ease, color .22s ease;
}

.qa-item.is-active .qa-toggle i {
    color: var(--ink);
    background: var(--sun);
    transform: rotate(45deg);
}

.qa-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .28s ease;
}

.qa-panel > .rich-copy {
    overflow: hidden;
    margin: 0;
    padding: 0 22px;
    color: var(--muted);
}

.qa-item.is-active .qa-panel {
    grid-template-rows: 1fr;
}

.qa-item.is-active .qa-panel > .rich-copy {
    padding-bottom: 22px;
}

.small-admin-link {
    min-height: 42px;
    padding: 0 16px;
    color: var(--teal);
    border: 1px solid rgba(0, 127, 134, .18);
    background: rgba(0, 169, 199, .08);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 14px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: var(--foam);
    box-shadow: 0 10px 28px rgba(13, 60, 80, .08);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease, filter .35s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
    filter: saturate(1.1);
}

.gallery-wide {
    grid-column: span 2;
}

.gallery-tall {
    grid-row: span 2;
}

.contact-section {
    background:
        radial-gradient(circle at 8% 12%, rgba(255, 200, 74, .26), transparent 25%),
        radial-gradient(circle at 90% 20%, rgba(24, 189, 210, .2), transparent 30%),
        linear-gradient(180deg, #f8fdfc, #eefafa);
}

.contact-heading {
    max-width: 760px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, 1fr);
    gap: 24px;
    align-items: stretch;
}

.contact-panel {
    padding: 40px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .62);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, .76);
    backdrop-filter: blur(18px);
}

.contact-info-panel {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .78), rgba(238, 250, 250, .58)),
        radial-gradient(circle at 16% 8%, rgba(255, 200, 74, .3), transparent 30%);
}

.contact-info-panel::before {
    content: "";
    position: absolute;
    inset: auto -70px -120px auto;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(24, 189, 210, .16);
    pointer-events: none;
}

.contact-info-top {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .54);
    border: 1px solid rgba(255, 255, 255, .7);
}

.contact-info-top h3 {
    margin-bottom: 4px;
    font-size: 24px;
}

.contact-info-top p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.5;
}

.contact-badge {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 18px;
    color: var(--ink);
    background: linear-gradient(135deg, var(--sun), var(--aqua));
    box-shadow: 0 16px 30px rgba(24, 189, 210, .22);
}

.glass-card {
    border: 1px solid rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .66);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-soft);
}

.contact-list {
    display: grid;
    gap: 12px;
    margin-top: 0;
}

.contact-list > a,
.contact-list > .contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 13px 15px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .64);
    border: 1px solid rgba(16, 32, 51, .06);
    color: var(--ink);
    font-weight: 650;
    box-shadow: 0 10px 24px rgba(10, 47, 65, .06);
}

.contact-list > a > i,
.contact-list > .contact-row > i {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 13px;
    color: var(--teal);
    background: rgba(24, 189, 210, .11);
}

.contact-list > a > span,
.contact-list > .contact-row > span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.map-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0;
}

.map-button-row a {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 15px;
    border-radius: 999px;
    color: var(--ink);
    background: rgba(255, 200, 74, .9);
    font-weight: 700;
}

.map-button-row a:last-child {
    color: var(--white);
    background: var(--teal);
}

.leaflet-map {
    min-height: 330px;
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(16, 32, 51, .08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .55);
}

.map-pin {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--ink);
    border: 3px solid var(--white);
    border-radius: 50% 50% 50% 10px;
    background: linear-gradient(135deg, var(--sun), var(--aqua));
    box-shadow: 0 12px 26px rgba(0, 0, 0, .24);
    transform: rotate(-45deg);
}

.map-pin i {
    transform: rotate(45deg);
}

.contact-form {
    padding: 38px;
    border-radius: var(--radius-lg);
}

.contact-form h3 {
    font-size: 28px;
    margin-bottom: 22px;
}

.contact-form label {
    display: block;
    margin-bottom: 15px;
    color: var(--ink);
    font-weight: 650;
}

.contact-form label span {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(16, 32, 51, .11);
    border-radius: 17px;
    background: rgba(255, 255, 255, .76);
    color: var(--ink);
    outline: none;
    padding: 15px 16px;
    font: inherit;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form textarea {
    min-height: 96px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(24, 189, 210, .65);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 0 0 4px rgba(24, 189, 210, .14);
}

.contact-form .btn {
    width: 100%;
    border: 0;
    cursor: pointer;
    font: inherit;
}

.message-stack {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.form-message {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(33, 180, 91, .12);
    color: #126235;
    font-weight: 650;
}

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 72px 0 46px;
    color: rgba(255, 255, 255, .78);
    background:
        radial-gradient(circle at 15% 0%, rgba(24, 189, 210, .25), transparent 30%),
        radial-gradient(circle at 85% 15%, rgba(255, 200, 74, .18), transparent 24%),
        linear-gradient(145deg, #041926, #07334a 70%, #05202d);
}

.footer-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.35fr .65fr .7fr .75fr;
    gap: 48px;
}

.footer-brand {
    color: var(--white);
    margin-bottom: 18px;
}

.footer-brand img {
    max-height: 140px;
}

.site-footer h3 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 16px;
}

.site-footer a {
    display: table;
    margin-bottom: 10px;
    transition: color .2s ease, transform .2s ease;
}

.site-footer a:hover {
    color: var(--white);
    transform: translateX(3px);
}

.social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-row a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin: 0;
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(14px);
}

.social-row a:hover {
    transform: translateY(-3px);
    color: var(--ink);
    background: var(--sun);
}

.footer-bottom {
    position: relative;
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .62);
    font-size: 14px;
}

.footer-bottom a {
    display: inline;
    color: var(--white);
    font-weight: 700;
}

.cookie-banner {
    position: fixed;
    z-index: 80;
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: 680px;
    margin: 0 auto;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 22px;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-soft);
}

.cookie-banner.is-visible {
    display: flex;
}

.cookie-banner p {
    margin: 0;
    color: var(--ink);
    font-weight: 650;
    line-height: 1.45;
}

.cookie-banner div {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
}

.cookie-banner a,
.cookie-banner button {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 999px;
    font: inherit;
    font-weight: 700;
}

.cookie-banner a {
    color: var(--teal);
    background: rgba(24, 189, 210, .1);
}

.cookie-banner button {
    border: 0;
    color: var(--ink);
    background: var(--sun);
    cursor: pointer;
}

.legal-hero {
    min-height: 46vh;
    display: flex;
    align-items: end;
    padding: 150px 0 72px;
    color: var(--white);
    background:
        linear-gradient(145deg, rgba(6, 43, 61, .88), rgba(8, 127, 137, .72)),
        url("../img/1.jpg") center / cover;
}

.legal-hero h1 {
    margin: 12px 0 16px;
}

.legal-hero p {
    max-width: 620px;
    color: rgba(255, 255, 255, .82);
}

.legal-content {
    max-width: 820px;
    padding: 34px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .72);
    box-shadow: var(--shadow-card);
}

.legal-content h1 {
    font-size: 32px;
}

.legal-content h2 {
    font-size: 26px;
}

.legal-content p,
.legal-content ul,
.legal-content ol
{
    margin-bottom: 18px;
}

.legal-content ul,
.legal-content ol
{
    padding-left: 2.25rem;
}

.legal-content ul li {
    list-style: disc;
}

.legal-content ol li {
    list-style: decimal;
}

.legal-content h3 {
    margin-bottom: 18px;
}

.mobile-bottom-cta {
    position: fixed;
    z-index: 60;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);
    box-shadow: 0 16px 46px rgba(0, 0, 0, .18);
}

.mobile-bottom-cta a {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 18px;
    color: var(--ink);
    background: var(--sun);
    font-weight: 720;
}

.mobile-bottom-cta a:last-child {
    color: var(--white);
    background: #21b45b;
}

.reveal-section {
    opacity: 1;
}

::selection {
    color: var(--ink);
    background: var(--sun);
}
