:root {
    --bg-dark: #0f1412;
    --bg-light: #161c1a;
    --accent: #d4af37; /* Metallic Gold */
    --text-main: #f0e6d2; /* Warm Cream */
    --text-muted: rgba(240, 230, 210, 0.6);
    --font-head: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Custom cursor */
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
}

/* Custom Cursor */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.2s, height 0.2s;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: top 0.1s ease-out, left 0.1s ease-out, width 0.2s, height 0.2s;
}

/* Navigation */
.nav-creative {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    mix-blend-mode: difference;
}

.logo {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
}

.menu-btn {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    cursor: none;
    position: relative;
    overflow: hidden;
}

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

.menu-btn:hover::after {
    transform: translateX(0);
}

/* Overlay Menu */
.menu-overlay {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-light);
    z-index: 200;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: top 0.6s cubic-bezier(0.86, 0, 0.07, 1);
}

.menu-overlay.active {
    top: 0;
}

.close-btn {
    position: absolute;
    top: 2rem;
    right: 4rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-main);
    cursor: none;
}

.overlay-links {
    list-style: none;
    text-align: center;
}

.overlay-links li {
    margin: 2rem 0;
    overflow: hidden;
}

.overlay-links a {
    text-decoration: none;
    color: var(--text-main);
    font-family: var(--font-head);
    font-size: 4rem;
    display: inline-block;
    transition: color 0.3s, transform 0.3s;
}

.overlay-links a:hover {
    color: var(--accent);
    transform: skewX(-5deg);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; /* For parallax */
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 5rem;
}

.hero-content h1 {
    font-family: var(--font-head);
    font-size: 8vw;
    line-height: 0.9;
    letter-spacing: -2px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 500px;
    margin: 2rem auto;
    font-weight: 300;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: -15vh;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 3px;
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background: var(--text-main);
    animation: stretch 2s infinite cubic-bezier(0.86, 0, 0.07, 1);
}

@keyframes stretch {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Menu Showcase */
.menu-showcase {
    padding: 10rem 5%;
    background: var(--bg-dark);
}

.showcase-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
    margin-bottom: 15rem;
}

.showcase-item.reverse {
    flex-direction: row-reverse;
}

.img-container {
    flex: 1;
    height: 70vh;
    overflow: hidden;
    position: relative;
}

.img-container img {
    width: 100%;
    height: 120%; /* For parallax */
    object-fit: cover;
    transform: translateY(-10%);
}

.text-content {
    flex: 1;
    max-width: 500px;
}

.eyebrow {
    font-family: var(--font-body);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.text-content h2 {
    font-family: var(--font-head);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.text-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.price {
    font-family: var(--font-head);
    font-size: 2rem;
    color: var(--accent);
}

/* Visit Section */
.visit-section {
    padding: 10rem 0 5rem 0;
    background: var(--bg-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.visit-container h2 {
    font-family: var(--font-head);
    font-size: 5rem;
    margin-bottom: 5rem;
}

.info-grid {
    display: flex;
    justify-content: center;
    gap: 8rem;
    margin-bottom: 8rem;
}

.info-box h3 {
    font-family: var(--font-head);
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.info-box p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Marquee */
.marquee-wrapper {
    background: var(--accent);
    padding: 2rem 0;
    transform: rotate(-2deg) scale(1.05);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.marquee {
    white-space: nowrap;
    animation: scroll 20s linear infinite;
    display: flex;
}

.marquee span {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 800;
    color: var(--bg-dark);
    padding-right: 2rem;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Footer */
.creative-footer {
    text-align: center;
    padding: 3rem;
    background: var(--bg-dark);
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Inner Page Header */
.page-header {
    padding: 15rem 5% 5rem;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-head);
    font-size: 5rem;
    color: var(--accent);
    margin-bottom: 2rem;
}

.page-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 5% 10rem;
    text-align: center;
}

.page-content-wrapper p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 2;
    margin-bottom: 2rem;
}

/* Contact Form */
.dark-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 4rem;
}

.dark-form input,
.dark-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--text-muted);
    padding: 1rem 0;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1.2rem;
    cursor: none;
}

.dark-form input:focus,
.dark-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.dark-form button {
    background: var(--accent);
    color: var(--bg-dark);
    border: none;
    padding: 1.5rem 3rem;
    font-family: var(--font-head);
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    align-self: center;
    margin-top: 2rem;
    transition: transform 0.3s;
    cursor: none;
}

.dark-form button:hover {
    transform: scale(1.05);
}

/* Animations & Utilities */
.reveal-text {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.delay {
    transition-delay: 0.5s;
}

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

/* Responsive */
@media (max-width: 900px) {
    .showcase-item, .showcase-item.reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .text-content {
        max-width: 100%;
        padding: 0 5%;
    }
    
    .hero-content h1 {
        font-size: 15vw;
    }
    
    .info-grid {
        flex-direction: column;
        gap: 4rem;
    }
}
