/* =========================
   FONTS
   ========================= */

@font-face {
    font-family: "Tungsten Narrow";
    src: url("fonts/TungstenNarrow-Bold.woff2") format("woff2"), url("fonts/TungstenNarrow-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* =========================
   RESET / GLOBAL
   ========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: #0a0a0a;
    color: #ffffff;
    font-family: "Space Mono", monospace;
}

button,
input,
select,
textarea {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.lock-logo,
.hero-title,
.statement-big,
.gallery-text h2,
.cta-title,
.apply-title,
.success-title {
    font-family: "Tungsten Narrow", "Arial Narrow", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

/* =========================
   CURSOR
   ========================= */

.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: #e63329;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
    mix-blend-mode: difference;
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease;
}

/* =========================
   COMMON HERO / BACKGROUND
   ========================= */

.hero,
.statement,
.apply-hero {
    position: relative;
    overflow: hidden;
}

.hero-bg,
.statement-bg,
.apply-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, #0a0a0a 100%);
}

/* =========================
   HOME PAGE
   ========================= */

#main-site {
    opacity: 1;
    pointer-events: auto;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    background-image: url('images/Cover Image.jpg');
    background-position: center center;
    filter: brightness(0.55);
    transform: scale(1.05);
    animation: heroKenBurns 12s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
    from {
        transform: scale(1.05) translate(0, 0);
    }

    to {
        transform: scale(1.12) translate(-1%, -1%);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    animation: heroReveal 1.2s ease forwards;
    opacity: 0;
}

@keyframes heroReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-eyebrow {
    color: #e63329;
    font-size: 12px;
    letter-spacing: 8px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(80px, 14vw, 180px);
    line-height: 0.9;
    letter-spacing: 2px;
    text-shadow: 0 0 60px rgba(230, 51, 41, 0.3);
}

    .hero-title .line2 {
        color: #e63329;
    }

.hero-tagline {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(14px, 2vw, 20px);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 1px;
    height: 56px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.8));
}

/* =========================
   STATEMENT
   ========================= */

.statement {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 32px;
}

.statement-bg {
    background-image: url('images/Cover Image 2.jpg');
    background-position: center center;
    filter: grayscale(100%) brightness(0.18);
}

.statement-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.68), rgba(230,51,41,0.22));
}

.statement-content {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.red-line {
    width: 40px;
    height: 2px;
    margin: 0 auto 32px;
    background: #e63329;
}

.statement-big {
    font-size: clamp(52px, 10vw, 124px);
    line-height: 0.95;
    letter-spacing: 2px;
}

    .statement-big .accent {
        color: #e63329;
    }

.statement-small,
.gallery-text p,
.cta-subtitle,
.form-intro,
.success-sub {
    font-weight: 400;
    line-height: 1.8;
}

.statement-small {
    max-width: 620px;
    margin: 32px auto 0;
    color: rgba(255,255,255,0.6);
    font-size: 15px;
}

.statement-cities {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
}

.city-tag {
    padding: 8px 20px;
    border: 1px solid #222222;
    color: #8b8b8b;
    font-size: 11px;
    letter-spacing: 6px;
    text-transform: uppercase;
}

    .city-tag.active {
        border-color: #e63329;
        color: #ffffff;
    }

.city-sep {
    width: 40px;
    height: 1px;
    background: #333333;
}

/* =========================
   GALLERY
   ========================= */

.gallery {
    padding: 80px 40px;
    background: #0a0a0a;
}

.gallery-grid {
    max-width: 1400px;
    margin: 0 auto 48px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease, filter 0.4s ease;
        filter: grayscale(20%);
    }

    .gallery-item:hover img {
        transform: scale(1.06);
        filter: grayscale(0%);
    }

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-label {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    color: #ffffff;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    transform: translateY(8px);
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-item-label {
    transform: translateY(0);
    opacity: 1;
}

.gallery-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

    .gallery-text h2 {
        font-size: clamp(32px, 4vw, 56px);
        margin-bottom: 16px;
        letter-spacing: 2px;
    }

    .gallery-text p {
        max-width: 660px;
        margin: 0 auto;
        color: rgba(255,255,255,0.5);
        font-size: 15px;
    }

/* =========================
   CTA / TEASER
   ========================= */

.cta-section {
    padding: 80px 40px 100px;
    background: linear-gradient(to bottom, #0a0a0a 0%, #0d0d0d 100%);
}

/*.video-wrap {
    max-width: 1100px;
    margin: 0 auto 64px;
    border: 1px solid #1f1f1f;
    background: #111111;
    overflow: hidden;
}

.video-placeholder {
    aspect-ratio: 16 / 9;
    background-image: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.6)), url('images/Cover picture 3.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230,51,41,0.92);
    box-shadow: 0 15px 40px rgba(230,51,41,0.35);
}

    .play-btn svg {
        width: 34px;
        height: 34px;
        fill: #ffffff;
        margin-left: 4px;
    }

.video-caption {
    padding: 18px 24px;
    color: rgba(255,255,255,0.65);
    font-size: 11px;
    letter-spacing: 4px;
    border-top: 1px solid #1f1f1f;
    text-transform: uppercase;
}*/

.cta-center {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

/*.cta-eyebrow,
.apply-eyebrow {
    color: #e63329;
    font-size: 12px;
    letter-spacing: 6px;
    margin-bottom: 16px;
    text-align: center;
    text-transform: uppercase;
}*/

.cta-title {
    font-size: clamp(44px, 7vw, 92px);
    line-height: 0.95;
    letter-spacing: 2px;
}

.cta-subtitle {
    max-width: 620px;
    margin: 26px auto 0;
    color: rgba(255,255,255,0.58);
    font-size: 15px;
}

.cta-btn,
.form-submit,
.apply-back {
    border: 1px solid #333333;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 4px;
}

    .cta-btn:hover,
    .form-submit:hover,
    .apply-back:hover {
        border-color: #e63329;
        color: #ffffff;
    }

.cta-btn,
.form-submit {
    margin-top: 32px;
    padding: 16px 30px;
}

/* =========================
   APPLY PAGE
   ========================= */

#apply-page {
    min-height: 100vh;
    background: #0a0a0a;
}

.apply-hero {
    height: 65vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 60px 60px;
}

.apply-hero-bg {
    background-image: url('images/Cover Image 2.jpg');
    background-position: center top;
    filter: brightness(0.35);
}

.apply-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.92));
}

