:root {
    --bg: #0a0a0a;
    --text: #e5e5e5;
    --gold: #d4af37;
    --gold-dim: #aa8c2c;
    --gray: #262626;
    --cursor-size: 10px;
    --follower-size: 30px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Custom cursor */
}

body {
    font-family: 'Raleway', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.8;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Cinzel', serif;
    font-weight: 400;
    letter-spacing: 2px;
    color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: var(--cursor-size);
    height: var(--cursor-size);
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
}

.cursor-follower {
    position: fixed;
    width: var(--follower-size);
    height: var(--follower-size);
    border: 1px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s, left 0.1s, top 0.1s;
}

.cursor.hover {
    width: 20px;
    height: 20px;
    background: transparent;
    border: 2px solid var(--gold);
}

.cursor-follower.hover {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-color: transparent;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    mix-blend-mode: difference;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    letter-spacing: 5px;
    color: #fff;
    font-weight: 600;
}

.menu-toggle {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    color: #fff;
}

.menu-toggle span {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.hamburger {
    width: 30px;
    height: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger .line {
    width: 100%;
    height: 1px;
    background: #fff;
    transition: all 0.3s;
}

.menu-toggle.active .hamburger .line:first-child {
    transform: rotate(45deg) translate(3px, 3px);
}

.menu-toggle.active .hamburger .line:last-child {
    transform: rotate(-45deg) translate(3px, -3px);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg);
    z-index: 90;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.menu-nav {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 30px;
}

.menu-link {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--gray);
    transition: color 0.3s;
}

.menu-link:hover {
    color: var(--gold);
}

/* Hero */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    z-index: -1;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #999);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.btn-gold {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gold);
    color: #000;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-gold:hover {
    background: #fff;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.5;
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator .line {
    width: 1px;
    height: 50px;
    background: #fff;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Philosophy */
.philosophy {
    padding: 150px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.subtitle {
    display: block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.subtitle.center {
    text-align: center;
}

.text-col h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.text-col p {
    color: #999;
    margin-bottom: 20px;
}

.image-col img {
    width: 100%;
    filter: grayscale(100%) contrast(120%);
    transition: filter 0.5s;
}

.image-col img:hover {
    filter: grayscale(0%) contrast(100%);
}

/* Services */
.services {
    padding: 150px 0;
    background: #050505;
}

.center {
    text-align: center;
}

h2.center {
    font-size: 3rem;
    margin-bottom: 80px;
}

.services-list {
    border-top: 1px solid var(--gray);
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid var(--gray);
    transition: all 0.3s;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.02);
    padding-left: 20px;
}

.number {
    font-family: 'Cinzel', serif;
    color: var(--gray);
    font-size: 1.5rem;
}

.service-info h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.service-info p {
    color: #666;
}

.service-item i {
    color: var(--gold);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-item:hover i {
    opacity: 1;
}

/* Quote */
.quote {
    padding: 150px 0;
    text-align: center;
}

blockquote {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1.4;
}

/* Contact */
.contact {
    padding: 100px 0 150px;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gold-form input {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--gray);
    padding: 15px 0;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.gold-form input:focus {
    outline: none;
    border-color: var(--gold);
}

.btn-gold-outline {
    margin-top: 20px;
    padding: 15px 40px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    width: fit-content;
}

.btn-gold-outline:hover {
    background: var(--gold);
    color: #000;
}

/* Footer */
.footer {
    padding: 50px 0;
    border-top: 1px solid var(--gray);
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    letter-spacing: 3px;
}

.footer-links a {
    color: #666;
    margin-left: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: var(--gold);
}

.copyright {
    text-align: center;
    color: #444;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .split-layout,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .menu-link {
        font-size: 2rem;
    }

    .footer-flex {
        flex-direction: column;
        gap: 20px;
    }

    .footer-links a {
        margin: 0 10px;
    }

    /* Disable custom cursor on mobile */
    .cursor,
    .cursor-follower {
        display: none;
    }

    * {
        cursor: auto;
    }
}

/* Theme Switcher */
.theme-switcher {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 15px 10px;
    border-radius: 30px;
    border: 1px solid var(--gray);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.theme-btn {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid var(--gold);
    transition: transform 0.3s;
}

.theme-btn:hover {
    transform: scale(1.2);
}