/* --- Değişkenler --- */
:root {
    --color-white: #ffffff;
    --color-bg: #fafafa;
    --color-black: #111111;
    --color-grey: #e0e0e0;
    --color-text: #333333;
    
    --font-display: 'Jost', sans-serif;
    --font-body: 'Manrope', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    font-weight: 300;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; filter: grayscale(20%); transition: 0.5s; }
img:hover { filter: grayscale(0%); }

.container { width: 90%; max-width: 1400px; margin: 0 auto; }

/* --- Header --- */
.nordic-header {
    background-color: var(--color-bg);
    padding: 40px 0;
    position: sticky; top: 0; z-index: 100;
}

.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-display); font-size: 2rem; font-weight: 500; color: var(--color-black); letter-spacing: -1px; }
.dot { color: #999; }

.clean-nav ul { display: flex; gap: 40px; }
.clean-nav a { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; color: #999; }
.clean-nav a:hover, .clean-nav a.active { color: var(--color-black); }

.menu-trigger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; align-items: flex-end; }
.line { width: 30px; height: 2px; background-color: var(--color-black); transition: 0.3s; }
.line.short { width: 20px; }
.menu-trigger:hover .line.short { width: 30px; }

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--color-white); z-index: 200;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: 0.4s ease;
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.close-btn { position: absolute; top: 30px; right: 30px; font-size: 2rem; background: none; border: none; cursor: pointer; }
.mobile-menu a { font-family: var(--font-display); font-size: 2rem; margin: 10px 0; color: var(--color-black); font-weight: 300; }

/* --- Intro --- */
.intro { padding: 100px 0 60px; text-align: center; }
.intro h1 { font-family: var(--font-display); font-size: 4rem; line-height: 1.1; font-weight: 300; color: var(--color-black); margin-bottom: 20px; }
.intro .subtitle { font-size: 1.1rem; color: #777; font-family: var(--font-body); letter-spacing: 1px; }

/* --- Masonry Grid --- */
.masonry-grid {
    column-count: 3;
    column-gap: 30px;
}
.grid-item { break-inside: avoid; margin-bottom: 30px; position: relative; }
.grid-item img { width: 100%; border-radius: 2px; }
.caption { margin-top: 10px; }
.caption h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; color: var(--color-black); }
.caption span { font-size: 0.8rem; color: #999; text-transform: uppercase; letter-spacing: 1px; }

/* --- Text Layout (About/Privacy) --- */
.section-padding { padding: 80px 0; }
.text-layout { max-width: 800px; margin: 0 auto; text-align: center; }
.text-layout h2 { font-family: var(--font-display); font-size: 2.5rem; font-weight: 300; color: var(--color-black); }
.separator { width: 50px; height: 1px; background-color: var(--color-black); margin: 30px auto; }
.text-layout p { margin-bottom: 20px; font-size: 1.1rem; color: #555; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 60px; }
.team-member { text-align: center; }
.team-member img { width: 100%; aspect-ratio: 3/4; object-fit: cover; margin-bottom: 15px; }
.team-member h4 { font-family: var(--font-display); font-weight: 400; font-size: 1.2rem; }
.team-member span { font-size: 0.8rem; color: #999; text-transform: uppercase; letter-spacing: 1px; }

/* --- Notes (Testimonials) --- */
.notes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 60px; }
.note-card { padding: 40px; background-color: var(--color-white); border: 1px solid #eee; }
.note-card p { font-style: italic; color: #555; margin-bottom: 20px; font-size: 1.1rem; }
.client-name { font-family: var(--font-display); font-weight: 500; font-size: 0.9rem; }

/* --- Contact Form --- */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: flex-start; }
.contact-text h2 { font-family: var(--font-display); font-size: 3rem; font-weight: 300; margin-bottom: 20px; }
.address-block { margin-top: 40px; color: #555; }
.address-block a { border-bottom: 1px solid #ccc; }

.clean-form .input-wrap { margin-bottom: 30px; }
.clean-form input, .clean-form textarea { width: 100%; border: none; border-bottom: 1px solid var(--color-grey); background: transparent; padding: 15px 0; font-family: var(--font-body); font-size: 1rem; transition: 0.3s; }
.clean-form input:focus, .clean-form textarea:focus { border-bottom-color: var(--color-black); outline: none; }
.btn-minimal { background: transparent; border: 1px solid var(--color-black); padding: 15px 40px; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 2px; cursor: pointer; transition: 0.3s; color: var(--color-black); }
.btn-minimal:hover { background: var(--color-black); color: var(--color-white); }

/* --- Legal --- */
.legal-block h1 { font-family: var(--font-display); font-weight: 300; font-size: 2.5rem; text-align: center; }
.legal-block h3 { margin-top: 40px; margin-bottom: 10px; font-family: var(--font-display); font-weight: 400; }

/* --- Footer --- */
.minimal-footer { padding: 50px 0; margin-top: auto; font-size: 0.8rem; color: #999; }
.footer-flex { display: flex; justify-content: space-between; border-top: 1px solid #eee; padding-top: 30px; }
.f-right a { margin-left: 20px; color: #333; }

@media (max-width: 992px) {
    .clean-nav { display: none; }
    .menu-trigger { display: flex; }
    .masonry-grid { column-count: 1; }
    .team-grid, .notes-grid, .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .intro h1 { font-size: 2.5rem; }
}