* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #2c2418;
    line-height: 1.5;
    background-color: #fefaf5;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    background: rgba(255, 250, 245, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #c47a4a, #8b5a2b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #3a2a1f;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #c47a4a;
}

/* Hero */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #fff0e6 0%, #fce4d4 100%);
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c2418;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 32px;
    color: #5a4a38;
}

.btn {
    display: inline-block;
    background: #c47a4a;
    color: white;
    text-decoration: none;
    padding: 14px 36px;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #a55d30;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Gallery */
.gallery {
    padding: 100px 0;
}

h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: #8b7355;
    margin-bottom: 56px;
    font-size: 1.1rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

.card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-img {
    height: 280px;
    background-size: cover;
    background-position: center;
}

.card h3 {
    font-size: 1.5rem;
    padding: 20px 20px 8px;
}

.card p {
    padding: 0 20px;
    color: #6b5a48;
    font-size: 0.95rem;
}

.price {
    display: block;
    padding: 16px 20px 24px;
    font-weight: 700;
    color: #c47a4a;
    font-size: 1.2rem;
}

/* About */
.about {
    background: #fff3ea;
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    text-align: left;
}

.about-text p {
    margin-bottom: 20px;
    color: #4a3a2a;
}

.about-text ul {
    list-style: none;
    margin-top: 24px;
}

.about-text li {
    margin-bottom: 12px;
    font-size: 1rem;
}

.about-img-inner {
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 32px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Contact */
.contact {
    padding: 100px 0;
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.contact-item {
    text-align: center;
    background: white;
    padding: 32px;
    border-radius: 32px;
    min-width: 200px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid #f0e4d8;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.contact-item h3 {
    margin-bottom: 8px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 32px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 24px;
    font-size: 1.8rem;
}

input, textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid #e2d4c8;
    border-radius: 16px;
    font-family: inherit;
    background: #fefaf7;
    transition: 0.2s;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #c47a4a;
    box-shadow: 0 0 0 3px rgba(196,122,74,0.1);
}

textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
}

/* Footer */
footer {
    background: #2c2418;
    color: #d4c4b0;
    padding: 48px 0;
    text-align: center;
}

.social-links {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 24px;
}

.social-links a {
    color: #d4c4b0;
    text-decoration: none;
    transition: color 0.2s;
}

.social-links a:hover {
    color: #c47a4a;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .cards-grid {
        gap: 24px;
    }
    
    .contact-cards {
        gap: 20px;
    }
}