/* RESET & BASELINE */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}
body {
    line-height: 1.6;
    background: #F5F8F6;
    color: #204D3B;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    min-height: 100vh;
    scroll-behavior: smooth;
}
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
}
:focus-visible {
    outline: 2px solid #A8753B;
    outline-offset: 2px;
}

/* BRAND TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', 'Roboto', Arial, sans-serif;
    letter-spacing: 0.01em;
    font-weight: 700;
}
h1 { font-size: 2.8rem; color: #204D3B; margin-bottom: 18px; line-height: 1.16; }
h2 { font-size: 2rem; color: #A8753B; margin-bottom: 16px; }
h3 { font-size: 1.25rem; color: #204D3B; margin-bottom: 10px; }
p, li { font-size: 1rem; color: #204D3B; }
p { margin-bottom: 1.2em; }
strong { color: #A8753B; font-weight: 700; }

/* LAYOUT STRUCTURE */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.content-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 2px 12px rgba(32,77,59,0.08);
}

/* HERO STYLES */
.hero {
    background: linear-gradient(105deg, #F5F8F6 63%, #A8753B 120%);
    border-bottom: 3px solid #204D3B;
    padding: 0;
    margin-bottom: 54px;
}
.hero .container {
    padding-top: 64px;
    padding-bottom: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero .content-wrapper {
    align-items: flex-start;
    background: rgba(255,255,255,0.82);
    padding: 36px 28px;
    border-radius: 28px 8px 28px 8px;
    box-shadow: 0 6px 28px rgba(32,77,59,0.12);
    gap: 28px;
}
.hero h1 {
    color: #204D3B;
    font-size: 2.4rem;
    font-family: 'Oswald', Arial, sans-serif;
    letter-spacing: 0.01em;
    margin-bottom: 14px;
}
.hero p {
    color: #204D3B;
    font-size: 1.16rem;
    margin-bottom: 22px;
}

/* NAV HEADER */
header {
    width: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    box-shadow: 0 2px 10px rgba(32,77,59,0.06);
    position: sticky;
    top: 0;
    z-index: 95;
}
header a img { height: 40px; }
header nav {
    display: flex;
    align-items: center;
    gap: 26px;
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
}
header nav a {
    color: #204D3B;
    transition: color 0.18s;
    position: relative;
    padding: 4px 8px;
    border-radius: 5px;
}
header nav a:hover, header nav a:focus {
    background: #A8753B;
    color: #fff;
    transition: background 0.2s, color 0.2s;
}
header .cta-button {
    background: #A8753B;
    color: #fff;
    padding: 12px 32px;
    border-radius: 18px 3px 18px 3px;
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 1.16rem;
    font-weight: 700;
    box-shadow: 0 2px 12px rgba(168,117,59,0.17);
    margin-left: 28px;
    letter-spacing: 0.02em;
    border: none;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
    position: relative;
    z-index: 2;
}
header .cta-button:hover,
header .cta-button:focus {
    background: #204D3B;
    color: #fff;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 4px 22px #A8753B22;
}
.mobile-menu-toggle {
    display: none;
    background: #A8753B;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 18px;
    transition: background 0.18s, transform 0.16s;
}
.mobile-menu-toggle:active { background: #204D3B; }

/* MOBILE MENU OVERLAY */
.mobile-menu {
    position: fixed;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: #204D3Bdd;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.5, 1, 0.89, 1), opacity 0.23s, visibility 0s linear 0.32s;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.mobile-menu.active {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0s, 0s, 0s;
}
.mobile-menu-close {
    margin-top: 30px;
    margin-left: auto;
    margin-right: 34px;
    background: transparent;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    margin: 48px 0 0 0;
    gap: 30px;
    align-items: center;
}
.mobile-nav a {
    color: #fff;
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 1.4rem;
    padding: 10px 34px;
    border-radius: 14px;
    background: transparent;
    transition: background 0.18s, color 0.18s, transform 0.16s;
    display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: #A8753B;
    color: #fff;
    transform: translateY(-1px) scale(1.04);
}

/* FEATURES & CARDS */
.features {
    margin-bottom: 60px;
    padding: 40px 20px;
    border-radius: 24px;
    background: #fcfbf9;
    box-shadow: 0 2px 12px rgba(32,77,59,0.05);
}
.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: space-between;
}
.feature-grid > div {
    flex: 1 1 220px;
    min-width: 220px;
    max-width: 300px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    border-radius: 18px 3px 18px 3px;
    box-shadow: 0 2px 10px rgba(32,77,59,0.06);
    padding: 22px 18px 24px 18px;
    margin-bottom: 20px;
    position: relative;
    transition: box-shadow 0.18s, transform 0.14s;
}
.feature-grid > div:hover {
    box-shadow: 0 8px 34px rgba(168,117,59,0.18);
    transform: translateY(-3px) scale(1.03);
}
.feature-grid img {
    height: 48px;
    width: 48px;
}
.feature-grid h3 {
    color: #A8753B;
}

/* SERVICES (SERVICE CARDS) */
.services {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: #fffdfa;
    border-radius: 22px;
}
.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
}
.service-cards > div {
    flex: 1 1 180px;
    min-width: 180px;
    max-width: 280px;
    background: #fcfbf6;
    border-radius: 22px 8px 22px 8px;
    box-shadow: 0 2px 12px rgba(32,77,59,0.07);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    padding: 18px 16px 20px 16px;
    transition: box-shadow 0.18s, transform 0.14s;
}
.service-cards > div:hover {
    box-shadow: 0 7px 28px rgba(32,77,59,0.09);
    transform: translateY(-3px) scale(1.03);
}
.service-cards h3 {
    color: #204D3B;
    margin-bottom: 5px;
}
.service-cards a {
    font-family: 'Oswald', Arial, sans-serif;
    background: #204D3B;
    color: #fff;
    padding: 7px 18px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 8px;
    transition: background 0.18s, color 0.18s, transform 0.1s;
}
.service-cards a:hover,
.service-cards a:focus {
    background: #A8753B;
    color: #fff;
    transform: scale(1.06);
}

/* TESTIMONIALS */
.testimonials {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: #F5F8F6;
    border-radius: 24px;
}
.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
}
.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 32px 30px 24px 30px;
    background: #fff;
    border-radius: 22px 6px 22px 6px;
    box-shadow: 0 3px 28px rgba(32,77,59,0.09);
    margin-bottom: 20px;
    max-width: 390px;
    flex: 1 1 260px;
    min-width: 210px;
    transition: box-shadow 0.18s, transform 0.13s;
}
.testimonial-card:hover {
    box-shadow: 0 8px 37px rgba(168,117,59,0.18);
    transform: translateY(-2px) scale(1.03);
}
.testimonial-card blockquote {
    color: #204D3B;
    font-style: italic;
    font-size: 1.08rem;
    margin-bottom: 10px;
}
.testimonial-meta {
    color: #A8753B;
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 0px;
}

