
:root{
 --purple:#b9a7e8; --purple-dark:#7659b8; --purple-deep:#5b438f;
 --lavender:#eee8ff; --white:#fff; --text:#433853; --pink:#f5eafa;
}
*{box-sizing:border-box;margin:0;padding:0}
body{font-family:Arial,Helvetica,sans-serif;background:#faf8ff;color:var(--text);line-height:1.7}
nav{position:sticky;top:0;z-index:10;background:rgba(255,255,255,.95);box-shadow:0 2px 14px rgba(91,67,143,.1)}
.nav{max-width:1100px;margin:auto;padding:15px 24px;display:flex;justify-content:space-between;align-items:center;gap:20px}
.logo{font-weight:800;font-size:1.35rem;color:var(--purple-deep);text-decoration:none}
.links{display:flex;list-style:none;gap:8px;flex-wrap:wrap}
.links a{color:var(--text);text-decoration:none;padding:8px 13px;border-radius:20px;font-weight:600}
.links a:hover,.links a.active{background:var(--purple);color:white}
.hero,.head{background:linear-gradient(135deg,#e8e0ff,#c9b9ee,#f0eaff)}
.hero{min-height:calc(100vh - 68px);display:flex;align-items:center;justify-content:center;text-align:center;padding:40px 20px}
.hero-content{max-width:800px}
.badge{display:inline-block;background:white;color:var(--purple-dark);padding:7px 16px;border-radius:30px;font-weight:700;margin-bottom:18px}
h1{font-size:clamp(2.5rem,7vw,5rem);line-height:1.05;color:var(--purple-deep);margin-bottom:18px}
h2{font-size:2.2rem;color:var(--purple-deep);margin-bottom:14px}
h3{color:var(--purple-deep);margin-bottom:7px}
.hero p{font-size:1.15rem;max-width:650px;margin:0 auto 25px}
.btn{display:inline-block;text-decoration:none;background:var(--purple-dark);color:white;padding:11px 22px;border-radius:28px;font-weight:700;margin:5px}
.btn.light{background:white;color:var(--purple-deep)}
.head{text-align:center;padding:55px 20px}
.container{max-width:1100px;margin:auto;padding:55px 24px}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:22px}
.card{background:white;border-radius:24px;padding:25px;box-shadow:0 10px 28px rgba(91,67,143,.11)}
.about{display:grid;grid-template-columns:320px 1fr;gap:35px;align-items:center}
.avatar{height:320px;border-radius:35px;background:linear-gradient(145deg,#b9a7e8,#7659b8);display:flex;align-items:center;justify-content:center;color:white;font-size:6rem;font-weight:800;box-shadow:0 12px 30px rgba(91,67,143,.18)}
.tags span{display:inline-block;background:var(--lavender);color:var(--purple-deep);padding:7px 12px;border-radius:18px;margin:4px;font-weight:600}
.gallery{height:220px;border-radius:22px;background:linear-gradient(135deg,#c9b9ee,#eee8ff);display:flex;align-items:center;justify-content:center;color:var(--purple-deep);font-size:3rem;font-weight:800}
form{max-width:700px;margin:auto;display:grid;gap:14px}
input,textarea{width:100%;padding:14px;border:2px solid #ddd3f5;border-radius:14px;font:inherit;outline:none}
input:focus,textarea:focus{border-color:var(--purple)}
textarea{min-height:150px;resize:vertical}
button{border:0;cursor:pointer;font:inherit}
footer{text-align:center;background:#fff;padding:24px;color:#74667f;margin-top:20px}
@media(max-width:700px){.nav{flex-direction:column}.links{justify-content:center}.about{grid-template-columns:1fr}.container{padding:40px 18px}}
