*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{--primary:#8b6914;--primary-dark:#6a5010;--secondary:#2c2c2c;--accent:#c9a227;--text:#333;--text-light:#666;--bg:#faf9f6;--bg-alt:#f0ebe0;--white:#fff;--shadow:0 4px 20px rgba(0,0,0,0.08);--shadow-lg:0 8px 40px rgba(0,0,0,0.12);--radius:6px;--transition:0.3s ease}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:'Crimson Text',Georgia,serif;line-height:1.7;color:var(--text);background:var(--bg)}
img{max-width:100%;height:auto;display:block}
a{color:var(--primary);text-decoration:none;transition:var(--transition)}
a:hover{color:var(--primary-dark)}
h1,h2,h3,h4,h5,h6{font-family:'Playfair Display',Georgia,serif;font-weight:600;line-height:1.3;color:var(--secondary)}
h1{font-size:clamp(2rem,5vw,3.5rem)}
h2{font-size:clamp(1.75rem,4vw,2.75rem);margin-bottom:1.5rem}
h3{font-size:clamp(1.25rem,3vw,1.75rem)}
p{margin-bottom:1rem}
.container{width:90%;max-width:1200px;margin:0 auto}
.narrow{max-width:720px;margin:0 auto}
.btn{display:inline-flex;align-items:center;justify-content:center;padding:14px 32px;background:var(--primary);color:var(--white);border:none;border-radius:var(--radius);font-family:inherit;font-size:1rem;cursor:pointer;transition:var(--transition);text-decoration:none}
.btn:hover{background:var(--primary-dark);color:var(--white);transform:translateY(-2px);box-shadow:var(--shadow)}
.btn-outline{background:transparent;border:2px solid var(--primary);color:var(--primary)}
.btn-outline:hover{background:var(--primary);color:var(--white)}
.btn-accent{background:var(--accent)}
.btn-accent:hover{background:#b8921f}
header{position:fixed;top:0;left:0;width:100%;background:rgba(250,249,246,0.95);backdrop-filter:blur(10px);z-index:1000;transition:var(--transition)}
header.scrolled{box-shadow:var(--shadow)}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:1rem 0}
.logo{font-family:'Playfair Display',Georgia,serif;font-size:1.5rem;font-weight:700;color:var(--secondary);letter-spacing:1px}
.logo span{color:var(--primary)}
nav ul{display:flex;list-style:none;gap:2rem}
nav a{font-size:0.95rem;color:var(--text);font-weight:500;position:relative}
nav a::after{content:'';position:absolute;bottom:-4px;left:0;width:0;height:2px;background:var(--primary);transition:var(--transition)}
nav a:hover::after,nav a.active::after{width:100%}
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:10px}
.hamburger span{width:25px;height:2px;background:var(--secondary);transition:var(--transition)}
.hero{min-height:100vh;display:flex;align-items:center;padding-top:80px;background:linear-gradient(135deg,var(--bg) 0%,var(--bg-alt) 100%);position:relative;overflow:hidden}
.hero::before{content:'';position:absolute;top:0;right:0;width:50%;height:100%;background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23c9a227" stroke-width="0.5" opacity="0.3"/></svg>') center/contain no-repeat;opacity:0.1}
.hero-content{display:flex;align-items:center;gap:4rem;padding:4rem 0}
.hero-text{flex:1}
.hero-text h1{margin-bottom:1.5rem}
.hero-text p{font-size:1.2rem;color:var(--text-light);margin-bottom:2rem;max-width:500px}
.hero-image{flex:1;position:relative}
.hero-image img{border-radius:var(--radius);box-shadow:var(--shadow-lg)}
.hero-image::before{content:'';position:absolute;top:-20px;left:-20px;width:100%;height:100%;border:3px solid var(--accent);border-radius:var(--radius);z-index:-1}
.section{padding:5rem 0}
.section-alt{background:var(--bg-alt)}
.section-dark{background:var(--secondary);color:var(--white)}
.section-dark h2,.section-dark h3{color:var(--white)}
.section-dark p{color:rgba(255,255,255,0.85)}
.editorial-block{padding:3rem 0}
.editorial-block p{font-size:1.1rem;line-height:1.9}
.editorial-image{margin:3rem 0;position:relative}
.editorial-image img{border-radius:var(--radius);box-shadow:var(--shadow)}
.editorial-image figcaption{font-size:0.9rem;color:var(--text-light);margin-top:1rem;font-style:italic}
.inline-cta{display:flex;align-items:center;gap:1.5rem;padding:2rem;background:var(--bg-alt);border-left:4px solid var(--primary);margin:2rem 0;border-radius:0 var(--radius) var(--radius) 0}
.inline-cta p{margin:0;flex:1}
.services-grid{display:flex;flex-wrap:wrap;gap:2rem;margin-top:3rem}
.service-card{flex:1 1 calc(33.333% - 2rem);min-width:280px;background:var(--white);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);transition:var(--transition)}
.service-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg)}
.service-card-image{height:200px;background:var(--bg-alt);display:flex;align-items:center;justify-content:center;overflow:hidden}
.service-card-image svg{width:80px;height:80px;color:var(--primary)}
.service-card-content{padding:1.5rem}
.service-card h3{margin-bottom:0.75rem}
.service-card p{color:var(--text-light);font-size:0.95rem}
.service-price{display:flex;align-items:baseline;gap:0.5rem;margin-top:1rem;padding-top:1rem;border-top:1px solid var(--bg-alt)}
.service-price .price{font-size:1.5rem;font-weight:700;color:var(--primary)}
.service-price .unit{font-size:0.9rem;color:var(--text-light)}
.features-list{display:flex;flex-direction:column;gap:2rem;margin-top:2rem}
.feature-item{display:flex;gap:1.5rem;align-items:flex-start}
.feature-icon{width:60px;height:60px;background:var(--bg-alt);border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.feature-icon svg{width:28px;height:28px;color:var(--primary)}
.feature-content h3{margin-bottom:0.5rem}
.feature-content p{color:var(--text-light);margin:0}
.testimonial{background:var(--white);padding:2.5rem;border-radius:var(--radius);box-shadow:var(--shadow);position:relative}
.testimonial::before{content:'"';position:absolute;top:1rem;left:1.5rem;font-size:4rem;color:var(--accent);opacity:0.3;font-family:Georgia,serif;line-height:1}
.testimonial p{font-size:1.1rem;font-style:italic;margin-bottom:1.5rem;padding-top:1rem}
.testimonial-author{display:flex;align-items:center;gap:1rem}
.testimonial-author-avatar{width:50px;height:50px;border-radius:50%;background:var(--bg-alt);display:flex;align-items:center;justify-content:center}
.testimonial-author-info strong{display:block;color:var(--secondary)}
.testimonial-author-info span{font-size:0.9rem;color:var(--text-light)}
.gallery{display:flex;flex-wrap:wrap;gap:1rem;margin-top:2rem}
.gallery-item{flex:1 1 calc(25% - 1rem);min-width:200px;aspect-ratio:1;overflow:hidden;border-radius:var(--radius)}
.gallery-item img{width:100%;height:100%;object-fit:cover;transition:var(--transition)}
.gallery-item:hover img{transform:scale(1.05)}
.split-section{display:flex;align-items:center;gap:4rem}
.split-section.reverse{flex-direction:row-reverse}
.split-content,.split-image{flex:1}
.split-image img{border-radius:var(--radius);box-shadow:var(--shadow)}
.cta-banner{background:linear-gradient(135deg,var(--primary) 0%,var(--primary-dark) 100%);color:var(--white);padding:4rem;border-radius:var(--radius);text-align:center;margin:3rem 0}
.cta-banner h2{color:var(--white);margin-bottom:1rem}
.cta-banner p{opacity:0.9;margin-bottom:2rem;max-width:600px;margin-left:auto;margin-right:auto}
.cta-banner .btn{background:var(--white);color:var(--primary)}
.cta-banner .btn:hover{background:var(--accent);color:var(--white)}
.contact-info{display:flex;flex-direction:column;gap:1.5rem}
.contact-item{display:flex;gap:1rem;align-items:flex-start}
.contact-item svg{width:24px;height:24px;color:var(--primary);flex-shrink:0;margin-top:4px}
.contact-item strong{display:block;margin-bottom:0.25rem}
.contact-item span{color:var(--text-light)}
.form-container{background:var(--white);padding:2.5rem;border-radius:var(--radius);box-shadow:var(--shadow)}
.form-group{margin-bottom:1.5rem}
.form-group label{display:block;margin-bottom:0.5rem;font-weight:500;color:var(--secondary)}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:12px 16px;border:1px solid #ddd;border-radius:var(--radius);font-family:inherit;font-size:1rem;transition:var(--transition)}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:none;border-color:var(--primary);box-shadow:0 0 0 3px rgba(139,105,20,0.1)}
.form-group textarea{min-height:120px;resize:vertical}
footer{background:var(--secondary);color:rgba(255,255,255,0.8);padding:4rem 0 2rem}
.footer-grid{display:flex;flex-wrap:wrap;gap:3rem;margin-bottom:3rem}
.footer-col{flex:1;min-width:200px}
.footer-col h4{color:var(--white);margin-bottom:1.5rem;font-size:1.1rem}
.footer-col ul{list-style:none}
.footer-col li{margin-bottom:0.75rem}
.footer-col a{color:rgba(255,255,255,0.7);transition:var(--transition)}
.footer-col a:hover{color:var(--accent)}
.footer-bottom{padding-top:2rem;border-top:1px solid rgba(255,255,255,0.1);display:flex;flex-wrap:wrap;justify-content:space-between;gap:1rem}
.footer-bottom p{font-size:0.9rem}
.footer-links{display:flex;gap:1.5rem}
.footer-links a{font-size:0.9rem;color:rgba(255,255,255,0.7)}
.sticky-cta{position:fixed;bottom:20px;right:20px;z-index:999;opacity:0;visibility:hidden;transition:var(--transition)}
.sticky-cta.visible{opacity:1;visibility:visible}
.sticky-cta .btn{box-shadow:var(--shadow-lg);padding:16px 28px}
.cookie-banner{position:fixed;bottom:0;left:0;width:100%;background:var(--secondary);color:var(--white);padding:1.5rem;z-index:1001;transform:translateY(100%);transition:var(--transition)}
.cookie-banner.visible{transform:translateY(0)}
.cookie-content{display:flex;align-items:center;justify-content:space-between;gap:2rem;max-width:1200px;margin:0 auto}
.cookie-content p{margin:0;font-size:0.95rem}
.cookie-content a{color:var(--accent)}
.cookie-buttons{display:flex;gap:1rem;flex-shrink:0}
.cookie-buttons .btn{padding:10px 20px;font-size:0.9rem}
.page-header{padding:8rem 0 4rem;background:var(--bg-alt);text-align:center}
.page-header h1{margin-bottom:1rem}
.page-header p{color:var(--text-light);max-width:600px;margin:0 auto}
.breadcrumb{display:flex;justify-content:center;gap:0.5rem;margin-top:1.5rem;font-size:0.9rem}
.breadcrumb a{color:var(--text-light)}
.breadcrumb span{color:var(--primary)}
.legal-content{padding:4rem 0}
.legal-content h2{font-size:1.5rem;margin-top:2.5rem;margin-bottom:1rem}
.legal-content h3{font-size:1.25rem;margin-top:2rem;margin-bottom:0.75rem}
.legal-content ul{margin:1rem 0 1rem 2rem}
.legal-content li{margin-bottom:0.5rem}
.thanks-container{min-height:100vh;display:flex;align-items:center;justify-content:center;text-align:center;padding:2rem}
.thanks-box{background:var(--white);padding:4rem;border-radius:var(--radius);box-shadow:var(--shadow-lg);max-width:600px}
.thanks-icon{width:80px;height:80px;background:linear-gradient(135deg,var(--primary) 0%,var(--accent) 100%);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 2rem}
.thanks-icon svg{width:40px;height:40px;color:var(--white)}
.thanks-box h1{margin-bottom:1rem}
.thanks-box p{color:var(--text-light);margin-bottom:2rem}
.about-intro{display:flex;gap:4rem;align-items:center}
.about-image{flex:1}
.about-text{flex:1}
.timeline{position:relative;padding-left:2rem;margin-top:3rem}
.timeline::before{content:'';position:absolute;left:0;top:0;height:100%;width:2px;background:var(--accent)}
.timeline-item{position:relative;padding-bottom:2.5rem}
.timeline-item::before{content:'';position:absolute;left:-2rem;top:0;width:12px;height:12px;background:var(--primary);border-radius:50%;transform:translateX(-5px)}
.timeline-item h4{color:var(--primary);margin-bottom:0.5rem}
@media(max-width:968px){.hero-content,.split-section,.split-section.reverse,.about-intro{flex-direction:column}.hero-image::before{display:none}.service-card{flex:1 1 calc(50% - 1rem)}}
@media(max-width:768px){nav ul{position:fixed;top:70px;left:0;width:100%;background:var(--bg);flex-direction:column;padding:2rem;gap:1.5rem;transform:translateX(-100%);transition:var(--transition)}nav ul.active{transform:translateX(0)}.hamburger{display:flex}.gallery-item{flex:1 1 calc(50% - 0.5rem)}.cookie-content{flex-direction:column;text-align:center}.footer-grid{flex-direction:column}}
@media(max-width:480px){.service-card{flex:1 1 100%}.gallery-item{flex:1 1 100%}.inline-cta{flex-direction:column;text-align:center}}
