
:root{--royal:#0B1D5E;--gold:#C9A24A;--white:#ffffff;--maxw:1100px}
*{box-sizing:border-box}
body{margin:0;font-family:Inter,Arial,sans-serif;background:var(--white);color:#0b2540;-webkit-font-smoothing:antialiased}
.header{position:fixed;top:0;left:0;right:0;height:80px;background:var(--royal);display:flex;align-items:center;justify-content:space-between;padding:0 20px;z-index:90;box-shadow:0 2px 8px rgba(11,29,94,0.12)}
.brand{display:flex;align-items:center;gap:12px;color:var(--white);font-weight:700}
.brand img{height:48px;filter:drop-shadow(0 0 8px rgba(255,255,255,0.12))}
.menu-btn{background:none;border:none;color:var(--white);font-size:22px;cursor:pointer}
.container{max-width:var(--maxw);margin:0 auto;padding:120px 20px 40px}
.hero{background:var(--royal);color:var(--white);padding:60px 20px;border-radius:8px;text-align:left;display:flex;gap:24px;align-items:center}
.hero .hero-text{flex:1}
.hero h1{margin:0;font-size:32px}
.hero p{margin-top:12px;opacity:0.95}
.portrait{width:220px;border-radius:8px;object-fit:cover;box-shadow:0 8px 30px rgba(11,29,94,0.15)}
.section{padding:48px 0}
.focus-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.card{background:#fff;border-radius:8px;padding:18px;box-shadow:0 6px 18px rgba(11,29,94,0.04);border:1px solid rgba(11,29,94,0.03)}
.gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.gallery img{width:100%;height:180px;object-fit:cover;border-radius:8px}
.footer{background:#f7f5f2;padding:20px;text-align:center;margin-top:40px}
.gold-line{height:2px;background:var(--gold);width:100%}
.slide-menu{position:fixed;right:-420px;top:0;height:100%;width:380px;background:var(--white);box-shadow:-24px 0 60px rgba(11,29,94,0.08);transition:right .42s ease;z-index:95;padding:28px;display:flex;flex-direction:column}
.slide-menu.open{right:0}
.overlay{position:fixed;inset:0;background:rgba(0,0,0,0.32);opacity:0;pointer-events:none;transition:opacity .32s}
.overlay.show{opacity:1;pointer-events:auto}
.menu-list a{display:block;padding:12px 0;color:var(--royal);text-decoration:none;font-weight:700;border-bottom:1px solid rgba(11,29,94,0.03)}
@media(max-width:900px){.focus-grid{grid-template-columns:1fr}.gallery{grid-template-columns:repeat(2,1fr)}.hero{flex-direction:column}.brand img{height:40px}.portrait{width:160px}}
