:root {
    --ink: #1a1816;
    --stone: #b8b1a9;
    --sand: #e7e1d9;
    --dark-sand: #d4cfc7;
    --accent: #8b7355;
    --deep-dark: #0f0e0d;
    --light: #f5f2ed;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--sand);
    background-color: var(--deep-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 14, 13, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(184, 177, 169, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.ax-mark {
    color: var(--accent);
    font-style: italic;
    font-size: 1.8rem;
}

.logo-text {
    color: var(--sand);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--stone);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--sand);
}

.nav-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--sand);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--deep-dark) 0%, #2a2520 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(139, 115, 85, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(184, 177, 169, 0.05) 0%, transparent 50%);
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-subtitle {
    display: block;
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    color: var(--sand);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-tagline {
    font-size: 1.3rem;
    color: var(--stone);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.3);
}

.cta-button:hover {
    background: #a08568;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 115, 85, 0.4);
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 0;
    background: var(--ink);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: var(--sand);
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 1rem auto 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    grid-auto-flow: dense;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item.tall {
    aspect-ratio: 3/5;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--sand);
    font-weight: 600;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--deep-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h3 {
    color: var(--accent);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.about-content p {
    color: var(--stone);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.services-list {
    list-style: none;
    color: var(--stone);
}

.services-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.services-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.tag {
    padding: 0.5rem 1.25rem;
    background: rgba(139, 115, 85, 0.2);
    border: 1px solid var(--accent);
    color: var(--sand);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--accent);
    color: var(--light);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.4);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--ink);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    color: var(--accent);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--stone);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.contact-item .icon {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.contact-item a {
    color: var(--sand);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent);
}

.process {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(139, 115, 85, 0.1);
    border-left: 4px solid var(--accent);
    border-radius: 8px;
}

.process h4 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.process ol {
    color: var(--stone);
    padding-left: 1.5rem;
}

.process li {
    margin: 0.75rem 0;
    font-size: 1.05rem;
}

/* Contact Form */
.contact-form {
    background: rgba(26, 24, 22, 0.5);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(184, 177, 169, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--sand);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    background: rgba(231, 225, 217, 0.05);
    border: 1px solid rgba(184, 177, 169, 0.2);
    border-radius: 4px;
    color: var(--sand);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(231, 225, 217, 0.08);
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: var(--accent);
    color: var(--light);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #a08568;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 115, 85, 0.3);
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: var(--deep-dark);
    border-top: 1px solid rgba(184, 177, 169, 0.1);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: baseline;
    gap: 0.5rem;
}

.footer p {
    color: var(--stone);
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(15, 14, 13, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .gallery-item.tall {
        grid-row: span 1;
        aspect-ratio: 4/3;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .about-badge {
        position: static;
        display: inline-block;
        margin-top: 1rem;
    }
}

/* Video Tile */
.video-tile {
    position: relative;
    cursor: pointer;
}

.video-tile a {
    display: block;
    position: relative;
    text-decoration: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 2;
    transition: background 0.3s ease;
}

.video-tile:hover .video-overlay {
    background: rgba(0, 0, 0, 0.75);
}

.play-icon {
    width: 80px;
    height: 80px;
    color: var(--sand);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease, color 0.3s ease;
}

.video-tile:hover .play-icon {
    transform: scale(1.1);
    color: var(--accent);
}

.video-label {
    color: var(--sand);
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* Video Item in Gallery */
.video-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.video-item video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--deep-dark);
    transition: transform 0.5s ease;
}

.video-item:hover video {
    transform: scale(1.05);
}

.video-item .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--sand);
    font-weight: 600;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.video-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Video Lightbox */
.video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.video-lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
}

.video-lightbox video {
    width: 100%;
    height: auto;
    max-height: 90vh;
    border-radius: 8px;
}

.video-lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    font-size: 40px;
    color: var(--sand);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    line-height: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

.video-lightbox-close:hover {
    color: var(--accent);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .video-lightbox-content {
        width: 95%;
    }
    
    .video-lightbox-close {
        top: -40px;
        font-size: 32px;
    }
}