/* ==================== Base & Variables ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #d4a574;
    --primary-dark: #b8956a;
    --dark: #1c1c1c;
    --darker: #0f0f0f;
    --light: #f8f6f3;
    --cream: #ebe6df;
    --gray: #8a8a8a;
    --white: #ffffff;
    --font-primary: 'DM Sans', sans-serif;
    --font-heading: 'Fraunces', serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

/* ==================== Custom Cursor ==================== */
.cursor, .cursor-follower {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    mix-blend-mode: difference;
}

.cursor {
    width: 8px;
    height: 8px;
    background: var(--white);
    transform: translate(-50%, -50%);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--white);
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out;
}

/* ==================== Side Navigation ==================== */
.side-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 80px;
    height: 100vh;
    background: var(--darker);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    z-index: 1000;
}

.side-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary);
    text-decoration: none;
}

.side-menu {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.side-link {
    width: 12px;
    height: 12px;
    border: 1px solid var(--gray);
    border-radius: 50%;
    position: relative;
    transition: var(--transition);
}

.side-link::before {
    content: attr(data-text);
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
    opacity: 0;
    white-space: nowrap;
    transition: var(--transition);
}

.side-link:hover::before,
.side-link.active::before {
    opacity: 1;
}

.side-link.active,
.side-link:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.side-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.side-social a {
    font-size: 0.75rem;
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

.side-social a:hover {
    color: var(--primary);
}

/* ==================== Top Bar ==================== */
.top-bar {
    position: fixed;
    top: 0;
    left: 80px;
    right: 0;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
    background: transparent;
    z-index: 999;
    transition: var(--transition);
}

.top-bar.scrolled {
    background: rgba(28, 28, 28, 0.95);
    backdrop-filter: blur(10px);
}

.top-left .location,
.top-right .hours {
    font-size: 0.8rem;
    color: var(--gray);
    letter-spacing: 0.05em;
}

.main-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    line-height: 1;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--light);
}

.logo-accent {
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--primary);
}

.top-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.btn-visit {
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-visit:hover {
    background: var(--primary);
    color: var(--dark);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.mobile-menu-btn span,
.mobile-menu-btn::before,
.mobile-menu-btn::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--light);
    transition: var(--transition);
}

.mobile-menu-btn::before { top: 0; }
.mobile-menu-btn span { top: 50%; }
.mobile-menu-btn::after { bottom: 0; }

/* ==================== Main Content ==================== */
.main-content {
    margin-left: 80px;
}

/* ==================== Hero Section ==================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-visual {
    flex: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: calc(100vh - 100px);
}

.hero-image-container {
    position: relative;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent 50%, var(--dark) 100%);
}

.hero-text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
}

.hero-label {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.hero-text-block p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: 400px;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--dark);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-text {
    color: var(--light);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    position: relative;
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.btn-text:hover::after {
    transform: scaleX(1);
}

.hero-scroll {
    padding: 2rem 4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-scroll span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray);
}

.scroll-bar {
    width: 100px;
    height: 1px;
    background: var(--gray);
    position: relative;
    overflow: hidden;
}

.scroll-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 30%;
    height: 100%;
    background: var(--primary);
    animation: scrollMove 2s ease-in-out infinite;
}

@keyframes scrollMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(250%); }
}