/* CTA SECTIONS */
.cta {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: #A8753B;
    border-radius: 35px 11px 35px 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 38px rgba(32,77,59,0.08);
}
.cta h2 {
    color: #fff;
    font-size: 2.1rem;
    margin-bottom: 18px;
}
.cta .cta-button {
    background: #fff;
    color: #A8753B;
    font-family: 'Oswald', Arial, sans-serif;
    font-weight: 700;
    padding: 15px 38px;
    border-radius: 18px 4px 18px 4px;
    font-size: 1.23rem;
    transition: background 0.18s, color 0.18s, transform 0.12s;
    border: none;
}
.cta .cta-button:hover,
.cta .cta-button:focus {
    background: #204D3B;
    color: #fff;
    transform: scale(1.04);
}

/* TEXT SECTIONS */
.text-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 12px;
}
.text-section ul {
    padding-left: 18px;
    margin-bottom: 12px;
    list-style-type: disc;
}
.text-section li {
    margin-bottom: 0.8em;
    font-size: 1rem;
    color: #204D3B;
}
.text-section a {
    color: #A8753B;
    text-decoration: underline;
    word-break: break-all;
}
.text-section a:hover,
.text-section a:focus {
    color: #204D3B;
}

/* MAP PLACEHOLDER */
.map-placeholder {
    background: #f1e9db;
    border-radius: 13px;
    padding: 18px 14px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
    box-shadow: 0 1px 7px rgba(32,77,59,0.06);
}
.map-placeholder img {
    height: 34px; width: 34px;
}

