:root {
    --color-primary: #C4A49A;
    --color-primary-dark: #A2837A;
    --color-dark: #2d2d2d;
    --color-light: #F9F9F9;
    --color-white: #FFFFFF;
    --color-gray: #777;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    line-height: 1.6;
    background-color: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

p { margin-bottom: 1rem; }
a { color: var(--color-primary); text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.section-padding { padding: 5rem 0; }
.bg-light { background-color: var(--color-light); }
.text-center { text-align: center; }
.section-lead {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: var(--color-gray);
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}
.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}
.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}
.btn-secondary {
    background-color: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
}
.btn-secondary:hover {
    background-color: var(--color-dark);
    color: var(--color-white);
}

.main-header {
    background-color: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.brand-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-dark);
}
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
    font-weight: 600;
    color: var(--color-dark);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}
.nav-toggle { display: none; }

.hero {
    display: flex;
    height: calc(100vh - var(--header-height));
    min-height: 600px;
    position: relative;
    align-items: center;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    background: rgba(255,255,255,0.9);
    max-width: 550px;
    border-radius: 10px;
    margin-left: 2rem;
}
.hero-title {
    font-size: 4rem;
    color: var(--color-dark);
}
.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.card {
    background-color: var(--color-white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.card-body { padding: 1.5rem; }
.card-title { margin-bottom: 0.5rem; }
.card-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--color-primary);
}

.gallery-teaser-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.gallery-teaser-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 5px;
}

.page-header { background: var(--color-light); }
.page-header h1 { font-size: 3.5rem; }

.service-list {
    max-width: 900px;
    margin: 0 auto;
}
.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #ddd;
}
.service-item:last-child { border-bottom: none; }
.service-info h3 { margin-bottom: 0.25rem; font-size: 1.3rem; }
.service-info p { margin-bottom: 0; color: var(--color-gray); }
.service-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
    white-space: nowrap;
    padding-left: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}
.contact-info ul { margin-top: 1rem; }
.contact-info li { margin-bottom: 0.75rem; }
.contact-info h3 { border-bottom: 2px solid var(--color-primary); padding-bottom: 0.5rem; display: inline-block; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 5px rgba(196, 164, 154, 0.5);
}

.main-footer {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 3rem 0;
    text-align: center;
}
.main-footer p { font-size: 0.9rem; margin-bottom: 0.5rem; color: var(--color-gray); }
.footer-social { margin-bottom: 1.5rem; }
.footer-social a {
    color: var(--color-light);
    margin: 0 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}
.footer-social a:hover { color: var(--color-primary); }

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
    .hero-content {
        max-width: 90%;
        text-align: center;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .hero-title { font-size: 3rem; }
    
    .section-padding { padding: 3rem 0; }
    
    .gallery-teaser-grid { grid-template-columns: 1fr 1fr; }
    .gallery-teaser-item:nth-child(n+3) { display: none; }

    .nav-toggle {
        display: block;
        background: transparent;
        border: 0;
        cursor: pointer;
        padding: 0.5rem;
        position: relative;
        z-index: 1001;
    }
    .hamburger {
        display: block;
        position: relative;
        width: 25px;
        height: 3px;
        background: var(--color-dark);
        transition: transform 0.3s ease;
    }
    .hamburger::before,
    .hamburger::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 3px;
        background: var(--color-dark);
        left: 0;
        transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease;
    }
    .hamburger::before { top: -8px; }
    .hamburger::after { bottom: -8px; }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--color-light);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1000;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .main-nav.active { transform: translateX(0); }
    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    .nav-links a { font-size: 1.5rem; }

    .nav-toggle.active .hamburger { transform: rotate(45deg); }
    .nav-toggle.active .hamburger::before { top: 0; transform: rotate(90deg); }
    .nav-toggle.active .hamburger::after { bottom: 0; display: none; }
}

@media (max-width: 480px) {
    .service-item { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .service-price { padding-left: 0; }
}