:root {
    --primary-color: #1a1a1a;
    --accent-color: #c5a059; /* Sophisticated Gold/Brass */
    --text-color: #333333;
    --light-gray: #f9f9f9;
    --medium-gray: #e0e0e0;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

/* Header */
.header {
    background-color: var(--white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--medium-gray);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: -0.5px;
}

.nav-simple {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    font-weight: 600;
}

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    background: url('hero-image.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Intro Section */
.intro {
    padding: 8rem 0;
    background-color: var(--white);
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.intro-text p {
    font-size: 1.15rem;
    color: #555;
}

/* Services */
.services {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
}

.section-header p {
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

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

.service-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.service-icon {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: rgba(197, 160, 89, 0.2);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Gallery */
.gallery {
    padding: 8rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item .overlay span {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 5px;
}

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

.gallery-item:hover .overlay {
    opacity: 1;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.contact-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-card h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 4rem;
    line-height: 1.3;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: left;
    gap: 3rem;
}

.detail-group strong {
    display: block;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.detail-group p {
    font-size: 1.1rem;
    opacity: 0.8;
}

.phone-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

/* Footer */
.footer {
    padding: 3rem 0;
    background-color: #111;
    color: #888;
    font-size: 0.9rem;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 2rem;
}

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

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

/* Responsive */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-details {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .intro-text h2 {
        font-size: 2.2rem;
    }

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