:root {
    --bg-color: #050505;
    --text-main: #ffffff;
    --text-muted: #888888;
    --accent: #e0e0e0;
    --input-bg: rgba(255, 255, 255, 0.05);
    --font-display: 'Syncopate', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

/* Custom cursor - hidden on touch devices */
@media (hover: hover) and (pointer: fine) {
    * {
        cursor: none;
    }
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* Hide cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }
    
    * {
        cursor: auto !important;
    }
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: white;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* --- Noise Overlay --- */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 9000;
    opacity: 0.04;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
}

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

/* Nav Logo */
.nav-brand-logo {
    height: 40px;
    width: auto;
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
    transition: opacity 0.3s ease;
}

.menu-btn {
    font-family: var(--font-display);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    margin-left: auto;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Hero Section --- */
section {
    padding: 0 5%;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-top: 5vh;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 8vw, 8rem);
    line-height: 1.1;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 2rem;
    opacity: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--text-muted);
    max-width: 500px;
    margin-left: auto;
    text-align: right;
    opacity: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 5%;
    font-family: var(--font-display);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.5;
}

/* --- Services --- */
.services {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.section-title {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 4rem;
    display: block;
}

.service-item {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.3s ease;
}

.service-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-item h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 4rem);
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
    transition: 0.3s;
}

.service-item:hover h2 {
    color: white;
    padding-left: 20px;
    -webkit-text-stroke: 0px;
}

.service-item p {
    max-width: 300px;
    text-align: right;
    color: var(--text-muted);
    opacity: 0;
    transform: translateX(-20px);
    transition: 0.3s;
}

.service-item:hover p {
    opacity: 1;
    transform: translateX(0);
}

/* --- Statement --- */
.statement {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.statement h3 {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.4;
    max-width: 90%;
}

.highlight {
    color: var(--text-muted);
}

/* --- FOOTER --- */
footer {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 6rem 5% 2rem 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-label {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.cta-big {
    font-family: var(--font-display);
    font-size: clamp(2rem, 8vw, 8rem);
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    line-height: 0.9;
    transition: opacity 0.3s;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

@media (hover: hover) and (pointer: fine) {
    .cta-big {
        cursor: none;
    }
}

.cta-big:hover {
    opacity: 0.7;
}

.footer-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
}

.contact-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-block span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
}

.contact-link {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: white;
    text-decoration: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 8px 0;
}

.contact-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: white;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

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

/* Instagram Icon */
.icon-instagram {
    width: 20px;
    height: 20px;
    fill: white;
    transition: fill 0.3s;
}

.contact-link:hover .icon-instagram {
    fill: #ccc;
}

.global-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(5px);
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #00ff41;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.4);
}

.badge-text {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
}

.copyright {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #444;
    text-transform: uppercase;
}

/* --- MODAL --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    padding: 1rem;
    pointer-events: auto;
}

.modal-content {
    width: 90%;
    max-width: 600px;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    position: relative;
    transform: translateY(50px);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 2rem;
    color: white;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: none;
    border: none;
    z-index: 10001;
}

@media (hover: hover) and (pointer: fine) {
    .close-modal {
        cursor: none;
    }
}

.modal-title {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 0;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
    min-height: 44px;
}

/* Show system cursor on input focus for better UX */
@media (hover: hover) and (pointer: fine) {
    .form-input:focus,
    .form-textarea:focus {
        cursor: text;
    }
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-bottom: 1px solid white;
}

.form-textarea {
    resize: none;
    min-height: 100px;
}

.submit-btn {
    margin-top: 1rem;
    background: white;
    color: black;
    border: none;
    padding: 1rem 3rem;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    transition: transform 0.2s;
    min-height: 44px;
    min-width: 120px;
}

.submit-btn:hover {
    transform: scale(1.05);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    nav {
        padding: 1.5rem 5%;
    }

    .nav-brand-logo {
        height: 30px;
    }

    .hero {
        padding-top: 3vh;
    }


    .hero h1 {
        font-size: clamp(1.8rem, 10vw, 4rem);
        line-height: 1.1;
    }

    .hero p {
        text-align: left;
        margin-left: 0;
        max-width: 100%;
    }

    .services {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 2rem 0;
    }

    .service-item p {
        text-align: left;
        transform: none;
        opacity: 1;
    }

    .statement {
        min-height: 40vh;
        padding: 2rem 0;
    }

    footer {
        min-height: auto;
        padding: 4rem 5% 2rem 5%;
    }

    .cta-big {
        font-size: clamp(2rem, 12vw, 4rem);
    }

    .footer-details {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 3rem;
    }

    .modal-content {
        width: 95%;
        padding: 2rem 1.5rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .close-modal {
        top: 15px;
        right: 15px;
        font-size: 1.5rem;
    }

    .copyright {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}

/* Extra small devices (iPhone SE, 13 Mini) */
@media (max-width: 375px) {
    .hero h1 {
        font-size: clamp(1.5rem, 12vw, 3rem);
    }

    .cta-big {
        font-size: clamp(1.8rem, 14vw, 3.5rem);
    }

    .service-item h2 {
        font-size: clamp(1.2rem, 6vw, 2.5rem);
    }

    .statement h3 {
        font-size: clamp(1.2rem, 5vw, 2rem);
    }
}

