:root {
    --primary: #ffffff;
    --secondary: #000000;
    --accent: #d4af37;
    --accent-glow: rgba(212, 175, 55, 0.3);
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-light: #f4f4f4;
    --text-main: #ffffff;
    --text-muted: #999999;
    --text-dark: #1a1a1a;
    --nav-height: 90px;
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    display: flex;    align-items: center;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.7);
}

.nav-links a:hover {
    color: var(--accent);
    text-shadow: 0 0 15px var(--accent-glow);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #000;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.6;
    filter: saturate(1.2) contrast(1.1);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-content h1 {
    font-size: clamp(3rem, 10vw, 6.5rem);
    margin-bottom: 0.5rem;
    letter-spacing: -0.04em;
    background: linear-gradient(to bottom, #fff 40%, #999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.75rem);
    color: var(--accent);
    margin-bottom: 3rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    animation: fadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1.4s cubic-bezier(0.23, 1, 0.32, 1) both;
}

/* Buttons */
.btn {
    padding: 1.25rem 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: 1px solid var(--accent);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.75rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent);
    color: var(--secondary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
}

.btn-outline {
    background: rgba(255,255,255,0.05);
    color: var(--primary);
    border-color: rgba(255,255,255,0.3);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
}

/* Sections */
section {
    padding: 140px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.section-title h2 em {
    font-style: italic;
    color: var(--accent);
    font-family: serif;
    text-transform: lowercase;
}

.section-title h2 em.script-font {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    text-transform: none;
    font-weight: 700;
    letter-spacing: 0;
}

/* About Section */
.about-section {
    background: linear-gradient(to bottom, #0a0a0a, #111);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--accent);
    letter-spacing: 0.05em;
}

.about-text p {
    margin-bottom: 2rem;
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 4px;
    filter: grayscale(0.2) contrast(1.1);
    transition: var(--transition);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    bottom: -20px;
    left: 20px;
    border: 1px solid var(--accent);
    z-index: -1;
    transition: var(--transition);
}

.about-image:hover img {
    transform: translate(-10px, -10px);
    filter: grayscale(0);
}

/* Why Choose Us */
.why-us {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

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

.feature-card {
    background: white;
    padding: 3rem 1.5rem;
    border-radius: 2px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
    transition: var(--transition);
    border-top: 4px solid transparent;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-15px);
    border-top-color: var(--accent);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.feature-card h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    letter-spacing: 0.1em;
}

.feature-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Pricing */
.pricing-section {
    background: #000;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 4rem 3rem;
    text-align: center;
    transition: var(--transition);
}

.price-card:hover {
    border-color: var(--accent);
    background: #1a1a1a;
}

.price-card.featured {
    border: 1px solid var(--accent);
    background: #1a1a1a;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.1);
}

.price-card h5 {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.price-value {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 3rem;
    letter-spacing: -0.05em;
}

.price-features {
    margin-bottom: 3.5rem;
    text-align: left;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
}

.price-features li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;    gap: 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.price-features li::before {
    content: '→';
    color: var(--accent);
    font-weight: bold;
}

/* Gallery */
.gallery-section {
    padding-bottom: 0;
}

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

.gallery-item {
    height: 450px;
    overflow: hidden;
    background: #000;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
    opacity: 1;
}

/* Contact Form */
.contact-section {
    background: var(--bg-light);
    color: var(--text-dark);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 8rem;
}

.contact-info h4 {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    color: var(--accent);
}

.contact-info p {
    margin-bottom: 3rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-info a:hover {
    color: var(--accent);
    padding-left: 10px;
}

.contact-form {
    background: white;
    padding: 4rem;
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.7rem;
    margin-bottom: 0.75rem;
    color: #999;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1.25rem 0;
    border: none;
    border-bottom: 1px solid #eee;
    background: transparent;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--accent);
}

/* Footer */
footer {
    padding: 8rem 0 4rem;
    background: #000;
    text-align: center;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.social-links a {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

.social-links a:hover {
    color: var(--accent);
}

.copyright {
    color: #333;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-grid, .contact-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }    .about-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }    .contact-form {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }    .hero-btns {
        flex-direction: column;
        padding: 0 2rem;
    }    .section-title {
        margin-bottom: 3rem;
    }    section {
        padding: 80px 0;
    }    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
}