
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    background: #0b0b0f;
    color: #f5f3ef;
    scroll-behavior: smooth;
}

/* NAV */

.lv-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 22px;
    background: rgba(7,7,10,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.lv-logo {
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #f5f3ef;
}

.lv-menu {
    list-style: none;
    display: flex;
    gap: 18px;
}

.lv-menu a {
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #f5f3ef;
    opacity: 0.7;
}

.lv-menu a:hover {
    opacity: 1;
}

.lv-menu-btn {
    display: none;
    font-size: 22px;
    cursor: pointer;
    color: #f5f3ef;
}

/* HERO */

.lv-hero {
    padding: 70px 20px 60px 20px;
    background: radial-gradient(circle at top, #1b1b24, #0b0b0f);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.lv-hero-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.lv-hero-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #c8a46a;
    margin-bottom: 10px;
}

.lv-hero h1 {
    margin: 0 0 12px 0;
    font-size: 42px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.lv-hero p {
    margin: 0 0 22px 0;
    font-size: 15px;
    opacity: 0.85;
}

.lv-hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.lv-btn-primary,
.lv-btn-secondary {
    display: inline-block;
    padding: 10px 24px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    border-radius: 999px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.lv-btn-primary {
    background: #c8a46a;
    color: #0b0b0f;
    box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}

.lv-btn-secondary {
    background: transparent;
    color: #f5f3ef;
    border: 1px solid rgba(200,164,106,0.7);
}

.lv-btn-primary:hover,
.lv-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.7);
}

.lv-hero-tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.lv-hero-tags span {
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(200,164,106,0.08);
    color: #f5f3ef;
}

/* SECTIONS */

.lv-section {
    padding: 50px 20px;
}

.lv-section-alt {
    background: #111118;
}

.lv-section-inner {
    max-width: 980px;
    margin: 0 auto;
}

.lv-section-header {
    text-align: center;
    margin-bottom: 26px;
}

.lv-section h2 {
    margin: 0 0 10px 0;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #f5f3ef;
}

.lv-section p {
    max-width: 640px;
    margin: 0 auto;
    font-size: 14px;
    opacity: 0.85;
}

/* GRID */

.lv-grid {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.lv-grid-3 {
    grid-template-columns: 1fr;
}

.lv-grid-4 {
    grid-template-columns: 1fr;
}

.lv-grid-2 {
    grid-template-columns: 1fr;
}

/* CARDS */

.lv-card {
    background: #15151f;
    border-radius: 18px;
    padding: 18px 18px 16px 18px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 16px 40px rgba(0,0,0,0.6);
    position: relative;
    overflow: hidden;
    text-align: left;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.lv-card-outline {
    background: #101018;
    border: 1px solid rgba(200,164,106,0.4);
}

.lv-card-soft {
    background: #14141d;
}

.lv-card h3 {
    margin: 0 0 8px 0;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #f5f3ef;
}

.lv-card p {
    margin: 0 0 10px 0;
    font-size: 13px;
    opacity: 0.85;
}

/* CARD HOVER */

.lv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    border-color: rgba(200,164,106,0.7);
}

/* LIST */

.lv-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
}

.lv-list li {
    margin-bottom: 4px;
    position: relative;
    padding-left: 14px;
}

.lv-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #c8a46a;
}

/* NOTE */

.lv-note {
    margin-top: 18px;
    text-align: center;
    font-size: 13px;
    opacity: 0.8;
}

/* TIMELINE */

.lv-timeline {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.lv-timeline-item {
    background: #15151f;
    border-radius: 18px;
    padding: 16px 18px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 16px 40px rgba(0,0,0,0.6);
    text-align: left;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.lv-timeline-item h3 {
    margin: 0 0 6px 0;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #f5f3ef;
}

.lv-timeline-item p {
    margin: 0;
    font-size: 13px;
    opacity: 0.85;
}

.lv-timeline-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 46px rgba(0,0,0,0.8);
    border-color: rgba(200,164,106,0.7);
}

/* FORM */

.lv-form {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
}

.lv-form-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lv-form input,
.lv-form textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.12);
    background: #101018;
    font-family: inherit;
    font-size: 13px;
    color: #f5f3ef;
}

.lv-form textarea {
    min-height: 90px;
    resize: vertical;
}

/* CONTACT BOX */

.lv-contact-box {
    max-width: 420px;
    margin: 24px auto 0 auto;
    text-align: left;
    background: #15151f;
    border-radius: 18px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 16px 40px rgba(0,0,0,0.6);
    font-size: 13px;
}

.lv-contact-box span {
    color: #c8a46a;
    font-weight: 500;
}

/* RATING */

.lv-rating {
    margin-top: 8px;
    font-size: 13px;
    letter-spacing: 0.2em;
    color: #c8a46a;
}

/* FOOTER */

.lv-footer {
    padding: 22px;
    text-align: center;
    font-size: 12px;
    opacity: 0.7;
    border-top: 1px solid rgba(255,255,255,0.04);
}

/* MOBILE NAV */

@media (max-width: 767px) {
    .lv-menu {
        display: none;
        position: absolute;
        top: 54px;
        right: 22px;
        background: rgba(7,7,10,0.96);
        flex-direction: column;
        padding: 10px 14px;
        border-radius: 12px;
        box-shadow: 0 18px 46px rgba(0,0,0,0.9);
    }

    .lv-menu-btn {
        display: block;
    }

    .lv-menu li {
        margin: 6px 0;
    }

    .lv-form-row {
        flex-direction: column;
    }
}

/* DESKTOP */

@media (min-width: 768px) {
    .lv-grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lv-grid-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .lv-grid-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lv-form-row {
        flex-direction: row;
    }

    .lv-form-row input {
        flex: 1;
    }

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