* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: #01337f;
    background: #fbf5e9;
    overflow: hidden;
}

.page {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.50;
    z-index: 1;
    filter: saturate(1.18) contrast(1.15) brightness(0.90);
}

.bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(251, 245, 233, 0.16);
    z-index: 2;
}

.grain-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.20;
    mix-blend-mode: soft-light;
    z-index: 6;
    pointer-events: none;
}

.content {
    position: relative;
    z-index: 4;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px 150px;
}

.logo-area {
    position: relative;
    width: min(28vw, 260px);
    max-width: 260px;
    min-width: 150px;
    aspect-ratio: 1 / 1;
    margin-bottom: -4px;
}

.logo-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    opacity: 0;
    transition: opacity 2.8s ease-in-out;
    animation: floating 18s ease-in-out infinite;
    will-change: opacity, transform;
}

.logo-image.active {
    opacity: 0.67;
}


.descriptor {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 42px;
    min-height: 28px;
    font-size: 0.93rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #db900e;
    font-weight: 500;
}

.descriptor-item {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 1.1s ease, transform 1.1s ease;
    white-space: nowrap;
}

.descriptor-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.dot {
    opacity: 0.85;
    color: #2055a4;
    font-size: 1rem;
    transform: translateY(-1px);
}

.coming-soon {
    font-family: 'Qwitcher Grypen', cursive;
    font-size: clamp(2.9rem, 6vw, 5.5rem);
    font-weight: 400;
    letter-spacing: 0.01em;
    margin-bottom: 0;
    color: #2055a4;
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 1.6s ease forwards;
    animation-delay: 0.5s;
    white-space: nowrap;
    line-height: 1;

}

.footer-info {
    position: absolute;
    bottom: 46px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0 20px;
    text-align: center;
    z-index: 5;
    opacity: 0;
    animation: fadeUp 1.6s ease forwards;
    animation-delay: 1s;
}

.contact-line {
    font-size: 0.95rem;
    letter-spacing: 0.14em;
    color: #2055a4;
    margin-bottom: 8px;
}

.contact-line a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(1, 51, 127, 0.22);
    transition: border-color 0.3s ease, opacity 0.3s ease;
}

.contact-line a:hover {
    border-color: rgba(1, 51, 127, 0.5);
    opacity: 0.85;
}

.address-line {
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    color: #db900e;
    line-height: 4.5;
}

.audio-toggle {
    position: absolute;
    right: 24px;
    bottom: 28px;
    z-index: 7;
    appearance: none;
    border: 1px solid rgba(1, 51, 127, 0.14);
    background: rgba(251, 245, 233, 0.34);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #01337f;
    font-family: 'Inter', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 10px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.audio-toggle:hover {
    background: rgba(251, 245, 233, 0.62);
    border-color: rgba(1, 51, 127, 0.32);
    transform: translateY(-1px);
}

.audio-toggle.is-playing {
    background: rgba(1, 51, 127, 0.08);
    border-color: rgba(1, 51, 127, 0.30);
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-1.5px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .logo-area {
        width: min(40vw, 210px);
        max-width: 210px;
        min-width: 135px;
    }
}

.descriptor {
    font-size: 0.8rem;
    gap: 8px;
    margin-bottom: 48px;
}
}

@media (max-width: 600px) {
    .content {
        padding: 32px 18px 120px;
    }

    .logo-area {
        width: min(52vw, 195px);
        max-width: 195px;
        min-width: 135px;
    }

    .descriptor {
        font-size: 0.74rem;
        letter-spacing: 0.11em;
        gap: 6px;
        min-height: 46px;
        max-width: 320px;
        line-height: 1.6;
        margin-bottom: 42px;
    }

    .coming-soon {
        font-size: clamp(1.75rem, 6.2vw, 2.3rem);
        white-space: nowrap;
        line-height: 0.95;
    }

    .footer-info {
        bottom: 138px;
        left: 0;
        right: 0;
        width: 100%;
        padding: 0 18px;
    }

    .contact-line {
        font-size: 0.84rem;
        line-height: 1.6;
    }

    .address-line {
        font-size: 1.68rem;
        line-height: 1.45;
    }

    .audio-toggle {
        right: 14px;
        bottom: 18px;
        font-size: 0.58rem;
        padding: 6px 9px;
    }
}