:root {
    --obsidian: #050505;
    --carbon: #121212;
    --gold: #D4AF37;
    --gold-dark: #A6892C;
    --steel: #848482;
    --steel-light: #C0C0C0;
    --text-main: #F5F5F5;
    --text-dim: #888888;

    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--obsidian);
    color: var(--text-main);
    font-family: var(--font-sans);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none;
    /* Hide default for custom cursor */
}

/* Custom Cursor */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, opacity 0.3s;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
}

.cursor-follower.active {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-serif);
    font-weight: 300;
}

em {
    font-style: italic;
    color: var(--gold);
}

/* Buttons */
.btn {
    display: inline-flex;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    text-decoration: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--obsidian);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.btn-outline {
    border: 1px solid var(--steel);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    letter-spacing: 0.2em;
    color: var(--text-main);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: 0.6;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--obsidian) 0%, rgba(5, 5, 5, 0.7) 50%, transparent 100%);
}

.hero-content {
    max-width: 700px;
    z-index: 2;
    position: relative;
}

.hero-eyebrow {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 6rem;
    line-height: 1;
    margin-bottom: 2.5rem;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

/* The Vault Section */
.vault-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--obsidian) 0%, var(--carbon) 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-eyebrow {
    color: var(--steel);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 4rem;
    color: var(--text-main);
}

.vault-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.watch-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
    background: rgba(18, 18, 18, 0.4);
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
}

.watch-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-10px);
    background: rgba(18, 18, 18, 0.8);
}

.watch-image-container {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    background: radial-gradient(circle at center, #1a1a1a 0%, var(--obsidian) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.watch-img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.8));
}

.watch-card:hover .watch-img {
    transform: scale(1.1) rotate(5deg);
}

/* Subtle light flare effect on hover */
.lens-flare {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.8s ease;
    pointer-events: none;
    mix-blend-mode: screen;
}

.watch-card:hover .lens-flare {
    transform: translate(-50%, -50%) scale(1);
}

.watch-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.spec-label {
    color: var(--steel);
}

.spec-value {
    color: var(--gold);
}

.watch-info h3 {
    font-size: 2rem;
    color: var(--text-main);
    margin: 0.5rem 0;
}

.watch-desc {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.watch-price {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.btn-sm {
    padding: 0.8rem 1.5rem;
    font-size: 0.7rem;
    align-self: flex-start;
}

/* Mechanics Section */
.mechanics-section {
    padding: 8rem 0;
    background: var(--carbon);
    position: relative;
    overflow: hidden;
}

.mechanics-content {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.mechanics-text {
    flex: 1;
}

.mechanics-desc {
    color: var(--text-dim);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.mechanics-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mechanics-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--text-main);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
}

.mechanics-features span {
    font-family: var(--font-sans);
    color: var(--gold);
    font-size: 0.8rem;
    opacity: 0.7;
}

.mechanics-visual {
    flex: 1;
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gear-assembly {
    position: relative;
    width: 400px;
    height: 400px;
}

.gear {
    position: absolute;
    color: var(--steel);
    opacity: 0.15;
    line-height: 1;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
}

.gear-large {
    font-size: 20rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold);
    opacity: 0.1;
}

.gear-medium {
    font-size: 12rem;
    top: 10%;
    right: 5%;
    transform: translate(0, 0);
}

.gear-small {
    font-size: 8rem;
    bottom: 15%;
    left: 10%;
    transform: translate(0, 0);
    color: var(--gold);
    opacity: 0.2;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.gear-spinner {
    font-size: 1.5rem;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.scroll-indicator span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-dim);
}

/* ──────────────────────────────────
   PREMIUM $150 TEMPLATE ADDITIONS & FIXES
   ────────────────────────────────── */

/* Booking Sidebar */
.booking-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 400px;
    height: 100vh;
    background: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 10000;
    transition: right 0.6s cubic-bezier(0.8, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 3rem;
}

.booking-sidebar.open {
    right: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.sidebar-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.close-sidebar {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.3s;
}

.close-sidebar:hover {
    color: var(--gold);
}

.sidebar-content {
    margin-top: 3rem;
}

.sidebar-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.sidebar-content p {
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.booking-form input,
.booking-form select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    color: var(--text-main);
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}

.booking-form input:focus,
.booking-form select:focus {
    border-color: var(--gold);
}

.btn-block {
    width: 100%;
    margin-top: 1rem;
}

/* SplitText Classes for JS Injection */
.char {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 900px) {
    .nav-links {
        display: none;
        /* Hide on mobile to prevent overlap */
    }

    .hero-title {
        font-size: 4rem;
    }

    .vault-grid {
        grid-template-columns: 1fr;
    }

    .mechanics-content {
        flex-direction: column;
        gap: 3rem;
    }

    .mechanics-visual {
        height: 300px;
    }
}

@media (max-width: 500px) {
    .hero-title {
        font-size: 3rem;
    }

    .booking-sidebar {
        width: 100%;
        right: -100%;
        padding: 2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.75rem;
    }
}

/* Footer */
.footer {
    background: var(--carbon);
    padding: 6rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.2em;
    font-family: var(--font-serif);
    color: var(--text-main);
}

.footer-brand p {
    color: var(--text-dim);
    max-width: 300px;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a,
.footer-contact p {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact p {
    margin-bottom: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
    font-size: 0.8rem;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}