*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{--brand:hsl(181,82%,26%);--brand-dark:hsl(181,82%,18%);--accent:hsl(40,82%,50%);--accent-light:hsl(40,82%,60%);--bg:hsl(40,30%,96%);--bg-alt:hsl(40,20%,92%);--text:hsl(210,15%,20%);--text-light:hsl(210,10%,45%);--white:hsl(0,0%,100%);--shadow:0 0.125rem 0.5rem hsla(210,15%,20%,0.1);--shadow-md:0 0.25rem 1rem hsla(210,15%,20%,0.12);--radius:0.5rem;--radius-lg:1rem;--radius-full:2rem;--font-body:'Nunito Sans',sans-serif;--font-heading:'Lora',serif;--transition:0.25s ease}
html{font-size:100%;scroll-behavior:smooth}
body{font-family:var(--font-body);color:var(--text);background:var(--bg);line-height:1.65;-webkit-font-smoothing:antialiased}
img{max-width:100%;height:auto;display:block}
a{color:var(--brand);text-decoration:none;transition:color var(--transition)}
a:hover{color:var(--accent)}
ul{list-style:none}
h1,h2,h3,h4{font-family:var(--font-heading);color:var(--text);line-height:1.25}
h1{font-size:clamp(2rem,4vw,3.25rem);font-weight:700}
h2{font-size:clamp(1.6rem,3vw,2.5rem);font-weight:700}
h3{font-size:clamp(1.15rem,2vw,1.5rem);font-weight:600}
.container{width:92%;max-width:72rem;margin-inline:auto}
.section-padding{padding:4rem 0}
.section-heading{text-align:center;margin-bottom:2.5rem}
.section-heading h2{margin-bottom:0.75rem}
.section-heading p{color:var(--text-light);max-width:38rem;margin-inline:auto;font-size:1.05rem}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:0.5rem;padding:0.85rem 2rem;border-radius:var(--radius-full);font-weight:700;font-size:1rem;border:none;cursor:pointer;transition:all var(--transition);min-height:2.75rem;min-width:2.75rem;font-family:var(--font-body);text-decoration:none}
.btn-primary{background:var(--brand);color:var(--white)}
.btn-primary:hover{background:var(--brand-dark);color:var(--white)}
.btn-accent{background:var(--accent);color:var(--text)}
.btn-accent:hover{background:var(--accent-light);color:var(--text)}
.btn-outline{background:transparent;border:0.125rem solid var(--brand);color:var(--brand)}
.btn-outline:hover{background:var(--brand);color:var(--white)}

.site-header{position:sticky;top:0;z-index:100;background:var(--white);box-shadow:var(--shadow);transition:box-shadow var(--transition)}
.header-wrap{display:flex;align-items:center;justify-content:space-between;padding:0.75rem 4%;max-width:80rem;margin-inline:auto}
.brand-logo{font-family:var(--font-heading);font-size:1.55rem;font-weight:700;color:var(--brand);display:flex;align-items:center;gap:0.35rem}
.brand-logo:hover{color:var(--brand-dark)}
.brand-icon{font-size:1.75rem}
.nav-toggle{display:none;background:none;border:none;cursor:pointer;padding:0.5rem;width:2.75rem;height:2.75rem;flex-direction:column;justify-content:center;gap:0.3rem}
.toggle-bar{display:block;width:1.5rem;height:0.175rem;background:var(--text);border-radius:0.125rem;transition:all var(--transition)}
.nav-list{display:flex;align-items:center;gap:0.25rem}
.nav-list a{padding:0.5rem 0.85rem;border-radius:var(--radius);font-weight:600;font-size:0.95rem;color:var(--text);transition:all var(--transition)}
.nav-list a:hover,.nav-list a.active{color:var(--brand);background:hsla(181,82%,26%,0.06)}
.nav-cta{background:var(--accent) !important;color:var(--text) !important;border-radius:var(--radius-full) !important;padding:0.5rem 1.25rem !important}
.nav-cta:hover{background:var(--accent-light) !important}

