:root {
    --blue: #688bc7;
    --blue-bright: #7da2df;
    --blue-dark: #1d2c45;
    --blue-deep: #132136;
    --blue-soft: #eaf0fa;
    --white: #ffffff;
    --off-white: #f7f8fa;
    --text: #243047;
    --muted: #647087;
    --line: rgba(29, 44, 69, 0.14);
    --shadow: 0 24px 70px rgba(19, 33, 54, 0.18);
    --header-height: 88px;
    --max-width: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--off-white);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

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

button,
a {
    font: inherit;
}

button {
    color: inherit;
}

a {
    color: inherit;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 200;
    padding: 10px 14px;
    color: var(--white);
    background: var(--blue-deep);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: var(--header-height);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 clamp(24px, 5vw, 76px);
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    transition: background 220ms ease, box-shadow 220ms ease, height 220ms ease;
}

.site-header.scrolled {
    height: 72px;
    color: var(--white);
    background: rgba(19, 33, 54, 0.96);
    box-shadow: 0 12px 40px rgba(9, 18, 32, 0.18);
    backdrop-filter: blur(12px);
}

.menu-button {
    width: 44px;
    height: 44px;
    display: grid;
    align-content: center;
    gap: 6px;
    justify-self: start;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.menu-button span {
    width: 25px;
    height: 2px;
    display: block;
    background: currentColor;
}

.header-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    color: inherit;
    text-decoration: none;
    text-transform: lowercase;
    letter-spacing: 0.14em;
    line-height: 1.1;
}

.header-logo {
    width: 145px;
    height: auto;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 28px;
}

.desktop-nav > a {
    position: relative;
    color: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
}

.desktop-nav > a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    content: "";
    background: currentColor;
    transform: scaleX(0);
    transition: transform 180ms ease;
}

.desktop-nav > a:hover::after,
.desktop-nav > a:focus-visible::after {
    transform: scaleX(1);
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px;
    color: var(--white);
    background: rgba(19, 33, 54, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    backdrop-filter: blur(8px);
}

.language-switcher > span {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.72rem;
}

.language-button {
    min-width: 34px;
    height: 30px;
    padding: 0 8px;
    color: inherit;
    background: transparent;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    opacity: 0.58;
    transition:
        color 180ms ease,
        background 180ms ease,
        opacity 180ms ease;
}

.language-button:hover,
.language-button:focus-visible {
    opacity: 1;
}

.language-button.is-active {
    color: var(--blue-deep);
    background: var(--white);
    opacity: 1;
}

.language-switcher-mobile {
    margin-bottom: 18px;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-outline {
    color: var(--white);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.7);
}

.button-outline:hover {
    color: var(--blue-deep);
    background: var(--white);
}

.button-primary {
    color: var(--white);
    background: var(--blue);
    box-shadow: 0 12px 34px rgba(29, 54, 99, 0.3);
}

.button-primary:hover {
    background: var(--blue-bright);
}

.button-light {
    color: var(--blue-deep);
    background: var(--white);
}

.button-dark {
    color: var(--white);
    background: var(--blue-deep);
}

.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--white);
    background: var(--blue-deep);
}

.hero-background {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(19, 33, 54, 0.05),
            rgba(19, 33, 54, 0.2)
        ),
        url("images/view3.png") center / cover no-repeat;
    transform: scale(1.02);
    animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15, 27, 45, 0.58), rgba(15, 27, 45, 0.1) 58%, rgba(15, 27, 45, 0.32)),
        linear-gradient(0deg, rgba(15, 27, 45, 0.74), transparent 58%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(900px, calc(100% - 40px));
    padding: calc(var(--header-height) + 54px) 0 96px;
    text-align: center;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--blue);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.eyebrow-light {
    color: #a9c3ec;
}

.hero .eyebrow {
    color: rgba(255, 255, 255, 0.82);
}

.hero h1,
.section-heading h2,
.intro-grid h2,
.contact-cta h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: -0.035em;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 6.6rem);
    text-shadow: 0 7px 30px rgba(5, 14, 26, 0.22);
}

