* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #000;
    color: #fff;
}

.logo {
    position: absolute;
    top: 32px;
    left: 32px;
    z-index: 10;

    color: #fff;
    text-decoration: none;

    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.04em;
}

.hero {
    position: relative;
    height: 100vh;
    height: 100svh;
    overflow: hidden;
}

.hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    z-index: 2;

    background: rgba(16, 16, 16, 0.2);
    pointer-events: none;
    transition: opacity 1.6s ease;
}

.headline {
    position: absolute;
    inset: 0;
    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: left;
    left:8%;

    padding: 24px;
    text-align: left;
}

.headline h1 {
    position: relative;
    z-index: 5;

    font-size: clamp(2.5rem, 7vw, 6rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.06em;

    cursor: default;
    user-select: none;

    transition:
        opacity 1.6s ease,
        filter 1.6s ease;
}

.headline h1:hover {
    opacity: 0.1;
    filter: blur(8px);
}

.hero:has(.headline h1:hover) .overlay {
    opacity: 0;
}

.hero.revealed .headline h1 {
    opacity: 0.1;
    filter: blur(8px);
}

.hero.revealed .overlay {
    opacity: 0;
}


.contact {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 80px 24px;

    background: #fff;
    color: #000;
}

.form-wrapper {
    width: 100%;
    max-width: 700px;
}

.form-wrapper h2 {
    margin-bottom: 32px;

    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.06em;
}

form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

input,
textarea {
    width: 100%;
    padding: 16px;

    border: 1px solid #ddd;
    border-radius: 0;

    background: #fff;
    color: #000;

    font: inherit;
    font-size: 16px;
    outline: none;
}

input:focus,
textarea:focus {
    border-color: #000;
}

textarea {
    min-height: 180px;
    resize: vertical;
}

button {
    padding: 16px;

    border: 0;
    border-radius: 0;

    background: #000;
    color: #fff;

    font: inherit;
    font-weight: 600;
    font-size: 16px;

    cursor: pointer;
    transition: opacity 0.2s ease;
}

button:hover {
    opacity: 0.8;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 16px;

    margin-top: 24px;
}

.legal-links a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: #000;
}

/* =========================
   LEGAL PAGES
========================= */

body.legal {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 40px 24px;
}

body.legal.center {
    align-items: center;
}

.legal-page {
    max-width: 700px;
    width: 100%;
}

.back-link {
    display: inline-block;
    margin-bottom: 32px;

    color: #aaa;
    text-decoration: none;
    font-size: 14px;

    transition: color 0.2s ease;
}

.back-link:hover {
    color: #fff;
}

.legal-page h1 {
    margin-bottom: 32px;

    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.04em;
}

.legal-page h2 {
    margin-top: 40px;
    margin-bottom: 16px;

    font-size: 1.25rem;
    font-weight: 600;
}

.legal-page p,
.legal-page li {
    margin-bottom: 16px;
    line-height: 1.7;
    color: #aaa;
}

.legal-page ul {
    padding-left: 20px;
    margin-bottom: 24px;
}

.legal-page strong {
    color: #fff;
    font-weight: 600;
}

.legal-page a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.legal-page a:hover {
    opacity: 0.7;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {
    .logo {
        top: 20px;
        left: 20px;
    }

    .headline {
        padding: 20px;
        justify-content: center;
        left:0%;
        right:0%;
        bottom:-65%;
    }

    .headline h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
}