/*.apply-back {
    position: absolute;
    top: 28px;
    left: 28px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
}*/

.apply-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/*.apply-title {
    font-size: clamp(48px, 9vw, 120px);
    line-height: 0.9;
    letter-spacing: 2px;
    text-align: center;
}*/

.form-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.form-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px auto;
    line-height: 1.7;
    color: #9ca3af;
    font-size: 15px;
}

.apply-form {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border: 1px solid #1f1f1f;
    padding: 36px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-field.full {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: #0f0f0f;
    border: 1px solid #272727;
    color: #ffffff;
    padding: 15px 16px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
        border-color: #e63329;
        box-shadow: 0 0 0 1px rgba(230,51,41,0.35);
    }

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.form-note {
    margin-top: 20px;
    color: rgba(255,255,255,0.45);
    font-size: 11px;
    letter-spacing: 2px;
    line-height: 1.7;
    text-transform: uppercase;
}

/* =========================
   VALIDATION
   ========================= */

.validation-summary {
    display: block;
    margin: 0 0 24px 0;
    padding: 18px 22px;
    border: 1px solid #7a1f1f;
    background-color: #1a0d0d;
    color: #ffd7d9;
    text-align: left;
    line-height: 1.6;
}

    .validation-summary ul {
        margin: 10px 0 0 20px;
        padding: 0;
    }

    .validation-summary li {
        margin: 6px 0;
    }

    .validation-summary span,
    .validation-summary div {
        color: #ffd7d9;
    }

.validation-inline {
    display: block;
    margin-top: 12px;
    color: #ff6b6b;
    font-size: 14px;
    line-height: 1.5;
}

.form-input.input-validation-error,
.form-select.input-validation-error,
.form-textarea.input-validation-error {
    border: 1px solid #ff4d4f !important;
    box-shadow: 0 0 0 1px rgba(255, 77, 79, 0.35);
}

/* =========================
   SUCCESS PAGE
   ========================= */

.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    background: #0a0a0a;
}

.form-success {
    text-align: center;
}

/*.success-title {
    font-size: clamp(56px, 10vw, 120px);
    margin-bottom: 16px;
    letter-spacing: 2px;
}*/

/*.success-sub {
    color: #8b8b8b;
    font-size: 15px;
    max-width: 720px;
    margin: 0 auto;
}*/

/* =========================
   REVEAL
   ========================= */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.3s;
}

.reveal-delay-3 {
    transition-delay: 0.45s;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 991px) {
    .gallery-grid,
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }

    .apply-hero,
    .form-section,
    .cta-section,
    .gallery {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 768px) {
    body {
        cursor: default;
    }

    .cursor,
    .cursor-ring {
        display: none;
    }

    .gallery-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .hero-title,
    .statement-big,
    .cta-title,
    .apply-title,
    .success-title {
        letter-spacing: 1px;
    }

    .hero-title {
        font-size: 72px;
    }

    .statement-cities {
        flex-direction: column;
    }

    .city-sep {
        width: 1px;
        height: 30px;
    }

    .apply-hero {
        height: 55vh;
        padding: 0 24px 40px;
    }

    .form-section {
        padding: 40px 24px 60px;
    }

    .apply-form {
        padding: 24px;
    }
}
