* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #000;
    color: #fff;
}
html, body {
    max-width: 100%;
    overflow-x: clip;
}
.logo {
    position: absolute;
    top: 32px;
    left: 32px;
    z-index: 10;

    color: #fff;
    text-decoration: none;

    font-size: 24px;
    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.1);
    pointer-events: none;
    transition: opacity 1s 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;
}

/* =========================
   AUDIO CONTROL
========================= */

.audio-control {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 10;

    display: flex;
    align-items: center;
    gap: 6px;

    padding: 8px 8px 8px 8px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);

    transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.audio-control:hover {
    background: rgba(0, 0, 0, 0.65);
    border-color: rgba(255, 255, 255, 0.3);
}

.audio-toggle {
    background: transparent;
    border: none;
    padding: 2px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: opacity 0.2s ease, transform 0.15s ease;
}

.audio-toggle:hover {
    opacity: 0.8;
}

.audio-toggle:active {
    transform: scale(0.98);
}

.audio-control.is-muted .icon-muted {
    display: block;
}

.audio-control.is-muted .icon-volume {
    display: none;
}

.audio-control:not(.is-muted) .icon-muted {
    display: none;
}

.audio-control:not(.is-muted) .icon-volume {
    display: block;
}

.volume-slider-wrapper {
    display: none;
    align-items: center;
    width: 164px;
}

.volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.volume-slider:hover {
    background: rgba(255, 255, 255, 0.45);
}

/* Chrome / Safari / Edge Thumb */
.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    transition: transform 0.15s ease, background-color 0.15s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.25);
}

/* Firefox Thumb */
.volume-slider::-moz-range-thumb {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease;
}

.volume-slider::-moz-range-thumb:hover {
    transform: scale(1.25);
}

.volume-slider::-moz-range-track {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 3px;
    height: 3px;
}


.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: 8px;

    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);
    }

}
