/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --line: rgba(255, 255, 255, 0.14);
    --accent: #d9a86c;
    --slate: #111820;
    --stone: #1b1815;
}

body {
    background: linear-gradient(180deg, #0a0a0a 0%, var(--slate) 48%, var(--stone) 100%);
    color: #fff;
}

/* ================= NAV ================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--line);
    animation: nav-arrive .8s ease both;
}

.logo {
    color: #f6efe5;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color .25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

/* ================= HERO VIDEO ================= */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 10, 13, .9), rgba(21, 28, 32, .56) 55%, rgba(47, 34, 24, .74));
    z-index: -1;
}

.hero-content {
    position: relative;
    max-width: 800px;
    padding: 20px;
    animation: hero-arrive 1s .15s ease both;
}

.badge {
    background: rgba(217, 168, 108, 0.1);
    border: 1px solid rgba(217, 168, 108, .5);
    padding: 8px 20px;
    border-radius: 20px;
    color: var(--accent);
    font-size: 14px;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 20px 0;
    color: #fff;
}

.hero p {
    color: #bbb;
    line-height: 1.8;
}

/* ================= BUTTONS ================= */
.btns {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 25px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: background .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease;
    border-radius: 30px;
}

.btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
}

.whatsapp {
    border-color: #25D366;
    background: transparent;
    color: #fff;
}

.call {
    border-color: #aaa;
    background: transparent;
    color: #fff;
}

/* ================= STORY SECTIONS ================= */
.story {
    padding: 120px 8%;
    display: flex;
    align-items: center;
    gap: 40px;
    background: linear-gradient(135deg, #0d1115, #171411);
}

.split.reverse {
    flex-direction: row-reverse;
}

.story img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #222;
    transition: transform .5s ease, border-color .35s ease;
}

.story img:hover {
    transform: scale(1.02);
    border-color: rgba(217, 168, 108, .65);
}

/* ================= PROJECT GALLERY ================= */
.gallery {
    padding: 120px 8%;
    text-align: center;
    background: linear-gradient(180deg, #101820, #211a14);
}

.gallery-heading {
    max-width: 680px;
    margin: 0 auto 40px;
}

.gallery-heading h2 {
    font-size: 40px;
    font-weight: 300;
    margin: 20px 0 12px;
}

.gallery-heading p {
    color: #bbb;
    line-height: 1.8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    background: linear-gradient(160deg, #151515, #0e0e0e);
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    border-color: rgba(217, 168, 108, .65);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .28);
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 310px;
    object-fit: cover;
    transition: transform .5s ease, filter .5s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
    filter: saturate(1.12);
}

.gallery-item figcaption {
    padding: 16px;
    color: #d7d0c7;
    font-size: 14px;
    letter-spacing: .4px;
}

.content h2 {
    font-size: 38px;
    font-weight: 300;
    color: #fff;
}

.content p {
    color: #aaa;
    margin-top: 10px;
    line-height: 1.8;
}

/* CENTER STORY */
.full {
    text-align: center;
    background: linear-gradient(135deg, #252018, #111820);
}

.text-center h2 {
    font-size: 40px;
    font-weight: 300;
    color: #fff;
}

.text-center p {
    color: #bbb;
    margin-top: 12px;
    line-height: 1.8;
}

/* ================= SERVICES ================= */
.services {
    padding: 120px 8%;
    text-align: center;
    background: linear-gradient(180deg, #101820, #0d0d0d);
}

.services h2 {
    font-size: 40px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 40px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: linear-gradient(160deg, #151515, #0e0e0e);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--line);
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.card:hover {
    border-color: rgba(217, 168, 108, .65);
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .28);
}

.card h3 {
    font-weight: 300;
    color: #ccc;
    margin-top: 10px;
}

.card p {
    color: #999;
    font-size: 13px;
    line-height: 1.7;
    margin-top: 12px;
}

.card i {
    color: var(--accent);
    font-size: 30px;
    margin-bottom: 10px;
}

/* ================= CTA ================= */
.cta {
    padding: 120px 8%;
    text-align: center;
    background: linear-gradient(135deg, #211a14, #111820);
}

.cta h2 {
    font-size: 38px;
    font-weight: 300;
    color: #fff;
}

.cta p {
    color: #aaa;
    margin: 14px auto 0;
    max-width: 560px;
    line-height: 1.7;
}

/* ================= FOOTER ================= */
footer {
    text-align: center;
    padding: 20px;
    background: #08090a;
    color: #666;
}

@keyframes hero-arrive {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes nav-arrive {
    from { opacity: 0; transform: translateY(-12px); }
    to { opacity: 1; transform: translateY(0); }
}

@media(prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}

/* ================= MOBILE ================= */
@media(max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .story {
        flex-direction: column;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}