/* * THE SIGNATURE - Global Styles
 * A palette of warm whites, charcoal, and muted tones.
 * Focused on architectural elegance and whitespace.
 */

:root {
    --warm-white: #F9F7F2;
    --charcoal: #1A1A1A;
    --muted-accent: #8E8D8A;
    --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--warm-white);
    color: var(--charcoal);
    font-family: 'Noto Sans', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, .serif {
    font-family: 'Noto Serif', serif;
    font-weight: 300;
}

/* Utility Layout Classes */
.max-w-7xl { max-width: 80rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.grid { display: grid; }
.py-40 { padding-top: 10rem; padding-bottom: 10rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

/* Typography Scale */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-4xl { font-size: 2.25rem; }
.tracking-widest { letter-spacing: 0.4em; }

/* Custom Luxury Transitions & Components */

/* Project Visuals */
.project-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    background-color: #E5E2DA; /* Placeholder color during load */
}

.project-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.8s var(--transition-smooth);
}

.project-item:hover img {
    transform: scale(1.04);
}

/* Scroll Indicators / Minimal UI Elements */
.luxury-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid rgba(26, 26, 26, 0.1);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-decoration: none;
    color: var(--charcoal);
    transition: all 0.6s var(--transition-smooth);
}

.luxury-button:hover {
    border-color: var(--charcoal);
    background-color: var(--charcoal);
    color: var(--warm-white);
}

/* Hide scrollbar but keep functionality for a cleaner look */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