/* FOOTER */
footer {
    margin-top: 52px;
    background: #204D3B;
    color: #fff;
    padding: 34px 0 20px 0;
    border-radius: 38px 10px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    font-size: 1rem;
    letter-spacing: 0.01em;
    box-shadow: 0 -3px 20px rgba(32,77,59,0.07);
}
footer nav {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}
footer nav a {
    color: #fff;
    font-family: 'Oswald', Arial, sans-serif;
    padding: 6px 16px;
    border-radius: 7px;
    font-weight: 500;
    transition: background 0.2s, color 0.14s;
}
footer nav a:hover {
    background: #A8753B;
    color: #fff;
}
footer div {
    margin-top: 8px;
    color: #fff;
    font-size: 0.98rem;
    opacity: 0.82;
}

/* BUTTONS */
.cta-button {
    background: #A8753B;
    color: #fff;
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 1.1rem;
    border: none;
    padding: 13px 33px;
    border-radius: 14px 5px 14px 5px;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-top: 7px;
    transition: background 0.18s, color 0.18s, transform 0.12s;
    cursor: pointer;
    display: inline-block;
    box-shadow: 0 1px 7px rgba(168,117,59,0.13);
}
.cta-button:hover, .cta-button:focus {
    background: #204D3B;
    color: #fff;
    transform: scale(1.045);
}

/* Misc flex containers patterns */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    margin-bottom: 20px;
    position: relative;
    flex: 1 1 220px;
    min-width: 180px;
    max-width: 310px;
    background: #fff;
    border-radius: 18px 4px 18px 4px;
    box-shadow: 0 2px 10px rgba(32,77,59,0.07);
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 19px 14px 21px 14px;
}
.content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.text-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

/* Cookie Banner & Modal */
.cookie-banner {
    position: fixed;
    left: 0; right: 0;
    bottom: 0;
    width: 100vw;
    z-index: 2001;
    background: #204D3B;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 22px 8px 18px 8px;
    box-shadow: 0 -8px 35px #204D3B44;
    font-size: 1.07rem;
    transition: transform 0.34s cubic-bezier(.5,1,.89,1), opacity 0.24s;
}
.cookie-banner.hide { transform: translateY(120%); opacity: 0; }
.cookie-banner.show { transform: translateY(0); opacity: 1; }
.cookie-banner strong { color: #A8753B; }
.cookie-banner .cookie-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 10px;
}
.cookie-banner button {
    background: #A8753B;
    color: #fff;
    font-family: 'Oswald', Arial, sans-serif;
    border: none;
    border-radius: 9px 3px 9px 3px;
    padding: 8px 24px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.17s, color 0.13s, transform 0.11s;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
    background: #fff;
    color: #204D3B;
    transform: scale(1.07);
}

