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

:root {
    --primary-bg: #eff0f0;
    --dark-text: #1c1c1c;
    --accent-blue: #1c1c1c;
    --warm-neutral: #ffffff;
    --secondary-text: #505050;
    --light-gray: #d0d0d0;
    --white: #ffffff;
    --medium-charcoal: #2a2a2a;

    --font-primary: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --spacing-xs: 1rem;
    --spacing-sm: 2rem;
    --spacing-md: 4rem;
    --spacing-lg: 6rem;
    --spacing-xl: 8rem;
    --radius-sm: 10px;
    --radius-md: 13px;
    --radius-lg: 100px;
}


html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--dark-text);
    background-color: var(--primary-bg);
    line-height: 1.2;
    letter-spacing: -0.02em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 1025px) {
    body, body * {
        cursor: none !important;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.1em;
    letter-spacing: -0.04em;
}

h1 {
    font-size: clamp(3rem, 8vw, 7rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 4rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    line-height: 1.6;
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-full {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.logo {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.6;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: var(--primary-bg);
    padding: 8rem 2rem 4rem;
}

.hero-content {
    z-index: 1;
    max-width: 1000px;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
    letter-spacing: -0.04em;
    line-height: 1;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--secondary-text);
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.cta-button {
    display: inline-block;
    padding: 1.25rem 3rem;
    background-color: var(--accent-blue);
    color: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 56, 255, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.5;
}

.scroll-indicator span {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background-color: var(--dark-text);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 0.5; }
    50% { transform: scaleY(1.5); opacity: 1; }
}

section {
    padding: var(--spacing-xl) 0;
}

.section-heading {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: var(--spacing-md);
    color: var(--dark-text);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.section-heading.centered {
    text-align: center;
}

.about {
    background-color: var(--white);
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    color: var(--dark-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-text .signature {
    margin-top: 2rem;
    font-style: italic;
    color: var(--secondary-text);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.placeholder-text {
    color: var(--secondary-text);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 1;
    opacity: 0.4;
}

.preview {
    background-color: var(--primary-bg);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 400px);
    gap: 1rem;
    grid-template-areas:
        "a a a b b b"
        "c c d d e f";
    margin-top: var(--spacing-md);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: scale(1.02);
    z-index: 10;
}

.gallery-item .image-placeholder {
    min-height: 100%;
}

.details {
    background-color: var(--white);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: var(--spacing-md);
}

.detail-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
    font-weight: 600;
}

.detail-item ul {
    list-style: none;
}

.detail-item li {
    padding: 0.875rem 0;
    border-bottom: 1px solid #e0e0e0;
    color: var(--secondary-text);
    font-size: 0.95rem;
}

.detail-item li:last-child {
    border-bottom: none;
}


.footer {
    padding: var(--spacing-md) 0 var(--spacing-sm);
    background-color: var(--dark-text);
    color: var(--white);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.footer-info p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-offline p {
    opacity: 0.5;
    font-size: 0.9rem;
    font-style: italic;
}

.footer-bottom {
    text-align: center;
    opacity: 0.5;
    font-size: 0.85rem;
}

[data-reveal],
[data-text-reveal],
[data-char-reveal],
[data-scale-reveal] {
    opacity: 0;
}

[data-reveal].revealed {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

[data-text-reveal].revealed {
    animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

[data-char-reveal].revealed {
    animation: fadeInScale 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

[data-scale-reveal].revealed {
    animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@media (max-width: 1199px) {
    :root {
        --spacing-xl: 6rem;
        --spacing-lg: 4rem;
        --spacing-md: 3rem;
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 350px);
        grid-template-areas:
            "a a"
            "b c"
            "d e";
    }

    .gallery-item:nth-child(6) {
        display: none;
    }
}
@media (max-width: 809px) {
    :root {
        --spacing-xl: 4rem;
        --spacing-lg: 3rem;
        --spacing-md: 2rem;
    }

    .container,
    .container-full {
        padding: 0 1.5rem;
    }

    .nav {
        top: 1rem;
        left: 1rem;
        right: 1rem;
        transform: none;
    }

    .nav-container {
        padding: 1rem 1.5rem;
        gap: 1.5rem;
    }

    .nav-links {
        gap: 1.25rem;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .hero {
        padding: 6rem 1.5rem 4rem;
    }

    .gallery {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 300px);
        grid-template-areas:
            "a"
            "b"
            "c"
            "d"
            "e";
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}
@media (max-width: 480px) {
    .nav-links {
        display: none;
    }

    .logo {
        font-size: 0.9rem;
    }
}
