*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{--primary:#c4532b;--primary-dark:#9e3f1f;--secondary:#2d5a3d;--accent:#e8c547;--dark:#1a1a1a;--light:#faf8f5;--gray:#6b6b6b;--gray-light:#e5e5e5;--font-main:'Georgia',serif;--font-accent:'Trebuchet MS',sans-serif;--max-content:720px;--max-wide:1140px}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:var(--font-main);background:var(--light);color:var(--dark);line-height:1.7}
img{max-width:100%;height:auto;display:block}
a{color:var(--primary);text-decoration:none;transition:color .2s}
a:hover{color:var(--primary-dark)}
.container{width:90%;max-width:var(--max-content);margin:0 auto;padding:0 1rem}
.container--wide{max-width:var(--max-wide)}
.btn{display:inline-block;padding:.9rem 2rem;font-family:var(--font-accent);font-size:.95rem;font-weight:600;border:none;border-radius:3px;cursor:pointer;transition:all .25s}
.btn--primary{background:var(--primary);color:#fff}
.btn--primary:hover{background:var(--primary-dark);transform:translateY(-2px)}
.btn--secondary{background:var(--secondary);color:#fff}
.btn--secondary:hover{background:#1e3d29}
.btn--outline{background:transparent;border:2px solid var(--primary);color:var(--primary)}
.btn--outline:hover{background:var(--primary);color:#fff}
.btn--small{padding:.6rem 1.2rem;font-size:.85rem}

header{background:#fff;border-bottom:1px solid var(--gray-light);position:sticky;top:0;z-index:100}
.nav{display:flex;justify-content:space-between;align-items:center;padding:1rem 0}
.nav__logo{font-family:var(--font-accent);font-size:1.4rem;font-weight:700;color:var(--dark)}
.nav__logo span{color:var(--primary)}
.nav__links{display:flex;gap:2rem;list-style:none}
.nav__links a{font-family:var(--font-accent);font-size:.9rem;color:var(--gray);font-weight:500}
.nav__links a:hover{color:var(--primary)}
.nav__toggle{display:none;flex-direction:column;gap:4px;background:none;border:none;cursor:pointer;padding:.5rem}
.nav__toggle span{width:24px;height:2px;background:var(--dark)}

.hero{padding:5rem 0 4rem;background:linear-gradient(135deg,#faf8f5 0%,#f0ebe3 100%)}
.hero__content{text-align:center}
.hero__tag{display:inline-block;background:var(--accent);color:var(--dark);padding:.4rem 1rem;font-family:var(--font-accent);font-size:.8rem;font-weight:600;border-radius:20px;margin-bottom:1.5rem}
.hero__title{font-size:2.8rem;line-height:1.2;margin-bottom:1.5rem;max-width:600px;margin-left:auto;margin-right:auto}
.hero__text{font-size:1.15rem;color:var(--gray);max-width:540px;margin:0 auto 2rem}
.hero__image{margin-top:3rem;border-radius:8px;overflow:hidden;box-shadow:0 20px 60px rgba(0,0,0,.12)}
.hero__image img{width:100%;aspect-ratio:16/9;object-fit:cover;background:linear-gradient(45deg,#d4a574,#8b6b4a)}

.section{padding:4rem 0}
.section--alt{background:#fff}
.section--dark{background:var(--dark);color:#fff}
.section--dark .section__subtitle{color:rgba(255,255,255,.7)}
.section__header{text-align:center;margin-bottom:3rem}
.section__title{font-size:2rem;margin-bottom:.75rem}
.section__subtitle{color:var(--gray);font-size:1.05rem}

.story{padding:3rem 0}
.story__text{font-size:1.1rem;margin-bottom:1.5rem}
.story__text:first-of-type::first-letter{float:left;font-size:4rem;line-height:.8;padding-right:.5rem;color:var(--primary)}
.story__image{margin:2.5rem 0;border-radius:6px;overflow:hidden}
.story__image img{width:100%;aspect-ratio:3/2;object-fit:cover;background:linear-gradient(135deg,#c9a66b,#7a5c3a)}
.story__image--float{float:right;width:45%;margin:0 0 1.5rem 2rem;border-radius:6px;overflow:hidden}
.story__image--float img{aspect-ratio:4/5;object-fit:cover;background:linear-gradient(180deg,#b8956e,#6d5139)}
.story__quote{border-left:4px solid var(--primary);padding:1.5rem 2rem;margin:2rem 0;background:#fff;font-style:italic;font-size:1.2rem}
.story__cta{text-align:center;margin-top:2.5rem;padding-top:2rem;border-top:1px solid var(--gray-light)}

.services-list{display:flex;flex-direction:column;gap:2rem}
.service-card{display:flex;gap:2rem;background:#fff;border-radius:8px;padding:2rem;box-shadow:0 4px 20px rgba(0,0,0,.06)}
.service-card:nth-child(even){flex-direction:row-reverse}
.service-card__image{flex:0 0 200px;border-radius:6px;overflow:hidden}
.service-card__image img{width:100%;height:100%;min-height:180px;object-fit:cover;background:linear-gradient(45deg,#a67c52,#5d4632)}
.service-card__content{flex:1;display:flex;flex-direction:column;justify-content:center}
.service-card__title{font-size:1.4rem;margin-bottom:.5rem}
.service-card__desc{color:var(--gray);margin-bottom:1rem;font-size:.95rem}
.service-card__price{font-family:var(--font-accent);font-size:1.5rem;color:var(--primary);font-weight:700;margin-bottom:1rem}
.service-card__price span{font-size:.9rem;color:var(--gray);font-weight:400}

.features{display:flex;flex-wrap:wrap;gap:2rem;justify-content:center}
.feature{flex:1 1 280px;max-width:340px;text-align:center;padding:2rem 1.5rem}
.feature__icon{width:64px;height:64px;margin:0 auto 1.5rem;background:var(--accent);border-radius:50%;display:flex;align-items:center;justify-content:center}
.feature__icon svg{width:28px;height:28px;stroke:var(--dark)}
.feature__title{font-size:1.15rem;margin-bottom:.75rem}
.feature__text{color:var(--gray);font-size:.95rem}

.testimonial{background:#fff;border-radius:10px;padding:2.5rem;box-shadow:0 8px 30px rgba(0,0,0,.08);max-width:600px;margin:0 auto}
.testimonial__text{font-size:1.15rem;font-style:italic;margin-bottom:1.5rem;position:relative}
.testimonial__text::before{content:'"';font-size:4rem;color:var(--accent);position:absolute;top:-1rem;left:-1rem;line-height:1}
.testimonial__author{display:flex;align-items:center;gap:1rem}
.testimonial__avatar{width:56px;height:56px;border-radius:50%;background:linear-gradient(135deg,#d4a574,#8b6b4a)}
.testimonial__name{font-weight:600}
.testimonial__role{color:var(--gray);font-size:.9rem}

.gallery{display:flex;flex-wrap:wrap;gap:1rem}
.gallery__item{flex:1 1 calc(33.333% - 1rem);min-width:200px;border-radius:6px;overflow:hidden}
.gallery__item img{width:100%;aspect-ratio:1;object-fit:cover;background:linear-gradient(45deg,#c9a66b,#7a5c3a);transition:transform .3s}
.gallery__item:hover img{transform:scale(1.05)}

.form-section{background:linear-gradient(180deg,var(--light) 0%,#fff 100%)}
.form-wrapper{background:#fff;border-radius:10px;padding:3rem;box-shadow:0 10px 40px rgba(0,0,0,.1);max-width:540px;margin:0 auto}
.form-group{margin-bottom:1.5rem}
.form-group label{display:block;font-family:var(--font-accent);font-size:.9rem;font-weight:600;margin-bottom:.5rem}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:.9rem 1rem;border:2px solid var(--gray-light);border-radius:5px;font-family:var(--font-main);font-size:1rem;transition:border-color .2s}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:none;border-color:var(--primary)}
.form-group textarea{min-height:120px;resize:vertical}
.form-submit{text-align:center;margin-top:2rem}

.about-intro{display:flex;gap:3rem;align-items:center}
.about-intro__image{flex:0 0 45%;border-radius:8px;overflow:hidden}
.about-intro__image img{width:100%;aspect-ratio:4/3;object-fit:cover;background:linear-gradient(135deg,#b8956e,#6d5139)}
.about-intro__content{flex:1}

.timeline{position:relative;padding-left:2rem}
.timeline::before{content:'';position:absolute;left:0;top:0;bottom:0;width:2px;background:var(--gray-light)}
.timeline__item{position:relative;padding-bottom:2.5rem}
.timeline__item::before{content:'';position:absolute;left:-2rem;top:.5rem;width:12px;height:12px;border-radius:50%;background:var(--primary);border:3px solid var(--light);transform:translateX(-5px)}
.timeline__year{font-family:var(--font-accent);font-weight:700;color:var(--primary);margin-bottom:.25rem}
.timeline__text{color:var(--gray)}

.team{display:flex;flex-wrap:wrap;gap:2rem;justify-content:center}
.team__member{flex:1 1 250px;max-width:300px;text-align:center}
.team__photo{width:160px;height:160px;border-radius:50%;margin:0 auto 1.5rem;overflow:hidden}
.team__photo img{width:100%;height:100%;object-fit:cover;background:linear-gradient(180deg,#d4a574,#8b6b4a)}
.team__name{font-size:1.2rem;margin-bottom:.25rem}
.team__role{color:var(--gray);font-size:.9rem;margin-bottom:.75rem}

.contact-info{display:flex;flex-wrap:wrap;gap:2rem}
.contact-info__item{flex:1 1 250px;padding:2rem;background:#fff;border-radius:8px;text-align:center}
.contact-info__icon{width:48px;height:48px;margin:0 auto 1rem;background:var(--secondary);border-radius:50%;display:flex;align-items:center;justify-content:center}
.contact-info__icon svg{width:22px;height:22px;stroke:#fff}
.contact-info__title{font-family:var(--font-accent);font-weight:600;margin-bottom:.5rem}
.contact-info__text{color:var(--gray);font-size:.95rem}

.map{width:100%;height:350px;border-radius:8px;overflow:hidden;margin-top:3rem;background:var(--gray-light)}

.sticky-cta{position:fixed;bottom:0;left:0;right:0;background:#fff;padding:1rem;box-shadow:0 -4px 20px rgba(0,0,0,.1);display:flex;justify-content:center;align-items:center;gap:1rem;z-index:90;transform:translateY(100%);transition:transform .3s}
.sticky-cta.visible{transform:translateY(0)}
.sticky-cta__text{font-family:var(--font-accent);font-weight:600}

footer{background:var(--dark);color:#fff;padding:4rem 0 2rem}
.footer__grid{display:flex;flex-wrap:wrap;gap:3rem;margin-bottom:3rem}
.footer__col{flex:1 1 200px}
.footer__title{font-family:var(--font-accent);font-size:1rem;font-weight:600;margin-bottom:1.5rem;color:var(--accent)}
.footer__text{color:rgba(255,255,255,.7);font-size:.9rem;line-height:1.8}
.footer__links{list-style:none}
.footer__links li{margin-bottom:.75rem}
.footer__links a{color:rgba(255,255,255,.7);font-size:.9rem}
.footer__links a:hover{color:#fff}
.footer__bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:2rem;text-align:center;color:rgba(255,255,255,.5);font-size:.85rem}

.cookie-banner{position:fixed;bottom:0;left:0;right:0;background:#fff;padding:1.5rem;box-shadow:0 -4px 30px rgba(0,0,0,.15);z-index:200;display:none}
.cookie-banner.active{display:block}
.cookie-banner__content{max-width:var(--max-wide);margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:2rem;flex-wrap:wrap}
.cookie-banner__text{flex:1;font-size:.9rem;color:var(--gray)}
.cookie-banner__buttons{display:flex;gap:1rem}

.thanks{min-height:60vh;display:flex;align-items:center;justify-content:center;text-align:center;padding:4rem 2rem}
.thanks__icon{width:80px;height:80px;background:var(--secondary);border-radius:50%;margin:0 auto 2rem;display:flex;align-items:center;justify-content:center}
.thanks__icon svg{width:40px;height:40px;stroke:#fff}
.thanks__title{font-size:2.2rem;margin-bottom:1rem}
.thanks__text{color:var(--gray);font-size:1.1rem;max-width:480px;margin:0 auto 2rem}

.policy{padding:4rem 0}
.policy h1{font-size:2rem;margin-bottom:2rem}
.policy h2{font-size:1.4rem;margin:2.5rem 0 1rem;color:var(--primary)}
.policy p,.policy ul{margin-bottom:1rem}
.policy ul{padding-left:1.5rem}
.policy li{margin-bottom:.5rem}

@media(max-width:768px){
.nav__links{position:fixed;top:70px;left:0;right:0;background:#fff;flex-direction:column;padding:2rem;gap:1.5rem;box-shadow:0 10px 30px rgba(0,0,0,.1);transform:translateY(-150%);transition:transform .3s}
.nav__links.active{transform:translateY(0)}
.nav__toggle{display:flex}
.hero__title{font-size:2rem}
.service-card,.service-card:nth-child(even){flex-direction:column}
.service-card__image{flex:none;height:200px}
.about-intro{flex-direction:column}
.about-intro__image{flex:none;width:100%}
.story__image--float{float:none;width:100%;margin:1.5rem 0}
.footer__grid{flex-direction:column;gap:2rem}
.cookie-banner__content{flex-direction:column;text-align:center}
}
