:root {
    --bg-color: #f0f0f0; 
    --text-primary: #121212;
    --text-secondary: #4a4a4a;
    --border-color: #d1cfc9;
    --font-display: 'Bodoni Moda', serif;
    --font-body: 'Syne', sans-serif;
}

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

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

/* Typography Enhancements */
h1, h2, h3, h4 { font-weight: 400; }
b, strong { font-weight: 800; font-family: var(--font-body); }
i, em { font-family: var(--font-display); font-style: italic; font-weight: 400; }
u { text-decoration: none; border-bottom: 2px solid var(--text-primary); padding-bottom: 2px; }

.mt-4 { margin-top: 2rem; }
.container { max-width: 90vw; margin: 0 auto; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2.5vw 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    mix-blend-mode: difference;
    color: #fff;
}

.logo {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.logo i {
    font-weight: 400;
    font-size: 1.4rem;
}

.nav-links {
    display: flex;
    gap: 3rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}
.nav-links a { color: #fff; text-decoration: none; }

/* Fog Effect */
.fog-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
    mix-blend-mode: screen;
    opacity: 0.6;
}

.fog-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 20s infinite alternate ease-in-out;
}

.blob-1 { width: 60vw; height: 60vh; background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%); top: -10vh; left: -10vw; animation-duration: 25s; }
.blob-2 { width: 50vw; height: 50vh; background: radial-gradient(circle, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 70%); bottom: 10vh; right: -5vw; animation-duration: 22s; animation-delay: -5s; }
.blob-3 { width: 40vw; height: 40vh; background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 70%); top: 40vh; left: 30vw; animation-duration: 30s; animation-delay: -10s; }

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(10vw, 5vh) scale(1.2); }
}

