 /* ========== 1. RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #faf7f5;
    color: #2e2a28;
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
}

/* ========== 2. BUTTONS ========== */
.btn-outline {
    border: 1px solid #b28b7a;
    background: transparent;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 15px;
    color: #3d2c28;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

.btn-outline:hover {
    background: #b28b7a;
    color: #fff;
}

.btn-primary {
    background: #3d2c28;
    border: none;
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-block;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
    background: #5a403a;
}

/* ========== 3. HEADER / NAVIGATION ========== */
header {
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
    padding: 20px 0;
    border-bottom: 1px solid #ede8e4;
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(4px);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.3px;
    color: #3d2c28;
}

.logo span {
    color: #b28b7a;
    font-weight: 300;
}

.nav-links {
    display: flex;
    gap: 32px;
    font-weight: 500;
}

.nav-links a {
    text-decoration: none;
    color: #3d2c28;
    font-size: 16px;
    transition: color 0.2s;
    letter-spacing: 0.2px;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    color: #b28b7a;
}

.nav-links a.active {
    color: #b28b7a;
    border-bottom-color: #b28b7a;
}

/* ========== 4. SECTION TITLES ========== */
.section-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2e2a28;
}

.section-sub {
    color: #6b5d57;
    margin-bottom: 40px;
    font-size: 18px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: #b28b7a;
    margin: 8px 0 24px;
}

/* ========== 5. HOME / HERO ========== */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 0 20px;
}

.hero-content {
    flex: 1 1 45%;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 18px;
    color: #2e2a28;
}

.hero-content h1 i {
    color: #b28b7a;
    font-style: normal;
}

.hero-content p {
    font-size: 18px;
    color: #5a4e4a;
    max-width: 480px;
    margin-bottom: 28px;
}

.hero-image {
    flex: 1 1 45%;
    border-radius: 28px;
    min-height: 400px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-inner {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    padding: 16px 28px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 18px;
    color: #2e2a28;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* ========== 6. SERVICES ========== */
.services-page {
    padding: 40px 0 70px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #ede8e4;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    border-color: #b28b7a;
}

.service-icon {
    font-size: 30px;
    color: #b28b7a;
    margin-bottom: 16px;
    display: block;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-card p {
    color: #5a4e4a;
    font-size: 15px;
}

/* ========== 7. GALLERY ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1/1;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item-video {
    aspect-ratio: 1/1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.gallery-item-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========== 8. PRICING ========== */
.pricing-page {
    padding: 40px 0 70px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.pricing-item {
    background: #ffffff;
    border-radius: 24px;
    padding: 24px 28px;
    border: 1px solid #ede8e4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.pricing-item:hover {
    border-color: #b28b7a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.pricing-name {
    font-weight: 500;
    font-size: 18px;
}

.pricing-price {
    font-weight: 600;
    color: #3d2c28;
    background: #f0e9e4;
    padding: 4px 16px;
    border-radius: 40px;
    font-size: 17px;
}

/* ========== 9. ABOUT ========== */
.about-page {
    padding: 40px 0 70px;
}

.about-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1 1 45%;
}

.about-text p {
    font-size: 18px;
    color: #4a3e3a;
    margin-bottom: 20px;
}

.about-image {
    flex: 1 1 45%;
    border-radius: 28px;
    min-height: 300px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========== 10. CONTACT ========== */
.contact-page {
    padding: 40px 0 70px;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1 1 40%;
}

.contact-info p {
    margin-bottom: 16px;
    font-size: 17px;
    color: #3d2c28;
}

.contact-info i {
    width: 28px;
    color: #b28b7a;
    font-size: 18px;
}

.contact-form {
    flex: 1 1 50%;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    color: #2e2a28;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #d9cfc8;
    border-radius: 30px;
    font-size: 16px;
    background: #ffffff;
    outline: none;
    transition: border 0.2s;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #b28b7a;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
    border-radius: 24px;
}

/* ========== 11. FOOTER ========== */
footer {
    background: #2e2a28;
    color: #d6ccc6;
    padding: 40px 0;
    margin-top: 20px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-size: 22px;
    font-weight: 500;
    color: #f0e9e4;
}

.footer-logo span {
    color: #b28b7a;
}

.footer-social a {
    color: #d6ccc6;
    margin-left: 24px;
    font-size: 20px;
    transition: color 0.2s;
    text-decoration: none;
}

.footer-social a:hover {
    color: #b28b7a;
}

.footer-copy {
    margin-top: 24px;
    width: 100%;
    text-align: center;
    font-size: 15px;
    border-top: 1px solid #4a3e3a;
    padding-top: 24px;
    color: #a09088;
}

/* ========== 12. RESPONSIVE ========== */
@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        gap: 16px;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }
    .hero-content h1 {
        font-size: 34px;
    }
    .section-title {
        font-size: 28px;
    }
    .pricing-item {
        flex-wrap: wrap;
        gap: 8px;
    }
    .about-wrapper {
        flex-direction: column;
    }
    .contact-grid {
        flex-direction: column;
    }
    .btn-outline {
        padding: 8px 18px;
        font-size: 14px;
    }
    .hero {
        padding: 20px 0;
    }
    .hero-image {
        min-height: 280px;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
}