:root {
    --bg: #0d0b0a;
    --surface: #1b1816;
    --accent: #c49a6c;
    --accent-dark: #8a6b4d;
    --text: #e9e4dc;
    --muted: #a89c8a;
    --highlight: #d9b57b;
    --radius: 14px;
    --max-width: 1100px;
}

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

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(196, 154, 108, 0.05), transparent);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 12px;
}

h1 {
    font-size: 1.8rem;
    letter-spacing: 1px;
}

nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

nav a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--highlight);
}

.menu-btn {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 70vh;
    padding: 4rem 2rem;
    background: radial-gradient(800px 400px at 50% 0%, rgba(196, 154, 108, 0.07), transparent);
}

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

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: var(--highlight);
}

.hero p {
    color: var(--muted);
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    border: 1px solid var(--accent);
    background: transparent;
    color: var(--accent);
    transition: background 0.3s, color 0.3s;
    cursor: pointer;
}

.btn.primary {
    background: var(--accent);
    color: #1b1816;
}

.btn:hover {
    background: var(--accent-dark);
    color: #fff;
}

.section {
    padding: 4rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-left: 5px solid var(--accent);
    padding-left: 0.8rem;
}

.section p {
    color: var(--muted);
    max-width: 800px;
}

.project-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    margin-bottom: 2rem;
}

.project-card-link:hover .project-card {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.project-image {
    height: 500px;
    background-size: cover;
    background-position: center;
}

.project-btn {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.project-info {
    position: relative;
    padding: 1.5rem;
}

.project-info h3 {
    font-size: 1.8rem;
    color: var(--highlight);
    margin-bottom: 0.8rem;
}

.project-info p {
    color: var(--muted);
}

.tags {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
}

.tag {
    background: rgba(196, 154, 108, 0.15);
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    font-size: 0.8rem;
    color: var(--accent);
}

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

.team-member {
    background: var(--surface);
    padding: 2rem;
    text-align: center;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent);
    margin: 0 auto 1rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input,
textarea {
    padding: 0.8rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #13100f;
    color: var(--text);
    font-size: 1rem;
}

textarea {
    resize: vertical;
}

footer {
    padding: 2rem;
    text-align: center;
    color: var(--muted);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 4rem;
}

.countdown {
    text-align: center;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.countdown-timer div {
    text-align: center;
    min-width: 60px;
}

.countdown-timer span {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--highlight);
}

.countdown-timer small {
    display: block;
    font-size: 0.8rem;
    color: var(--muted);
}

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

.media-item {
    width: 100%;
    padding-top: 56.25%;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.media-item:hover {
    transform: scale(1.03);
}

.trailer-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius);
    margin-top: 2rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.trailer-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: var(--radius);
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: var(--radius);
    box-shadow: 0 8px 20px rgba(0,0,0,0.7);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    color: var(--accent);
    cursor: pointer;
}

/* ----------------------------
            Mobile
----------------------------- */
@media (max-width: 1024px) {
    .hero h2 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .project-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .hero {
        padding: 3rem 1.5rem;
    }

    .media-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .project-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .countdown-timer {
        flex-direction: column;
        gap: 1rem;
    }

    .project-image {
        height: 200px;
    }
}

footer h6 {
    font-size: 2px;
}
