:root{
  --bg:#0b0b0b;
  --fg:#e9e7e4;
  --muted:rgba(233,231,228,.70);
  --hair:rgba(233,231,228,.12);
  --card:rgba(233,231,228,.04);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: radial-gradient(1200px 800px at 70% 20%, rgba(233,231,228,.06), transparent 60%),
              radial-gradient(900px 600px at 20% 80%, rgba(233,231,228,.04), transparent 55%),
              var(--bg);
  color:var(--fg);
  letter-spacing:.2px;
}

a{ color:var(--fg); text-decoration:none; }
a:hover{ opacity:.9; }

.wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 20px 44px;
}

.top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  border-bottom:1px solid var(--hair);
  padding-bottom:16px;
}

.mark{
  display:flex;
  align-items:center;
  gap:10px;
  user-select:none;
}

.dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background:var(--fg);
  opacity:.75;
}

.name{
  font-size:14px;
  letter-spacing:.8px;
  text-transform:lowercase;
  opacity:.95;
}

.nav{
  display:flex;
  gap:16px;
  font-size:13px;
  color:var(--muted);
}
.nav a{ color:var(--muted); }
.nav a:hover{ color:var(--fg); }

.hero{
  padding: 72px 0 36px;
}

h1{
  margin:0 0 14px;
  font-size: clamp(34px, 4vw, 52px);
  line-height:1.05;
  font-weight:600;
}

.hero p{
  margin:0;
  max-width: 64ch;
  color:var(--muted);
  font-size: 15px;
  line-height:1.7;
}

.cta{
  display:flex;
  gap:14px;
  align-items:center;
  margin-top:22px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:40px;
  padding: 0 14px;
  border-radius:999px;
  background: rgba(233,231,228,.10);
  border:1px solid rgba(233,231,228,.14);
  backdrop-filter: blur(6px);
  font-size:13px;
}
.btn:hover{ background: rgba(233,231,228,.14); }

.link{
  font-size:13px;
  color:var(--muted);
  border-bottom: 1px solid rgba(233,231,228,.25);
  padding-bottom:2px;
}
.link:hover{ color:var(--fg); border-color: rgba(233,231,228,.45); }

.section{
  padding: 34px 0;
  border-top:1px solid var(--hair);
}

h2{
  margin:0 0 12px;
  font-size:14px;
  letter-spacing:.8px;
  text-transform:lowercase;
  color: rgba(233,231,228,.85);
}

.section p{
  margin:0;
  max-width: 70ch;
  color: var(--muted);
  line-height:1.7;
  font-size:14.5px;
}

.grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
  margin-top: 14px;
}

.card{
  border:1px solid rgba(233,231,228,.10);
  background: var(--card);
  border-radius: 16px;
  padding: 14px;
  min-height: 110px;
}

.label{
  font-size:12px;
  color: rgba(233,231,228,.55);
  margin-bottom:10px;
  letter-spacing:.6px;
  text-transform:lowercase;
}

.title{
  font-size:15px;
  margin-bottom:8px;
}

.meta{
  font-size:13px;
  color: rgba(233,231,228,.65);
  line-height:1.5;
}

.contact{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
}
.sep{ opacity:.35; }

.foot{
  margin-top: 22px;
  padding-top: 18px;
  border-top:1px solid var(--hair);
  color: rgba(233,231,228,.55);
  font-size:12px;
}

@media (max-width: 860px){
  .grid{ grid-template-columns: 1fr; }
  .hero{ padding-top: 56px; }
}