.hero{position:relative;min-height:85vh;display:flex;align-items:center;justify-content:center;text-align:center;overflow:hidden;background:var(--brand-dark)}
.hero-bg{position:absolute;inset:0;z-index:0}
.hero-bg picture,.hero-bg img{width:100%;height:100%;object-fit:cover}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(180deg,hsla(181,82%,10%,0.72),hsla(181,82%,10%,0.55));z-index:1}
.hero-body{position:relative;z-index:2;padding:2rem 1rem;max-width:46rem;color:var(--white)}
.hero-body h1{color:var(--white);margin-bottom:1rem}
.hero-body p{font-size:clamp(1.05rem,2vw,1.3rem);margin-bottom:2rem;opacity:0.92}
.hero-btns{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}

.services-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(19rem,1fr));gap:1.75rem}
.service-card{background:var(--white);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow);transition:transform var(--transition),box-shadow var(--transition)}
.service-card:hover{transform:translateY(-0.25rem);box-shadow:var(--shadow-md)}
.service-card picture,.service-card img{aspect-ratio:16/10;object-fit:cover;width:100%}
.service-card-body{padding:1.25rem 1.35rem 1.5rem}
.service-card-body h3{margin-bottom:0.5rem}
.service-card-body h3 a{color:var(--text)}
.service-card-body h3 a:hover{color:var(--brand)}
.service-card-body p{color:var(--text-light);font-size:0.95rem;margin-bottom:1rem}
.service-card-body .btn{font-size:0.88rem;padding:0.55rem 1.25rem}

.about-preview{background:var(--bg-alt)}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}
.about-image{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-md)}
.about-image img{width:100%;height:100%;object-fit:cover;aspect-ratio:4/3}
.about-text h2{margin-bottom:1rem}
.about-text p{margin-bottom:1rem;color:var(--text-light)}
.about-text .btn{margin-top:0.5rem}

.gallery-section{background:var(--white)}
.gallery-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(16rem,1fr));gap:1rem}
.gallery-item{border-radius:var(--radius);overflow:hidden;aspect-ratio:4/3}
.gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform var(--transition)}
.gallery-item:hover img{transform:scale(1.04)}

.testimonials{background:var(--bg-alt)}
.testimonials-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(20rem,1fr));gap:1.5rem}
.testimonial-card{background:var(--white);padding:1.75rem;border-radius:var(--radius-lg);box-shadow:var(--shadow)}
.testimonial-stars{color:var(--accent);font-size:1.15rem;margin-bottom:0.75rem}
.testimonial-card p{font-style:italic;margin-bottom:1rem;color:var(--text-light)}
.testimonial-author{font-weight:700;color:var(--text)}

.cta-banner{background:linear-gradient(135deg,var(--brand),var(--brand-dark));color:var(--white);text-align:center;padding:4rem 1rem}
.cta-banner h2{color:var(--white);margin-bottom:0.75rem}
.cta-banner p{margin-bottom:2rem;opacity:0.9;font-size:1.1rem}
.cta-banner .btn-accent:hover{background:var(--white);color:var(--brand)}

.faq-section .faq-list{max-width:48rem;margin-inline:auto}
.faq-item{border-bottom:0.0625rem solid hsla(210,10%,80%,0.5);padding:1.25rem 0}
.faq-question{display:flex;justify-content:space-between;align-items:center;cursor:pointer;gap:1rem;font-weight:600;font-size:1.05rem;background:none;border:none;width:100%;text-align:left;font-family:var(--font-body);color:var(--text);padding:0.25rem 0;min-height:2.75rem}
.faq-question::after{content:'+';font-size:1.5rem;font-weight:400;transition:transform var(--transition);flex-shrink:0;width:2rem;text-align:center}
.faq-item.open .faq-question::after{transform:rotate(45deg)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height 0.35s ease,padding 0.35s ease}
.faq-item.open .faq-answer{max-height:25rem;padding-top:0.75rem}
.faq-answer p{color:var(--text-light);line-height:1.7}

.service-areas{text-align:center}
.areas-list{display:flex;flex-wrap:wrap;justify-content:center;gap:0.75rem;margin-top:1.5rem}
.area-tag{background:var(--white);padding:0.55rem 1.25rem;border-radius:var(--radius-full);font-size:0.92rem;box-shadow:var(--shadow);color:var(--text)}

