:root {
    --bg-color: #0A0A0A;
    --text-color: #F5F5F5;
    --accent-color: #1A1A1A;
    --subtle-gray: #333333;
    --gold-accent: #c5a059;
    --font-main: 'Inter', sans-serif;
    --spacing-unit: 1rem;
    --section-padding: 8rem 0;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none; /* Custom cursor */
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--text-color);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(245, 245, 245, 0.5);
    transition: width 0.2s, height 0.2s;
}

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

.header.menu-open {
    mix-blend-mode: normal;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    z-index: 101;
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.logo img {
    height: 70px;
    width: 70px;
    display: block;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--text-color);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.nav a:hover::after {
    transform: translateX(0);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 5%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(26, 26, 26, 0.8) 0%, rgba(10, 10, 10, 1) 100%);
    z-index: -1;
}

.hero-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-title {
    font-size: clamp(4rem, 12vw, 12rem);
    font-weight: 600;
    line-height: 0.9;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin-bottom: auto;
    margin-top: 15vh;
}

.hero-bottom {
    margin-bottom: 5vh;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 400;
    max-width: 400px;
    opacity: 0.8;
}

.hero-tags {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
}

/* About Section */
.about {
    padding: var(--section-padding);
}

.about-text {
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.2;
    font-weight: 400;
    max-width: 1200px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background-color: var(--accent-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-item {
    border-top: 1px solid var(--subtle-gray);
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-item:hover {
    border-top-color: var(--text-color);
    transform: translateY(-10px);
}

.service-num {
    font-size: 0.875rem;
    opacity: 0.5;
}

.service-item h3 {
    font-size: 1.5rem;
    font-weight: 500;
}


/* Philosophy Section */
.philosophy {
    padding: 15rem 0;
    text-align: center;
}

.philosophy-text {
    font-size: clamp(3rem, 8vw, 8rem);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.03em;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background-color: var(--accent-color);
    text-align: center;
    position: relative;
}

.contact-title {
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.contact-email {
    font-size: clamp(1.5rem, 3vw, 3rem);
    font-weight: 400;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    transition: opacity 0.3s ease;
}

.contact-email:hover {
    opacity: 0.8;
}

.contact-email::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-email:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.footer {
    margin-top: 8rem;
    font-size: 0.875rem;
}

.footer-logo {
    height: 70px;
    width: 70px;
    margin: 0 auto 1.5rem auto;
    display: block;
    opacity: 0.5;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    opacity: 1;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer p {
    opacity: 0.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-color);
        justify-content: center;
        align-items: center;
        transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 100;
        gap: 3rem;
    }

    .header.menu-open .nav {
        right: 0;
    }

    .nav a {
        font-size: 2rem;
    }

    .hero-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
}
