/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ebe7e0;
    color: #2a2a2a;
    line-height: 1.6;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(235, 231, 224, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(106, 106, 106, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2a2a2a;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #c9b896;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
}

.hero-content {
    max-width: 800px;
}

.hero-logo {
    width: 120px;
    height: auto;
    margin-bottom: 2rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #6a6a6a;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: #2a2a2a;
    color: #ebe7e0;
}

.btn-primary:hover {
    background: #c9b896;
    color: #2a2a2a;
}

.btn-secondary {
    background: transparent;
    color: #2a2a2a;
    border: 2px solid #2a2a2a;
}

.btn-secondary:hover {
    background: #2a2a2a;
    color: #ebe7e0;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-gray {
    background-color: #f5f2ed;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2a2a2a;
    text-align: center;
    margin-bottom: 3rem;
}

.section-description {
    text-align: center;
    font-size: 1.125rem;
    color: #6a6a6a;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #6a6a6a;
    text-align: center;
    margin-bottom: 3rem;
}

/* About Content */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.about-content p {
    margin-bottom: 1.5rem;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(235, 231, 224, 0.95);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #2a2a2a;
    margin-bottom: 0.5rem;
}

.gallery-caption p {
    font-size: 0.95rem;
    color: #6a6a6a;
}

/* Logo Section */
.logo-section {
    margin-bottom: 4rem;
}

.logo-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6a6a6a;
    text-align: center;
    margin-bottom: 2rem;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.logo-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(106, 106, 106, 0.1);
    padding: 2rem;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #4a4a4a;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    color: #c9b896;
    border-color: rgba(201, 184, 150, 0.3);
}

.logo-card.featured {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.result-card {
    background: rgba(255, 255, 255, 0.6);
    padding: 3rem 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
}

.result-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #c9b896;
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 1rem;
    color: #6a6a6a;
    font-weight: 500;
}

/* Industries Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.industry-card {
    background: rgba(255, 255, 255, 0.6);
    padding: 2rem;
    text-align: center;
    font-weight: 500;
    color: #4a4a4a;
    transition: all 0.3s ease;
}

.industry-card:hover {
    background: rgba(201, 184, 150, 0.2);
    color: #2a2a2a;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.6);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #2a2a2a;
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.95rem;
    color: #6a6a6a;
}

/* Contact Section */
.contact-container {
    text-align: center;
}

.contact-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.accent {
    font-style: italic;
    color: #c9b896;
}

.contact-info {
    margin-top: 2rem;
}

.contact-email {
    font-size: 1.25rem;
    color: #2a2a2a;
    text-decoration: none;
    border-bottom: 2px solid #c9b896;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: #c9b896;
}

/* Footer */
.footer {
    background: #2a2a2a;
    color: #ebe7e0;
    padding: 2rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.875rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-logo {
        width: 80px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }
    
    .logo-grid,
    .results-grid,
    .industries-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    body {
        padding-top: 60px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 4rem 1rem 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
}