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

:root {
    --gold: #C5A572;
    --dark: #1a1a1a;
    --light: #f5f5f5;
    --accent: #2a2a2a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--light);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.03;
    pointer-events: none;
}

.bg-shape {
    position: absolute;
    border: 1px solid var(--gold);
    animation: float 20s ease-in-out infinite;
}

.bg-shape:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    border-radius: 50%;
    animation-delay: 0s;
}

.bg-shape:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    transform: rotate(45deg);
    animation-delay: 3s;
}

.bg-shape:nth-child(3) {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 50%;
    border-radius: 30%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(5deg); }
    66% { transform: translateY(20px) rotate(-5deg); }
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 60px;
    background: rgba(245, 245, 245, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(197, 165, 114, 0.2);
    animation: slideDown 0.8s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-small {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    letter-spacing: 1px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 120px 40px 80px;
    text-align: center;
}

.hero-logo {
    max-width: 500px;
    width: 90%;
    margin-bottom: 60px;
    animation: fadeInScale 1.2s ease;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.1));
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-text {
    max-width: 800px;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-text h1 {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 300;
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.hero-text p {
    font-size: clamp(16px, 2vw, 20px);
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: var(--dark);
    color: var(--light);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 600;
    border: 2px solid var(--dark);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.cta-button:hover {
    color: var(--dark);
    border-color: var(--gold);
}

.cta-button:hover::before {
    left: 0;
}

/* Section Styling */
section {
    position: relative;
    z-index: 1;
    padding: 120px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-subtitle {
    font-size: 18px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.2s;
}

.section-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.service-card {
    padding: 50px 40px;
    background: white;
    border: 1px solid rgba(197, 165, 114, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.service-icon {
    width: 60px;
    height: 60px;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 24px;
    color: var(--gold);
    transition: all 0.4s;
}

.service-card:hover .service-icon {
    background: var(--gold);
    color: white;
    transform: rotate(5deg);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: 1px;
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

/* About Section */
.about {
    background: white;
    border-top: 1px solid rgba(197, 165, 114, 0.2);
    border-bottom: 1px solid rgba(197, 165, 114, 0.2);
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 20px;
    line-height: 2;
    color: #666;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.about-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-content strong {
    color: var(--dark);
    font-weight: 600;
}

/* Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    margin-top: 80px;
    text-align: center;
}

.stat {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.stat.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: 48px;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: #999;
}

/* Contact Section */
.contact-info {
    max-width: 600px;
    margin: 60px auto 0;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.contact-info.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-detail {
    margin: 30px 0;
    padding: 30px;
    background: white;
    border: 1px solid rgba(197, 165, 114, 0.2);
    transition: all 0.3s;
}

.contact-detail:hover {
    border-color: var(--gold);
    transform: translateX(10px);
}

.contact-label {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 11px;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-value {
    font-size: 18px;
    color: var(--dark);
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--light);
    padding: 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

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

.footer-text {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-legal {
    font-size: 11px;
    color: #999;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

    nav {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    section {
        padding: 80px 30px;
    }

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

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

/* Cursor Effect (subtle) */
@media (hover: hover) {
    body {
        cursor: default;
    }

    a, button, .service-card {
        cursor: pointer;
    }
}
