*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{--primary:#1a3a5c;--secondary:#c9a962;--dark:#0d1b2a;--light:#f8f6f2;--accent:#8b4513;--text:#2c3e50;--white:#ffffff;--shadow:0 8px 32px rgba(0,0,0,0.12)}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:'Segoe UI',system-ui,-apple-system,sans-serif;line-height:1.7;color:var(--text);background:var(--light)}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit;transition:all 0.3s ease}
ul,ol{list-style:none}
.container{width:90%;max-width:1200px;margin:0 auto}
.container-narrow{width:90%;max-width:800px;margin:0 auto}

header{position:fixed;top:0;left:0;right:0;z-index:1000;background:rgba(13,27,42,0.95);backdrop-filter:blur(10px);padding:1rem 0;transition:all 0.3s}
header.scrolled{padding:0.5rem 0;box-shadow:var(--shadow)}
.header-inner{display:flex;justify-content:space-between;align-items:center}
.logo{font-size:1.5rem;font-weight:700;color:var(--secondary);letter-spacing:1px}
.nav-toggle{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:10px}
.nav-toggle span{width:25px;height:2px;background:var(--white);transition:all 0.3s}
nav ul{display:flex;gap:2rem}
nav a{color:var(--white);font-weight:500;position:relative;padding:0.5rem 0}
nav a::after{content:'';position:absolute;bottom:0;left:0;width:0;height:2px;background:var(--secondary);transition:width 0.3s}
nav a:hover::after{width:100%}

.hero{min-height:100vh;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,rgba(13,27,42,0.9),rgba(26,58,92,0.85)),url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1920') center/cover;color:var(--white);text-align:center;padding:8rem 2rem 4rem}
.hero h1{font-size:clamp(2rem,5vw,4rem);margin-bottom:1.5rem;line-height:1.2}
.hero p{font-size:1.25rem;max-width:700px;margin:0 auto 2rem;opacity:0.9}
.hero-badge{display:inline-block;background:var(--secondary);color:var(--dark);padding:0.5rem 1.5rem;border-radius:30px;font-weight:600;margin-bottom:2rem;font-size:0.9rem}

.btn{display:inline-block;padding:1rem 2.5rem;border-radius:50px;font-weight:600;transition:all 0.3s;cursor:pointer;border:none;font-size:1rem}
.btn-primary{background:var(--secondary);color:var(--dark)}
.btn-primary:hover{background:#d4b56c;transform:translateY(-2px);box-shadow:0 10px 30px rgba(201,169,98,0.4)}
.btn-secondary{background:transparent;border:2px solid var(--secondary);color:var(--secondary)}
.btn-secondary:hover{background:var(--secondary);color:var(--dark)}
.btn-dark{background:var(--dark);color:var(--white)}
.btn-dark:hover{background:var(--primary)}

.section{padding:5rem 0}
.section-dark{background:var(--dark);color:var(--white)}
.section-accent{background:linear-gradient(180deg,var(--light) 0%,#e8e4dd 100%)}
.section-gold{background:linear-gradient(135deg,#c9a962 0%,#d4b56c 50%,#b8954f 100%);color:var(--dark)}

.section-title{font-size:clamp(1.8rem,4vw,2.8rem);text-align:center;margin-bottom:1rem}
.section-subtitle{text-align:center;font-size:1.1rem;opacity:0.8;max-width:600px;margin:0 auto 3rem}

.split{display:flex;gap:4rem;align-items:center}
.split-reverse{flex-direction:row-reverse}
.split-content,.split-media{flex:1}
.split-media img{border-radius:20px;box-shadow:var(--shadow)}

.story-section{padding:6rem 0}
.story-text{font-size:1.15rem;line-height:1.9;margin-bottom:2rem}
.story-highlight{background:linear-gradient(120deg,rgba(201,169,98,0.2) 0%,rgba(201,169,98,0.1) 100%);padding:2rem;border-left:4px solid var(--secondary);margin:2rem 0;border-radius:0 10px 10px 0}
.story-image{margin:3rem 0;border-radius:15px;overflow:hidden;box-shadow:var(--shadow)}

.cards{display:flex;flex-wrap:wrap;gap:2rem;justify-content:center}
.card{flex:1 1 300px;max-width:380px;background:var(--white);border-radius:20px;overflow:hidden;box-shadow:var(--shadow);transition:transform 0.3s}
.card:hover{transform:translateY(-10px)}
.card-image{height:220px;overflow:hidden}
.card-image img{width:100%;height:100%;object-fit:cover;transition:transform 0.5s}
.card:hover .card-image img{transform:scale(1.1)}
.card-content{padding:2rem}
.card-title{font-size:1.3rem;margin-bottom:0.5rem;color:var(--primary)}
.card-text{font-size:0.95rem;opacity:0.8;margin-bottom:1rem}
.card-price{font-size:1.5rem;font-weight:700;color:var(--secondary)}

.testimonials{background:var(--dark);padding:6rem 0}
.testimonial{background:rgba(255,255,255,0.05);padding:2.5rem;border-radius:20px;margin-bottom:2rem;position:relative}
.testimonial::before{content:'"';position:absolute;top:10px;left:20px;font-size:4rem;color:var(--secondary);opacity:0.3;font-family:serif}
.testimonial-text{font-size:1.1rem;font-style:italic;margin-bottom:1.5rem;padding-left:2rem}
.testimonial-author{display:flex;align-items:center;gap:1rem}
.testimonial-avatar{width:50px;height:50px;border-radius:50%;background:var(--secondary);display:flex;align-items:center;justify-content:center;font-weight:700;color:var(--dark)}
.testimonial-name{font-weight:600}
.testimonial-role{font-size:0.85rem;opacity:0.7}

.benefits{display:flex;flex-wrap:wrap;gap:2rem;justify-content:center;padding:4rem 0}
.benefit{flex:1 1 250px;max-width:300px;text-align:center;padding:2rem}
.benefit-icon{width:80px;height:80px;margin:0 auto 1.5rem;background:linear-gradient(135deg,var(--secondary),#d4b56c);border-radius:50%;display:flex;align-items:center;justify-content:center}
.benefit-icon svg{width:40px;height:40px;fill:var(--dark)}
.benefit-title{font-size:1.2rem;margin-bottom:0.5rem;font-weight:600}
.benefit-text{font-size:0.95rem;opacity:0.8}

.services-grid{display:flex;flex-wrap:wrap;gap:2rem;justify-content:center}
.service-item{flex:1 1 340px;max-width:400px;background:var(--white);border-radius:20px;padding:2.5rem;box-shadow:var(--shadow);border:2px solid transparent;transition:all 0.3s}
.service-item:hover{border-color:var(--secondary)}
.service-badge{display:inline-block;background:var(--secondary);color:var(--dark);padding:0.3rem 1rem;border-radius:20px;font-size:0.8rem;font-weight:600;margin-bottom:1rem}
.service-name{font-size:1.4rem;margin-bottom:0.5rem;color:var(--primary)}
.service-desc{font-size:0.95rem;opacity:0.8;margin-bottom:1.5rem;line-height:1.6}
.service-price{font-size:2rem;font-weight:700;color:var(--secondary);margin-bottom:1rem}
.service-price span{font-size:1rem;font-weight:400;opacity:0.7}
.service-features{margin-bottom:1.5rem}
.service-features li{padding:0.5rem 0;padding-left:1.5rem;position:relative;font-size:0.9rem}
.service-features li::before{content:'✓';position:absolute;left:0;color:var(--secondary);font-weight:700}

.cta-block{background:linear-gradient(135deg,var(--primary),var(--dark));padding:5rem 2rem;text-align:center;color:var(--white);border-radius:30px;margin:3rem auto;max-width:900px}
.cta-block h3{font-size:2rem;margin-bottom:1rem}
.cta-block p{margin-bottom:2rem;opacity:0.9;max-width:600px;margin-left:auto;margin-right:auto}

.form-section{background:linear-gradient(180deg,var(--light) 0%,#fff 100%);padding:6rem 0}
.form-container{max-width:600px;margin:0 auto;background:var(--white);padding:3rem;border-radius:25px;box-shadow:var(--shadow)}
.form-group{margin-bottom:1.5rem}
.form-group label{display:block;margin-bottom:0.5rem;font-weight:600;color:var(--primary)}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:1rem;border:2px solid #e0e0e0;border-radius:10px;font-size:1rem;transition:border-color 0.3s}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:none;border-color:var(--secondary)}
.form-group textarea{min-height:120px;resize:vertical}
.form-submit{width:100%;padding:1.2rem;font-size:1.1rem}

.urgency{background:linear-gradient(90deg,#c9a962,#d4b56c);padding:1.5rem;text-align:center;color:var(--dark)}
.urgency strong{font-size:1.2rem}

.sticky-cta{position:fixed;bottom:0;left:0;right:0;background:var(--dark);padding:1rem;display:flex;justify-content:center;align-items:center;gap:2rem;transform:translateY(100%);transition:transform 0.3s;z-index:999}
.sticky-cta.visible{transform:translateY(0)}
.sticky-cta p{color:var(--white);font-weight:500;margin:0}

.stats{display:flex;flex-wrap:wrap;justify-content:center;gap:3rem;padding:4rem 0}
.stat{text-align:center}
.stat-number{font-size:3rem;font-weight:700;color:var(--secondary);line-height:1}
.stat-label{font-size:1rem;opacity:0.8;margin-top:0.5rem}

.gallery{display:flex;flex-wrap:wrap;gap:1rem;padding:3rem 0}
.gallery-item{flex:1 1 calc(33.333% - 1rem);min-width:280px;height:250px;border-radius:15px;overflow:hidden}
.gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform 0.5s}
.gallery-item:hover img{transform:scale(1.1)}

.about-hero{padding:10rem 0 5rem;background:linear-gradient(135deg,rgba(13,27,42,0.85),rgba(26,58,92,0.8)),url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920') center/cover;color:var(--white);text-align:center}

.timeline{position:relative;padding:2rem 0}
.timeline::before{content:'';position:absolute;left:50%;top:0;bottom:0;width:2px;background:var(--secondary);transform:translateX(-50%)}
.timeline-item{display:flex;justify-content:flex-end;padding-right:calc(50% + 2rem);margin-bottom:3rem;position:relative}
.timeline-item:nth-child(even){justify-content:flex-start;padding-right:0;padding-left:calc(50% + 2rem)}
.timeline-content{background:var(--white);padding:2rem;border-radius:15px;box-shadow:var(--shadow);max-width:400px}
.timeline-year{font-size:0.9rem;color:var(--secondary);font-weight:700;margin-bottom:0.5rem}
.timeline-title{font-size:1.2rem;margin-bottom:0.5rem;color:var(--primary)}

.contact-grid{display:flex;gap:4rem;flex-wrap:wrap}
.contact-info{flex:1 1 300px}
.contact-item{display:flex;gap:1rem;margin-bottom:2rem}
.contact-icon{width:50px;height:50px;background:var(--secondary);border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.contact-icon svg{width:24px;height:24px;fill:var(--dark)}
.contact-details h4{margin-bottom:0.3rem;color:var(--primary)}
.contact-details p{font-size:0.95rem;opacity:0.8}
.contact-form-wrapper{flex:1 1 400px}

.thanks-page{min-height:100vh;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,var(--light),#fff);text-align:center;padding:2rem}
.thanks-content{max-width:600px}
.thanks-icon{width:100px;height:100px;margin:0 auto 2rem;background:linear-gradient(135deg,var(--secondary),#d4b56c);border-radius:50%;display:flex;align-items:center;justify-content:center}
.thanks-icon svg{width:50px;height:50px;fill:var(--dark)}
.thanks-title{font-size:2.5rem;margin-bottom:1rem;color:var(--primary)}
.thanks-text{font-size:1.1rem;margin-bottom:2rem;opacity:0.8}

.legal-page{padding:10rem 0 5rem}
.legal-content{max-width:800px;margin:0 auto}
.legal-content h1{font-size:2.5rem;margin-bottom:2rem;color:var(--primary)}
.legal-content h2{font-size:1.5rem;margin:2rem 0 1rem;color:var(--primary)}
.legal-content p{margin-bottom:1rem;line-height:1.8}
.legal-content ul{margin:1rem 0 1rem 2rem;list-style:disc}
.legal-content li{margin-bottom:0.5rem}

footer{background:var(--dark);color:var(--white);padding:4rem 0 2rem}
.footer-grid{display:flex;flex-wrap:wrap;gap:3rem;margin-bottom:3rem}
.footer-col{flex:1 1 200px}
.footer-col h4{font-size:1.1rem;margin-bottom:1.5rem;color:var(--secondary)}
.footer-col a{display:block;padding:0.4rem 0;opacity:0.8;transition:opacity 0.3s}
.footer-col a:hover{opacity:1;color:var(--secondary)}
.footer-bottom{text-align:center;padding-top:2rem;border-top:1px solid rgba(255,255,255,0.1);font-size:0.9rem;opacity:0.7}

.cookie-banner{position:fixed;bottom:20px;left:20px;right:20px;max-width:500px;background:var(--dark);color:var(--white);padding:1.5rem;border-radius:15px;box-shadow:var(--shadow);z-index:10000;display:none}
.cookie-banner.show{display:block}
.cookie-text{font-size:0.9rem;margin-bottom:1rem;line-height:1.6}
.cookie-buttons{display:flex;gap:1rem}
.cookie-btn{padding:0.7rem 1.5rem;border-radius:25px;font-weight:600;cursor:pointer;border:none;font-size:0.9rem}
.cookie-accept{background:var(--secondary);color:var(--dark)}
.cookie-reject{background:transparent;border:1px solid var(--white);color:var(--white)}

@media(max-width:968px){
.split{flex-direction:column;gap:2rem}
.split-reverse{flex-direction:column}
.nav-toggle{display:flex}
nav{position:absolute;top:100%;left:0;right:0;background:var(--dark);padding:0;max-height:0;overflow:hidden;transition:max-height 0.3s}
nav.open{max-height:400px;padding:1rem 0}
nav ul{flex-direction:column;gap:0;padding:0 5%}
nav a{display:block;padding:1rem 0;border-bottom:1px solid rgba(255,255,255,0.1)}
.timeline::before{left:20px}
.timeline-item,.timeline-item:nth-child(even){padding-left:50px;padding-right:0;justify-content:flex-start}
.contact-grid{flex-direction:column}
}
@media(max-width:600px){
.hero{padding:7rem 1rem 3rem}
.section{padding:3rem 0}
.cards{gap:1.5rem}
.card{flex:1 1 100%}
.sticky-cta{flex-direction:column;gap:1rem;padding:1rem}
.gallery-item{flex:1 1 100%}
.cookie-banner{left:10px;right:10px}
}
