:root {
    --bg: #ffffff;
    --text: #1a1a1a;
    --text-muted: #666666;
    --accent: #222222;
    --border: #eeeeee;
    --font-main: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -1px;
}

nav {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    margin-left: 2rem;
    font-size: 0.9rem;
    font-weight: 400;
    transition: opacity 0.2s;
}

.nav-links a:hover {
    opacity: 0.6;
}

header {
    padding: 12rem 0 8rem;
}

.hero-content {
    max-width: 800px;
}

h1 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 700;
}

.italic {
    font-style: italic;
    font-weight: 400;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    transition: transform 0.2s, background 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #000;
    transform: translateY(-2px);
}

.btn-sm {
    background: var(--accent);
    color: white !important;
    padding: 0.6rem 1.2rem;
    border-radius: 0;
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 3rem;
    display: block;
}

section {
    padding: 8rem 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card h3 {
    margin-top: 1.5rem;
    font-family: var(--font-serif);
    font-size: 1.25rem;
}

.card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.img-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: #f5f5f5;
    transition: opacity 0.3s;
}

.img-placeholder:hover {
    opacity: 0.8;
}

.about {
    background: #fafafa;
}

.about-grid {
    max-width: 700px;
}

.about-text p {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.capabilities {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    color: var(--text-muted);
}

.contact-box {
    background: #f0f0f0;
    padding: 4rem;
    text-align: center;
}

.contact-box h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-box p {
    margin-bottom: 3rem;
    color: var(--text-muted);
}

form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

input, textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    background: white;
    font-family: var(--font-main);
    font-size: 1rem;
}

textarea {
    margin-bottom: 1.5rem;
}

footer {
    padding: 4rem 0;
    border-top: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .form-group {
        grid-template-columns: 1fr;
    }
    
    .contact-box {
        padding: 2rem;
    }
    
    .footer-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
}