html,
body {
    background: #000;
    color: #fff;
    cursor: none;
    font-display: swap;
    font-family: 'MainFont', sans-serif;
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.1;
    margin: 0;
    overflow-x: hidden;
    padding: 0;
}

@font-face {
    font-display: swap;
    font-family: 'MainFont';
    font-weight: 100 900;
    src: url('/fonts/main.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'MonoFont';
    font-weight: 100 900;
    src: url('/fonts/monospace.ttf') format('truetype');
}

.main-container {
    background: #cfcfcf;
    position: relative;
}

.hero-section {
    align-items: center;
    background-color: #000;
    display: flex;
    height: 100vh;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.hero-video {
    animation: videoFadeIn 1.5s ease-out 2s forwards;
    height: auto;
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    object-fit: cover;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    z-index: 1;
}

@keyframes videoFadeIn {
    to {
        opacity: 1;
    }
}

.hero-overlay {
    animation: overlayFadeIn 1.5s ease-out 2s forwards;
    background: rgba(59, 59, 59, 0.3);
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
}

@keyframes overlayFadeIn {
    to {
        opacity: 1;
    }
}

.hero-content-center {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    text-align: center;
    z-index: 10;
}

.hero-title {
    color: #fff;
    font-family: 'MainFont', sans-serif;
    font-size: clamp(32px, 10vw, 120px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0;
    max-width: 90vw;
    text-align: center;
    text-transform: uppercase;
}

.hero-title .word {
    display: inline-block;
    white-space: nowrap;
}

.hero-title .letter {
    animation: letterFadeIn 0.6s ease-out forwards;
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
}

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

.hero-subtitle-button {
    animation: buttonFadeIn 0.8s ease-out 1.4s forwards;
    background: transparent;
    border: none;
    color: #fff;
    cursor: none;
    font-family: 'MonoFont', 'Courier New', monospace;
    font-size: clamp(14px, 2vw, 20px);
    font-weight: 400;
    letter-spacing: 0.1em;
    opacity: 0;
    padding: 16px 40px;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

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

.hero-subtitle-button:hover,
.hero-subtitle-button:focus {
    text-decoration: underline;
}

.video-modal {
    align-items: center;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: opacity .3s ease, visibility .3s ease;
    visibility: hidden;
    width: 100%;
    z-index: 3000;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    aspect-ratio: 16/9;
    max-width: 1200px;
    position: relative;
    width: 90%;
}

.modal-video {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.modal-close {
    background: transparent;
    border: none;
    color: #fff;
    cursor: none;
    font-size: 36px;
    line-height: 1;
    padding: 8px;
    position: absolute;
    right: 0;
    top: -50px;
    transition: opacity .3s ease;
}

.modal-close:hover,
.modal-close:focus {
    color: rgb(197, 14, 14);
}

.video-controls {
    bottom: 80px;
    display: flex;
    gap: 20px;
    left: 50%;
    opacity: 1;
    position: absolute;
    transform: translateX(-50%);
    transition: opacity 0.3s ease;
    z-index: 10;
}

.video-controls.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-navigation {
    align-items: center;
    bottom: 20px;
    display: flex;
    gap: 20px;
    justify-content: center;
    left: 50%;
    opacity: 1;
    pointer-events: none;
    position: absolute;
    transform: translateX(-50%);
    transition: opacity 0.3s ease;
    z-index: 11;
}

.video-navigation.hidden {
    opacity: 0;
}

.video-nav-btn {
    align-items: center;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    cursor: none;
    display: flex;
    height: 56px;
    justify-content: center;
    pointer-events: all;
    transition: all .3s ease;
    width: 56px;
}

.video-nav-btn:hover,
.video-nav-btn:focus {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.video-nav-btn:disabled {
    cursor: not-allowed;
    opacity: 0.3;
}

.video-nav-btn:disabled:hover {
    transform: scale(1);
}

.video-thumbnail-container {
    display: flex;
    gap: 12px;
    pointer-events: all;
}

.video-thumbnail {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    cursor: none;
    height: 45px;
    object-fit: cover;
    opacity: 0.6;
    transition: all .3s ease;
    width: 80px;
}

.video-thumbnail:hover,
.video-thumbnail:focus {
    border-color: rgba(255, 255, 255, 0.8);
    opacity: 1;
    transform: scale(1.05);
}

.video-thumbnail.active {
    border-color: #fff;
    border-width: 3px;
    opacity: 1;
}

.video-control-btn {
    align-items: center;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: none;
    display: flex;
    height: 48px;
    justify-content: center;
    transition: all .3s ease;
    width: 48px;
}

.video-control-btn:hover,
.video-control-btn:focus {
    background: rgba(255, 255, 255, 0.2);
}

.video-control-btn img {
    filter: invert(1);
    height: 24px;
    width: 24px;
}

.video-modal:fullscreen,
.video-modal:-webkit-full-screen {
    cursor: auto !important;
}

.video-modal:fullscreen *,
.video-modal:-webkit-full-screen * {
    cursor: auto !important;
}

.video-modal:fullscreen .video-control-btn,
.video-modal:-webkit-full-screen .video-control-btn {
    cursor: pointer !important;
}

.video-modal:fullscreen .modal-close,
.video-modal:-webkit-full-screen .modal-close {
    cursor: pointer !important;
}

.scroll-indicator {
    animation: scrollIndicatorFadeIn 0.8s ease-out 2.2s forwards;
    bottom: 40px;
    left: 50%;
    opacity: 0;
    position: absolute;
    transform: translateX(-50%);
    transition: opacity 0.5s ease;
    z-index: 15;
}

@keyframes scrollIndicatorFadeIn {
    to {
        opacity: 1;
    }
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.bounce-dot {
    animation: bounce 1.5s infinite ease-in-out;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.161);
    height: 12px;
    width: 12px;
}

@keyframes bounce {

    0%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }

    50% {
        opacity: 0.7;
        transform: translateY(-30px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .bounce-dot {
        animation: none;
    }

    .scroll-indicator {
        animation: none;
        opacity: 0.7;
    }

    .hero-video {
        animation: none;
        opacity: 1;
    }

    .hero-overlay {
        animation: none;
        opacity: 1;
    }

    .hero-title .letter {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .hero-subtitle-button {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 30px;
    }

    .bounce-dot {
        height: 10px;
        width: 10px;
    }
}

@media (max-width: 480px) {
    .scroll-indicator {
        bottom: 25px;
    }

    .bounce-dot {
        height: 8px;
        width: 8px;
    }
}

.reservation-modal {
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    visibility: hidden;
    width: 100%;
    z-index: 4000;
}

.reservation-modal.active {
    opacity: 1;
    visibility: visible;
}

.reservation-modal-content {
    background: #fff;
    border-radius: 0;
    color: #000;
    display: flex;
    flex-direction: column;
    height: 100vh;
    left: 0;
    overflow: hidden;
    padding: 0;
    position: fixed;
    top: 0;
    width: 100vw;
}

.reservation-close {
    background: transparent;
    border: none;
    color: #000;
    cursor: none;
    font-size: 48px;
    line-height: 1;
    padding: 0;
    position: fixed;
    right: 40px;
    top: 30px;
    transition: opacity 0.3s ease;
    z-index: 10000;
}

.reservation-close:hover,
.reservation-close:focus {
    opacity: 0.5;
}

.reservation-header {
    align-items: center;
    display: flex;
    flex-shrink: 0;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    margin-top: 80px;
    padding: 0 80px;
    position: relative;
}

.form-back {
    align-items: center;
    background: #ffffff;
    border: 2.5px solid #000;
    border-radius: 50%;
    color: #000000;
    cursor: none;
    display: flex;
    flex-shrink: 0;
    height: 40px;
    justify-content: center;
    padding: 0;
    transition: box-shadow 0.3s ease;
    width: 40px;
}

.form-back:hover {
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.771);
}

.form-back::before {
    background-image: url('/icons/next.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    display: inline-block;
    height: 18px;
    transform: rotate(180deg);
    width: 18px;
}

.form-back svg {
    display: none;
}

.reservation-logo {
    height: 16px;
    position: absolute;
    right: 0;
}

.reservation-title {
    flex: 1;
    font-size: clamp(24px, 4vw, 36px);
    margin: 0;
    max-width: 800px;
    text-align: center;
}

.reservation-form {
    align-items: center;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0 80px 20px 80px;
}

.form-step {
    display: none;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    max-width: 600px;
    position: relative;
    width: 100%;
}

.form-step.active {
    display: flex;
}

.form-step-combined {
    gap: 30px;
    justify-content: flex-start;
    min-height: 0;
}

.form-substep {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.form-input {
    background: #fff;
    border: 2px solid #d5d5d5aa;
    border-radius: 16px;
    color: #000;
    cursor: none;
    font-family: 'MonoFont', 'Courier New', monospace;
    font-size: 18px;
    outline: none;
    padding: 20px 70px 20px 24px;
    transition: border-color 0.2s ease;
    width: 100%;
}

.form-input:hover {
    border-color: #888;
}

.form-input:focus {
    border-color: #000;
}

.form-input::placeholder {
    color: #999;
}

textarea.form-input {
    line-height: 1.45;
    max-height: 60px;
    min-height: 60px;
    overflow: hidden;
    padding-bottom: 18px;
    padding-top: 18px;
    resize: none;
}

.form-progress-dots {
    background: #fff;
    bottom: 0;
    display: flex;
    flex-shrink: 0;
    gap: 10px;
    justify-content: center;
    margin-bottom: 0;
    margin-top: 30px;
    padding: 20px 80px 50px 80px;
    position: sticky;
    z-index: 5;
}

.form-progress-dot {
    background: #ccccccda;
    border-radius: 50%;
    height: 10px;
    width: 10px;
}

.form-progress-dot.completed {
    background: #181818;
}

.form-next {
    align-items: center;
    background: #ffffff;
    border: 2.5px solid #000;
    border-radius: 50%;
    color: #000000;
    cursor: pointer;
    display: inline-flex;
    flex: 0 0 40px;
    height: 40px;
    justify-content: center;
    padding: 0;
    position: absolute;
    right: 14px;
    top: 14px;
    transition: box-shadow 0.3s ease;
    width: 40px;
}

.form-next:hover {
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.771);
}

.form-next::before {
    background-image: url('/icons/next.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    display: inline-block;
    height: 18px;
    width: 18px;
}

.form-substep {
    position: relative;
}

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

    100% {
        transform: translateY(-68px);
    }
}

@keyframes addressInputSlideDown {
    0% {
        transform: translateY(-68px);
    }

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

.form-step[data-step="1"] {
    transform: translateY(0);
}

.form-step[data-step="1"].suggestions-visible {
    animation: addressInputSlideUp 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.form-step[data-step="1"].suggestions-hidden {
    animation: addressInputSlideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.form-error {
    background: #ffe6e6;
    border: 1px solid #ffcccc;
    border-radius: 12px;
    color: #dc3545;
    display: block;
    font-family: 'MonoFont', 'Courier New', monospace;
    font-size: 15px;
    margin: 0 auto 24px auto;
    max-width: 600px;
    padding: 14px;
    text-align: center;
    width: 100%;
}

.phone-input-wrapper {
    align-items: center;
    display: flex;
    position: relative;
}

.phone-prefix {
    color: #000;
    font-family: 'MonoFont', 'Courier New', monospace;
    font-size: 18px;
    left: 24px;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.phone-input {
    padding-left: 100px !important;
}

.form-input.error {
    background: #fff5f5;
    border-color: #dc3545;
}

.form-input.error:focus {
    border-color: #dc3545;
    outline: none;
}

.order-legal-caption {
    color: #666;
    font-family: 'MonoFont', 'Courier New', monospace;
    font-size: 12px;
    line-height: 1.6;
    margin: 14px 0 0 0;
    padding: 0 10px;
    text-align: center;
}

.model-selector {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
}

.model-option {
    background: #fff;
    border: 2.5px solid #ddd;
    border-radius: 20px;
    cursor: none;
    padding: 24px;
    text-align: center;
    transition: all 0.2s ease;
}

.model-option:hover {
    border-color: #888;
}

.model-option.selected {
    border-color: #000;
}

.model-name {
    color: #000;
    font-family: 'MainFont', sans-serif;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 14px;
}

.model-features {
    color: #666;
    font-family: 'MonoFont', monospace;
    font-size: 13px;
    line-height: 1.7;
    list-style: none;
    margin: 0 0 18px 0;
    padding: 0;
}

.model-price {
    color: #000;
    font-family: 'MainFont', sans-serif;
    font-size: 22px;
    font-weight: 800;
}

.model-scroll-indicator {
    bottom: 50px;
    display: none;
    left: 50%;
    opacity: 0;
    position: fixed;
    transform: translateX(-50%);
    transition: opacity 0.5s ease;
    z-index: 6;
}

.model-scroll-indicator.visible {
    opacity: 1;
}

.model-bounce-dot {
    animation: modelBounce 1.5s infinite ease-in-out;
    background: #000;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    height: 10px;
    width: 10px;
}

@keyframes modelBounce {

    0%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }

    50% {
        opacity: 0.7;
        transform: translateY(-25px);
    }
}

.form-step[data-step="6"] .form-progress-dots {
    display: none;
}

@media (max-width: 768px) {
    .model-scroll-indicator {
        display: flex;
        justify-content: center;
    }

    .form-step[data-step="6"] .form-progress-dots {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .model-bounce-dot {
        animation: none;
    }

    .model-scroll-indicator {
        opacity: 0.7;
    }
}

.order-summary {
    background: #f5f5f5;
    border-radius: 16px;
    padding: 24px;
    width: 100%;
}

.summary-line {
    color: #333;
    font-family: 'MonoFont', monospace;
    font-size: 15px;
    line-height: 1.6;
    margin: 10px 0;
}

.summary-total {
    border-top: 1px solid #ddd;
    font-size: 17px;
    font-weight: 700;
    margin-top: 18px;
    padding-top: 18px;
}

.place-order-btn {
    background: #000;
    border: none;
    border-radius: 50px;
    color: #fff;
    cursor: none;
    font-family: 'MainFont', sans-serif;
    font-size: 20px;
    font-weight: 800;
    margin-top: 24px;
    padding: 20px 50px;
    transition: all 0.3s ease;
    width: 100%;
}

.place-order-btn:hover,
.place-order-btn:focus {
    background: #333;
}

.form-success {
    display: none;
    padding: 60px 40px;
    text-align: center;
}

.form-success.active {
    display: block;
}

.form-success p {
    color: #000;
    font-family: 'MainFont', sans-serif;
    font-size: 28px;
    font-weight: 800;
    margin: 0;
}

@media (max-width: 768px) {
    .reservation-close {
        font-size: 42px;
        right: 30px;
        top: 25px;
    }

    .reservation-header {
        margin-bottom: 30px;
        margin-top: 70px;
        padding: 0 40px;
    }

    .reservation-title {
        font-size: clamp(20px, 5vw, 28px);
    }

    .reservation-form {
        padding: 0 40px 20px 40px;
    }

    .form-input {
        font-size: 16px;
        padding: 18px 64px 18px 20px;
    }

    .form-next {
        height: 36px;
        right: 12px;
        top: 12px;
        width: 36px;
    }

    .form-next::before {
        height: 16px;
        width: 16px;
    }

    .form-back {
        height: 36px;
        width: 36px;
    }

    .form-back::before {
        height: 16px;
        width: 16px;
    }

    .model-selector {
        gap: 16px;
        grid-template-columns: 1fr;
    }

    .model-option {
        padding: 20px;
    }

    .form-progress-dots {
        gap: 8px;
        padding: 20px 40px 40px 40px;
    }

    .phone-prefix {
        font-size: 16px;
        left: 20px;
    }

    .phone-input {
        padding-left: 90px !important;
    }
}

@media (max-width: 480px) {
    .reservation-close {
        font-size: 38px;
        right: 20px;
        top: 20px;
    }

    .reservation-header {
        margin-top: 60px;
        padding: 0 25px;
    }

    .reservation-form {
        padding: 0 25px 15px 25px;
    }

    .form-progress-dots {
        padding: 15px 25px 30px 25px;
    }
}

.lottie-container {
    background: #cfcfcf;
    contain: layout style paint;
    height: 100vh;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    transform: translateZ(0);
    transition: opacity 0.5s ease;
    width: 100%;
    will-change: transform;
    z-index: 1;
}

.lottie-container.visible {
    opacity: 1;
}

#lottie-animation {
    height: 100%;
    overflow: hidden;
    position: relative;
    transform-origin: center center;
    width: 100%;
}

.lottie-scroll-section {
    background: transparent;
    min-height: 400vh;
    mix-blend-mode: difference;
    position: relative;
    z-index: 10;
}

.typewriter-container {
    left: 50%;
    max-width: 1200px;
    mix-blend-mode: difference;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.5s ease;
    width: 90%;
    z-index: 100;
}

.typewriter-container.visible {
    opacity: 1;
}

.typewriter-text {
    color: #FFF;
    display: inline;
    font-family: 'MainFont', sans-serif;
    font-size: clamp(32px, 10vw, 120px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase;
}

.typing-cursor {
    animation: cursorBlink 1s infinite;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'MainFont', sans-serif;
    font-size: clamp(32px, 10vw, 120px);
    font-weight: 800;
}

@keyframes cursorBlink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.trusted-logos-section {
    align-items: center;
    background: #e82727;
    display: flex;
    justify-content: center;
    padding: 100px 40px;
    position: relative;
    z-index: 20;
}

.trusted-logos-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1200px;
    width: 100%;
}

.trusted-logos-title {
    color: #fff;
    font-family: 'MainFont', sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 800;
    letter-spacing: 0.15em;
    margin: 0;
    text-align: center;
}

.trusted-logos-grid {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: center;
}

.trusted-logo {
    filter: brightness(0) saturate(0) invert();
    width: 69px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    height: auto;
}

.trusted-logo-emblem {
    width: 35px;
}

.trusted-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .trusted-logos-section {
        padding: 80px 30px;
    }

    .trusted-logos-container {
        gap: 40px;
    }

    .trusted-logos-grid {
        gap: 40px;
    }

    .trusted-logo {
        height: 28px;
    }

    .trusted-logo-emblem {
        height: 38px;
    }

    .trusted-logos-title {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .trusted-logos-section {
        padding: 60px 20px;
    }

    .trusted-logos-container {
        gap: 30px;
    }

    .trusted-logos-grid {
        gap: 30px;
    }

    .trusted-logo {
        height: 24px;
    }

    .trusted-logo-emblem {
        height: 32px;
    }
}

.gallery-section {
    background: #cfcfcf;
    padding: 100px 40px;
    position: relative;
    z-index: 20;
}

.gallery-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto;
    max-width: 1400px;
}

.gallery-item {
    aspect-ratio: 16/10;
    opacity: 0;
    overflow: hidden;
    position: relative;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.gallery-item:nth-child(1) {
    transition-delay: 0s;
}

.gallery-item:nth-child(2) {
    transition-delay: 0.15s;
}

.gallery-item:nth-child(3) {
    transition-delay: 0.3s;
}

.gallery-item:nth-child(4) {
    transition-delay: 0.45s;
}

.gallery-image {
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    width: 100%;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.captions-section {
    background: #cfcfcf;
    padding-bottom: 200px;
    position: relative;
    z-index: 20;
}

.caption-item {
    margin-bottom: 100px;
    position: relative;
    width: 100%;
}

.caption-item:last-child {
    margin-bottom: 0;
}

.caption-video-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.caption-video {
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.caption-text-bar {
    align-items: center;
    background: #cfcfcf;
    display: flex;
    justify-content: center;
    min-height: 120px;
    padding: 40px;
    text-align: center;
}

.caption-text {
    color: #0B0B0D;
    display: inline;
    font-family: 'MonoFont', 'Courier New', monospace;
    font-size: clamp(14px, 1.8vw, 18px);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.6;
    margin: 0;
    max-width: 800px;
}

.caption-cursor {
    display: none;
}

.reserve-section {
    align-items: center;
    background: #cfcfcf;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    padding: 100px 40px 150px;
    position: relative;
    z-index: 20;
}

.reserve-heading {
    color: #0B0B0D;
    font-family: 'MainFont', sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0;
    opacity: 0;
    text-align: center;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reserve-heading.visible {
    opacity: 1;
    transform: translateY(0);
}

.reserve-button {
    align-items: center;
    background: #e82727;
    border: none;
    border-radius: 50px;
    color: #ffffff;
    cursor: none;
    display: inline-flex;
    font-family: 'MainFont', sans-serif;
    font-size: 18px;
    font-weight: 800;
    justify-content: center;
    letter-spacing: -0.02em;
    opacity: 0;
    padding: 20px 60px;
    text-decoration: none;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.reserve-button.visible {
    opacity: 1;
    transform: translateY(0);
}

.reserve-button:hover,
.reserve-button:focus {
    background: #000000;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.navbar {
    align-items: center;
    display: flex;
    left: 0;
    mix-blend-mode: difference;
    padding: 20px 30px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar-content {
    align-items: center;
    display: flex;
    gap: 20px;
    width: 100%;
}

.logo {
    filter: invert(1);
    flex-shrink: 0;
    height: 40px;
    transition: filter 0.3s ease;
    width: 40px;
}

.navbar-line {
    background: #fff;
    flex: 1;
    height: 2px;
    margin: 0 20px;
    transition: all 0.3s ease;
}

.navbar-links {
    align-items: center;
    display: flex;
    gap: 32px;
    margin-left: auto;
}

.navbar-link {
    color: #fff !important;
    cursor: none;
    display: inline-block;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    overflow: hidden;
    padding: 8px 4px;
    position: relative;
    text-decoration: none !important;
    transition: opacity 0.3s;
}

.navbar-link:visited {
    color: #fff !important;
}

.navbar-link:hover,
.navbar-link:focus {
    color: #fff !important;
    opacity: 0.7;
}

.navbar-link::after {
    background: #fff;
    bottom: 4px;
    content: '';
    height: 2px;
    left: 0;
    position: absolute;
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    width: 100%;
    z-index: 1;
}

.navbar-link:hover::after,
.navbar-link:focus::after {
    transform: translateX(0);
}

.menu-button {
    background: transparent;
    border: none;
    color: #fff;
    cursor: none;
    display: none;
    font-family: 'MainFont', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    overflow: hidden;
    padding: 8px;
    position: relative;
}

.menu-button::after {
    background: #fff;
    bottom: 0;
    content: '';
    height: 2px;
    left: 0;
    position: absolute;
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    width: 100%;
    z-index: 1;
}

.menu-button:hover::after,
.menu-button:focus::after {
    transform: translateX(0);
}

.mobile-menu-overlay {
    align-items: center;
    background: rgba(214, 214, 214, 0.95);
    display: flex;
    height: 100%;
    justify-content: center;
    left: 50%;
    opacity: 0;
    padding: 0;
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    visibility: hidden;
    width: 100%;
    z-index: 2001;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: #000;
    cursor: none;
    font-size: 32px;
    padding: 8px;
    padding-bottom: 15px;
    position: absolute;
    right: 27px;
    top: 18px;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

.mobile-menu-link {
    color: #000;
    cursor: none;
    font-size: 24px;
    font-weight: 800;
    padding: 8px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link:focus {
    opacity: 0.7;
}

.skip-link {
    background: #000;
    border-radius: 4px;
    color: #fff;
    left: 6px;
    padding: 8px;
    position: absolute;
    text-decoration: none;
    top: -40px;
    z-index: 10000;
}

.skip-link:focus {
    top: 6px;
}

.sr-only {
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    clip: rect(0, 0, 0, 0);
    border: 0;
    white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .typing-cursor,
    .caption-cursor {
        animation: none;
    }

    .hero-title .letter {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .hero-subtitle-button {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 768px) {
    .hero-content-center {
        gap: 30px;
    }

    .hero-subtitle-button {
        padding: 14px 32px;
    }

    .navbar-links {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .navbar {
        padding: 16px 20px;
    }

    .video-controls {
        bottom: 70px;
    }

    .video-navigation {
        bottom: 15px;
        gap: 15px;
    }

    .video-nav-btn {
        height: 48px;
        width: 48px;
    }

    .video-thumbnail {
        height: 34px;
        width: 60px;
    }

    .video-thumbnail-container {
        gap: 8px;
    }

    .typewriter-container {
        width: 85%;
    }

    .gallery-grid {
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .gallery-section {
        padding: 60px 20px;
    }

    .caption-text-bar {
        min-height: 100px;
        padding: 30px 20px;
    }

    .caption-item {
        margin-bottom: 60px;
    }

    .reserve-section {
        gap: 20px;
    }

    .reserve-heading {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .hero-subtitle-button {
        font-size: 12px;
        padding: 12px 28px;
    }

    .reserve-button {
        font-size: 16px;
        padding: 16px 40px;
    }

    .video-controls {
        bottom: 60px;
    }

    .video-navigation {
        bottom: 10px;
        gap: 10px;
    }

    .video-nav-btn {
        height: 40px;
        width: 40px;
    }

    .video-nav-btn svg {
        height: 20px;
        width: 20px;
    }

    .video-thumbnail {
        height: 28px;
        width: 50px;
    }

    .video-thumbnail-container {
        gap: 6px;
    }

    .caption-text-bar {
        padding: 25px 15px;
    }

    .reserve-section {
        gap: 16px;
    }

    .reserve-button {
        font-size: 16px;
        padding: 16px 40px;
    }
}

@media (max-width: 360px) {
    .hero-subtitle-button {
        font-size: 11px;
        padding: 10px 24px;
    }

    .reserve-button {
        font-size: 14px;
        padding: 14px 32px;
    }

    .reserve-button {
        font-size: 14px;
        padding: 14px 32px;
    }
}

.video-modal {
    align-items: center;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: opacity .3s ease, visibility .3s ease;
    visibility: hidden;
    width: 100%;
    z-index: 3000;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    height: 100%;
    max-height: none;
    max-width: none;
    position: relative;
    width: 100%;
}

.modal-video {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.video-controls {
    bottom: 80px;
    display: flex;
    gap: 20px;
    left: 50%;
    opacity: 1;
    position: absolute;
    transform: translateX(-50%);
    transition: opacity 0.3s ease;
    z-index: 10;
}

.video-navigation {
    align-items: center;
    bottom: 20px;
    display: flex;
    gap: 20px;
    justify-content: center;
    left: 50%;
    opacity: 1;
    pointer-events: none;
    position: absolute;
    transform: translateX(-50%);
    transition: opacity 0.3s ease;
    z-index: 11;
}

.captions-section {
    background: #cfcfcf;
    padding-bottom: 200px;
    position: relative;
    z-index: 20;
}

.caption-item {
    margin-bottom: 120px;
    position: relative;
    width: 100%;
}

.caption-item:last-child {
    margin-bottom: 0;
}

.caption-video-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.caption-video {
    display: block;
    height: 100vh;
    max-height: 100vh;
    object-fit: cover;
    width: 100%;
}

.caption-text-bar {
    align-items: center;
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 24px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
    display: flex;
    inset: auto auto 40px 50%;
    justify-content: center;
    max-width: min(90vw, 420px);
    min-height: auto;
    padding: 24px 28px;
    position: absolute;
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .caption-item {
        margin-bottom: 90px;
    }

    .caption-text-bar {
        border-radius: 18px;
        box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
        inset: auto 16px 16px 16px;
        max-width: none;
        padding: 18px 16px;
        transform: none;
    }

    .caption-video {
        height: 100vh;
    }
}

@media (min-width: 769px) {
    .caption-text-bar {
        bottom: auto;
        max-width: 420px;
        padding: 26px 30px;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .caption-item:nth-child(odd) .caption-text-bar {
        left: calc(50% - 260px);
    }

    .caption-item:nth-child(even) .caption-text-bar {
        left: calc(50% + 260px);
    }
}