:root {
    --bg-dark: #070707;
    --bg-card: #111111;
    --accent: #d4af37;
    --accent-bright: #f4d03f;
    --text-main: #f8f8f8;
    --text-muted: #888888;
    --border: rgba(212, 175, 55, 0.15);
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: cubic-bezier(0.23, 1, 0.32, 1);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
}

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

/* Typography */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.eyebrow {
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 0.4em;
    font-size: 0.75rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: block;
}

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

section {
    padding: 140px 0;
    position: relative;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 7, 7, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.25rem 0;
}

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

.logo img {
    height: 42px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.2));
}

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

.nav-links a {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

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

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #000;
}

.hero-video-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

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

.hero-content h1 {
    font-size: clamp(3rem, 10vw, 6.5rem);
    margin-bottom: 3rem;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Buttons */
.btn {
    padding: 1.25rem 3rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: all 0.4s var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
}

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

.btn-primary:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.btn-outline {
    background: transparent;
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.3);
}

.btn-outline:hover {
    box-shadow: inset 0 0 0 1px var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

/* Section Headers */
.section-title {
    margin-bottom: 80px;
}

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

.section-title p {
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--accent);
}

.about-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.about-image img {
    border-radius: 4px;
    filter: grayscale(0.2) contrast(1.1);
    box-shadow: 40px -40px 0 -39px var(--accent);
}

/* Cards */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.why-card {
    background: var(--bg-card);
    padding: 4rem 2.5rem;
    border: 1px solid var(--border);
    transition: all 0.5s var(--transition);
}

.why-card:hover {
    background: #1a1a1a;
    border-color: var(--accent);
    transform: translateY(-10px);
}

.why-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    align-items: flex-start;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 4rem 3rem;
    transition: all 0.5s var(--transition);
}

.price-card.featured {
    background: #1a1a1a;
    border: 1px solid var(--accent);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    transform: scale(1.02);
}

.price-value {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent);
    margin: 2rem 0;
}

.price-features li {
    padding: 1rem 0;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

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

.gallery-item {
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #000;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: all 0.8s var(--transition);
}

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

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 8rem;
}

.contact-info h4 {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    color: var(--accent);
    margin-top: 2.5rem;
}

.contact-info p {
    font-size: 1.5rem;
    font-family: var(--font-display);
}

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

.contact-form input, 
.contact-form textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
    font-size: 1rem;
    border-radius: 0;
    transition: border-color 0.3s ease;
}

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

/* Footer */
footer {
    padding: 100px 0 50px;
    text-align: center;
    border-top: 1px solid var(--border);
}

footer p {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

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

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid, .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }
    .nav-links {
        display: none;
    }
    .price-card.featured {
        transform: none;
    }
    .hero-content h1 {
        font-size: 3.5rem;
    }
}