:root {
    --black: #050505;
    --dark-gray: #111111;
    --gray: #333333;
    --light-gray: #dddddd;
    --white: #ffffff;
    --font-heading: 'Archivo Black', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.5;
}

::selection {
    background: var(--white);
    color: var(--black);
}

/* Typography Utilities */
.massive-text {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 10vw, 12rem);
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin: 0;
}

.massive-text.small {
    font-size: clamp(3rem, 6vw, 6rem);
}

.massive-text.outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--white);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 7rem);
    text-transform: uppercase;
    border-bottom: 4px solid var(--white);
    padding-bottom: 20px;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
}

/* Global Elements */
.section {
    padding: 100px 5%;
}

a {
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
}

/* Sticky Button */
.sticky-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 140px;
    height: 140px;
    background-color: var(--white);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 16px;
    line-height: 1.2;
    z-index: 1000;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 4px solid var(--white);
}

.sticky-btn:hover {
    transform: scale(1.1) rotate(-10deg);
    background-color: var(--black);
    color: var(--white);
}

/* Navigation */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 5%;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.hero-content {
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.hero-subtext {
    margin-top: 40px;
    font-weight: 600;
    font-size: clamp(1rem, 2vw, 1.5rem);
    max-width: 500px;
    letter-spacing: 1px;
}

/* Marquee */
.marquee {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: var(--white);
    color: var(--black);
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
}

.marquee-content {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 24px;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    padding-right: 50px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Services */
.services {
    background: var(--dark-gray);
    border-bottom: 1px solid var(--gray);
}

.services-list {
    display: flex;
    flex-direction: column;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid var(--gray);
    transition: padding-left 0.3s ease;
}

.service-item:hover {
    padding-left: 20px;
    background: rgba(255, 255, 255, 0.02);
}

.service-item:last-child {
    border-bottom: none;
}

.service-info h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.service-info p {
    color: var(--light-gray);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.service-price {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

/* Gallery */
.gallery {
    background: var(--black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 400px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--dark-gray);
    filter: grayscale(100%) contrast(120%);
    transition: filter 0.5s ease;
}

.gallery-item:hover {
    filter: grayscale(0%) contrast(100%);
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item .overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    mix-blend-mode: difference;
    text-transform: uppercase;
}

/* Contact / Locaton */
.contact {
    background: var(--white);
    color: var(--black);
}

.contact .section-title {
    border-color: var(--black);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    min-height: 500px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-block h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.info-block p {
    font-size: 1.1rem;
    font-weight: 600;
}

.map-container {
    background: var(--light-gray);
    filter: grayscale(100%) invert(90%) contrast(120%);
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* Footer */
.footer {
    padding: 100px 5% 40px;
    background: var(--black);
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.footer .massive-text {
    text-align: center;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--gray);
    padding-top: 40px;
    font-weight: 600;
    font-size: 0.9rem;
}

.socials {
    display: flex;
    gap: 30px;
}

.socials a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.tall {
        grid-row: span 1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .nav {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .sticky-btn {
        width: 100px;
        height: 100px;
        font-size: 12px;
        bottom: 20px;
        right: 20px;
    }

    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}