:root{
  --ivory: #fff9f4;
  --gold: #bfa06a;
  --slate: #4a4a4f;
  --muted: #6b6b6b;
}
*{box-sizing:border-box}
body{
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, Arial;
  margin:0; color:var(--slate); background:var(--ivory);
  -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
}
.container{max-width:1024px;margin:0 auto;padding:28px;}
.hero{
  position:relative;
  height:56vh;
  min-height:320px;
  border-radius:10px;
  overflow:hidden;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:28px;
}
.hero img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;filter:blur(6px) brightness(0.7) contrast(0.98);transform:scale(1.03)}
.hero .overlay{position:relative;z-index:2;text-align:center;color:white;padding:28px}
h1{font-family:'Playfair Display', Georgia, serif;font-size:44px;margin:0 0 8px;color:#fff;letter-spacing:0.2px}
.lead{max-width:780px;margin:0 auto;color:rgba(255,255,255,0.95);font-size:18px}
.cta{display:inline-block;margin-top:18px;padding:10px 18px;border-radius:999px;background:var(--gold);color:#fff;text-decoration:none;font-weight:600}
.about{display:flex;gap:18px;align-items:center;margin-top:8px}
.portrait{width:96px;height:96px;border-radius:50%;overflow:hidden;border:5px solid rgba(255,255,255,0.12);flex:0 0 96px}
.portrait img{width:100%;height:100%;object-fit:cover;filter:grayscale(60%) brightness(1.02);opacity:0.95}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:20px;margin-top:24px}
.card{background:rgba(255,255,255,0.9);padding:18px;border-radius:12px;box-shadow:0 6px 18px rgba(0,0,0,0.06)}
.muted{color:var(--muted)}
.contact-form{max-width:640px;margin-top:14px}
input,textarea{width:100%;padding:12px;border-radius:10px;border:1px solid #eee;margin-bottom:8px;font-size:15px}
button.send{padding:12px 16px;border-radius:999px;background:var(--gold);border:0;color:#fff;font-weight:700}
.faq{margin-top:26px}
.faq h3{margin:0 0 8px;font-size:18px}
.lang-toggle{position:fixed;top:18px;right:18px;background:rgba(255,255,255,0.9);border-radius:999px;padding:6px 10px;border:1px solid rgba(0,0,0,0.06);z-index:999}
.lang-toggle button{background:transparent;border:0;padding:6px 8px;font-weight:600;color:var(--slate);cursor:pointer}
footer{font-size:13px;color:#888;text-align:center;padding:18px 0;margin-top:32px}
@media(max-width:700px){
  h1{font-size:32px}
  .about{flex-direction:column;align-items:flex-start}
  .portrait{width:80px;height:80px}
}