:root {
    --pearl: #f8f7f4;
    --muted: rgba(255, 255, 255, 0.5);
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Inter', -apple-system, sans-serif;
}

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

html {
    height: 100%;
    background: #000;
    overflow: hidden;
}

body {
    height: 100%;
    overflow: hidden;
    background: transparent;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    font-family: var(--sans);
    color: var(--pearl);
    line-height: 1.6;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
}

/* Video Background */
.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url('poster.jpg') center/cover no-repeat;
}

.video-bg video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    opacity: 0;
}

.video-bg video.active {
    opacity: 1;
}

/* Hide native video controls */
.video-bg video::-webkit-media-controls {
    display: none !important;
}

.video-bg video::-webkit-media-controls-panel {
    display: none !important;
}

.video-bg video::-webkit-media-controls-play-button {
    display: none !important;
}

.video-bg video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

.video-bg video::-moz-media-controls {
    display: none !important;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, transparent 10%),
        linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 10%),
        rgba(0, 0, 0, 0.7);
}

/* Main Content */
main {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

/* Pillars - The Hero */
.pillars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pillar {
    font-family: var(--serif);
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.pillar:nth-child(1) { animation-delay: 0.2s; }
.pillar:nth-child(2) { animation-delay: 0.5s; }
.pillar:nth-child(3) { animation-delay: 0.8s; }

/* Footer */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 2.5rem;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 1.2s;
}

.locations {
    font-size: 1.1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.75rem;
}

.contact {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact:hover {
    color: var(--pearl);
}

/* Selection */
::selection {
    background: var(--pearl);
    color: #000;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Mobile */
@media (max-width: 768px) {
    .pillars {
        gap: 1rem;
    }

    footer {
        padding: 1.5rem;
    }

    .locations {
        font-size: 0.95rem;
    }

    .contact {
        font-size: 0.75rem;
    }
}