/* Hero Story Section */
.hero-story { height: 400vh; position: relative; background-color: var(--bg-color); }
.sticky-story { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.story-text-container { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.story-text { position: absolute; font-family: var(--font-body); font-size: clamp(3rem, 7vw, 8rem); text-align: center; line-height: 1; letter-spacing: -0.02em; opacity: 0; transform: translateY(50px) scale(0.95); filter: blur(10px); }
.story-text i { font-size: 1.1em; }

/* Horizontal Scroll Portfolio */
.horizontal-scroll { background-color: #fff; overflow: hidden; }
.horizontal-wrapper { display: flex; height: 100vh; width: fit-content; }
.horizontal-panel { width: 100vw; height: 100vh; display: flex; align-items: center; justify-content: center; flex-shrink: 0; padding: 0 5vw; }
.intro-panel { width: 60vw; justify-content: flex-start; }
.img-panel { width: 80vw; }
.text-panel { width: 60vw; justify-content: flex-start; }

.project-number { font-family: var(--font-body); font-weight: 800; font-size: 1.5rem; color: var(--text-secondary); margin-bottom: 2rem; }
.project-title { font-family: var(--font-body); font-size: clamp(4rem, 9vw, 10rem); line-height: 0.85; letter-spacing: -0.03em; }

/* 3D Floating Images - No Borders */
.floating-img { max-height: 80vh; max-width: 100%; object-fit: contain; mix-blend-mode: multiply; filter: drop-shadow(10px 20px 30px rgba(0,0,0,0.15)); transition: transform 0.5s ease-out; }
.sketch-img { filter: drop-shadow(5px 10px 15px rgba(0,0,0,0.05)); opacity: 0.9; }
.arch-img { mix-blend-mode: normal; box-shadow: 0 30px 60px rgba(0,0,0,0.1); border-radius: 4px; }
.art-img { mix-blend-mode: multiply; }

.project-info h3 { font-family: var(--font-display); font-size: 2.5rem; margin-bottom: 1rem; }
.project-info p { font-size: 1.25rem; line-height: 1.6; max-width: 80%; color: var(--text-secondary); }

/* Trusted Flashing Logos */
.trusted-section {
    padding: 10vw 0;
    background-color: var(--bg-color);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}
.trusted-label {
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
}
.trusted-label i { font-size: 1.2rem; margin-right: 0.5rem; }
.logo-flash-container {
    height: 10vw;
    display: flex;
    align-items: center;
    justify-content: center;
}
.flashing-logo {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 5rem);
    text-transform: uppercase;
    line-height: 1;
}

/* Services Section */
.services { padding: 15vw 0; background-color: var(--bg-color); }
.section-title { font-family: var(--font-body); font-size: clamp(3rem, 6vw, 7rem); margin-bottom: 8vw; line-height: 1; }
.services-list { border-top: 2px solid var(--text-primary); }
.service-item { display: flex; justify-content: space-between; align-items: center; padding: 4vw 0; border-bottom: 1px solid var(--border-color); }
.service-text h3 { font-family: var(--font-body); font-size: clamp(1.5rem, 3.5vw, 4rem); line-height: 1.1; }
.service-price { text-align: right; }
.service-price p { font-family: var(--font-body); font-size: 1rem; font-weight: 600; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 0.5rem; }
.service-price h4 { font-family: var(--font-display); font-size: 2.5rem; }

/* Bold Contact Form Section */
.contact-section {
    padding: 12vw 0;
    background-color: var(--text-primary);
    color: var(--bg-color);
}
.contact-container {
    display: flex;
    flex-direction: column;
    gap: 4vw;
    align-items: center;
    text-align: center;
}
.contact-form-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}
.huge-contact {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: clamp(4rem, 12vw, 15rem);
    line-height: 0.8;
}
.contact-header p {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: #999;
    margin-top: 2rem;
    line-height: 1.6;
}

/* Elegant Form */
.elegant-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 800px;
}
.form-group input, .form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(242,240,234,0.3);
    color: var(--bg-color);
    font-family: var(--font-body);
    font-size: 1.2rem;
    padding: 1rem 0;
    outline: none;
    transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus {
    border-bottom-color: var(--bg-color);
}
.form-group input::placeholder, .form-group textarea::placeholder {
    color: rgba(242,240,234,0.4);
    font-style: italic;
    font-family: var(--font-display);
}
.submit-btn {
    align-self: center;
    background: transparent;
    color: var(--bg-color);
    border: 1px solid var(--bg-color);
    padding: 1.2rem 3rem;
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s;
    margin-top: 1rem;
}
.submit-btn i { font-size: 1.1em; }
.submit-btn:hover {
    background: var(--bg-color);
    color: var(--text-primary);
}

/* Footer */
.footer { background-color: var(--text-primary); color: #fff; padding: 2vw 0 4vw; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4vw; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 4vw;}
.footer h4 { font-family: var(--font-body); font-size: 1.2rem; font-weight: 600; margin-bottom: 1.5rem; }
.footer h4 i { font-size: 1.4rem; }
.footer p, .footer a { font-family: var(--font-body); font-size: 0.95rem; color: #aaa; line-height: 1.6; text-decoration: none; }
.footer a:hover { color: #fff; }
.footer-locations { display: flex; gap: 4vw; }
.footer-legal ul { list-style: none; }
.footer-legal li { margin-bottom: 0.8rem; }
.footer-disclaimer p { margin-bottom: 1rem; font-size: 0.85rem; }
.copy { margin-top: 4vw; padding-top: 2rem; color: #666; }

/* Responsive */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .horizontal-panel { width: 100vw; padding: 0 10vw; flex-direction: column; justify-content: center; text-align: center; }
    .intro-panel, .img-panel, .text-panel { width: 100vw; }
    .floating-img { max-height: 50vh; }
    .project-info p { max-width: 100%; }
    .service-item { flex-direction: column; align-items: flex-start; gap: 2rem; }
    .service-price { text-align: left; }
    .contact-container { grid-template-columns: 1fr; gap: 4vw; }
    .huge-contact { font-size: 25vw; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-locations { flex-direction: column; }
}
