/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: 'Arimo', sans-serif;
    color: #282932;
    background-color: #f2f1df;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Section Titles ===== */
.section-title {
    font-size: 2.2rem;
    color: #583622;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: 0.5px;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(242, 241, 223, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #dddbbb;
    transition: box-shadow 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 2px 12px rgba(88, 54, 34, 0.1);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.nav-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #583622;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #505050;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #8b5036;
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: #583622;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #583622;
    transition: transform 0.3s, opacity 0.3s;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #583622 0%, #8b5036 50%, #583622 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(221, 219, 187, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 80, 54, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(242, 241, 223, 0.08) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(40, 41, 50, 0.2);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 24px;
}

.hero-subtitle {
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #dddbbb;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 4rem;
    color: #f2f1df;
    margin-bottom: 24px;
    letter-spacing: 2px;
    line-height: 1.1;
}

.hero-text {
    font-size: 1.15rem;
    color: #d1cfad;
    max-width: 540px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #f2f1df;
    color: #583622;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s, transform 0.2s;
}

.hero-btn:hover {
    background: #dddbbb;
    transform: translateY(-2px);
}

/* ===== About ===== */
.about {
    padding: 96px 0;
    background: #f2f1df;
}

.about-content {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.05rem;
    color: #505050;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* ===== Services ===== */
.services {
    padding: 96px 0;
    background: #dddbbb;
}

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

.service-card {
    background: #f2f1df;
    padding: 40px 32px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(88, 54, 34, 0.12);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: #8b5036;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.1rem;
    color: #583622;
    margin-bottom: 12px;
    line-height: 1.4;
}

.service-card p {
    font-size: 0.95rem;
    color: #505050;
    line-height: 1.7;
}

/* ===== Gallery ===== */
.gallery {
    padding: 96px 0;
    background: #f2f1df;
}

.gallery-note {
    text-align: center;
    color: #505050;
    margin-top: -32px;
    margin-bottom: 48px;
    font-size: 1.05rem;
}

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

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

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

/* ===== Contact ===== */
.contact {
    padding: 96px 0;
    background: #dddbbb;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.contact-card {
    background: #f2f1df;
    padding: 40px 28px;
    border-radius: 8px;
    text-align: center;
}

.contact-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 16px;
    color: #8b5036;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-card h3 {
    font-size: 1rem;
    color: #583622;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-card a,
.contact-card p {
    font-size: 0.95rem;
    color: #505050;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: #8b5036;
}

/* ===== Footer ===== */
.footer {
    background: #583622;
    color: #d1cfad;
    text-align: center;
    padding: 28px 24px;
    font-size: 0.9rem;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 64px;
        left: 0;
        width: 100%;
        background: rgba(242, 241, 223, 0.98);
        backdrop-filter: blur(8px);
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s, padding 0.3s;
        border-bottom: 1px solid #dddbbb;
    }

    .nav-menu.open {
        max-height: 300px;
        padding: 16px 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 12px 24px;
        font-size: 1rem;
    }

    .nav-menu a::after {
        display: none;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 36px;
    }

    .about,
    .services,
    .gallery,
    .contact {
        padding: 64px 0;
    }

    .services-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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