.contact-section .contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem}
.contact-info-block h3{margin-bottom:1rem}
.contact-info-block ul{margin-bottom:1.5rem}
.contact-info-block li{margin-bottom:0.75rem;display:flex;gap:0.5rem;align-items:flex-start}
.contact-form{background:var(--white);padding:2rem;border-radius:var(--radius-lg);box-shadow:var(--shadow-md)}
.form-group{margin-bottom:1.25rem}
.form-group label{display:block;margin-bottom:0.35rem;font-weight:600;font-size:0.95rem}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:0.75rem 1rem;border:0.0625rem solid hsl(210,10%,82%);border-radius:var(--radius);font-size:1rem;font-family:var(--font-body);transition:border-color var(--transition);min-height:2.75rem}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:none;border-color:var(--brand);box-shadow:0 0 0 0.15rem hsla(181,82%,26%,0.15)}
.form-group textarea{resize:vertical;min-height:7rem}
.form-msg{padding:0.85rem;border-radius:var(--radius);margin-bottom:1rem;display:none}
.form-msg.error{background:hsl(0,80%,95%);color:hsl(0,60%,40%);display:block}
.form-msg.success{background:hsl(140,50%,92%);color:hsl(140,50%,25%);display:block}

.blog-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(20rem,1fr));gap:1.75rem}
.blog-card{background:var(--white);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow);transition:transform var(--transition)}
.blog-card:hover{transform:translateY(-0.2rem)}
.blog-card picture,.blog-card img{aspect-ratio:16/9;object-fit:cover;width:100%}
.blog-card-body{padding:1.25rem 1.35rem 1.5rem}
.blog-card-body .blog-date{font-size:0.85rem;color:var(--text-light);margin-bottom:0.5rem}
.blog-card-body h3{margin-bottom:0.5rem}
.blog-card-body h3 a{color:var(--text)}
.blog-card-body h3 a:hover{color:var(--brand)}
.blog-card-body p{color:var(--text-light);font-size:0.95rem;margin-bottom:1rem}

.article-content{max-width:48rem;margin-inline:auto}
.article-content h1{margin-bottom:1rem}
.article-meta{color:var(--text-light);margin-bottom:2rem;font-size:0.95rem}
.article-content h2{margin-top:2rem;margin-bottom:0.75rem}
.article-content p{margin-bottom:1.25rem;color:var(--text-light);line-height:1.8}
.article-content ul{margin:1rem 0 1.5rem 1.5rem;list-style:disc}
.article-content li{margin-bottom:0.5rem;color:var(--text-light);line-height:1.7}
.article-hero{border-radius:var(--radius-lg);overflow:hidden;margin-bottom:2rem;aspect-ratio:21/9}
.article-hero img{width:100%;height:100%;object-fit:cover}

.page-hero{background:var(--brand-dark);color:var(--white);text-align:center;padding:5rem 1rem 3rem}
.page-hero h1{color:var(--white);margin-bottom:0.5rem}
.page-hero p{opacity:0.88;font-size:1.1rem;max-width:36rem;margin-inline:auto}

.service-detail .detail-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start}
.service-detail .detail-image{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-md)}
.service-detail .detail-image img{width:100%;aspect-ratio:4/3;object-fit:cover}
.service-detail .detail-text h2{margin-bottom:1rem}
.service-detail .detail-text p{margin-bottom:1rem;color:var(--text-light);line-height:1.75}
.service-detail .detail-text ul{margin:1rem 0 1.5rem 1.5rem;list-style:disc}
.service-detail .detail-text li{margin-bottom:0.5rem;color:var(--text-light)}
.service-detail .detail-text .btn{margin-top:0.5rem}

.policy-content{max-width:48rem;margin-inline:auto}
.policy-content h2{margin-top:2rem;margin-bottom:0.75rem}
.policy-content h3{margin-top:1.5rem;margin-bottom:0.5rem}
.policy-content p{margin-bottom:1rem;color:var(--text-light);line-height:1.75}
.policy-content ul{margin:0.75rem 0 1.25rem 1.5rem;list-style:disc}
.policy-content li{margin-bottom:0.4rem;color:var(--text-light);line-height:1.7}

