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

body {
    font-family: 'Inter', sans-serif;
    background-color: #0d0d0d;
    color: #ffffff;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 30px 8%;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
}

.logo span { 
    color: #c5a059; 
}

.nav-links a {
    margin-left: 30px;
    font-size: 12px;
    text-transform: uppercase;
    color: #ffffff;
}

.nav-links a:hover { 
    color: #c5a059; 
}

/* Hero */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.hero-text {
    padding: 80px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.subtitle {
    color: #c5a059;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 11px;
    margin-bottom: 20px;
    display: block;
}

.hero-text h1 {
    font-size: 48px;
}

.hero-text h1 em {
    color: #c5a059;
    font-style: italic;
}

.hero-text .btn-minimal {
    display: inline-block;
    padding: 18px 40px;
    border-width: 1px;
    border-style: solid;
    border-color: #c5a059;
    color: #c5a059; 
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    width: fit-content;
}

.hero-text .btn-minimal:hover {
    background-color: #c5a059;
    color: #0d0d0d;
}

.hero-image {
    background-image: linear-gradient(to right, #0d0d0d, transparent 30%),
                      url('https://images.unsplash.com/photo-1579584425555-c3ce17fd4351?q=80&w=1000');
    background-size: cover;
    background-position: center;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    padding: 100px 8%;
}

.feature-item h3 {
    color: #c5a059;
}

/* Footer */
footer {
    padding: 60px;
    text-align: center;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: rgba(255, 255, 255, 0.05);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1000px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-image { height: 350px; }
    .hero-text { text-align: center; align-items: center; }
}