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

body {
    background: #0c0c0c;
    color: #eaeaea;
    font-family: 'Inter', sans-serif;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: fixed;
    width: 100%;
    background: rgba(12,12,12,0.95);
    z-index: 1000;
}

.logo {
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
    font-size: 18px;
}

.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

nav a {
    color: #eaeaea;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.7;
}

.hero {
    height: 100vh;
    background: url('https://hips.hearstapps.com/hmg-prod/images/al-pacino-sits-in-a-chair-in-a-scene-from-the-film-the-news-photo-1635770483.jpg') center/cover;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

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

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 14px;
    opacity: 0.8;
}

section {
    padding: 70px 20px;
}

h2 {
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.card {
    background: #141414;
    padding: 18px;
    border: 1px solid #1f1f1f;
}

iframe {
    width: 100%;
    height: 180px;
}

button {
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #c8a96a;
    background: transparent;
    color: #c8a96a;
    width: 100%;
}

footer {
    text-align: center;
    padding: 30px;
    font-size: 12px;
    opacity: 0.6;
}

@media(min-width:768px){
    nav { padding: 20px 60px; }
    .hero { padding: 0 60px; }
    .hero h1 { font-size: 48px; }
    .hero p { font-size: 16px; }
    .grid { grid-template-columns: repeat(3,1fr); }
    iframe { height: 220px; }
    button { width: auto; padding: 10px 20px; }
}

@media(max-width:767px){
    .menu-toggle { display: block; }
    nav ul {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: #111;
        padding: 20px;
    }
    nav ul.active { display: flex; }
}
