:root {
    --gold: #c5a059;
    --dark: #121212;
    --light: #f9f9f9;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* --- NAVIGATION --- */
nav {
    display: flex;
    justify-content: space-between;
    padding: 2rem 5%;
    background: white;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--gold);
}

/* --- HERO SECTION --- */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1464146072230-91cabc968266?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    font-weight: 300;
}

.btn {
    padding: 1rem 2.5rem;
    background: var(--gold);
    color: white;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: background 0.3s;
    display: inline-block;
}

.btn:hover {
    background: #a68546;
}

/* --- SECTION: ABOUT (PHILOSOPHY) --- */
.about {
    padding: 80px 10%;
    text-align: center;
    background-color: #fff;
}

.about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.about p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

/* --- SECTION: SERVICES GRID --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 80px 10%;
    background-color: var(--light);
}

.service-item {
    background: white;
    padding: 40px 30px;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
    text-align: center;
}

.service-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.service-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-item p {
    color: #666;
    font-size: 0.95rem;
}

/* --- SECTION: APPLICATION FORM --- */
.application {
    padding: 100px 5%;
    background-color: var(--dark);
    color: white;
    display: flex;
    justify-content: center;
}

.form-container {
    max-width: 700px;
    width: 100%;
    background: #1a1a1a;
    padding: 50px;
    border: 1px solid #333;
    text-align: center;
}

.form-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.form-subtitle {
    font-size: 0.95rem;
    color: #aaa;
    margin-bottom: 40px;
    line-height: 1.6;
}

.input-group {
    margin-bottom: 20px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 15px;
    background: #222;
    border: 1px solid #444;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    box-sizing: border-box;
    transition: 0.3s;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: #2a2a2a;
}

.submit-btn {
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

/* --- FOOTER --- */
footer {
    padding: 3rem 5%;
    background: white;
    text-align: center;
    border-top: 1px solid #eee;
}

footer p {
    margin-bottom: 10px;
    color: #666;
}

.legal a {
    color: #888;
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.3s;
}

.legal a:hover {
    color: var(--gold);
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    nav ul li {
        margin-left: 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 40px 5%;
    }

    .form-container {
        padding: 30px 20px;
    }
}