.hero-intro {
    max-width: 760px;
    margin: 28px auto 0;
    color: rgba(255, 255, 255, 0.82);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-offer {
    width: fit-content;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin: 26px auto 0;
    padding: 12px 22px;
    color: var(--white);
    background: rgba(19, 33, 54, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

.hero-offer span {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-offer strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    margin-top: 38px;
}

.text-link {
    position: relative;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
}

.text-link::after {
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 7px;
    content: "";
    background: currentColor;
    transition: transform 180ms ease;
    transform-origin: right;
}

.text-link:hover::after {
    transform: scaleX(0.35);
}

.scroll-hint {
    position: absolute;
    z-index: 2;
    bottom: 26px;
    left: 50%;
    width: 28px;
    height: 52px;
    display: flex;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 20px;
    transform: translateX(-50%);
}

.scroll-hint span {
    width: 4px;
    height: 4px;
    margin-top: 10px;
    background: var(--white);
    border-radius: 50%;
    animation: scrollDot 1.8s ease infinite;
}

.section-shell {
    width: min(var(--max-width), calc(100% - 48px));
    margin: 0 auto;
}

.section-dark {
    color: var(--white);
    background: var(--blue-deep);
}

.intro-section {
    padding: clamp(90px, 12vw, 160px) 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: clamp(50px, 8vw, 120px);
    align-items: start;
}

.intro-grid h2 {
    max-width: 670px;
    font-size: clamp(2.7rem, 5vw, 5rem);
}

.intro-copy {
    padding-top: 42px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.06rem;
}

.intro-copy p {
    margin: 0;
}

.intro-copy p + p {
    margin-top: 24px;
}

.benefits-section {
    padding: clamp(90px, 11vw, 150px) 0;
    background: var(--off-white);
}

.section-heading {
    max-width: 820px;
    margin: 0 auto 64px;
    text-align: center;
}

.section-heading-left {
    margin-left: 0;
    color: var(--white);
    text-align: left;
}

.section-heading h2 {
    font-size: clamp(2.5rem, 4.8vw, 4.7rem);
}

.section-heading > p:last-child {
    max-width: 680px;
    margin: 24px auto 0;
    color: var(--muted);
}

.section-heading-left > p:last-child {
    margin-left: 0;
    color: rgba(255, 255, 255, 0.72);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.benefit-card {
    position: relative;
    min-height: 270px;
    padding: 34px;
    overflow: hidden;
    background: var(--white);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition:
        transform 250ms ease,
        box-shadow 250ms ease;
}

.benefit-card::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(
        135deg,
        var(--blue),
        var(--blue-dark)
    );
    opacity: 0;
    transition: opacity 250ms ease;
}

.benefit-card:hover {
    z-index: 1;
    box-shadow: 0 24px 55px rgba(19, 33, 54, 0.28);
    transform: translateY(-8px);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card h3,
.benefit-card p {
    position: relative;
    z-index: 1;
    transition: color 250ms ease;
}

.benefit-card h3 {
    margin: 0 0 12px;
    color: var(--blue-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.7rem;
    font-weight: 400;
}

.benefit-card p {
    margin: 0;
    color: var(--muted);
}

.benefit-card:hover h3 {
    color: var(--white);
}

.benefit-card:hover p {
    color: rgba(255, 255, 255, 0.84);
}

.gallery-section {
    padding: clamp(90px, 11vw, 150px) 0;
    background: var(--blue-dark);
}

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

.gallery-item {
    position: relative;
    min-height: 280px;
    margin: 0;
    overflow: hidden;
    background: var(--blue-deep);
}

.gallery-item-wide {
    grid-column: 1 / -1;
    min-height: 500px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms cubic-bezier(.2, .7, .2, 1);
}

.gallery-item::after {
    position: absolute;
    inset: 35% 0 0;
    content: "";
    background: linear-gradient(transparent, rgba(11, 23, 40, 0.8));
    pointer-events: none;
}

.gallery-item:hover img {
    transform: scale(1.035);
}

.gallery-item figcaption {
    position: absolute;
    z-index: 1;
    right: 26px;
    bottom: 22px;
    left: 26px;
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
}

.contact-cta {
    padding: 72px 0;
    color: var(--blue-deep);
    background: var(--blue);
}

.contact-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

.contact-cta .eyebrow {
    color: var(--blue-deep);
}

.contact-cta h2 {
    max-width: 810px;
    font-size: clamp(2.2rem, 4vw, 4rem);
}

.site-footer {
    color: rgba(255, 255, 255, 0.76);
    background: #0d192a;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.25fr 1fr auto;
    gap: 50px;
    padding-top: 72px;
    padding-bottom: 56px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--white);
    text-decoration: none;
    text-transform: lowercase;
    letter-spacing: 0.13em;
}

.footer-brand strong {
    font-size: 1.35rem;
}

.footer-brand span {
    margin-top: 3px;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
}

.footer-contact p {
    margin: 0;
}

.footer-contact p + p {
    margin-top: 14px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.footer-links a,
.footer-button {
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-decoration: none;
}

.footer-links a:hover,
.footer-button:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-top: 24px;
    padding-bottom: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.78rem;
}

.mobile-menu {
    position: fixed;
    z-index: 160;
    top: 0;
    left: 0;
    width: min(430px, 88vw);
    height: 100dvh;
    padding: 100px 48px 48px;
    color: var(--white);
    background: var(--blue-deep);
    box-shadow: 30px 0 80px rgba(0, 0, 0, 0.25);
    transform: translateX(-105%);
    transition: transform 280ms cubic-bezier(.2, .7, .2, 1);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 30px;
    padding: 0;
    color: var(--white);
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 2.4rem;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
}

.mobile-menu nav > a {
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 8vw, 3.4rem);
    text-decoration: none;
}

.menu-backdrop {
    position: fixed;
    z-index: 150;
    inset: 0;
    background: rgba(5, 13, 25, 0.58);
    backdrop-filter: blur(4px);
}

.contact-dialog {
    width: min(620px, calc(100% - 28px));
    padding: clamp(30px, 5vw, 54px);
    color: var(--text);
    background: var(--white);
    border: 0;
    border-radius: 4px;
    box-shadow: 0 30px 100px rgba(7, 17, 31, 0.34);
}

.contact-dialog::backdrop {
    background: rgba(7, 17, 31, 0.7);
    backdrop-filter: blur(5px);
}

.contact-dialog h2 {
    margin: 0 0 18px;
    color: var(--blue-deep);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 400;
    line-height: 1.08;
}

.contact-dialog > p {
    color: var(--muted);
}

.dialog-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 42px;
    height: 42px;
    background: var(--blue-soft);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.6rem;
}

.contact-person,
.contact-link {
    display: flex;
    flex-direction: column;
    margin-top: 18px;
    padding: 18px 20px;
    background: var(--blue-soft);
    border-left: 4px solid var(--blue);
    text-decoration: none;
}

.contact-person span,
.contact-link span {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-person strong,
.contact-link strong {
    margin-top: 4px;
    color: var(--blue-deep);
    font-size: 1.1rem;
}

.contact-link:hover {
    background: #dfe9f8;
}

.dialog-note {
    margin-bottom: 0;
    font-size: 0.8rem;
}

.legal-page {
    min-height: 100vh;
    padding: 150px 0 90px;
    background: var(--off-white);
}

.legal-content {
    max-width: 850px;
}

.legal-content h1 {
    margin: 0 0 32px;
    color: var(--blue-deep);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 400;
}

.legal-content h2 {
    margin-top: 42px;
    color: var(--blue-dark);
}

.legal-placeholder {
    padding: 22px;
    background: var(--blue-soft);
    border-left: 4px solid var(--blue);
}

@keyframes heroZoom {
    from { transform: scale(1.02); }
    to { transform: scale(1.08); }
}

@keyframes scrollDot {
    0% { opacity: 0; transform: translateY(0); }
    30% { opacity: 1; }
    100% { opacity: 0; transform: translateY(24px); }
}

@media (max-width: 1050px) {
    .desktop-nav > a {
        display: none;
    }

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

    .intro-copy {
        max-width: 800px;
        padding-top: 0;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1000px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item-wide {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    :root {
        --header-height: 72px;
    }

    .site-header {
        grid-template-columns: 50px 1fr 50px;
        padding: 0 16px;
    }

    .desktop-nav {
        display: none;
    }

    .header-brand {
        grid-column: 2;
    }

    .header-logo {
        width: 120px;
    }

    .hero-content {
        padding-top: 122px;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 14vw, 4.5rem);
    }

    .hero-actions {
        flex-direction: column;
        gap: 18px;
    }

    .section-shell {
        width: min(100% - 32px, var(--max-width));
    }

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

    .benefit-card {
        min-height: auto;
    }

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

    .gallery-item {
        min-height: 300px;
    }

    .gallery-item-wide {
        grid-column: auto;
        min-height: 360px;
    }

    .contact-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 6px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.legal-header-actions {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 18px;
}

.legal-home-link {
    position: relative;
    color: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
}

.legal-home-link::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    content: "";
    background: currentColor;
    transform: scaleX(0);
    transition: transform 180ms ease;
}

.legal-home-link:hover::after,
.legal-home-link:focus-visible::after {
    transform: scaleX(1);
}

@media (max-width: 760px) {
    .legal-header-actions {
        gap: 8px;
    }

    .legal-home-link {
        display: none;
    }

    .legal-header-actions .language-switcher {
        transform: scale(0.92);
        transform-origin: right center;
    }
}

.faq-section {
    padding: 64px 0 90px;
    background: var(--white);
}

.faq-shell {
    width: min(920px, calc(100% - 48px));
}

.faq-heading {
    max-width: none;
    margin: 0 0 24px;
    color: var(--blue-deep);
    text-align: left;
}

.faq-heading h2 {
    color: var(--blue-deep);
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.faq-list {
    width: 100%;
    max-width: none;
    margin: 0;
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item summary {
    position: relative;
    padding: 26px 64px 26px 0;
    color: var(--blue-deep);
    cursor: pointer;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    line-height: 1.35;
    list-style: none;
    transition:
        color 180ms ease,
        padding-left 180ms ease;
}

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

.faq-item summary::after {
    position: absolute;
    top: 50%;
    right: 8px;
    width: 34px;
    height: 34px;
    display: grid;
    content: "+";
    color: var(--white);
    background: var(--blue);
    border-radius: 50%;
    place-items: center;
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1;
    transform: translateY(-50%);
    transition:
        background 180ms ease,
        transform 180ms ease;
}

.faq-item summary:hover,
.faq-item summary:focus-visible {
    color: var(--blue);
    padding-left: 10px;
}

.faq-item[open] summary::after {
    background: var(--blue-deep);
    transform:
        translateY(-50%)
        rotate(45deg);
}

.faq-item p {
    max-width: 760px;
    margin: 0;
    padding: 0 64px 30px 0;
    color: var(--muted);
    line-height: 1.8;
}

@media (max-width: 760px) {
    .faq-section {
        padding: 52px 0 70px;
    }

    .faq-shell {
        width: min(920px, calc(100% - 32px));
    }

    .faq-heading {
        margin-bottom: 18px;
    }

    .faq-heading h2 {
        font-size: clamp(1.8rem, 8vw, 2.6rem);
    }

    .faq-item summary {
        padding: 22px 52px 22px 0;
    }

    .faq-item summary::after {
        right: 0;
        width: 32px;
        height: 32px;
    }

    .faq-item summary:hover,
    .faq-item summary:focus-visible {
        padding-left: 0;
    }

    .faq-item p {
        padding: 0 16px 26px 0;
    }
}