* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Inter', sans-serif;
background: #ffffff;
color: #111;
line-height: 1.6;
letter-spacing: -0.2px;
}

/* FILM GRAIN OVERLAY */

.grain {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
background-image: url("https://grainy-gradients.vercel.app/noise.svg");
opacity: 0.04;
z-index: 9999;
}

/* NAVIGATION */

.nav {
border-bottom: 1px solid #eee;
}

.nav-inner {
max-width: 1400px;
margin: auto;
padding: 40px 80px;
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
font-size: 14px;
text-transform: lowercase;
}

.logo strong {
font-weight: 700;
}

.nav-links a {
margin-left: 50px;
text-decoration: none;
color: #111;
font-size: 13px;
position: relative;
}

.nav-links a::after {
content: "";
position: absolute;
width: 0;
height: 1px;
bottom: -4px;
left: 0;
background: #111;
transition: 0.3s;
}

.nav-links a:hover::after {
width: 100%;
}

.lang-switch button {
border: 1px solid #ddd;
background: none;
padding: 6px 10px;
font-size: 11px;
cursor: pointer;
transition: 0.3s;
}

.lang-switch button:hover {
background: #111;
color: white;
}

/* LAYOUT */

.container {
max-width: 1400px;
margin: auto;
padding: 160px 80px;
}

.narrow {
max-width: 800px;
}

/* HERO */

.hero h1 {
font-size: 64px;
font-weight: 300;
line-height: 1.1;
margin-bottom: 40px;
}

.hero h1 strong {
font-weight: 700;
}

.hero p {
font-size: 18px;
color: #555;
max-width: 500px;
}

/* IMAGE */

.image-section {
padding: 0 80px 160px 80px;
max-width: 1400px;
margin: auto;
}

.mono-image {
width: 40%;
filter: grayscale(100%) contrast(115%) brightness(95%);
}

/* SECTIONS */

.section h2 {
font-size: 13px;
letter-spacing: 2px;
text-transform: uppercase;
margin-bottom: 40px;
}

.section p {
color: #444;
font-size: 16px;
}

.services {
list-style: none;
}

.services li {
padding: 18px 0;
border-bottom: 1px solid #eee;
font-size: 17px;
}

.border {
border-top: 1px solid #eee;
border-bottom: 1px solid #eee;
}

/* FOOTER */

footer {
padding: 80px;
border-top: 1px solid #eee;
font-size: 12px;
color: #777;
}

/* ANIMATION */

.fade {
opacity: 0;
transform: translateY(40px);
transition: opacity 1s ease, transform 1s ease;
}

.appear {
opacity: 1;
transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 900px) {

.container {
padding: 100px 40px;
}

.nav-inner {
padding: 30px 40px;
}

.hero h1 {
font-size: 42px;
}

.image-section {
padding: 0 40px 100px 40px;
}

footer {
padding: 40px;
}
/* LOADER */

/* LOADER */

#loader {
position: fixed;
width: 100%;
height: 100%;
background: #ffffff;
display: flex;
justify-content: center;
align-items: center;
z-index: 10000;
transition: opacity 0.8s ease, visibility 0.8s;
}

#loader.hide {
opacity: 0;
visibility: hidden;
}

.loader-content h1 {
font-size: 32px;
font-weight: 300;
text-align: left;
animation: fadeIn 1s ease forwards;
}

.loader-content strong {
font-weight: 700;
}

@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
}