.thank-you-section{text-align:center;padding:6rem 1rem}
.thank-you-section h1{margin-bottom:1rem}
.thank-you-section p{color:var(--text-light);margin-bottom:2rem;font-size:1.1rem;max-width:30rem;margin-inline:auto}

.site-footer{background:hsl(210,15%,15%);color:hsl(210,10%,75%);padding:3.5rem 4% 0}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1.3fr;gap:2rem;max-width:80rem;margin-inline:auto;padding-bottom:2.5rem;border-bottom:0.0625rem solid hsl(210,10%,25%)}
.footer-heading{color:var(--white);margin-bottom:1rem;font-size:1.1rem}
.site-footer a{color:hsl(210,10%,75%);transition:color var(--transition)}
.site-footer a:hover{color:var(--accent)}
.site-footer ul li{margin-bottom:0.45rem}
.contact-list li{margin-bottom:0.65rem;font-size:0.92rem}
.footer-social{display:flex;gap:0.75rem;margin-top:1rem}
.footer-social a{width:2.25rem;height:2.25rem;display:flex;align-items:center;justify-content:center;background:hsl(210,10%,25%);border-radius:50%;font-size:0.9rem}
.footer-social a:hover{background:var(--accent);color:var(--text)}
.footer-legal{text-align:center;padding:1.5rem 0;max-width:80rem;margin-inline:auto}
.legal-links{display:flex;flex-wrap:wrap;justify-content:center;gap:1.25rem;margin-bottom:0.75rem;font-size:0.88rem}
.footer-legal p{font-size:0.85rem;opacity:0.7}

.cookie-banner{position:fixed;bottom:0;left:0;right:0;z-index:999;background:hsl(210,15%,15%);color:var(--white);padding:1.25rem 1.5rem;box-shadow:0 -0.125rem 0.75rem hsla(0,0%,0%,0.2)}
.cookie-content{max-width:72rem;margin-inline:auto;display:flex;align-items:center;gap:1.5rem;flex-wrap:wrap}
.cookie-content p{flex:1;min-width:16rem;font-size:0.92rem;line-height:1.55;margin:0}
.cookie-actions{display:flex;gap:0.75rem}
.cookie-btn{padding:0.6rem 1.5rem;border-radius:var(--radius-full);border:none;font-weight:600;cursor:pointer;font-size:0.9rem;font-family:var(--font-body);transition:all var(--transition);min-height:2.75rem}
.cookie-btn.accept{background:var(--accent);color:var(--text)}
.cookie-btn.accept:hover{background:var(--accent-light)}
.cookie-btn.reject{background:transparent;border:0.125rem solid hsl(210,10%,50%);color:hsl(210,10%,75%)}
.cookie-btn.reject:hover{border-color:var(--white);color:var(--white)}
.cookie-settings-btn{position:fixed;bottom:1rem;left:1rem;z-index:998;width:2.75rem;height:2.75rem;border-radius:50%;background:var(--brand);color:var(--white);border:none;font-size:1.2rem;cursor:pointer;box-shadow:var(--shadow-md);transition:all var(--transition)}
.cookie-settings-btn:hover{background:var(--brand-dark);transform:scale(1.08)}

@media(max-width:1044px){
.footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:756px){
.nav-toggle{display:flex}
.main-nav{position:fixed;top:0;right:-100%;width:75%;max-width:20rem;height:100vh;background:var(--white);box-shadow:-0.25rem 0 1rem hsla(0,0%,0%,0.15);transition:right 0.35s ease;z-index:200;padding:5rem 1.5rem 2rem;overflow-y:auto}
.main-nav.open{right:0}
.nav-list{flex-direction:column;gap:0.125rem;align-items:stretch}
.nav-list a{padding:0.75rem 1rem;border-radius:var(--radius)}
.nav-cta{text-align:center !important;margin-top:0.5rem}
.hero{min-height:70vh}
.about-grid,.contact-grid,.detail-grid{grid-template-columns:1fr !important}
.footer-grid{grid-template-columns:1fr}
.cookie-content{flex-direction:column;text-align:center}
}
