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

body {
    font-family: Arial, sans-serif;
    color: #2b2b2b;
    background: #f7f7f7;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

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

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e6e6e6;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    text-decoration: none;
    font-size: 30px;
    font-weight: 800;
    color: #1f2d3d;
}

.logo span {
    color: #d46a3a;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 24px;
}

.nav-menu a {
    text-decoration: none;
    color: #1f2d3d;
    font-weight: 700;
    transition: 0.3s;
}

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

.hero {
    min-height: 78vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(31,45,61,0.72), rgba(31,45,61,0.65)), url('photos/hero.jpg') center/cover no-repeat;
    color: white;
}

.hero-content {
    max-width: 720px;
    padding: 80px 0;
}

.hero h1 {
    font-size: 54px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #f1f1f1;
}

.btn,
.btn-outline {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    margin-right: 10px;
    margin-bottom: 10px;
}

.btn {
    background: #d46a3a;
    color: white;
}

.btn:hover {
    background: #b85528;
}

.btn-outline {
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: #1f2d3d;
}

.section {
    padding: 80px 0;
}

.section-white {
    background: white;
}

.section-light {
    background: #f3f5f7;
}

.section-dark {
    background: #1f2d3d;
    color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: #1f2d3d;
    margin-bottom: 10px;
}

.section-dark .section-title h2 {
    color: white;
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

.section-dark .section-title p {
    color: #d8dde3;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    align-items: center;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-4px);
}

.card h3 {
    margin-bottom: 12px;
    color: #1f2d3d;
}

.icon {
    font-size: 34px;
    margin-bottom: 15px;
}

.image-box img {
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.10);
}

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

.gallery-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.gallery-item .caption {
    padding: 18px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
}

.contact-box,
.form-box {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.contact-box h3,
.form-box h3 {
    margin-bottom: 18px;
    color: #1f2d3d;
}

form input,
form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #d6d6d6;
    border-radius: 6px;
    font-family: inherit;
    font-size: 15px;
}

form textarea {
    min-height: 150px;
    resize: vertical;
}

.cta-box {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #d8dde3;
}

.site-footer {
    background: #16212d;
    color: white;
    padding-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-bottom: 30px;
}

.site-footer h4 {
    margin-bottom: 12px;
    color: #ffffff;
}

.site-footer p,
.site-footer a {
    color: #d0d6dd;
    text-decoration: none;
    margin-bottom: 6px;
    display: block;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 18px 0;
    font-size: 14px;
    color: #b9c2cb;
}

@media (max-width: 900px) {
    .grid-3,
    .grid-2,
    .gallery,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .nav-wrapper {
        flex-direction: column;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero {
        min-height: auto;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 18px;
    }

    .section-title h2,
    .cta-box h2 {
        font-size: 30px;
    }
}