* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    background: #f4f4f4;
    color: #222;
}

a {
    text-decoration: none;
}

.site-header {
    background: #1b4332;
    color: #fff;
    padding: 8px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.site-brand {
    display: block;
    flex: 0 0 auto;
    width: clamp(250px, 25vw, 300px);
    max-width: 300px;
    padding: 0;
    border-radius: 10px;
    background: #f6f0df;
    overflow: hidden;
    line-height: 0;
}

.site-brand picture {
    display: block;
    width: 100%;
    height: auto;
}

.site-logo {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.nav-links {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    flex-wrap: wrap;
}

.nav-links a {
    position: relative;
    padding: 4px 0;
    color: #fff;
    font-weight: bold;
}

.nav-links a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.nav-links a.is-current::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    border-radius: 2px;
    background: #f6f0df;
}

.site-footer {
    background: #16382b;
    color: #f6f0df;
    padding: 20px;
    margin-top: 40px;
    border-top: 3px solid #2d6a4f;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px 28px;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.footer-brand strong {
    font-size: 18px;
    letter-spacing: 0.02em;
}

.footer-brand span {
    color: #d9dfd4;
    font-size: 12px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 10px 18px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-links a[aria-current="page"] {
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: #b7d2bf;
    text-underline-offset: 4px;
}

@media (max-width: 600px) {
    .site-footer {
        padding: 18px 16px;
        margin-top: 28px;
    }

    .footer-inner,
    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .footer-inner {
        flex-direction: column;
        gap: 14px;
    }

    .footer-links {
        justify-content: center;
        font-size: 14px;
    }
}
 /* Social Icons */
.social-icons {
    display: flex;
    gap: 14px;
    margin-top: 18px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f1f3f2;
    transition: all 0.2s ease;
}

.social-icons a:hover {
    transform: translateY(-2px);
    background: #e2f0ea;
}

.social-icons img {
    width: 26px;
    height: 26px;
}


.map-preview-img {
    width: 100%;
    border-radius: 12px;
    display: block;
    transition: transform 0.2s ease;
}

.map-preview-link:hover .map-preview-img {
    transform: scale(1.02);
}
.contact-email {
    font-size: 13px;
}

.contact-email a {
    color: #1b4332;
    text-decoration: none;
    font-weight: 500;
}

.contact-email a:hover {
    text-decoration: underline;
}

@media (max-width: 700px) {
    .site-header {
        padding: 7px 12px;
    }

    .header-inner {
        gap: 12px;
    }

    .site-brand {
        flex: 0 0 56px;
        width: 56px;
        max-width: 56px;
        height: 56px;
        padding: 0;
        border-radius: 50%;
        overflow: hidden;
    }

    .site-brand picture {
        width: 56px;
        height: 56px;
    }

    .site-logo {
        width: 56px;
        max-width: 56px;
        height: 56px;
        object-fit: cover;
    }

    .nav-links {
        flex: 1 1 auto;
        gap: 5px 8px;
        font-size: 12px;
        line-height: 1.25;
    }

    .contact-email {
        display: none;
    }
}
.contact-box {
    text-align: center;
}

.contact-intro {
    margin: 15px 0;
    font-size: 16px;
    color: #555;
}

.email-box {
    margin: 25px auto;
    padding: 14px 18px;
    background: #2d6a4f;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    display: inline-block;
}

.email-box a {
    color: #fff;
    text-decoration: none;
}

.contact-sub {
    font-size: 14px;
    color: #777;
}
