* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #faf7f2;
    color: #6b4c35;
    line-height: 1.6;
}

header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    padding: 15px 5%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #6b4c35;
    font-weight: bold;
}

nav a:hover {
    color: #e8b9b1;
}

.hero {
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.btn {
    display: inline-block;
    background: #e8b9b1;
    color: white;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: bold;
}

.btn:hover {
    background: #d9a69d;
}

.section {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 25px;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 3px 12px rgba(0,0,0,.08);
    text-align: center;
}

.card h3 {
    margin-bottom: 10px;
}

.price {
    font-size: 2rem;
    color: #e8b9b1;
    margin: 15px 0;
}

footer {
    background: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 3px 12px rgba(0,0,0,.08);
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.03);
}

.social-box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0,0,0,.08);
}

.social-box h2 {
    margin-bottom: 15px;
    color: #6b4c35;
}

.social-box p {
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links a {
    background: #e8b9b1;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
}

.social-links a:hover {
    background: #d9a69d;
    transform: translateY(-2px);
}

.inquiry-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 3px 12px rgba(0,0,0,.08);
}

.inquiry-form h2 {
    text-align: center;
    margin-bottom: 25px;
}

.inquiry-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: #e8b9b1;
}

.inquiry-form button {
    margin-top: 10px;
    border: none;
    cursor: pointer;
}

footer a {
    color: #e8b9b1;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}