:root {
    --primary: #000000;
    --secondary: #ffffff;
    --accent: #c5a059;
    --accent-dark: #8e6d31;
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --bg-light: #ffffff;
    --bg-dark: #0a0a0a;
    --bg-alt: #fcfaf7;
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Playfair Display', serif;
    --container-width: 1300px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-soft: 0 20px 40px rgba(0,0,0,0.06);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

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

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

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: saturate(180%) blur(15px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 0.75rem 0;
}

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

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

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

.nav-links a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
}

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

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

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

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

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

.hero p {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 3rem;
    font-style: italic;
    opacity: 0.9;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    padding: 1.1rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent);
    color: white;
    border: 1px solid var(--accent);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-3px);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.5);
    color: white;
    background: transparent;
}

.btn-outline:hover {
    border-color: white;
    background: white;
    color: black;
    transform: translateY(-3px);
}

/* Sections */
section {
    padding: 8rem 0;
}

.section-title {
    margin-bottom: 4rem;
}

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

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.about-image img {
    border-radius: 0;
    box-shadow: 40px 40px 0px var(--bg-alt);
    transition: var(--transition);
}

.about-image:hover img {
    transform: translate(-10px, -10px);
    box-shadow: 50px 50px 0px var(--accent);
}

/* Features Section */
.features {
    background: var(--bg-alt);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.feature-card {
    background: white;
    padding: 3.5rem 2.5rem;
    border-radius: 0;
    box-shadow: var(--shadow-soft);
    border-top: 4px solid transparent;
}

.feature-card:hover {
    border-top-color: var(--accent);
    transform: translateY(-15px);
}

.feature-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary);
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 3rem;
}

.price-card {
    padding: 4rem 3rem;
    border: 1px solid #eaeaea;
    background: white;
    transition: var(--transition);
}

.price-card.featured {
    border: 1px solid var(--accent);
    background: #fff;
    box-shadow: 0 30px 60px rgba(197, 160, 89, 0.15);
    transform: scale(1.05);
    z-index: 2;
}

.price-card .price {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--accent-dark);
    margin: 2rem 0;
}

.price-card ul {
    margin: 2.5rem 0;
}

.price-card li {
    padding: 0.85rem 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.price-card li::before {
    content: '—';
    color: var(--accent);
    margin-right: 12px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 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.9;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

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

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

.contact .section-title h2 {
    color: white;
}

.contact-container {
    max-width: 700px;
    background: rgba(255,255,255,0.03);
    padding: 4rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.form-group label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    color: var(--accent);
}

.form-group input, .form-group textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    border-radius: 0;
    color: white;
    padding: 1rem 0;
    font-size: 1.1rem;
}

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

/* Footer */
footer {
    background: #000;
    color: white;
    padding: 6rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 4rem;
}

.footer-info h3 {
    font-size: 2rem;
    color: var(--accent);
}

.footer-contact h4, .footer-social h4 {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    color: #888;
}

.footer-bottom {
    padding-top: 3rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .price-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        padding: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}