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

:root {
    --black: #0a0a0a;
    --white: #f5f5f5;
    --green: #009A44;
    --gray-text: #777777;
    --font-body: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-logo: 'Futura', 'Futura-Md', 'Century Gothic', 'Trebuchet MS', sans-serif;
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { font-size: 16px; }

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.construction {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.construction__bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

.construction__orb {
    position: absolute;
    filter: blur(80px);
    opacity: 0.2;
    border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%;
}

.construction__orb--1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, #009A44, transparent 65%);
    top: -20%; right: -10%;
    animation: orbFloat 15s ease-in-out infinite;
}

.construction__orb--2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #006B30, transparent 65%);
    bottom: -20%; left: -15%;
    animation: orbFloat 18s ease-in-out infinite reverse;
}

.construction__orb--3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #00C853, transparent 60%);
    top: 40%; left: 50%;
    animation: orbFloat 14s ease-in-out infinite 2s;
}

.construction__grain {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    z-index: 1;
    opacity: 0.012;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    animation: grainShift 0.5s steps(1) infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%; }
    25% { transform: translate(120px, -60px) scale(1.15) rotate(25deg); border-radius: 55% 45% 40% 60% / 45% 55% 45% 55%; }
    50% { transform: translate(-140px, 70px) scale(0.85) rotate(-15deg); border-radius: 60% 40% 50% 50% / 40% 60% 50% 50%; }
    75% { transform: translate(80px, -50px) scale(1.1) rotate(15deg); border-radius: 45% 55% 60% 40% / 60% 45% 40% 55%; }
}

@keyframes grainShift {
    0% { transform: translate(0, 0); }
    20% { transform: translate(-2%, -3%); }
    40% { transform: translate(1%, 2%); }
    60% { transform: translate(-1%, 1%); }
    80% { transform: translate(3%, -1%); }
    100% { transform: translate(0, 0); }
}

.construction__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 960px;
    height: 100%;
}

.construction__row {
    display: flex;
    gap: 4rem;
    align-items: stretch;
    justify-content: center;
    width: 100%;
}

.construction__left {
    flex: 1;
    max-width: 380px;
}

.construction__right {
    flex: 1;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.construction__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.construction__logo {
    font-size: 7.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.15);
    font-family: var(--font-logo);
    pointer-events: none;
    line-height: 1;
}

.construction__status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 100px;
    padding: 0.3rem 0.85rem;
}

.construction__dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.6); }
}

.construction__status-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-text);
    animation: pulseText 1.5s ease-in-out infinite 0.75s;
}

@keyframes pulseText {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.construction__title {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--black);
    text-align: left;
}

.construction__desc {
    font-size: 0.875rem;
    color: var(--gray-text);
    font-weight: 300;
    margin-bottom: 1.25rem;
    max-width: 380px;
    text-align: left;
}

.construction__label-text {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.15rem;
    margin-top: 0.75rem;
    text-align: left;
}

.construction__label-text:first-of-type { margin-top: 0; }

.construction__contact-link {
    display: block;
    font-size: 0.9375rem;
    color: var(--green);
    transition: opacity var(--transition);
}

.construction__contact-link:hover { opacity: 0.7; }

.construction__socials {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.construction__socials--mobile {
    display: none;
}

.construction__social {
    font-size: 0.8rem;
    color: var(--gray-text);
    transition: color var(--transition);
    cursor: pointer;
}

.construction__social:hover { color: var(--black); }

.construction__social-sep {
    color: rgba(0, 0, 0, 0.12);
    font-size: 0.75rem;
}

.construction__form {
    width: 100%;
}

.construction__form-group {
    position: relative;
    margin-bottom: 0.75rem;
}

.construction__input {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 100px;
    padding: 0.75rem 1.1rem 0.4rem;
    color: var(--black);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s ease;
}

.construction__input:focus { border-color: var(--green); }

.construction__textarea {
    resize: vertical;
    min-height: 60px;
    border-radius: 20px;
}

.construction__label {
    position: absolute;
    left: 1.1rem;
    top: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-text);
    font-weight: 300;
    pointer-events: none;
    transition: all 0.2s ease;
}

.construction__input:focus + .construction__label,
.construction__input:not(:placeholder-shown) + .construction__label {
    top: 0.15rem;
    font-size: 0.6rem;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.construction__submit {
    width: 100%;
    background: transparent;
    border: 1px solid var(--green);
    border-radius: 100px;
    padding: 0.7rem;
    color: var(--green);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.construction__submit:hover {
    background: var(--green);
    color: var(--white);
}

.construction__submit:disabled { opacity: 0.4; cursor: not-allowed; }

.construction__success {
    font-size: 0.875rem;
    color: var(--green);
    font-weight: 300;
    text-align: center;
    display: none;
    margin-top: 1rem;
}

.construction__success.visible { display: block; }

.construction__reset {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 100px;
    padding: 0.7rem;
    color: var(--gray-text);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
    margin-top: 0.5rem;
}

.construction__reset.visible { display: block; }

.construction__reset:hover {
    border-color: var(--green);
    color: var(--black);
}

.construction__lang {
    position: fixed;
    top: 1.5rem;
    right: 2rem;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.15rem;
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 100px;
    padding: 0.4rem 1rem;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--gray-text);
    transition: var(--transition);
}

.construction__lang:hover {
    border-color: rgba(0, 0, 0, 0.25);
    color: var(--black);
}

.construction__lang-active { color: var(--black); }

.construction__lang-sep { color: rgba(0, 0, 0, 0.15); }

@media (max-width: 768px) {
    .construction__orb--1 { width: 300px; height: 300px; filter: blur(60px); opacity: 0.15; }
    .construction__orb--2 { width: 250px; height: 250px; filter: blur(60px); opacity: 0.15; }
    .construction__orb--3 { width: 200px; height: 200px; filter: blur(60px); opacity: 0.15; }

    body { overflow-x: hidden; overflow-y: auto; height: auto; justify-content: flex-start; align-items: flex-start; }

    .construction { overflow-x: hidden; justify-content: flex-start; align-items: flex-start; padding: 2rem 1.5rem 0.5rem; height: auto; }

    .construction__content { justify-content: flex-start; height: auto; }

    .construction__row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .construction__left,
    .construction__right { max-width: 100%; }

    .construction__right { justify-content: flex-start; }

    .construction__logo { font-size: 6rem; }

    .construction__lang { top: 0.75rem; right: 0.75rem; }

    .construction__socials { display: none; }

    .construction__socials--mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 1.5rem 0 0;
        width: 100%;
    }
}
