:root{
  --menu-bg:#0b0f14;
  --menu-fg:#e7e9ee;
  --text:#111;
  --muted:rgba(0,0,0,.65);
  --brd:rgba(0,0,0,.12);
}

body.page-about{
  margin:0;
  background:#fff;
  color:var(--text);
  font:16px/1.6 system-ui,-apple-system,Segoe UI,Roboto,Arial;
  
}
a{color:inherit;text-decoration:none}
/* Dark sticky menu (same vibe as Works) */
body.page-about header{
  position:sticky; top:0; z-index:20;
  display:flex; justify-content:space-between; align-items:center;
  gap:16px; padding:12px 16px;
  background:var(--menu-bg);
  color:var(--menu-fg);
  border-bottom:1px solid rgba(255,255,255,.06);
}

body.page-about header .brand{
    font-weight:700; 
    color:inherit;
}
body.page-about header nav a{
  margin-left:14px;
  color:inherit;
  text-decoration:none;
}
body.page-about header nav a:hover{ opacity:.75; }

/* Page wrap */
.about-wrap{
  max-width:1100px;
  margin:56px auto 90px;
  padding:0 20px;
}

.about-hero{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap:40px;
  align-items:start;
}

.about-text h1{
  font-size:30px;
  margin:0 0 14px;
}

.about-body p{
  margin:0 0 14px;
  color:var(--text);
}

.about-media{
  margin:0;
  border:1px solid var(--brd);
  border-radius:14px;
  overflow:hidden;
  background:#f6f6f6;
}

.about-media img{
  display:block;
  width:100%;
  height:auto;
}

/* Links section */
.about-links{
  margin-top:48px;
  padding-top:28px;
  border-top:1px solid var(--brd);
}

.about-links h2{
  font-size:14px;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin:0 0 14px;
  color:var(--muted);
}

.link-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}

.link-list a{
  text-decoration:none;
  color:inherit;
  border-bottom:1px solid rgba(0,0,0,.18);
}
.link-list a:hover{
  border-bottom-color: rgba(0,0,0,.5);
}

/* Mobile */
@media (max-width: 860px){
  .about-hero{
    grid-template-columns: 1fr;
    gap:22px;
  }
}
