:root {
    --bg: #050608;
    --panel: #0b0e13;
    --text: #fff;
    --muted: #a9b0bb;
    --blue: #d7ad45;
    --blue2: #f3d47d
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: Inter, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh
    
    
}

body:before {
    content: "";
    position: fixed;
    inset: -25%;
    z-index: -2;
    background: radial-gradient(circle at 15% 20%, rgba(215, 173, 69, .13), transparent 28%), radial-gradient(circle at 85% 70%, rgba(243, 212, 125, .10), transparent 25%);
    filter: blur(60px)
    
}

a {
    color: inherit
}

.nav {
    height: 78px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 7%;
    background: rgba(5, 6, 8, .68);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    backdrop-filter: blur(18px)
}

.logo {
    text-decoration: none;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 1.5px
}

.logo span {
    color: var(--blue)
}

.links {
    display: flex;
    gap: 28px;
    align-items: center
}

.links a {
    text-decoration: none;
    color: #d5dae1;
    font-size: .9rem
}

.links a:hover,
.links .active {
    color: var(--blue)
}

.nav-cta {
    padding: 11px 20px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--blue), var(--blue2));
    color: #fff !important;
    font-weight: 800
}

.hero {
    height: 100vh;
    min-height: 700px;
    width: 100vw;

    display: flex;
    align-items: center;
    padding: 78px 8% 0;

    background:
        linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .25)),
        linear-gradient(0deg, rgba(5, 6, 8, .93), transparent 48%),
        url('mainpicc.png') center center / cover no-repeat;
}

.hero-inner {
    max-width: 900px
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--blue);
    font-size: .72rem;
    font-weight: 800;
    margin-bottom: 18px
}

h1 {
    font-size: clamp(3.5rem, 7vw, 6.7rem);
    line-height: .92;
    letter-spacing: -4px
}

.hero p,
.page-head p {
    max-width: 660px;
    color: #c0c6cf;
    line-height: 1.8;
    margin: 26px 0 34px;
    font-size: 1.05rem
}

.btn {
    display: inline-block;
    border: 0;
    text-decoration: none;
    cursor: pointer;
    padding: 16px 31px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--blue), var(--blue2));
    color: #fff;
    font-weight: 800;
    font: inherit;
    box-shadow: 0 0 34px rgba(215, 173, 69, .25);
    transition: .25s
}

.btn:hover {
    transform: translateY(-3px)
}

.home-foot {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 22px 8%;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: rgba(5, 6, 8, .55);
    color: #818995;
    font-size: .8rem
}

.page-head {
    padding: 155px 8% 65px;
    max-width: 1350px;
    margin: auto
}

.page-head h1 {
    font-size: clamp(3.2rem, 6vw, 5.5rem)
}

.wrap {
    width: min(1180px, 86%);
    margin: auto;
    padding-bottom: 100px
}

.panel {
    background: linear-gradient(145deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .025));
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 24px;
    padding: 30px
}

.pricing {
    overflow-x: auto
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 750px
}

.price-table th,
.price-table td {
    padding: 21px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.price-table th {
    color: #858e9a;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: .72rem
}

.price-table td:not(:first-child) {
    font-weight: 800;
    font-size: 1.05rem
}

.price-table td:last-child {
    color: var(--blue)
}

.note {
    margin-top: 20px;
    color: #7e8793;
    font-size: .84rem;
    line-height: 1.6
}

.gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 230px;
    gap: 16px
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .08)
}

.g1 {
    grid-column: span 7;
    grid-row: span 2
}

.g2,
.g3 {
    grid-column: span 5
}

.g4,
.g5,
.g6 {
    grid-column: span 4
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.stars {
    color: var(--blue);
    letter-spacing: 3px
}

.quote {
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 20px 0
}

.muted {
    color: var(--muted);
    line-height: 1.7
}

.contact {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 26px
}

.detail {
    margin: 25px 0
}

.detail small {
    display: block;
    color: #747d89;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 7px
}

form {
    display: grid;
    gap: 15px
}

input,
textarea,
select {
    width: 100%;
    padding: 16px;
    border-radius: 13px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: #0c1016;
    color: #fff;
    font: inherit;
    outline: none
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--blue)
}

textarea {
    min-height: 145px;
    resize: vertical
}