/* Cookie Modal Overlay */
#cookie-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: #204D3B90;
    z-index: 2021;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s;
}
#cookie-modal.active { opacity: 1; pointer-events: auto; }
.cookie-modal-content {
    background: #fff;
    color: #204D3B;
    min-width: 330px;
    max-width: 95vw;
    border-radius: 14px;
    padding: 32px 26px 28px 26px;
    box-shadow: 0 8px 34px #A8753B22;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    animation: cookiePopIn 0.34s cubic-bezier(.5,1,.89,1);
}
@keyframes cookiePopIn {
    0% { transform: scale(0.92); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
.cookie-modal-content h3 {
    color: #A8753B;
    margin-bottom: 6px;
    font-size: 1.3rem;
}
.cookie-settings-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 10px;
}
.cookie-setting-row {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.06rem;
}
.cookie-setting-row input[type='checkbox'] {
    accent-color: #A8753B;
    width: 18px; height: 18px;
}
.cookie-setting-row label {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 500;
}
.cookie-modal-actions {
    display: flex; gap: 18px; margin-top: 8px;
}
.cookie-modal-actions button {
    background: #A8753B;
    color: #fff;
    border-radius: 7px 2px 7px 2px;
    padding: 8px 22px;
    border: none;
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 1.03rem;
    font-weight: 600;
    transition: background 0.17s, color 0.12s;
    cursor: pointer;
}
.cookie-modal-actions button:hover,
.cookie-modal-actions button:focus {
    background: #204D3B;
    color: #fff;
}
.cookie-modal-close {
    position: absolute;
    top: 17px;
    right: 17px;
    background: transparent;
    color: #204D3B;
    font-size: 1.3rem;
    border: none;
    cursor: pointer;
    transition: color 0.15s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus { color: #A8753B; }

/* RESPONSIVE DESIGN */
@media (max-width: 1050px) {
    .hero .container, .features .container, .services .container {
        padding-left: 8px; padding-right: 8px;
    }
    .feature-grid, .service-cards, .testimonial-grid {
        gap: 18px;
    }
    .feature-grid > div, .service-cards > div, .testimonial-card {
        min-width: 180px;
    }
}
@media (max-width: 900px) {
    header {
        flex-direction: column;
        gap: 15px;
        padding: 21px 7vw;
    }
    .feature-grid, .service-cards, .testimonial-grid, .card-container, .content-grid {
        gap: 18px;
    }
}
@media (max-width: 768px) {
    html { font-size: 95%; }
    .hero .container { padding-top: 36px; padding-bottom: 36px; }
    .feature-grid, .service-cards, .testimonial-grid, .card-container, .content-grid {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }
    .feature-grid > div,
    .service-cards > div,
    .testimonial-card {
        max-width: 100%;
        min-width: 0;
    }
    header nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .cta {
        padding: 32px 10px;
    }
    .hero .content-wrapper {
        padding: 24px 10px;
        gap: 20px;
    }
    .section {
        padding: 24px 10px;
    }
    .map-placeholder {
        flex-direction: column;
        gap: 8px;
    }
}
@media (max-width: 600px) {
    html { font-size: 87%; }
    header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 2vw;
    }
    .hero h1 { font-size: 1.46rem; }
    .cta h2 { font-size: 1.27rem; }
    .features, .testimonials, .services, .section {
        padding: 22px 4px;
        border-radius: 16px;
    }
    .feature-grid > div,
    .service-cards > div,
    .testimonial-card {
        padding: 16px 10px 16px 10px;
    }
    footer {
        border-radius: 17px 7px 0 0;
        padding: 18px 0 10px 0;
        font-size: 0.93rem;
        gap: 8px;
    }
    .mobile-menu {
        font-size: 1rem;
    }
}

/* MICRO INTERACTIONS / TRANSITIONS */
.feature-grid > div, .service-cards > div, .testimonial-card, .card {
    transition: box-shadow 0.19s, transform 0.13s;
}
.cta-button, .service-cards a, .mobile-nav a, .cookie-banner button, .cookie-modal-actions button {
    transition: background 0.17s, color 0.17s, transform 0.12s;
}

/* UNIQUE ARTISTIC ELEMENTS (abstract brush-strokes on Hero) */
.hero .content-wrapper::before {
    content: '';
    position: absolute;
    top: -18px; left: -24px;
    width: 82px; height: 44px;
    background: #A8753B;
    border-radius: 22px 14px 26px 18px;
    opacity: 0.18;
    z-index: 0;
    pointer-events: none;
    display: block;
}
.hero .content-wrapper {
    position: relative;
    z-index: 1;
}
.hero .content-wrapper::after {
    content: '';
    position: absolute;
    bottom: -18px; right: -32px;
    width: 68px; height: 36px;
    background: #204D3B;
    border-radius: 21px 10px 25px 14px;
    opacity: 0.16;
    z-index: 0;
    pointer-events: none;
}

/* Oswald and Roboto fallback font-face, if needed */
@font-face {
    font-family: 'Oswald'; font-style: normal; font-weight: 400;
    src: local('Oswald'), local('Oswald-Regular'), url(https://fonts.gstatic.com/s/oswald/v47/TK3iWkUHHAIjg752GT8G.woff2) format('woff2');
    unicode-range: U+0000-00FF;
}
@font-face {
    font-family: 'Roboto'; font-style: normal; font-weight: 400;
    src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxM.woff2) format('woff2');
    unicode-range: U+0000-00FF;
}
