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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: background 0.3s ease;
}

nav.scrolled {
    background: rgba(0, 0, 0, 0.95);
}

.logo {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 50px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

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

.hero h1 {
    font-size: clamp(32px, 8vw, 120px);
    font-weight: 300;
    letter-spacing: 8px;
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.hero h1 .line-1 {
    display: block;
    margin-bottom: 20px;
}

.hero h1 .line-2 {
    display: block;
    font-weight: 200;
    letter-spacing: 12px;
}

.hero-subtitle {
    font-size: clamp(14px, 2vw, 24px);
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 50px;
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 150px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.about h2 {
    font-size: clamp(24px, 4vw, 48px);
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 60px;
    text-align: center;
}

.about-content {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.8;
    font-weight: 300;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    letter-spacing: 0.5px;
}

.about-content p {
    margin-bottom: 30px;
}

/* Services Section */
.services {
    padding: 150px 50px;
    background: rgba(139, 69, 19, 0.05);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services h2 {
    font-size: clamp(24px, 4vw, 48px);
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 80px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.service-item {
    text-align: center;
}

.service-item h3 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.service-item p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

/* Policy Section */
.policy {
    padding: 150px 50px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.policy h2 {
    font-size: clamp(24px, 4vw, 48px);
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.policy-content {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.8;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.policy-content p {
    margin-bottom: 30px;
}

/* Contact Section */
.contact {
    padding: 150px 50px;
    background: rgba(139, 69, 19, 0.05);
    text-align: center;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact h2 {
    font-size: clamp(24px, 4vw, 48px);
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-group-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 10px;
}

.contact-group-content {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.8;
}

.contact-group-content.address {
    font-style: normal;
}

.contact-group-content a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contact-group-content a:hover {
    opacity: 0.7;
}

.email-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Footer */
footer {
    padding: 60px 50px 40px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.copyright {
    font-size: 12px;
    opacity: 0.5;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        padding: 20px 30px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 12px;
    }

    .hero {
        padding: 0 30px;
    }

    .about,
    .services,
    .policy,
    .contact {
        padding: 100px 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