footer {
    text-align: center;
    padding: 30px;
    border-top: 1px solid rgba(255, 255, 255, .07);
    color: #747c88
}

@media(max-width:850px) {

    .cards,
    .contact {
        grid-template-columns: 1fr
    }

    .gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px
    }

    .gallery img,
    .g1,
    .g2,
    .g3,
    .g4,
    .g5,
    .g6 {
        grid-column: auto;
        grid-row: auto
    }

    .links {
        gap: 12px
    }

    .links a {
        font-size: .75rem
    }

    h1 {
        letter-spacing: -2px
    }

    .home-foot {
        display: none
    }
}

@media(max-width:600px) {
    .nav {
        padding: 0 4%
    }

    .logo {
        font-size: .95rem
    }

    .links {
        gap: 7px
    }

    .links a {
        font-size: .65rem
    }

    .nav-cta {
        padding: 8px 10px
    }

    .hero {
        padding-left: 6%;
        padding-right: 6%
    }
}

body {
    opacity: 0;
    transition: opacity .35s ease
}

body.loaded {
    opacity: 1
}

body.fade-out {
    opacity: 0
}

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}

.home-section {
    padding: 105px 8%;
    border-top: 1px solid rgba(215, 173, 69, .1)
}

.home-inner {
    max-width: 1180px;
    margin: auto
}

.home-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    letter-spacing: -2px;
    margin-bottom: 15px
}

.home-copy {
    color: #a8a49a;
    line-height: 1.8;
    max-width: 650px;
    margin-bottom: 40px
}

.employee-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
}

.employee {
    min-height: 390px;
    border: 1px solid rgba(215, 173, 69, .15);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    background: #101010
}

.employee img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.72)
}

.employee:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .95), transparent 65%)
}

.employee-info {
    position: absolute;
    z-index: 2;
    bottom: 0;
    padding: 28px
}

.employee-info h3 {
    font-size: 1.6rem
}

.employee-info p {
    color: #aaa;
    margin-top: 7px
}

.home-contact {
    text-align: center;
    background: linear-gradient(110deg, rgba(215, 173, 69, .07), rgba(255, 255, 255, .01))
}

.home-contact .home-copy {
    margin: 0 auto 30px
}

@media(max-width:850px) {
    .employee-grid {
        grid-template-columns: 1fr
    }
}

.home-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.home-price-card {
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(215, 173, 69, .15);
    background: linear-gradient(145deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015))
}

.home-price-card.featured {
    border-color: rgba(215, 173, 69, .55);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(215, 173, 69, .08)
}

.home-price {
    font-size: 2.4rem;
    font-weight: 800;
    color: #f3d47d;
    margin: 13px 0
}

.mini-list {
    list-style: none;
    margin: 20px 0
}

.mini-list li {
    padding: 8px 0;
    color: #b8b2a7;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.review-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.price-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch
}

.package {
    position: relative;
    display: flex;
    flex-direction: column
}

.package.popular {
    border-color: rgba(215, 173, 69, .65);
    transform: translateY(-14px);
    box-shadow: 0 24px 60px rgba(215, 173, 69, .1)
}

.popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #d7ad45;
    color: #090909;
    padding: 7px 16px;
    border-radius: 99px;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    white-space: nowrap
}

.package h2 {
    font-size: 1.7rem
}

.package-price {
    font-size: 2.6rem;
    font-weight: 800;
    color: #f3d47d;
    margin: 15px 0
}

.package ul {
    list-style: none;
    margin: 20px 0 28px;
    flex-grow: 1
}

.package li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    color: #c1bbb0
}

.package li:before {
    content: "✓";
    color: #d7ad45;
    margin-right: 10px
}

.vehicle-addons {
    margin-top: 45px
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px
}

.addon {
    padding: 18px;
    border-radius: 16px;
    background: #0c0c0c;
    border: 1px solid rgba(215, 173, 69, .12);
    text-align: center
}

.addon strong {
    display: block;
    color: #f3d47d;
    margin-top: 8px
}

.contact-info-only {
    max-width: 760px;
    margin: auto
}

.contact-info-only .detail {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07)
}

@media(max-width:850px) {

    .home-pricing-grid,
    .review-row,
    .price-stack {
        grid-template-columns: 1fr
    }

    .home-price-card.featured,
    .package.popular {
        transform: none
    }

    .addon-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}