:root{
  --bg:#fff;
  --text:#111;
  --accent:#b74e83;
  --muted:#666;
  --container:1100px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}
.container{
  max-width:var(--container);
  margin:0 auto;
  padding:24px;
}

/* Hero */
.hero{
  background:linear-gradient(90deg, rgba(183,78,131,0.08), rgba(183,78,131,0.02));
  padding:36px 0;
}
.hero .container{
  display:flex;
  gap:24px;
  align-items:center;
}
.portrait{
  width:160px;
  height:160px;
  object-fit:cover;
  border-radius:8px;
  box-shadow:0 6px 18px rgba(0,0,0,0.08);
  flex:0 0 160px;
}
.intro h1{margin:0 0 8px 0;font-size:28px}
.tagline{margin:0 0 6px;color:var(--muted)}
.meta{font-size:13px;color:var(--muted)}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:12px;
  margin-top:12px;
}
.thumb{
  border:0;
  padding:0;
  background:transparent;
  cursor:pointer;
  display:block;
  border-radius:6px;
  overflow:hidden;
}
.thumb img{width:100%;height:160px;object-fit:cover;display:block;}

/* Contact */
#contact a{color:var(--accent);text-decoration:none}
.note{color:var(--muted);font-size:14px}

/* Lightbox */
.lightbox{
  position:fixed;
  inset:0;
  display:none;
  background:rgba(0,0,0,0.8);
  align-items:center;
  justify-content:center;
  z-index:1000;
}
.lightbox[aria-hidden="false"]{display:flex}
.lb-close{
  position:absolute;
  top:18px;
  right:18px;
  font-size:28px;
  color:#fff;
  background:transparent;
  border:0;
  cursor:pointer;
}
.lightbox img{max-width:90%;max-height:85%;border-radius:6px}
@media (max-width:700px){
  .hero .container{flex-direction:column;align-items:flex-start}
  .portrait{width:120px;height:120px;flex:0 0 120px}
}