:root {
    --bg: #FFFFFF;
    --text: #111111;
    --border: #111111;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
    overflow-x: hidden;
}

/* Nav */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    padding: 2rem 5%;
    display: flex; justify-content: space-between;
    z-index: 100; font-size: 0.7rem; font-weight: 900;
    text-transform: uppercase; letter-spacing: 0.1em;
    background: rgba(255,255,255,0.9);
}

.nav-links a { text-decoration: none; color: var(--text); margin-left: 2rem; }

/* Hero */
.hero { padding: 10rem 5% 5rem; max-width: 1400px; margin: 0 auto; }

h1 {
    font-size: clamp(3rem, 10vw, 9rem);
    font-weight: 900; letter-spacing: -0.05em;
    text-transform: uppercase; margin-bottom: 2rem;
}

.outline { color: transparent; -webkit-text-stroke: 1.5px var(--text); }

.hero-flex {
    display: flex; justify-content: space-between;
    align-items: flex-start; gap: 2rem; flex-wrap: wrap;
}

.hero-sub { font-size: 1.5rem; max-width: 600px; font-weight: 400; }

.profile-container { width: 300px; }

.profile-img {
    width: 100%; height: 380px;
    object-fit: cover; filter: grayscale(100%);
    border: 1px solid var(--border);
    background: #f0f0f0; /* Placeholder color */
}

.img-caption { font-size: 0.6rem; font-weight: 900; text-transform: uppercase; margin-top: 10px; }

/* Grid */
.services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    border-top: 1px solid var(--border); margin: 5rem 5%;
}

.service-card {
    padding: 4rem 2rem; border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

.service-num { font-size: 0.7rem; font-weight: 900; display: block; margin-bottom: 2rem; }

h3 { font-size: 2rem; text-transform: uppercase; margin-bottom: 1rem; }

/* Footer */
.footer-cta { padding: 5rem 5%; text-align: center; }

.contact-footer-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    text-align: left; margin-top: 5rem; padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.contact-col h4 { font-size: 0.6rem; text-transform: uppercase; color: #888; margin-bottom: 1rem; }

.contact-col a, .contact-col p { 
    display: block; text-decoration: none; color: var(--text); 
    font-size: 1.1rem; font-weight: 700; margin-bottom: 5px;
}

.btn {
    padding: 1rem 2rem; text-decoration: none; font-weight: 900;
    text-transform: uppercase; font-size: 0.8rem; display: inline-block;
    border: 1px solid var(--border); margin: 5px;
}

.btn-primary { background: var(--text); color: #fff; }

/* Animations */
.animate-on-scroll { opacity: 0; transform: translateY(20px); transition: 0.6s ease-out; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 800px) {
    .contact-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .service-card { border-right: none; }
}