:root{
  /* Background + text */
  --bg: #19191A;
  --fg: #E7E7E7;
  --muted: #B6B6B6;

  /* Accent: dark green from the photo */
  --accent: #478756;     /* darker forest green */

  /* Wider content */
  --maxw: 1080px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }

body{
  font-family: "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  font-weight: 300; /* Light default */
  padding-top: 30px;
}

a{ color: var(--accent); text-decoration:none; }
a:hover{ text-decoration:underline; filter: brightness(1.08); }

.container{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}


.name-big{
  margin: 0 0 14px;
  font-size: 48px;        /* adjust to taste */
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: 0.2px;
  color: var(--accent);
  text-shadow: 0 10px 26px rgba(0,0,0,.45);
}

main{ padding: 18px 0 36px; }

h2{
  font-size: 20px;
  margin: 26px 0 10px;
  font-weight: 500;
}

h3{
  font-size: 16px;
  margin: 16px 0 6px;
  font-weight: 500;
  color: var(--fg);
}

p{ margin: 10px 0; }
.small{ color: var(--muted); font-size: 14px; font-weight: 300; }

.hero{
  display:flex;
  gap: 12px;              /* more space between photo and text */
  align-items: center;    /* vertical centering */
  margin-top: 6px;
}

.hero img{
  width: 230px;
  max-width: 40vw;
  border-radius: 2px;
  box-shadow: 0 10px 26px rgba(0,0,0,.45);
}

.photo{
  padding-right: 10px;    /* extra space to the right of photo */
}

ul{ margin: 8px 0 0 20px; }
li{ margin: 6px 0; }

.links-label{
  margin-top: 22px;
  margin-bottom: 6px;
}

.linkbar--small{
  gap: 8px;
  margin-top: 0;
}

.linkbar--small .chip{
  padding: 4px 8px;
  font-size: 14px;     /* same as .small */
  border-radius: 3px;
}

.linkbar{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.chip{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 2px;
  background: rgba(255,255,255,.04);
  color: var(--fg);
  text-decoration: none;
}

.chip:hover{
  border-color: rgba(39,127,60,.55);     /* your accent */
  background: rgba(39,127,60,.10);
  text-decoration: none;
}
/* Mobile */
@media (max-width: 720px){
  .hero{ flex-direction: column; }
  .hero img{ width: 100%; max-width: 460px; }
  .name-big{ font-size: 44px; }
}