:root {
    --gold: #c5a059;
    --dark: #0a0a0a;
    --velvet: #1a1a1a;
    --text-muted: #888;
    --light: #ffffff;
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--dark);
    color: var(--light);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .v-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Nav */
.v-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.v-logo {
    font-size: 2rem;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 2px;
}

.v-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.v-menu a {
    color: var(--light);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
}

.v-menu a:hover {
    color: var(--gold);
}

/* Hero */
.v-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.v-hero-canvas {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.v-subtitle {
    display: block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.v-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.v-title span {
    color: var(--gold);
    font-style: italic;
}

.v-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 3rem;
    font-weight: 200;
}

.v-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.v-btn {
    background: var(--gold);
    color: var(--dark);
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: var(--transition);
    border: none;
}

.v-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
}

.v-btn-link {
    color: var(--light);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.v-hero-img .v-img-frame {
    position: relative;
    border: 1px solid rgba(197, 160, 89, 0.2);
    padding: 1.5rem;
}

.v-hero-img img {
    width: 100%;
    display: block;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

/* Clients */
.v-clients {
    padding: 4rem 0;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    text-align: center;
}

.v-small-label {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.7rem;
    color: var(--gold);
    margin-bottom: 2rem;
    display: block;
}

.v-client-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    opacity: 0.6;
}

.v-client-grid span {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* Products */
.v-products {
    padding: 10rem 0;
}

.v-sec-header {
    text-align: center;
    margin-bottom: 6rem;
}

.v-sec-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.v-prod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.v-prod-card {
    background: var(--velvet);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(197, 160, 89, 0.05);
}

.v-prod-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.v-prod-img {
    height: 300px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.v-prod-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.v-prod-card:hover img {
    transform: scale(1.1);
}

.v-prod-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.v-prod-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.v-price {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
}

/* Services */
.v-services {
    padding: 10rem 0;
    background: #0d0d0d;
}

.v-services-flex {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.v-services-text {
    flex: 1;
}

.v-service-item {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.v-service-item i {
    font-size: 2rem;
    color: var(--gold);
}

.v-service-item h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.v-services-visual {
    flex: 1;
}

.v-services-visual img {
    width: 100%;
    border-radius: 5px;
}

/* Gallery */
.v-gallery {
    padding: 5rem 0;
}

.v-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.v-gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: grayscale(1);
    transition: var(--transition);
}

.v-gallery-item:hover img {
    filter: grayscale(0);
}

/* Process */
.v-process {
    padding: 10rem 0;
}

.v-step-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 6rem;
    gap: 4rem;
}

.v-step-num {
    display: block;
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    color: transparent;
    -webkit-text-stroke: 1px var(--gold);
    margin-bottom: 1rem;
}

/* Reviews */
.v-reviews {
    padding: 10rem 0;
    background: linear-gradient(to right, #0a0a0a, #1a1a1a);
}

.v-rev-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.v-quote {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 2rem;
    opacity: 0.3;
}

.v-rev-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-style: italic;
    margin-bottom: 2rem;
}

/* Contact */
.v-contact {
    padding: 10rem 0;
}

.v-contact-frame {
    background: var(--velvet);
    padding: 6rem;
    border: 1px solid rgba(197, 160, 89, 0.2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.v-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.v-form input, .v-form textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 1rem 0;
    color: var(--light);
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: var(--transition);
}

.v-form input:focus, .v-form textarea:focus {
    border-color: var(--gold);
}

/* Footer */
.v-footer {
    padding: 6rem 0 2rem;
    background: #050505;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.f-links {
    display: flex;
    gap: 3rem;
}

.f-links a:hover {
    color: var(--gold);
}

/* Benefits */
.v-benefits {
    padding: 10rem 0;
    background: #080808;
}

.v-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.v-benefit-item {
    text-align: center;
}

.v-benefit-item i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.v-benefit-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.v-benefit-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* History */
.v-history {
    padding: 10rem 0;
}

.v-history-flex {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.v-history-visual {
    flex: 1;
}

.v-history-visual img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.v-history-text {
    flex: 1;
}

/* ROI */
.v-roi {
    padding: 10rem 0;
}

.v-roi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-top: 4rem;
}

.v-roi-card {
    background: var(--velvet);
    padding: 4rem;
    border: 1px solid rgba(197, 160, 89, 0.1);
    text-align: left;
}

.v-roi-card h4 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.v-roi-list {
    list-style: none;
}

.v-roi-list li {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
    color: var(--text-muted);
}

.v-roi-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* Footer links hover */
.f-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 2px;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }

@media (max-width: 968px) {
    .v-hero-canvas, .v-services-flex, .v-contact-frame {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .v-menu { display: none; }
    .v-prod-grid, .v-step-grid { grid-template-columns: 1fr; }
    .v-title { font-size: 3rem; }
    .v-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
